mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 07:56:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
	
		
			2.1 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef DATAFILESPAGE_H
 | 
						|
#define DATAFILESPAGE_H
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
#include <QModelIndex>
 | 
						|
 | 
						|
#include "ui_datafilespage.h"
 | 
						|
 | 
						|
class QSortFilterProxyModel;
 | 
						|
class QAbstractItemModel;
 | 
						|
class QAction;
 | 
						|
class QMenu;
 | 
						|
 | 
						|
class DataFilesModel;
 | 
						|
class TextInputDialog;
 | 
						|
class GameSettings;
 | 
						|
class LauncherSettings;
 | 
						|
class PluginsProxyModel;
 | 
						|
 | 
						|
namespace Files { struct ConfigurationManager; }
 | 
						|
 | 
						|
class DataFilesPage : public QWidget, private Ui::DataFilesPage
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
    DataFilesPage(Files::ConfigurationManager &cfg, GameSettings &gameSettings, LauncherSettings &launcherSettings, QWidget *parent = 0);
 | 
						|
 | 
						|
    QAbstractItemModel* profilesComboBoxModel();
 | 
						|
    int profilesComboBoxIndex();
 | 
						|
 | 
						|
    void writeConfig(QString profile = QString());
 | 
						|
    void saveSettings();
 | 
						|
 | 
						|
signals:
 | 
						|
    void profileChanged(int index);
 | 
						|
 | 
						|
public slots:
 | 
						|
    void setCheckState(QModelIndex index);
 | 
						|
    void setProfilesComboBoxIndex(int index);
 | 
						|
 | 
						|
    void filterChanged(const QString filter);
 | 
						|
    void showContextMenu(const QPoint &point);
 | 
						|
    void profileChanged(const QString &previous, const QString ¤t);
 | 
						|
    void profileRenamed(const QString &previous, const QString ¤t);
 | 
						|
    void updateOkButton(const QString &text);
 | 
						|
    void updateSplitter();
 | 
						|
    void updateViews();
 | 
						|
 | 
						|
    // Action slots
 | 
						|
    void on_newProfileAction_triggered();
 | 
						|
    void on_deleteProfileAction_triggered();
 | 
						|
    void on_checkAction_triggered();
 | 
						|
    void on_uncheckAction_triggered();
 | 
						|
 | 
						|
private slots:
 | 
						|
    void slotCurrentIndexChanged(int index);
 | 
						|
 | 
						|
private:
 | 
						|
    DataFilesModel *mDataFilesModel;
 | 
						|
 | 
						|
    PluginsProxyModel *mPluginsProxyModel;
 | 
						|
    QSortFilterProxyModel *mMastersProxyModel;
 | 
						|
 | 
						|
    QSortFilterProxyModel *mFilterProxyModel;
 | 
						|
 | 
						|
    QMenu *mContextMenu;
 | 
						|
 | 
						|
    Files::ConfigurationManager &mCfgMgr;
 | 
						|
 | 
						|
    GameSettings &mGameSettings;
 | 
						|
    LauncherSettings &mLauncherSettings;
 | 
						|
 | 
						|
    TextInputDialog *mNewProfileDialog;
 | 
						|
 | 
						|
    void setMastersCheckstates(Qt::CheckState state);
 | 
						|
    void setPluginsCheckstates(Qt::CheckState state);
 | 
						|
 | 
						|
    void createActions();
 | 
						|
    void setupDataFiles();
 | 
						|
    void setupConfig();
 | 
						|
    void readConfig();
 | 
						|
 | 
						|
    void loadSettings();
 | 
						|
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |