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

  1. //----------------------------------------------------------------------------
  2. #ifndef LogoH
  3. #define LogoH
  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 TLogoAppForm : public TForm
  19. {
  20. __published:
  21.     TMainMenu *MainMenu;
  22.     TMenuItem *FileMenu;
  23.     TMenuItem *FileNewItem;
  24.     TMenuItem *FileOpenItem;
  25.     TMenuItem *FileSaveItem;
  26.     TMenuItem *FileSendItem;
  27.     TMenuItem *FileExitItem;
  28.     TOpenDialog *OpenDialog;
  29.     TSaveDialog *SaveDialog;
  30.     TMenuItem *Help1;
  31.     TMenuItem *AboutItem;
  32.     TPanel *SpeedPanel;
  33.     TSpeedButton *OpenBtn;
  34.     TSpeedButton *SaveBtn;
  35.     TSpeedButton *ExitBtn;
  36.     TStatusBar *StatusBar;
  37.     TRichEdit *RichEdit1;
  38.     TSpeedButton *SendBtn;
  39.     void __fastcall FormCreate(TObject *Sender);
  40.     void __fastcall FileExit(TObject *Sender);
  41.     void __fastcall FileNew(TObject *Sender);
  42.     void __fastcall FileOpen(TObject *Sender);
  43.     void __fastcall FileSave(TObject *Sender);
  44.     void __fastcall FileSaveAs(TObject *Sender);
  45.     void __fastcall FileSend(TObject *Sender);
  46.     void __fastcall About(TObject *Sender);
  47.     void __fastcall ShowHint(TObject *Sender);
  48.     
  49. private:
  50.     AnsiString FFileName;
  51. public:
  52.     virtual __fastcall TLogoAppForm(TComponent *Owner);
  53. };
  54. //----------------------------------------------------------------------------
  55. extern TLogoAppForm *LogoAppForm;
  56. //----------------------------------------------------------------------------
  57. #endif    
  58.