Browse Subversion Repository
Contents of /CopalPro/Version.h
Parent Directory
| Revision Log
Revision 1 -
( show annotations)
( download)
( as text)
Thu Jul 28 09:05:52 2011 UTC
(12 years, 9 months ago)
by kaityo
File MIME type: text/x-chdr
File size: 1428 byte(s)
First Commit
| 1 |
//--------------------------------------------------------------------------- |
| 2 |
#ifndef VersionH |
| 3 |
#define VersionH |
| 4 |
//--------------------------------------------------------------------------- |
| 5 |
#include <Classes.hpp> |
| 6 |
#include <Controls.hpp> |
| 7 |
#include <StdCtrls.hpp> |
| 8 |
#include <Forms.hpp> |
| 9 |
#include <ExtCtrls.hpp> |
| 10 |
#include <Graphics.hpp> |
| 11 |
//--------------------------------------------------------------------------- |
| 12 |
class TFVersion : public TForm { |
| 13 |
__published: // IDE 管理のコンポーネント |
| 14 |
TButton *Button1; |
| 15 |
TPanel *Panel1; |
| 16 |
TImage *Image1; |
| 17 |
TLabel *Label1; |
| 18 |
TLabel *Label2; |
| 19 |
TEdit *EdAddress; |
| 20 |
TLabel *Label5; |
| 21 |
void __fastcall Button1Click(TObject *Sender); |
| 22 |
void __fastcall FormKeyDown(TObject *Sender, WORD &Key, |
| 23 |
TShiftState Shift); |
| 24 |
void __fastcall FormShow(TObject *Sender); |
| 25 |
void __fastcall Label5Click(TObject *Sender); |
| 26 |
void __fastcall FormMouseMove(TObject *Sender, TShiftState Shift, |
| 27 |
int X, int Y); |
| 28 |
void __fastcall Label5MouseMove(TObject *Sender, TShiftState Shift, |
| 29 |
int X, int Y); |
| 30 |
private: // ユーザー宣言 |
| 31 |
public: // ユーザー宣言 |
| 32 |
__fastcall TFVersion(TComponent* Owner); |
| 33 |
}; |
| 34 |
//--------------------------------------------------------------------------- |
| 35 |
extern PACKAGE TFVersion *FVersion; |
| 36 |
//--------------------------------------------------------------------------- |
| 37 |
#endif |
|