2019-07-28 23:53:15 +03:00
|
|
|
|
// Copyright (c) Ivan Bondarev, Stanislav Mikhalkovich (for details please see \doc\copyright.txt)
|
2015-06-02 23:06:57 +03:00
|
|
|
|
// This code is distributed under the GNU LGPL (for details please see \doc\license.txt)
|
2015-05-14 22:35:07 +03:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Drawing;
|
|
|
|
|
|
using System.Windows.Forms;
|
|
|
|
|
|
|
|
|
|
|
|
namespace VisualPascalABC
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Description of ImmediateWindow.
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public partial class ImmediateWindow : BottomDockContentForm
|
|
|
|
|
|
{
|
|
|
|
|
|
public ImmediateWindow(Form1 MainForm):base(MainForm)
|
|
|
|
|
|
{
|
|
|
|
|
|
//
|
|
|
|
|
|
// The InitializeComponent() call is required for Windows Forms designer support.
|
|
|
|
|
|
//
|
|
|
|
|
|
InitializeComponent();
|
|
|
|
|
|
|
|
|
|
|
|
ImmediateConsole.ShowHRuler = false;
|
|
|
|
|
|
ImmediateConsole.ShowLineNumbers = false;
|
|
|
|
|
|
ImmediateConsole.MarkForImmediateWindow();
|
|
|
|
|
|
ImmediateConsole.ShowLineNumbers = true;
|
|
|
|
|
|
//
|
|
|
|
|
|
// TODO: Add constructor code after the InitializeComponent() call.
|
|
|
|
|
|
//
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|