mirror of
https://github.com/leozide/leocad
synced 2024-12-26 21:58:44 +01:00
39 lines
684 B
C++
39 lines
684 B
C++
#ifndef _LC_QSELECTDIALOG_H_
|
|
#define _LC_QSELECTDIALOG_H_
|
|
|
|
#include <QDialog>
|
|
struct lcSelectDialogOptions;
|
|
|
|
namespace Ui {
|
|
class lcQSelectDialog;
|
|
}
|
|
|
|
class lcQSelectDialog : public QDialog
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit lcQSelectDialog(QWidget *parent, void *data);
|
|
~lcQSelectDialog();
|
|
|
|
lcSelectDialogOptions *options;
|
|
|
|
enum
|
|
{
|
|
IndexRole = Qt::UserRole
|
|
};
|
|
|
|
public slots:
|
|
void accept();
|
|
void on_selectAll_clicked();
|
|
void on_selectNone_clicked();
|
|
void on_selectInvert_clicked();
|
|
void itemChanged(QTreeWidgetItem *item, int column);
|
|
|
|
private:
|
|
Ui::lcQSelectDialog *ui;
|
|
|
|
void AddChildren(QTreeWidgetItem* ParentItem, lcGroup* ParentGroup);
|
|
};
|
|
|
|
#endif // _LC_QSELECTDIALOG_H_
|