mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 06:26:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			102 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
	
		
			2.3 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef DATAFILESPAGE_H
 | 
						|
#define DATAFILESPAGE_H
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
#include <QModelIndex>
 | 
						|
 | 
						|
#include <components/files/collections.hpp>
 | 
						|
 | 
						|
#include "combobox.hpp"
 | 
						|
 | 
						|
class QTableWidget;
 | 
						|
class QStandardItemModel;
 | 
						|
class QItemSelection;
 | 
						|
class QItemSelectionModel;
 | 
						|
class QSortFilterProxyModel;
 | 
						|
class QStringListModel;
 | 
						|
class QSettings;
 | 
						|
class QAction;
 | 
						|
class QToolBar;
 | 
						|
class QMenu;
 | 
						|
class PluginsModel;
 | 
						|
class PluginsView;
 | 
						|
class ComboBox;
 | 
						|
 | 
						|
namespace Files { struct ConfigurationManager; }
 | 
						|
 | 
						|
class DataFilesPage : public QWidget
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
    DataFilesPage(Files::ConfigurationManager& cfg, QWidget *parent = 0);
 | 
						|
 | 
						|
    ComboBox *mProfilesComboBox;
 | 
						|
 | 
						|
    void writeConfig(QString profile = QString());
 | 
						|
 | 
						|
public slots:
 | 
						|
    void masterSelectionChanged(const QItemSelection &selected, const QItemSelection &deselected);
 | 
						|
    void setCheckState(QModelIndex index);
 | 
						|
 | 
						|
    void filterChanged(const QString filter);
 | 
						|
    void showContextMenu(const QPoint &point);
 | 
						|
    void profileChanged(const QString &previous, const QString ¤t);
 | 
						|
 | 
						|
    // Action slots
 | 
						|
    void newProfile();
 | 
						|
    void copyProfile();
 | 
						|
    void deleteProfile();
 | 
						|
    void moveUp();
 | 
						|
    void moveDown();
 | 
						|
    void moveTop();
 | 
						|
    void moveBottom();
 | 
						|
    void check();
 | 
						|
    void uncheck();
 | 
						|
    void refresh();
 | 
						|
 | 
						|
private:
 | 
						|
    QTableWidget *mMastersWidget;
 | 
						|
    PluginsView *mPluginsTable;
 | 
						|
 | 
						|
    QStandardItemModel *mDataFilesModel;
 | 
						|
    PluginsModel *mPluginsModel;
 | 
						|
 | 
						|
    QSortFilterProxyModel *mPluginsProxyModel;
 | 
						|
    QItemSelectionModel *mPluginsSelectModel;
 | 
						|
 | 
						|
    QToolBar *mProfileToolBar;
 | 
						|
    QMenu *mContextMenu;
 | 
						|
 | 
						|
    QAction *mNewProfileAction;
 | 
						|
    QAction *mCopyProfileAction;
 | 
						|
    QAction *mDeleteProfileAction;
 | 
						|
 | 
						|
    QAction *mMoveUpAction;
 | 
						|
    QAction *mMoveDownAction;
 | 
						|
    QAction *mMoveTopAction;
 | 
						|
    QAction *mMoveBottomAction;
 | 
						|
    QAction *mCheckAction;
 | 
						|
    QAction *mUncheckAction;
 | 
						|
 | 
						|
    Files::ConfigurationManager &mCfgMgr;
 | 
						|
    Files::PathContainer mDataDirs;
 | 
						|
    Files::PathContainer mDataLocal;
 | 
						|
 | 
						|
    QSettings *mLauncherConfig;
 | 
						|
 | 
						|
    const QStringList checkedPlugins();
 | 
						|
    const QStringList selectedMasters();
 | 
						|
 | 
						|
    void addPlugins(const QModelIndex &index);
 | 
						|
    void removePlugins(const QModelIndex &index);
 | 
						|
    void uncheckPlugins();
 | 
						|
    void createActions();
 | 
						|
    void setupDataFiles();
 | 
						|
    void setupConfig();
 | 
						|
    void readConfig();
 | 
						|
    void scrollToSelection();
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |