leocad/common/lc_selectbycolordialog.h
2020-03-22 15:44:41 -07:00

23 lines
323 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() override;
protected:
lcQColorPicker* mColorPicker;
};