26 lines
369 B
C
26 lines
369 B
C
|
// 基本颜色区域
|
||
|
|
||
|
#ifndef BASICCOLORAREA_H
|
||
|
#define BASICCOLORAREA_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include "BasicColorItem.h"
|
||
|
|
||
|
class BasicColorArea : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
BasicColorArea(QWidget *parent);
|
||
|
~BasicColorArea();
|
||
|
void initColorItems(bool bAlpha);
|
||
|
|
||
|
signals:
|
||
|
void colorItemSelcSignal(const QColor &);
|
||
|
|
||
|
private:
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // BASICCOLORAREA_H
|