?? previewlabel.h
字號:
//// C++ Interface: previewlabel//// Description: ////// Author: zeki <czm@zeki>, (C) 2007//// Copyright: See COPYING file that comes with this distribution////#ifndef PREVIEWLABEL_H#define previewlabel#include <QtGui>class PreviewLabel : public QLabel{ Q_OBJECT public: PreviewLabel(QWidget *parent = 0);public slots: void penChanged(QPen& pen); void brushChanged(QBrush& brush);protected: void paintEvent(QPaintEvent *event);private: QPen curPen; QBrush curBrush;};#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -