mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
23 lines
314 B
C++
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;
|
|
};
|
|
|