110 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			110 lines
		
	
	
	
		
			2.7 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
| This file is part of Telegram Desktop,
 | |
| the official desktop version of Telegram messaging app, see https://telegram.org
 | |
| 
 | |
| 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.
 | |
| 
 | |
| In addition, as a special exception, the copyright holders give permission
 | |
| to link the code of portions of this program with the OpenSSL library.
 | |
| 
 | |
| Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
 | |
| Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
 | |
| */
 | |
| 
 | |
| #define NOMINMAX // no min() and max() macro declarations
 | |
| #define __HUGE
 | |
| 
 | |
| // Fix Google Breakpad build for Mac App Store version
 | |
| #ifdef Q_OS_MAC
 | |
| #define __STDC_FORMAT_MACROS
 | |
| #endif // Q_OS_MAC
 | |
| 
 | |
| #ifdef __cplusplus
 | |
| 
 | |
| #include <cmath>
 | |
| 
 | |
| // False positive warning in clang for QMap member function value:
 | |
| // const T QMap<Key, T>::value(const Key &akey, const T &adefaultValue)
 | |
| // fires with "Returning address of local temporary object" which is not true.
 | |
| #ifdef __clang__
 | |
| #pragma clang diagnostic push
 | |
| #pragma clang diagnostic ignored "-Wreturn-stack-address"
 | |
| #endif // __clang__
 | |
| 
 | |
| #include <QtCore/QtCore>
 | |
| 
 | |
| #ifdef __clang__
 | |
| #pragma clang diagnostic pop
 | |
| #endif // __clang__
 | |
| 
 | |
| #if QT_VERSION < QT_VERSION_CHECK(5, 5, 0)
 | |
| #define OS_MAC_OLD
 | |
| #endif // QT_VERSION < 5.5.0
 | |
| 
 | |
| #ifdef OS_MAC_STORE
 | |
| #define MAC_USE_BREAKPAD
 | |
| #endif // OS_MAC_STORE
 | |
| 
 | |
| #include <QtWidgets/QtWidgets>
 | |
| #include <QtNetwork/QtNetwork>
 | |
| 
 | |
| #include <array>
 | |
| #include <vector>
 | |
| #include <set>
 | |
| #include <map>
 | |
| #include <algorithm>
 | |
| #include <memory>
 | |
| 
 | |
| // Ensures/Expects.
 | |
| #include <gsl/gsl_assert>
 | |
| 
 | |
| // Redefine Ensures/Expects by our own assertions.
 | |
| #include "base/assertion.h"
 | |
| 
 | |
| #include <gsl/gsl>
 | |
| 
 | |
| #ifndef _DEBUG
 | |
| #include <rpl/rpl.h>
 | |
| #endif // _DEBUG
 | |
| 
 | |
| #include "base/variant.h"
 | |
| #include "base/optional.h"
 | |
| #include "base/algorithm.h"
 | |
| #include "base/functors.h"
 | |
| 
 | |
| namespace func = base::functors;
 | |
| 
 | |
| #include "base/flat_set.h"
 | |
| #include "base/flat_map.h"
 | |
| 
 | |
| #include "core/basic_types.h"
 | |
| #include "logs.h"
 | |
| #include "core/utils.h"
 | |
| #include "base/lambda.h"
 | |
| #include "base/lambda_guard.h"
 | |
| #include "config.h"
 | |
| 
 | |
| #include "mtproto/facade.h"
 | |
| 
 | |
| #include "ui/style/style_core.h"
 | |
| #include "styles/palette.h"
 | |
| #include "styles/style_basic.h"
 | |
| 
 | |
| #include "ui/animation.h"
 | |
| #include "ui/twidget.h"
 | |
| #include "ui/images.h"
 | |
| #include "ui/text/text.h"
 | |
| 
 | |
| #include "data/data_types.h"
 | |
| #include "app.h"
 | |
| #include "facades.h"
 | |
| 
 | |
| #endif // __cplusplus
 | 
