connectiondialog.h

来自「大名鼎鼎的远程登录软件putty的Symbian版源码」· C头文件 代码 · 共 41 行

H
41
字号
/** @file connectiondialog.h * * Connection open dialog * * Copyright 2002 Petteri Kangaslampi * * See license.txt for full copyright and license information.*/#ifndef __CONNECTIONDIALOG_H__#define __CONNECTIONDIALOG_H__#include <e32std.h>#include <eikdialg.h>/** * Connection open dialog. Prompts the user to enter the information * needed to set up the connection. Uses the resource structure * R_CONNECTION_DIALOG. */class CConnectionDialog : public CEikDialog {    public:    /**      * Constructor.     * @param aHostName Target descriptor for the host name entered by     * the user.     */    CConnectionDialog(TDes &aHostName);        void PreLayoutDynInitL();    TBool OkToExitL(TInt aKeycode);private:    TDes *iHostName;};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?