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 >
Wrap
C/C++ Source or Header
|
1997-02-14
|
2KB
|
58 lines
//----------------------------------------------------------------------------
#ifndef LogoH
#define LogoH
//----------------------------------------------------------------------------
#include <vcl\ComCtrls.hpp>
#include <vcl\ExtCtrls.hpp>
#include <vcl\Buttons.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Dialogs.hpp>
#include <vcl\Menus.hpp>
#include <vcl\Controls.hpp>
#include <vcl\Forms.hpp>
#include <vcl\Graphics.hpp>
#include <vcl\Classes.hpp>
#include <vcl\Windows.hpp>
#include <vcl\System.hpp>
//----------------------------------------------------------------------------
class TLogoAppForm : public TForm
{
__published:
TMainMenu *MainMenu;
TMenuItem *FileMenu;
TMenuItem *FileNewItem;
TMenuItem *FileOpenItem;
TMenuItem *FileSaveItem;
TMenuItem *FileSendItem;
TMenuItem *FileExitItem;
TOpenDialog *OpenDialog;
TSaveDialog *SaveDialog;
TMenuItem *Help1;
TMenuItem *AboutItem;
TPanel *SpeedPanel;
TSpeedButton *OpenBtn;
TSpeedButton *SaveBtn;
TSpeedButton *ExitBtn;
TStatusBar *StatusBar;
TRichEdit *RichEdit1;
TSpeedButton *SendBtn;
void __fastcall FormCreate(TObject *Sender);
void __fastcall FileExit(TObject *Sender);
void __fastcall FileNew(TObject *Sender);
void __fastcall FileOpen(TObject *Sender);
void __fastcall FileSave(TObject *Sender);
void __fastcall FileSaveAs(TObject *Sender);
void __fastcall FileSend(TObject *Sender);
void __fastcall About(TObject *Sender);
void __fastcall ShowHint(TObject *Sender);
private:
AnsiString FFileName;
public:
virtual __fastcall TLogoAppForm(TComponent *Owner);
};
//----------------------------------------------------------------------------
extern TLogoAppForm *LogoAppForm;
//----------------------------------------------------------------------------
#endif