//--------------------------------------------------------------------------- #ifndef SettingsH #define SettingsH //--------------------------------------------------------------------------- #include #include #include #include #include #include //--------------------------------------------------------------------------- class TFormSettings : public TForm { __published: // IDE-managed Components TCheckBox *CheckBoxShowAnnotations; TButton *ButtonOK; TButton *ButtonCancel; TCheckBox *CheckBoxOptimizeForLcdDisplay; TCheckBox *CheckBoxNativeTextOutput; TCheckBox *CheckBoxGrayscaleOutput; TCheckBox *CheckBoxLimitImageCacheSize; TCheckBox *CheckBoxUseHalftoneForImageStretching; TCheckBox *CheckBoxRenderForPrinting; TCheckBox *CheckBoxReverseByteOrder; TCheckBox *CheckBoxAntiAliasingOnText; TCheckBox *CheckBoxAntiAliasingOnImages; TCheckBox *CheckBoxAntiAliasingOnPaths; private: // User declarations public: // User declarations __fastcall TFormSettings(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TFormSettings *FormSettings; //--------------------------------------------------------------------------- #endif