2014-05-30 12:53:19 +04:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
2014-12-01 13:47:38 +03:00
|
|
|
the official desktop version of Telegram messaging app, see https://telegram.org
|
2014-05-30 12:53:19 +04: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.
|
|
|
|
|
2015-10-03 16:16:42 +03:00
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
|
|
|
2014-05-30 12:53:19 +04:00
|
|
|
Full license: https://github.com/telegramdesktop/tdesktop/blob/master/LICENSE
|
2016-02-08 13:56:18 +03:00
|
|
|
Copyright (c) 2014-2016 John Preston, https://desktop.telegram.org
|
2014-05-30 12:53:19 +04:00
|
|
|
*/
|
2016-03-24 11:57:11 +03:00
|
|
|
|
|
|
|
#define NOMINMAX // no min() and max() macro declarations
|
2014-05-30 12:53:19 +04:00
|
|
|
#define __HUGE
|
2016-02-01 13:12:37 +03:00
|
|
|
#define __STDC_FORMAT_MACROS // fix breakpad for mac
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2016-01-21 14:58:58 +08:00
|
|
|
|
2016-04-01 12:50:02 +04:00
|
|
|
#include <cmath>
|
|
|
|
|
2016-02-27 22:39:51 +03:00
|
|
|
#include <QtCore/QtCore>
|
2014-05-30 12:53:19 +04:00
|
|
|
#include <QtWidgets/QtWidgets>
|
2016-02-27 22:39:51 +03:00
|
|
|
#include <QtNetwork/QtNetwork>
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2016-04-03 13:11:41 +04:00
|
|
|
#include "basic_types.h"
|
2014-05-30 12:53:19 +04:00
|
|
|
#include "config.h"
|
|
|
|
|
2016-03-23 21:43:12 +03:00
|
|
|
#include "mtproto/facade.h"
|
2014-05-30 12:53:19 +04:00
|
|
|
|
2016-04-07 22:05:28 +04:00
|
|
|
#include "ui/style_core.h"
|
|
|
|
#include "ui/twidget.h"
|
|
|
|
#include "ui/animation.h"
|
|
|
|
#include "ui/flatinput.h"
|
|
|
|
#include "ui/flattextarea.h"
|
|
|
|
#include "ui/flatbutton.h"
|
|
|
|
#include "ui/boxshadow.h"
|
|
|
|
#include "ui/popupmenu.h"
|
|
|
|
#include "ui/scrollarea.h"
|
|
|
|
#include "ui/images.h"
|
|
|
|
#include "ui/text.h"
|
|
|
|
#include "ui/flatlabel.h"
|
2014-05-30 12:53:19 +04:00
|
|
|
|
|
|
|
#include "app.h"
|
2016-02-01 13:12:37 +03:00
|
|
|
|
2016-03-24 15:57:10 +03:00
|
|
|
#endif // __cplusplus
|