Advertisement
Guest User

Untitled

a guest
Oct 16th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 2.20 KB | None | 0 0
  1. //---------------------------------------------------------------------------
  2.  
  3. #ifndef BaseMainH
  4. #define BaseMainH
  5. //---------------------------------------------------------------------------
  6. #include <System.Classes.hpp>
  7. #include <Vcl.Controls.hpp>
  8. #include <Vcl.StdCtrls.hpp>
  9. #include <Vcl.Forms.hpp>
  10. #include <Vcl.Dialogs.hpp>
  11. #include <Vcl.ExtCtrls.hpp>
  12. #include <Vcl.ExtDlgs.hpp>
  13. #include <Vcl.Grids.hpp>
  14. #include <Vcl.Menus.hpp>
  15. #include "DataProgram.h"
  16. #include <inifiles.hpp>
  17. #include <Vcl.Graphics.hpp>
  18. //---------------------------------------------------------------------------
  19. class TForm1 : public TForm
  20. {
  21. __published:    // IDE-managed Components
  22.     TMemo *Memo1;
  23.     TPopupMenu *PopupMenu1;
  24.     TOpenDialog *OpenDialog1;
  25.     TOpenPictureDialog *OpenPictureDialog1;
  26.     TMainMenu *MainMenu1;
  27.     TMenuItem *FIle1;
  28.     TMenuItem *NewFile1;
  29.     TMenuItem *Open1;
  30.     TMenuItem *N1;
  31.     TMenuItem *SaveCtrlS1;
  32.     TMenuItem *SaveAs1;
  33.     TMenuItem *N2;
  34.     TMenuItem *Close1;
  35.     TMenuItem *Help1;
  36.     TMenuItem *AboutProgram1;
  37.     TMenuItem *AddBitMap1;
  38.     TMenuItem *N3;
  39.     TMenuItem *LineSection1;
  40.     TMenuItem *HeadersSection1;
  41.     TMenuItem *N4;
  42.     TMenuItem *SettingsActions1;
  43.     TSaveDialog *SaveDialog1;
  44.     TStringGrid *StringGrid1;
  45.     TImage *Image1;
  46.     void __fastcall FormClose(TObject *Sender, TCloseAction &Action);
  47.     void __fastcall NewFile1Click(TObject *Sender);
  48.     void __fastcall Open1Click(TObject *Sender);
  49.     void __fastcall StringGrid1SelectCell(TObject *Sender, int ACol, int ARow, bool &CanSelect);
  50.     void __fastcall AddBitMap1Click(TObject *Sender);
  51.     void __fastcall LineSection1Click(TObject *Sender);
  52.     void __fastcall HeadersSection1Click(TObject *Sender);
  53.     void __fastcall SettingsActions1Click(TObject *Sender);
  54.     void __fastcall SaveCtrlS1Click(TObject *Sender);
  55.     void __fastcall SaveAs1Click(TObject *Sender);
  56.     void __fastcall Close1Click(TObject *Sender);
  57.  
  58. private:
  59. String SaveName, Other, Right;
  60. TIniFile;   // User declarations
  61. public:
  62. TDataProgram *DataProgram;
  63.         // User declarations
  64.     __fastcall TForm1(TComponent* Owner);
  65. };
  66. //---------------------------------------------------------------------------
  67. extern PACKAGE TForm1 *Form1;
  68. //---------------------------------------------------------------------------
  69. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement