2014-05-30 08:53:19 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 10:47:38 +00:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
Telegram Desktop 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, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
It 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 for more details.
|
|
|
|
|
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2014-12-01 10:47:38 +00:00
|
|
|
Copyright (c) 2014 John Preston, https://desktop.telegram.org
|
2014-05-30 08:53:19 +00:00
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
extern bool gDebug;
|
|
|
|
inline bool cDebug() {
|
2014-10-25 09:25:18 +00:00
|
|
|
#if defined _DEBUG
|
2014-05-30 08:53:19 +00:00
|
|
|
return true;
|
2014-10-25 09:25:18 +00:00
|
|
|
#elif defined _WITH_DEBUG
|
2014-05-30 08:53:19 +00:00
|
|
|
return gDebug;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
inline void cSetDebug(bool debug) {
|
|
|
|
gDebug = debug;
|
|
|
|
}
|
|
|
|
|
|
|
|
extern bool gTestMode;
|
|
|
|
inline bool cTestMode() {
|
|
|
|
#ifdef _DEBUG
|
|
|
|
return gTestMode;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DeclareReadSetting(Type, Name) extern Type g##Name; \
|
|
|
|
inline const Type &c##Name() { \
|
|
|
|
return g##Name; \
|
|
|
|
}
|
|
|
|
|
|
|
|
#define DeclareSetting(Type, Name) DeclareReadSetting(Type, Name) \
|
|
|
|
inline void cSet##Name(const Type &Name) { \
|
|
|
|
g##Name = Name; \
|
|
|
|
}
|
|
|
|
|
|
|
|
DeclareSetting(QString, LoggedPhoneNumber);
|
|
|
|
DeclareReadSetting(uint32, ConnectionsInSession);
|
|
|
|
DeclareSetting(bool, AutoStart);
|
|
|
|
DeclareSetting(bool, StartMinimized);
|
2014-07-18 10:37:34 +00:00
|
|
|
DeclareSetting(bool, SendToMenu);
|
2014-05-30 08:53:19 +00:00
|
|
|
DeclareReadSetting(bool, FromAutoStart);
|
|
|
|
DeclareSetting(QString, WorkingDir);
|
|
|
|
inline void cForceWorkingDir(const QString &newDir) {
|
|
|
|
cSetWorkingDir(newDir);
|
|
|
|
QDir dir;
|
2014-09-30 14:11:09 +00:00
|
|
|
if (!gWorkingDir.isEmpty()) dir.mkpath(gWorkingDir);
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-11-27 18:20:48 +00:00
|
|
|
DeclareReadSetting(QString, ExeName);
|
2014-05-30 08:53:19 +00:00
|
|
|
DeclareReadSetting(QString, ExeDir);
|
|
|
|
DeclareSetting(QString, DialogLastPath);
|
|
|
|
DeclareSetting(QString, DialogHelperPath);
|
|
|
|
inline const QString &cDialogHelperPathFinal() {
|
|
|
|
return cDialogHelperPath().isEmpty() ? cExeDir() : cDialogHelperPath();
|
|
|
|
}
|
|
|
|
DeclareSetting(bool, CtrlEnter);
|
|
|
|
DeclareSetting(bool, CatsAndDogs);
|
|
|
|
DeclareSetting(bool, SoundNotify);
|
|
|
|
DeclareSetting(bool, NeedConfigResave);
|
|
|
|
DeclareSetting(bool, DesktopNotify);
|
2014-07-18 10:37:34 +00:00
|
|
|
DeclareSetting(DBINotifyView, NotifyView);
|
2014-05-30 08:53:19 +00:00
|
|
|
DeclareSetting(bool, AutoUpdate);
|
|
|
|
|
|
|
|
struct TWindowPos {
|
|
|
|
TWindowPos() : moncrc(0), maximized(0), x(0), y(0), w(0), h(0) {
|
|
|
|
}
|
|
|
|
int32 moncrc, maximized;
|
|
|
|
int32 x, y, w, h;
|
|
|
|
};
|
|
|
|
DeclareSetting(TWindowPos, WindowPos);
|
|
|
|
DeclareSetting(DBIWorkMode, WorkMode);
|
|
|
|
DeclareSetting(DBIConnectionType, ConnectionType);
|
|
|
|
DeclareSetting(DBIDefaultAttach, DefaultAttach);
|
|
|
|
DeclareSetting(ConnectionProxy, ConnectionProxy);
|
|
|
|
DeclareSetting(bool, SeenTrayTooltip);
|
|
|
|
DeclareSetting(bool, RestartingUpdate);
|
|
|
|
DeclareSetting(bool, Restarting);
|
2014-12-19 21:20:30 +00:00
|
|
|
DeclareSetting(bool, RestartingToSettings);
|
2014-12-02 16:25:17 +00:00
|
|
|
DeclareSetting(bool, WriteProtected);
|
2014-05-30 08:53:19 +00:00
|
|
|
DeclareSetting(int32, LastUpdateCheck);
|
|
|
|
DeclareSetting(bool, NoStartUpdate);
|
|
|
|
DeclareSetting(bool, StartToSettings);
|
|
|
|
DeclareSetting(int32, MaxGroupCount);
|
|
|
|
DeclareSetting(bool, ReplaceEmojis);
|
|
|
|
DeclareReadSetting(bool, ManyInstance);
|
|
|
|
DeclareSetting(bool, AskDownloadPath);
|
|
|
|
DeclareSetting(QString, DownloadPath);
|
|
|
|
DeclareSetting(QByteArray, LocalSalt);
|
|
|
|
DeclareSetting(DBIScale, RealScale);
|
|
|
|
DeclareSetting(DBIScale, ScreenScale);
|
|
|
|
DeclareSetting(DBIScale, ConfigScale);
|
2014-09-20 21:35:46 +00:00
|
|
|
DeclareSetting(bool, CompressPastedImage);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
|
|
|
inline DBIScale cEvalScale(DBIScale scale) {
|
|
|
|
return (scale == dbisAuto) ? cScreenScale() : scale;
|
|
|
|
}
|
|
|
|
inline DBIScale cScale() {
|
|
|
|
return cEvalScale(cRealScale());
|
|
|
|
}
|
|
|
|
|
2014-11-12 22:35:00 +00:00
|
|
|
template <typename T>
|
|
|
|
T convertScale(T v) {
|
|
|
|
switch (cScale()) {
|
|
|
|
case dbisOneAndQuarter: return qRound(float64(v) * 1.25 - 0.01);
|
|
|
|
case dbisOneAndHalf: return qRound(float64(v) * 1.5 - 0.01);
|
|
|
|
case dbisTwo: return v * 2;
|
|
|
|
}
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
DeclareSetting(DBIEmojiTab, EmojiTab);
|
|
|
|
|
|
|
|
struct EmojiData {
|
2014-11-23 21:49:14 +00:00
|
|
|
EmojiData(uint16 x, uint16 y, uint32 code, uint32 code2, uint16 len, uint16 postfix = 0) : x(x), y(y), code(code), code2(code2), len(len), postfix(postfix) {
|
2014-05-30 08:53:19 +00:00
|
|
|
}
|
2014-11-23 21:49:14 +00:00
|
|
|
uint16 x, y;
|
2014-05-30 08:53:19 +00:00
|
|
|
uint32 code, code2;
|
2014-11-23 21:49:14 +00:00
|
|
|
uint16 len;
|
|
|
|
uint16 postfix;
|
2014-05-30 08:53:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef const EmojiData *EmojiPtr;
|
|
|
|
|
|
|
|
typedef QVector<EmojiPtr> EmojiPack;
|
|
|
|
typedef QVector<QPair<uint32, ushort> > RecentEmojiPreload;
|
|
|
|
typedef QVector<QPair<EmojiPtr, ushort> > RecentEmojiPack;
|
|
|
|
DeclareSetting(RecentEmojiPack, RecentEmojis);
|
|
|
|
DeclareSetting(RecentEmojiPreload, RecentEmojisPreload);
|
|
|
|
|
|
|
|
const RecentEmojiPack &cGetRecentEmojis();
|
|
|
|
|
2015-01-02 14:55:24 +00:00
|
|
|
struct DocumentData;
|
|
|
|
typedef QVector<DocumentData*> StickerPack;
|
|
|
|
typedef QMap<EmojiPtr, StickerPack> AllStickers;
|
|
|
|
DeclareSetting(AllStickers, Stickers);
|
|
|
|
DeclareSetting(QByteArray, StickersHash);
|
|
|
|
typedef QList<QPair<DocumentData*, int16> > RecentStickerPack;
|
|
|
|
DeclareSetting(RecentStickerPack, RecentStickers);
|
|
|
|
|
2014-12-19 21:20:30 +00:00
|
|
|
DeclareSetting(int32, Lang);
|
2014-12-20 21:33:08 +00:00
|
|
|
DeclareSetting(QString, LangFile);
|
2014-05-30 08:53:19 +00:00
|
|
|
|
2014-07-18 10:37:34 +00:00
|
|
|
DeclareSetting(QStringList, SendPaths);
|
2014-12-03 13:10:32 +00:00
|
|
|
DeclareSetting(QString, StartUrl);
|
2014-07-18 10:37:34 +00:00
|
|
|
|
2014-12-18 18:40:49 +00:00
|
|
|
DeclareSetting(QString, LangErrors);
|
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
DeclareSetting(bool, Retina);
|
|
|
|
DeclareSetting(float64, RetinaFactor);
|
2014-06-15 12:31:03 +00:00
|
|
|
DeclareSetting(int32, IntRetinaFactor);
|
2014-06-14 19:32:11 +00:00
|
|
|
DeclareSetting(bool, CustomNotifies);
|
|
|
|
|
2014-06-16 09:31:10 +00:00
|
|
|
DeclareReadSetting(uint64, Instance);
|
|
|
|
|
2014-06-14 19:32:11 +00:00
|
|
|
DeclareReadSetting(DBIPlatform, Platform);
|
2014-06-25 07:25:55 +00:00
|
|
|
DeclareReadSetting(QUrl, UpdateURL);
|
2014-06-14 19:32:11 +00:00
|
|
|
|
2014-11-25 12:15:29 +00:00
|
|
|
DeclareSetting(bool, ContactsReceived);
|
|
|
|
|
2014-12-12 16:27:03 +00:00
|
|
|
DeclareSetting(bool, WideMode);
|
|
|
|
|
2014-05-30 08:53:19 +00:00
|
|
|
void settingsParseArgs(int argc, char *argv[]);
|