?? mainwidget.h
字號:
#ifndef MAINWIDGET_H
#define MAINWIDGET_H
#include "paintarea.h"
class MainWidget : public QWidget
{
Q_OBJECT
public:
MainWidget(QWidget *parent=0);
void createCtrlWidget();
public slots:
void slotPenColor();
void slotBrushColor();
void slotFillRule();
void slotPenWidth(int);
private:
PaintArea *area;
QWidget *ctrlWidget;
QComboBox *fillRuleComboBox;
QFrame *penColorFrame;
QFrame *brushColorFrame;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -