--- a/QTfrontend/gameuiconfig.h Sun Oct 28 15:18:26 2012 +0100
+++ b/QTfrontend/gameuiconfig.h Fri Dec 06 22:20:53 2019 +0100
@@ -1,6 +1,6 @@
/*
* Hedgewars, a free turn based strategy game
- * Copyright (c) 2004-2012 Andrey Korotaev <unC0Rr@gmail.com>
+ * Copyright (c) 2004-2015 Andrey Korotaev <unC0Rr@gmail.com>
*
* 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
@@ -13,7 +13,7 @@
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#ifndef GAMECONFIG_H
@@ -23,6 +23,9 @@
#include <QStringList>
#include <QRect>
#include <QEvent>
+#include <QList>
+#include <utility>
+#include "binds.h"
class HWForm;
class QSettings;
@@ -36,6 +39,9 @@
GameUIConfig(HWForm * FormWidgets, const QString & fileName);
QStringList GetTeamsList();
QRect vid_Resolution();
+ std::pair<QRect, QRect> vid_ResolutionPair();
+ bool vid_Maximized();
+ void vid_SetMaximized(bool isMaximized);
bool vid_Fullscreen();
quint32 translateQuality();
bool isSoundEnabled();
@@ -43,21 +49,35 @@
QString language();
bool isMusicEnabled();
bool isFrontendMusicEnabled();
+ bool isAudioDampenEnabled();
bool isShowFPSEnabled();
bool isAltDamageEnabled();
bool appendDateTimeToRecordName();
quint8 volume();
quint8 timerInterval();
- quint8 bitDepth();
QString netNick();
+ QString getRandomNick();
QByteArray netPasswordHash();
int netPasswordLength();
+ void clearPasswordHash();
+ void setPasswordHash(const QString & passwordhash);
+ QString passwordHash();
+ void clearTempHash();
+ void setTempHash(const QString & temphash);
+ QString tempHash();
void setNetPasswordLength(int passwordLength);
bool isReducedQuality() const;
bool isFrontendEffects() const;
bool isFrontendFullscreen() const;
+ quint16 zoom();
+ bool isHolidaySillinessEnabled() const;
+ int quickGameExperience() const;
+ void setQuickGameExperience(int exp);
void resizeToConfigValues();
quint32 stereoMode() const;
+ void setValue(const QString & key, const QVariant & value);
+ QString bind(int bindID);
+ void setBind(int bindID, QString & strbind);
QString AVFormat();
QString videoCodec();
@@ -85,7 +105,13 @@
private:
bool netPasswordIsValid();
bool eventFilter(QObject *object, QEvent *event);
- quint8 depth;
+ QString temphash;
+ QList<BindAction> m_binds;
+
+ void applyProxySettings();
+ bool pIsEngineWindowMaximized;
+
+ QString cachedRandomNick;
};
#endif