Develop and Download Open Source Software

Browse Subversion Repository

Contents of /CopalPro/NewLang.h

Parent Directory Parent Directory | Revision Log 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: 1296 byte(s)
First Commit
1 //---------------------------------------------------------------------------
2 #ifndef NewLangH
3 #define NewLangH
4 //---------------------------------------------------------------------------
5 #include <Classes.hpp>
6 #include <Controls.hpp>
7 #include <StdCtrls.hpp>
8 #include <Forms.hpp>
9 #include <Dialogs.hpp>
10 //---------------------------------------------------------------------------
11 class TFNewLang : public TForm {
12 __published: // IDE 管理のコンポーネント
13 TLabel *Label1;
14 TButton *BtOK;
15 TButton *BtCancel;
16 TGroupBox *GroupBox1;
17 TEdit *EdLangName;
18 TGroupBox *GroupBox2;
19 TButton *BtBrowse;
20 TEdit *EdLangPath;
21 TOpenDialog *OpenDialog;
22 void __fastcall BtOKClick(TObject *Sender);
23 void __fastcall BtBrowseClick(TObject *Sender);
24 void __fastcall FormShow(TObject *Sender);
25 private: // ユーザー宣言
26 KCopalConfig *CopalConfig;
27 public: // ユーザー宣言
28
29 bool Execute(KCopalConfig *_CopalConfig);//インターフェース
30
31 AnsiString LangName;//言語名
32 AnsiString LangPath;//言語へのパス
33
34
35 __fastcall TFNewLang(TComponent* Owner);
36 };
37 //---------------------------------------------------------------------------
38 extern PACKAGE TFNewLang *FNewLang;
39 //---------------------------------------------------------------------------
40 #endif

Back to OSDN">Back to OSDN
ViewVC Help
Powered by ViewVC 1.1.26