mirror of
https://github.com/FunkyFr3sh/cnc-ddraw.git
synced 2025-03-15 06:04:49 +01:00
rename to Advanced Settings
This commit is contained in:
parent
1f7909990c
commit
8f5a11dd8c
@ -28,13 +28,13 @@ __fastcall TConfigForm::TConfigForm(TComponent* Owner)
|
||||
void __fastcall TConfigForm::DisplayBtnClick(TObject *Sender)
|
||||
{
|
||||
DisplayPnl->Visible = true;
|
||||
AdvDisplayPnl->Visible = false;
|
||||
AdvancedPnl->Visible = false;
|
||||
CompatibilityPnl->Visible = false;
|
||||
}
|
||||
|
||||
void __fastcall TConfigForm::AdvDisplayBtnClick(TObject *Sender)
|
||||
void __fastcall TConfigForm::AdvancedBtnClick(TObject *Sender)
|
||||
{
|
||||
AdvDisplayPnl->Visible = true;
|
||||
AdvancedPnl->Visible = true;
|
||||
DisplayPnl->Visible = false;
|
||||
CompatibilityPnl->Visible = false;
|
||||
}
|
||||
@ -42,7 +42,7 @@ void __fastcall TConfigForm::AdvDisplayBtnClick(TObject *Sender)
|
||||
void __fastcall TConfigForm::CompatibilityBtnClick(TObject *Sender)
|
||||
{
|
||||
CompatibilityPnl->Visible = true;
|
||||
AdvDisplayPnl->Visible = false;
|
||||
AdvancedPnl->Visible = false;
|
||||
DisplayPnl->Visible = false;
|
||||
}
|
||||
|
||||
|
@ -2682,7 +2682,7 @@ object ConfigForm: TConfigForm
|
||||
OnCreate = FormCreate
|
||||
PixelsPerInch = 96
|
||||
TextHeight = 13
|
||||
object AdvDisplayPnl: TPanel
|
||||
object AdvancedPnl: TPanel
|
||||
Left = 191
|
||||
Top = 8
|
||||
Width = 499
|
||||
@ -3239,13 +3239,13 @@ object ConfigForm: TConfigForm
|
||||
StyleElements = [seFont, seBorder]
|
||||
OnClick = DisplayBtnClick
|
||||
end
|
||||
object AdvDisplayBtn: TSpeedButton
|
||||
object AdvancedBtn: TSpeedButton
|
||||
Left = 8
|
||||
Top = 55
|
||||
Width = 171
|
||||
Height = 41
|
||||
Anchors = [akLeft, akTop, akRight]
|
||||
Caption = 'Adv. Display Settings'
|
||||
Caption = 'Advanced Settings'
|
||||
Flat = True
|
||||
Font.Charset = DEFAULT_CHARSET
|
||||
Font.Color = clWhite
|
||||
@ -3253,7 +3253,7 @@ object ConfigForm: TConfigForm
|
||||
Font.Name = 'Segoe UI'
|
||||
Font.Style = [fsBold]
|
||||
ParentFont = False
|
||||
OnClick = AdvDisplayBtnClick
|
||||
OnClick = AdvancedBtnClick
|
||||
end
|
||||
object CompatibilityBtn: TSpeedButton
|
||||
Left = 8
|
||||
|
@ -18,9 +18,9 @@ __published: // Von der IDE verwaltete Komponenten
|
||||
TPanel *MenuPnl;
|
||||
TPanel *DisplayPnl;
|
||||
TSpeedButton *DisplayBtn;
|
||||
TSpeedButton *AdvDisplayBtn;
|
||||
TSpeedButton *AdvancedBtn;
|
||||
TSpeedButton *CompatibilityBtn;
|
||||
TPanel *AdvDisplayPnl;
|
||||
TPanel *AdvancedPnl;
|
||||
TPanel *CompatibilityPnl;
|
||||
TComboBox *PresentationCbx;
|
||||
TLabel *PresentationLbl;
|
||||
@ -61,7 +61,7 @@ __published: // Von der IDE verwaltete Komponenten
|
||||
TPaintBox *ShaderPbox;
|
||||
TPaintBox *MaxfpsPbox;
|
||||
void __fastcall DisplayBtnClick(TObject *Sender);
|
||||
void __fastcall AdvDisplayBtnClick(TObject *Sender);
|
||||
void __fastcall AdvancedBtnClick(TObject *Sender);
|
||||
void __fastcall CompatibilityBtnClick(TObject *Sender);
|
||||
void __fastcall FormCreate(TObject *Sender);
|
||||
void __fastcall PresentationCbxChange(TObject *Sender);
|
||||
|
Loading…
x
Reference in New Issue
Block a user