smsedit.h
来自「sms发送短信的程序」· C头文件 代码 · 共 43 行
H
43 行
/* * 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 SMSEdit_H #define SMSEdit_H#include <fox-1.4/fx.h>#include <fox-1.4/FXPNGIcon.h>class FXAPI SMSEdit : public FXWizard{FXDECLARE(SMSEdit)private: FXText *text; FXTextField *signature; FXGroupBox *frame; FXPNGIcon *icon;protected: SMSEdit(){}public: long onChanged(FXObject*,FXSelector,void*); long onTimeout(FXObject*,FXSelector,void*); SMSEdit(FXApp * app); ~SMSEdit(); FXString getText(void) { return text->getText(); } FXString getSignature(void) { return signature->getText(); } void setSignature(FXString sig) { signature->setText(sig.text()); } virtual FXuint execute(FXuint placement=PLACEMENT_CURSOR); enum { ID_SMSEDIT_MSGCHANGED=FXMainWindow::ID_LAST, ID_SMSEDIT_SIGCHANGED, ID_SMSEDIT_TIMEOUT, ID_LAST };};#endif /* SMSEdit_H */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?