📄 smsedit.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 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -