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