ppsspp/UI/GameSettingsScreen.h

83 lines
2.3 KiB
C
Raw Normal View History

// Copyright (c) 2013- PPSSPP Project.
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, version 2.0 or later versions.
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include "ui/ui_screen.h"
2013-07-21 11:31:46 +00:00
#include "UI/MiscScreens.h"
// Per-game settings screen - enables you to configure graphic options, control options, etc
// per game.
2013-07-21 11:31:46 +00:00
class GameSettingsScreen : public UIScreenWithBackground {
public:
2013-07-21 11:31:46 +00:00
GameSettingsScreen(std::string gamePath, std::string gameID = "") : gamePath_(gamePath), gameID_(gameID) {}
virtual void update(InputState &input);
protected:
virtual void CreateViews();
virtual void DrawBackground(UIContext &dc);
private:
std::string gamePath_, gameID_;
// As we load metadata in the background, we need to be able to update these after the fact.
UI::TextView *tvTitle_;
UI::TextView *tvGameSize_;
2013-07-17 23:04:11 +00:00
2013-07-20 14:03:52 +00:00
// Event handlers
UI::EventReturn OnDownloadPlugin(UI::EventParams &e);
UI::EventReturn OnControlMapping(UI::EventParams &e);
2013-07-20 14:03:52 +00:00
2013-07-17 23:04:11 +00:00
// Temporaries to convert bools to int settings
bool cap60FPS_;
};
// TODO: Move to its own file.
2013-07-21 11:31:46 +00:00
class GlobalSettingsScreen : public UIScreenWithBackground {
public:
GlobalSettingsScreen() {}
protected:
virtual void CreateViews();
private:
// Event handlers
UI::EventReturn OnLanguage(UI::EventParams &e);
UI::EventReturn OnFactoryReset(UI::EventParams &e);
UI::EventReturn OnBack(UI::EventParams &e);
2013-07-18 09:39:54 +00:00
UI::EventReturn OnDeveloperTools(UI::EventParams &e);
// Temporaries to convert bools to other kinds of settings
bool enableReports_;
};
2013-07-21 11:31:46 +00:00
class DeveloperToolsScreen : public UIScreenWithBackground {
2013-07-18 09:39:54 +00:00
public:
DeveloperToolsScreen() {}
protected:
virtual void CreateViews();
private:
UI::EventReturn OnBack(UI::EventParams &e);
UI::EventReturn OnRunCPUTests(UI::EventParams &e);
// Temporary variable.
bool enableLogging_;
};