2013-10-20 02:40:52 +00:00
|
|
|
// 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
|
|
|
|
|
2020-10-04 21:24:14 +00:00
|
|
|
#include "Common/Render/TextureAtlas.h"
|
2013-10-20 02:40:52 +00:00
|
|
|
#include "MiscScreens.h"
|
2013-10-20 04:12:55 +00:00
|
|
|
|
2013-10-27 05:27:25 +00:00
|
|
|
namespace UI {
|
|
|
|
class CheckBox;
|
|
|
|
}
|
|
|
|
|
2018-06-17 06:11:56 +00:00
|
|
|
struct TouchButtonToggle {
|
|
|
|
const char *key;
|
|
|
|
bool *show;
|
2020-02-29 20:51:14 +00:00
|
|
|
ImageID img;
|
2021-03-04 09:37:35 +00:00
|
|
|
std::function<UI::EventReturn(UI::EventParams&)> handle;
|
2018-06-17 06:11:56 +00:00
|
|
|
};
|
|
|
|
|
2013-10-25 11:19:08 +00:00
|
|
|
class TouchControlVisibilityScreen : public UIDialogScreenWithBackground {
|
2013-10-20 02:40:52 +00:00
|
|
|
public:
|
2017-12-04 01:49:49 +00:00
|
|
|
void CreateViews() override;
|
|
|
|
void onFinish(DialogResult result) override;
|
2013-10-20 02:40:52 +00:00
|
|
|
|
2022-09-16 08:14:00 +00:00
|
|
|
const char *tag() const override { return "TouchControlVisibility"; }
|
|
|
|
|
2013-10-20 02:40:52 +00:00
|
|
|
protected:
|
2017-12-04 01:49:49 +00:00
|
|
|
UI::EventReturn OnToggleAll(UI::EventParams &e);
|
2013-10-20 02:40:52 +00:00
|
|
|
|
|
|
|
private:
|
2018-06-17 06:11:56 +00:00
|
|
|
std::vector<TouchButtonToggle> toggles_;
|
|
|
|
bool nextToggleAll_ = true;
|
2013-10-20 03:14:51 +00:00
|
|
|
};
|
2019-11-13 17:55:18 +00:00
|
|
|
|
|
|
|
class RightAnalogMappingScreen : public UIDialogScreenWithBackground {
|
|
|
|
public:
|
|
|
|
void CreateViews() override;
|
2022-09-16 08:14:00 +00:00
|
|
|
|
|
|
|
const char *tag() const override { return "RightAnalogMapping"; }
|
2019-11-13 17:55:18 +00:00
|
|
|
};
|