mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-29 03:19:44 +00:00
ead51784dc
This addresses the Clang Tidy check [readability-static-accessed-through-instance](https://clang.llvm.org/extra/clang-tidy/checks/readability-static-accessed-through-instance.html). It also simplifies the code by reducing the number of parameters we're passing around.
45 lines
966 B
C++
45 lines
966 B
C++
#ifndef GRAPHICSPAGE_H
|
|
#define GRAPHICSPAGE_H
|
|
|
|
#include "ui_graphicspage.h"
|
|
|
|
#include <components/settings/settings.hpp>
|
|
|
|
#include "sdlinit.hpp"
|
|
|
|
namespace Files { struct ConfigurationManager; }
|
|
|
|
namespace Launcher
|
|
{
|
|
class GraphicsSettings;
|
|
|
|
class GraphicsPage : public QWidget, private Ui::GraphicsPage
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit GraphicsPage(QWidget *parent = nullptr);
|
|
|
|
void saveSettings();
|
|
bool loadSettings();
|
|
|
|
public slots:
|
|
void screenChanged(int screen);
|
|
|
|
private slots:
|
|
void slotFullScreenChanged(int state);
|
|
void slotStandardToggled(bool checked);
|
|
void slotFramerateLimitToggled(bool checked);
|
|
void slotShadowDistLimitToggled(bool checked);
|
|
|
|
private:
|
|
QVector<QStringList> mResolutionsPerScreen;
|
|
|
|
static QStringList getAvailableResolutions(int screen);
|
|
static QRect getMaximumResolution();
|
|
|
|
bool setupSDL();
|
|
};
|
|
}
|
|
#endif
|