Browse Subversion Repository
Contents of /CopalPro/KLangForm.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: 905 byte(s)
First Commit
| 1 |
//--------------------------------------------------------------------------- |
| 2 |
// フォームの言語を変更するクラス |
| 3 |
//--------------------------------------------------------------------------- |
| 4 |
#ifndef KLangFormH |
| 5 |
#define KLangFormH |
| 6 |
//--------------------------------------------------------------------------- |
| 7 |
class KLangForm { |
| 8 |
private: |
| 9 |
|
| 10 |
TStringList *stOriginalLanguage;//元の言語(英語) |
| 11 |
TStringList *stTargetLanguage; //変更後の言語(日本語) |
| 12 |
|
| 13 |
|
| 14 |
TControl *Control; |
| 15 |
|
| 16 |
void GetAllCaption(TControl *Control,TStringList *st); |
| 17 |
void SetAllCaption(TControl *Control); |
| 18 |
AnsiString FindCaption(AnsiString Caption); |
| 19 |
|
| 20 |
public: |
| 21 |
KLangForm(TControl *_Control);//コンストラクタ |
| 22 |
~KLangForm(void);//デストラクタ |
| 23 |
|
| 24 |
void LoadFromFile(AnsiString FileName); |
| 25 |
void SaveToFile(AnsiString FileName); |
| 26 |
|
| 27 |
|
| 28 |
}; |
| 29 |
//--------------------------------------------------------------------------- |
| 30 |
#endif |
|