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

📄 smsgui.cpp

📁 sms发送短信的程序
💻 CPP
字号:
/*   * 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.   */#include "SMSGui.h"#include <iostream>// Construct a SMSWindowSMSWindow::SMSWindow(FXApp *a):FXMainWindow(a,"Wysy砤cz SMS體",NULL,NULL,DECOR_TITLE|DECOR_CLOSE|DECOR_BORDER|DECOR_MINIMIZE,0,0,200,400,1,1,1,1){ new FXToolTip(a); normalFont= new FXFont(a,"verdana,100,normal,normal,normal,iso8859-2,0"); a->setNormalFont(normalFont); FXVerticalFrame *vf = new FXVerticalFrame(this,LAYOUT_FILL,0,0,0,0,0,0,1,1,1,1);  menu      = new FXMenuBar(vf,/*LAYOUT_SIDE_TOP|*/LAYOUT_FILL_X); mainFrame = new FXVerticalFrame(vf,/*LAYOUT_SIDE_TOP|*/FRAME_SUNKEN|LAYOUT_FILL,0,0,0,0,0,0,2,2,2,2); lista     = new FXList(mainFrame,this,ID_SMS_LISTA,/*LAYOUT_SIDE_TOP|*/LAYOUT_FILL|FRAME_SUNKEN|LIST_BROWSESELECT/*,0,0,0,0*/); status    = new FXStatusBar(vf,/*LAYOUT_SIDE_BOTTOM|*/LAYOUT_FILL_X|STATUSBAR_WITH_DRAGCORNER,0,0,0,0, 0,0,0,0); status->getStatusLine()->setNormalText("SMS sender"); contacts  = new FXMenuPane(this); tools     = new FXMenuPane(this); help      = new FXMenuPane(this);              new FXMenuTitle(menu,"&Kontakt", NULL,contacts);             new FXMenuCommand(contacts,"&Dodaj",  NULL,this,ID_SMS_DODAJ,LAYOUT_SIDE_LEFT|LAYOUT_LEFT|BUTTON_NORMAL|BUTTON_TOOLBAR);             new FXMenuCommand(contacts,"&Zmie

⌨️ 快捷键说明

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