home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 May / VPR9705A.ISO / VPR_DATA / PROGRAM / CBTRIAL / SETUP / DATA.Z / SDIMAIN.H < prev    next >
C/C++ Source or Header  |  1997-02-14  |  2KB  |  50 lines

  1. //----------------------------------------------------------------------------
  2. #ifndef SDIMainH
  3. #define SDIMainH
  4. //----------------------------------------------------------------------------
  5. #include <vcl\ComCtrls.hpp>
  6. #include <vcl\ExtCtrls.hpp>
  7. #include <vcl\Buttons.hpp>
  8. #include <vcl\StdCtrls.hpp>
  9. #include <vcl\Dialogs.hpp>
  10. #include <vcl\Menus.hpp>
  11. #include <vcl\Controls.hpp>
  12. #include <vcl\Forms.hpp>
  13. #include <vcl\Graphics.hpp>
  14. #include <vcl\Classes.hpp>
  15. #include <vcl\Windows.hpp>
  16. #include <vcl\System.hpp>
  17. //----------------------------------------------------------------------------
  18. class TSDIAppForm : public TForm
  19. {
  20. __published:
  21.     TMainMenu *MainMenu;
  22.     TMenuItem *FileMenu;
  23.     TMenuItem *OpenItem;
  24.     TMenuItem *SaveItem;
  25.     TMenuItem *ExitItem;
  26.     TMenuItem *N1;
  27.     TOpenDialog *OpenDialog;
  28.     TSaveDialog *SaveDialog;
  29.     TMenuItem *Help1;
  30.     TMenuItem *About1;
  31.     TPanel *SpeedPanel;
  32.     TSpeedButton *OpenBtn;
  33.     TSpeedButton *SaveBtn;
  34.     TSpeedButton *ExitBtn;
  35.     TStatusBar *StatusBar;
  36.     void __fastcall ShowHint(TObject *Sender);
  37.     void __fastcall ExitItemClick(TObject *Sender);
  38.     void __fastcall OpenItemClick(TObject *Sender);
  39.     void __fastcall SaveItemClick(TObject *Sender);
  40.     void __fastcall About1Click(TObject *Sender);
  41.     void __fastcall FormCreate(TObject *Sender);
  42. private:
  43. public:
  44.     virtual __fastcall TSDIAppForm(TComponent *AOwner);
  45. };
  46. //----------------------------------------------------------------------------
  47. extern TSDIAppForm *SDIAppForm;
  48. //----------------------------------------------------------------------------
  49. #endif
  50.