leocad/common/lc_selectbycolordialog.h
2017-07-19 14:20:32 -07:00

23 lines
314 B
C++

#pragma once
#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;
};