mirror of
				https://github.com/OpenMW/openmw.git
				synced 2025-11-04 05:56:39 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			69 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			69 lines
		
	
	
	
		
			1.4 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#ifndef GRAPHICSPAGE_H
 | 
						|
#define GRAPHICSPAGE_H
 | 
						|
 | 
						|
#include <QWidget>
 | 
						|
 | 
						|
#include <OgreRoot.h>
 | 
						|
#include <OgreRenderSystem.h>
 | 
						|
#include <OgreConfigFile.h>
 | 
						|
#include <OgreConfigDialog.h>
 | 
						|
 | 
						|
// Static plugin headers
 | 
						|
#ifdef ENABLE_PLUGIN_GL
 | 
						|
# include "OgreGLPlugin.h"
 | 
						|
#endif
 | 
						|
#ifdef ENABLE_PLUGIN_Direct3D9
 | 
						|
# include "OgreD3D9Plugin.h"
 | 
						|
#endif
 | 
						|
 | 
						|
class QComboBox;
 | 
						|
class QCheckBox;
 | 
						|
class QStackedWidget;
 | 
						|
class QSettings;
 | 
						|
 | 
						|
namespace Files { struct ConfigurationManager; }
 | 
						|
 | 
						|
class GraphicsPage : public QWidget
 | 
						|
{
 | 
						|
    Q_OBJECT
 | 
						|
 | 
						|
public:
 | 
						|
    GraphicsPage(Files::ConfigurationManager &cfg, QWidget *parent = 0);
 | 
						|
 | 
						|
    void writeConfig();
 | 
						|
 | 
						|
public slots:
 | 
						|
    void rendererChanged(const QString &renderer);
 | 
						|
 | 
						|
private:
 | 
						|
    Ogre::Root *mOgre;
 | 
						|
    Ogre::RenderSystem *mSelectedRenderSystem;
 | 
						|
    Ogre::RenderSystem *mOpenGLRenderSystem;
 | 
						|
    Ogre::RenderSystem *mDirect3DRenderSystem;
 | 
						|
 	#ifdef ENABLE_PLUGIN_GL
 | 
						|
 	Ogre::GLPlugin* mGLPlugin;
 | 
						|
 	#endif
 | 
						|
	#ifdef ENABLE_PLUGIN_Direct3D9
 | 
						|
 	Ogre::D3D9Plugin* mD3D9Plugin;
 | 
						|
 	#endif
 | 
						|
 | 
						|
    QComboBox *mRendererComboBox;
 | 
						|
 | 
						|
    QStackedWidget *mDisplayStackedWidget;
 | 
						|
 | 
						|
    QComboBox *mAntiAliasingComboBox;
 | 
						|
    QComboBox *mResolutionComboBox;
 | 
						|
    QCheckBox *mVSyncCheckBox;
 | 
						|
    QCheckBox *mFullScreenCheckBox;
 | 
						|
 | 
						|
    Files::ConfigurationManager &mCfgMgr;
 | 
						|
 | 
						|
    QStringList getAvailableOptions(const QString &key, Ogre::RenderSystem *renderer);
 | 
						|
 | 
						|
    void createPages();
 | 
						|
    void setupConfig();
 | 
						|
    void setupOgre();
 | 
						|
    void readConfig();
 | 
						|
};
 | 
						|
 | 
						|
#endif
 |