-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.~h
41 lines (40 loc) · 1.21 KB
/
main.~h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//---------------------------------------------------------------------------
#ifndef mainH
#define mainH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <ExtCtrls.hpp>
#include "CSPIN.h"
#include <Menus.hpp>
//---------------------------------------------------------------------------
class Tfmain : public TForm
{
__published: // IDE-managed Components
TPanel *Panel1;
TPanel *Panel4;
TPaintBox *pscreen;
TMainMenu *MainMenu1;
TMenuItem *File1;
TMenuItem *New1;
TMenuItem *Open1;
TMenuItem *Save1;
TMenuItem *SaveAs1;
TMenuItem *N1;
TMenuItem *Exit1;
TTimer *Timer1;
TLabeledEdit *edtplayer;
TLabeledEdit *edtcamera;
void __fastcall FormCreate(TObject *Sender);
void __fastcall Exit1Click(TObject *Sender);
void __fastcall FormActivate(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall Tfmain(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE Tfmain *fmain;
//---------------------------------------------------------------------------
#endif