summaryrefslogtreecommitdiff
path: root/apps/windoze/CBuilder5/BibleCS/FontSel.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/windoze/CBuilder5/BibleCS/FontSel.h')
-rw-r--r--apps/windoze/CBuilder5/BibleCS/FontSel.h56
1 files changed, 0 insertions, 56 deletions
diff --git a/apps/windoze/CBuilder5/BibleCS/FontSel.h b/apps/windoze/CBuilder5/BibleCS/FontSel.h
deleted file mode 100644
index d07e798..0000000
--- a/apps/windoze/CBuilder5/BibleCS/FontSel.h
+++ /dev/null
@@ -1,56 +0,0 @@
-//---------------------------------------------------------------------------
-
-#ifndef FontSelH
-#define FontSelH
-//---------------------------------------------------------------------------
-#include <Classes.hpp>
-#include <Controls.hpp>
-#include <StdCtrls.hpp>
-#include <Forms.hpp>
-#include <Buttons.hpp>
-#include <Dialogs.hpp>
-#include <ExtCtrls.hpp>
-//#include "D:\\Program Files\\Borland\\CBuilder5\\RX\\Units\\Rxcombos.hpp"
-#include "RxCombos.hpp"
-//---------------------------------------------------------------------------
-class TFontSelFrm : public TForm
-{
-__published: // IDE-managed Components
- TLabel *Label1;
- TLabel *Label2;
- TLabel *Label3;
- TLabel *Label4;
- TBitBtn *OKBtn;
- TBitBtn *CancelBtn;
- TGroupBox *GroupBox1;
- TPanel *SampleText;
- TFontComboBox *FontComboBox;
- TComboBox *SizeComboBox;
- TCheckBox *ckShowFont;
- TColorComboBox *BGColorCmb;
- TColorComboBox *FGColorCmb;
- TColorDialog *BackColorDlg;
- TColorDialog *ForeColorDlg;
- void __fastcall FormShow(TObject *Sender);
- void __fastcall ckShowFontClick(TObject *Sender);
- void __fastcall FontComboBoxChange(TObject *Sender);
- void __fastcall SizeComboBoxChange(TObject *Sender);
- void __fastcall BGColorCmbChange(TObject *Sender);
- void __fastcall FGColorCmbChange(TObject *Sender);
- void __fastcall OKBtnClick(TObject *Sender);
- void __fastcall CancelBtnClick(TObject *Sender);
-public: // User declarations
- TFont* Font;
- int BackColor;
-public: // User declarations
- __fastcall TFontSelFrm(TComponent* Owner);
-protected:
- void UpdatePreview();
-private:
- bool initialized; // Stupid variable to work around stupid combo box change called from FormShow()
-
-};
-//---------------------------------------------------------------------------
-extern PACKAGE TFontSelFrm *FontSelFrm;
-//---------------------------------------------------------------------------
-#endif