You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
428 B
C++

#ifndef COLUMNDIALOG_H
#define COLUMNDIALOG_H
#include <QDialog>
#include <QObject>
#include <QTableView>
#include <QList>
namespace Ui {
class ColumnDialog;
}
class ColumnDialog : public QDialog
{
Q_OBJECT
public:
explicit ColumnDialog(QWidget *parent = 0);
~ColumnDialog();
void setTable(QTableView *table);
QList<int> columnsToHide();
private:
Ui::ColumnDialog *ui;
};
#endif // COLUMNDIALOG_H