blob: 51aa89a9e99c0bfed45a9d4bfa38bc016609a248 (
plain) (
blame)
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
//---------------------------------------------------------------------------
#ifndef TModuleFontsH
#define TModuleFontsH
//---------------------------------------------------------------------------
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <RxCombos.hpp>
#include <Buttons.hpp>
#include <ComCtrls.hpp>
#include <Menus.hpp>
#include <dirent.h>
#include <io.h>
#include <dir.h>
// Sword includes
#include <swmgr.h>
#include <swconfig.h>
#include "mainfrm.h"
#include <ExtCtrls.hpp>
//---------------------------------------------------------------------------
class TModuleFonts : public TForm
{
__published: // IDE-managed Components
TMainMenu *MainMenu1;
TMenuItem *menuView;
TMenuItem *viewAll;
TMenuItem *viewUnicode;
TPanel *Panel1;
TPanel *Panel2;
TPanel *Panel3;
TBitBtn *btnReset;
TBitBtn *btnOK;
TLabel *Label2;
TPanel *pnlFontComboBox;
TPanel *Panel4;
TTreeView *installTree;
TLabel *Label1;
TLabel *Label3;
TComboBox *cmbSizeSel;
void __fastcall FormShow(TObject *Sender);
void __fastcall viewAllClick(TObject *Sender);
void __fastcall viewUnicodeClick(TObject *Sender);
void __fastcall installTreeChange(TObject *Sender, TTreeNode *Node);
void __fastcall cmbFontSelChange(TObject *Sender);
void __fastcall btnResetClick(TObject *Sender);
void __fastcall cmbSizeSelChange(TObject *Sender);
private:
void FillList();
public: // User declarations
TFontComboBox *cmbFontSel;
__fastcall TModuleFonts(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TModuleFonts *ModuleFonts;
//---------------------------------------------------------------------------
#endif
|