📄 settingsdialog.h
字号:
/** @file settingsdialog.h * * Settings dialog * * Copyright 2003 Petteri Kangaslampi * * See license.txt for full copyright and license information.*/#ifndef __SETTINGSDIALOG_H__#define __SETTINGSDIALOG_H__#include <e32std.h>#include <eikdialg.h>#include <eikcmobs.h>extern "C" {#include "putty.h" // struct Config}/** * Settings dialog. Prompts the user to enter various PuTTY configuration * settings. Uses the resource structure R_SETTINGS_DIALOG. */class CSettingsDialog : public CEikDialog { public: /** * Constructor. * @param aConfig PuTTY configuration to use and modify. */ CSettingsDialog(Config *aConfig); void PreLayoutDynInitL(); TBool OkToExitL(TInt aButtonId); void LineChangedL(TInt aControlId); void PrepareForFocusTransitionL();private: Config *iConfig; TBool iKeyLine;};#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -