vreply.h
来自「源码PonyProg2000-2.07a.tar.gz」· C头文件 代码 · 共 40 行
H
40 行
//===============================================================// vreply.h - reply modal dialog - Windows//// Copyright (C) 1995,1996 Bruce E. Wampler//// This file is part of the V C++ GUI Framework, and is covered// under the terms of the GNU Library General Public License,// Version 2. This library has NO WARRANTY. See the source file// vapp.cxx for more complete information about license terms.//===============================================================#ifndef VREPLY_H#define VREPLY_H#include <v/vmodald.h> class V_EXPORT vApp; class V_EXPORT vReplyDialog : protected vModalDialog { public: //---------------------------------------- public vReplyDialog(vBaseWindow* bw, VCONST char* title = "Reply") : vModalDialog(bw, title) { added = 0;} vReplyDialog(vApp* aw, VCONST char* title = "Reply") : vModalDialog(aw, title) {added = 0;} ~vReplyDialog() {} int Reply(VCONST char* msg, char* reply, int maxlen, VCONST char* dflt = ""); protected: //--------------------------------------- protected private: //--------------------------------------- private virtual void DialogCommand(ItemVal id, ItemVal val, CmdType ctype); int added; virtual void DialogDisplayed(); // TEH Dec97 };#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?