?login_element?

Subversion Repositories NedoOS

Rev

Rev 8 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef guiUnit1H
  4. #define guiUnit1H
  5. //---------------------------------------------------------------------------
  6. #include <Classes.hpp>
  7. #include <Controls.hpp>
  8. #include <StdCtrls.hpp>
  9. #include <Forms.hpp>
  10. #include <ExtCtrls.hpp>
  11. //---------------------------------------------------------------------------
  12. class TForm1 : public TForm
  13. {
  14. __published:    // IDE-managed Components
  15.         TMemo *memoIn;
  16.         TMemo *memoOut;
  17.         TLabel *lbCaretPos;
  18.         TButton *Button1;
  19.         TCheckBox *cbHints;
  20.         TCheckBox *cbComments;
  21.         TCheckBox *cbAuto;
  22.         TMemo *memoErr;
  23.         TRadioGroup *rgTarget;
  24.         void __fastcall memoInChange(TObject *Sender);
  25.         void __fastcall memoInMouseDown(TObject *Sender,
  26.           TMouseButton Button, TShiftState Shift, int X, int Y);
  27.         void __fastcall memoInKeyDown(TObject *Sender, WORD &Key,
  28.           TShiftState Shift);
  29.         void __fastcall Button1Click(TObject *Sender);
  30.         void __fastcall FormCreate(TObject *Sender);
  31.         void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  32. private:        // User declarations
  33. public:         // User declarations
  34.         __fastcall TForm1(TComponent* Owner);
  35. };
  36. //---------------------------------------------------------------------------
  37. extern PACKAGE TForm1 *Form1;
  38. //---------------------------------------------------------------------------
  39. #endif
  40.