?? paintarea.h
字號:
#ifndef PAINTAREA_H
#define PAINTAREA_H
#include <QtGui>
class PaintArea : public QWidget
{
Q_OBJECT
public:
enum Shape {Line,Rectangle,RoundRect,Ellipse,Polygon,Polyline,Points,Arc,Path,Text,Pixmap};
PaintArea(QWidget *parent=0);
void setShape(Shape);
void setPen(QPen);
void setBrush(QBrush);
void paintEvent(QPaintEvent *);
private:
Shape shape;
QBrush brush;
QPen pen;
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -