📄 setting.h
字号:
#ifndef SettingH
#define SettingH
#include <Classes.hpp>
#include <Controls.hpp>
#include <StdCtrls.hpp>
#include <Forms.hpp>
#include <Buttons.hpp>
#include <ComCtrls.hpp>
#include <Dialogs.hpp>
#include <Mask.hpp>
#include <Inifiles.hpp>
#include <Registry.hpp>
class TSettingForm : public TForm
{
__published: // IDE-managed Components
TGroupBox *GroupBox1;
TLabel *Label1;
TLabel *Label2;
TEdit *edt_Port;
TGroupBox *GroupBox2;
TCheckBox *cb_NotifyPopwin;
TCheckBox *cb_NotifyIconFlash;
TCheckBox *cb_NotifyPlaySound;
TEdit *edt_SoundFile;
TSpeedButton *btn_Open;
TSpeedButton *btn_Play;
TOpenDialog *OpenDlg;
TGroupBox *GroupBox3;
TLabel *Label3;
TTrackBar *tb_RefreshTime;
TLabel *Label4;
TCheckBox *cb_EncryptTrans;
TButton *btn_Cancel;
TButton *btn_Ok;
TButton *btn_Default;
TEdit *edt_HostName;
TCheckBox *cb_AutoRun;
void __fastcall btn_DefaultClick(TObject *Sender);
void __fastcall FormCreate(TObject *Sender);
void __fastcall btn_OkClick(TObject *Sender);
void __fastcall btn_OpenClick(TObject *Sender);
void __fastcall btn_CancelClick(TObject *Sender);
void __fastcall cb_NotifyPlaySoundClick(TObject *Sender);
void __fastcall btn_PlayClick(TObject *Sender);
private: // User declarations
public: // User declarations
__fastcall TSettingForm(TComponent* Owner);
};
extern PACKAGE TSettingForm *SettingForm;
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -