settingsdialog.h
来自「大名鼎鼎的远程登录软件putty的Symbian版源码」· C头文件 代码 · 共 46 行
H
46 行
/** @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 + =
减小字号Ctrl + -
显示快捷键?