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.
46 lines
946 B
C++
46 lines
946 B
C++
14 years ago
|
#ifndef DATAFILESPAGE_H
|
||
|
#define DATAFILESPAGE_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QModelIndex>
|
||
|
|
||
|
class QTableWidget;
|
||
|
class QTableView;
|
||
|
class QComboBox;
|
||
|
class QStandardItemModel;
|
||
|
class QItemSelection;
|
||
|
class QItemSelectionModel;
|
||
|
class QStringListModel;
|
||
|
|
||
|
class DataFilesPage : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
DataFilesPage(QWidget *parent = 0);
|
||
|
|
||
|
QComboBox *mProfileComboBox;
|
||
|
QStringListModel *mProfileModel;
|
||
|
|
||
|
public slots:
|
||
|
void masterSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
|
||
|
void setCheckstate(QModelIndex index);
|
||
|
void resizeRows();
|
||
|
|
||
|
private:
|
||
|
QTableWidget *mMastersWidget;
|
||
|
QTableView *mPluginsTable;
|
||
|
|
||
|
QStandardItemModel *mDataFilesModel;
|
||
|
QStandardItemModel *mPluginsModel;
|
||
|
|
||
|
QItemSelectionModel *mPluginsSelectModel;
|
||
|
|
||
|
void setupDataFiles();
|
||
|
void addPlugins(const QModelIndex &index);
|
||
|
void removePlugins(const QModelIndex &index);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif
|