leocad/common/lc_selectbycolordialog.h

26 lines
378 B
C
Raw Normal View History

#ifndef _LC_SELECTBYCOLORDIALOG_H_
#define _LC_SELECTBYCOLORDIALOG_H_
#include "lc_array.h"
class lcQColorPicker;
class lcSelectByColorDialog : public QDialog
{
public:
Q_OBJECT
public:
lcSelectByColorDialog(QWidget* Parent, int ColorIndex);
~lcSelectByColorDialog();
int mColorIndex;
public slots:
void accept();
protected:
lcQColorPicker* mColorPicker;
};
#endif