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

📄 smsgui.h

📁 sms发送短信的程序
💻 H
字号:
/*   * Written By S砤womir Szczyrba <steev@hot.pl>  * All rights reserved. No warrenties, use at your own risk.   * This source is distributed under the GNU GENERAL PUBLIC LICENCE,   * see the file "COPYING" for more information.   */#ifndef _SMSGui_H#define _SMSGui_H//#include <iostream>#include <fox-1.4/fx.h>#include <fox-1.4/FXPNGIcon.h>#include "SMSAbout.h"#include "SMSConfig.h"#include "SMSNew.h"#include "SMSEdit.h"#include "SMSEra.h"#include "SMSIdea.h"#include "SMSMiastoPlusa.h"// Main Windowclass SMSWindow : public FXMainWindow {  // Macro for class hierarchy declarations  FXDECLARE(SMSWindow)private:  FXVerticalFrame *mainFrame;  FXMenuBar       *menu;  FXMenuPane      *contacts;  FXMenuPane      *tools;  FXMenuPane      *help;  FXStatusBar     *status;  FXList          *lista;  FXFont	  *normalFont;  SMSAbout        *about;  SMSConfig	  *config;  SMSNew          *addNew;  SMSEdit         *edit;    SMSEra          *era;  SMSIdea         *idea;    SMSMiastoPlusa  *plus;protected:  SMSWindow(){}public:  long voidfunc(FXObject*,FXSelector,void*) {return 1;};  long onCmdNew(FXObject*,FXSelector,void*);  long onCmdDel(FXObject*,FXSelector,void*);  long onCmdEdit(FXObject*,FXSelector,void*);  long onCmdSend(FXObject*,FXSelector,void*);  long onCmdConfig(FXObject*,FXSelector,void*);  long onCmdAbout(FXObject*,FXSelector,void*);  long onListChange(FXObject*,FXSelector,void*);  // SMSWindow's constructor  SMSWindow(FXApp* a);  ~SMSWindow(void);  // Initialize  virtual void create();  enum { ID_SMS_DODAJ=FXMainWindow::ID_LAST,         ID_SMS_SKASUJ,	 ID_SMS_LISTA,	 ID_SMS_KONFIG,	 ID_SMS_OPIS,	 ID_SMS_ZMIEN,         ID_LAST  };};#endif /* _SMSGui_H */

⌨️ 快捷键说明

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