leocad/common/lc_selectbycolordialog.h

24 lines
323 B
C
Raw Normal View History

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