| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- //----------------------------------------------------------------------------
- #ifndef ConsoleH
- #define ConsoleH
- //----------------------------------------------------------------------------
- #include <vcl\System.hpp>
- #include <vcl\Windows.hpp>
- #include <vcl\SysUtils.hpp>
- #include <vcl\Classes.hpp>
- #include <vcl\Graphics.hpp>
- #include <vcl\StdCtrls.hpp>
- #include <vcl\Forms.hpp>
- #include <vcl\Controls.hpp>
- #include <vcl\Buttons.hpp>
- #include <vcl\ExtCtrls.hpp>
- #include <ComCtrls.hpp>
- #include <HistoryComboBox.hpp>
- #include <PathLabel.hpp>
- #include <Terminal.h>
- #include <ImgList.hpp>
- #include <Menus.hpp>
- #include <ActnList.hpp>
- #include <StdActns.hpp>
- //----------------------------------------------------------------------------
- class TConsoleDialog : public TForm
- {
- __published:
- TMemo *OutputMemo;
- TBevel *Bevel1;
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label4;
- TButton *CancelBtn;
- THistoryComboBox *CommandEdit;
- TButton *ExecuteButton;
- TPathLabel *DirectoryLabel;
- TButton *HelpButton;
- TImageList *Images;
- TPopupMenu *PopupMenu;
- TMenuItem *SelectAllItem;
- TMenuItem *CopyItem;
- TMenuItem *N1;
- TMenuItem *AdjustWindowItem;
- TActionList *ActionList;
- TEditCopy *EditCopy;
- TEditSelectAll *EditSelectAll;
- TAction *AdjustWindow;
- void __fastcall ExecuteButtonClick(TObject *Sender);
- void __fastcall CommandEditChange(TObject *Sender);
- void __fastcall HelpButtonClick(TObject *Sender);
- void __fastcall ActionListExecute(TBasicAction *Action, bool &Handled);
- void __fastcall ActionListUpdate(TBasicAction *Action, bool &Handled);
- void __fastcall FormShow(TObject *Sender);
-
- private:
- TTerminal * FTerminal;
- TTerminal * FLastTerminal;
- TNotifyEvent FOldChangeDirectory;
- TNotifyEvent FPrevTerminalClose;
- TRect FAutoBounds;
- void __fastcall DoExecuteCommand();
- void __fastcall ExecuteCommand();
- void __fastcall SetTerminal(TTerminal * value);
- void __fastcall TerminalClose(TObject * Sender);
- inline void __fastcall AddLine(TLogLineType Type, const AnsiString & Line);
- protected:
- void __fastcall DoChangeDirectory(TObject * Sender);
- void __fastcall DoLogAddLine(System::TObject* Sender, TLogLineType Type,
- const AnsiString AddedLine);
- void __fastcall UpdateControls();
- virtual void __fastcall CreateParams(TCreateParams & Params);
- void __fastcall DoAdjustWindow();
- public:
- virtual __fastcall ~TConsoleDialog();
- virtual __fastcall TConsoleDialog(TComponent* AOwner);
- bool __fastcall Execute(const AnsiString Command = "",
- const TStrings * Log = NULL);
- __property TTerminal * Terminal = { read = FTerminal, write = SetTerminal };
- };
- //----------------------------------------------------------------------------
- #endif
|