1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-30 08:57:00 +02:00
vcmi/client/windows/settings/GeneralOptionsTab.h
2023-06-20 19:58:05 +03:00

41 lines
891 B
C++

/*
* GeneralOptionsTab.h, part of VCMI engine
*
* Authors: listed in file AUTHORS in main folder
*
* License: GNU General Public License v2.0 or later
* Full text of license available in license.txt file, in main folder
*
*/
#pragma once
#include "../../../lib/CConfigHandler.h"
#include "../../gui/InterfaceObjectConfigurable.h"
class GeneralOptionsTab : public InterfaceObjectConfigurable
{
private:
SettingsListener onFullscreenChanged;
std::vector<Point> supportedResolutions;
std::vector<int> supportedScaling;
std::vector<int> longTouchDurations;
void setFullscreenMode( bool on, bool exclusive);
void selectGameResolution();
void setGameResolution(int index);
void selectGameScaling();
void setGameScaling(int index);
void selectLongTouchDuration();
void setLongTouchDuration(int index);
public:
GeneralOptionsTab();
void updateResolutionSelector();
};