⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 q_dialog.hpp

📁 QCurses全部代码 QCurses全部代码
💻 HPP
字号:
/*#######################################################   程序名:Q_Dialog                                   ##   源文件:Q_Dialog.cpp                               ##   说 明:对话框定义                                 ##   函数库:qcurses.so                                 ##   建立日:2004-12-14                                 ##   更新日:                                           ##   制作人:邱洋(Q龙)                                  #######################################################*/#include   "qcurses.hpp"#ifndef    _Q_DIALOG_HPP#define    _Q_DIALOG_HPPclass Q_Dialog{	public:	public:		Q_Dialog(char *appname);               //构造函数		~Q_Dialog();                           //析构函数		void    KeyGo(int  &NowSelect, int &Keys, int MaxActive);  //控制控件之间的切换,参数:当前应该选择、控件键值、最大控件数		char    *DialogName(){ return _DialogName; }		virtual bool  Execute() {};            //虚拟运行函数	protected:		char    *_DialogName;};#endif

⌨️ 快捷键说明

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