//--------------------------------------------------------------------------- #ifndef ConfigFormUnitH #define ConfigFormUnitH //--------------------------------------------------------------------------- #include #include #include #include #include #include #include #include //--------------------------------------------------------------------------- class TConfigForm : public TForm { __published: // Von der IDE verwaltete Komponenten TPanel *MenuPnl; TPanel *DisplayPnl; TSpeedButton *DisplayBtn; TSpeedButton *AdvDisplayBtn; TSpeedButton *CompatibilityBtn; TPanel *AdvDisplayPnl; TPanel *CompatibilityPnl; TComboBox *PresentationCbx; TLabel *PresentationLbl; TLabel *AspectRatioLbl; TToggleSwitch *AspectRatioChk; TLabel *VsyncLbl; TToggleSwitch *VsyncChk; TLabel *AdjmouseLbl; TToggleSwitch *AdjmouseChk; TLabel *DevmodeLbl; TToggleSwitch *DevmodeChk; TComboBox *RendererCbx; TLabel *RendererLbl; TLabel *BorderLbl; TToggleSwitch *BorderChk; TLabel *SavesettingsLbl; TToggleSwitch *SavesettingsChk; TComboBox *ShaderCbx; TLabel *ShaderLbl; TLabel *MaxfpsLbl; TToggleSwitch *MaxfpsChk; TLabel *BoxingLbl; TToggleSwitch *BoxingChk; void __fastcall DisplayBtnClick(TObject *Sender); void __fastcall AdvDisplayBtnClick(TObject *Sender); void __fastcall CompatibilityBtnClick(TObject *Sender); private: // Benutzer-Deklarationen public: // Benutzer-Deklarationen __fastcall TConfigForm(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TConfigForm *ConfigForm; //--------------------------------------------------------------------------- #endif