mirror of https://github.com/procxx/kepka.git
Drop some cyclic #include's of structs.h
It should reduce compile times. Related to #174.
This commit is contained in:
parent
94d2d07878
commit
7a88eeda6a
|
@ -25,6 +25,9 @@
|
||||||
|
|
||||||
#include "data/data_types.h"
|
#include "data/data_types.h"
|
||||||
|
|
||||||
|
class PhotoData;
|
||||||
|
class DocumentData;
|
||||||
|
|
||||||
struct GameData {
|
struct GameData {
|
||||||
GameData(const GameId &id)
|
GameData(const GameId &id)
|
||||||
: id(id) {}
|
: id(id) {}
|
||||||
|
|
|
@ -24,6 +24,7 @@
|
||||||
|
|
||||||
#include <qglobal.h>
|
#include <qglobal.h>
|
||||||
#include <QPair>
|
#include <QPair>
|
||||||
|
#include "core/utils.h" // TimeMs and stuff
|
||||||
|
|
||||||
using VideoId = quint64;
|
using VideoId = quint64;
|
||||||
using AudioId = quint64;
|
using AudioId = quint64;
|
||||||
|
|
|
@ -28,6 +28,10 @@
|
||||||
#include "dialogs/dialogs_common.h" // For Dialogs::Mode
|
#include "dialogs/dialogs_common.h" // For Dialogs::Mode
|
||||||
#include "ui/animation.h" // For BasicAnimation
|
#include "ui/animation.h" // For BasicAnimation
|
||||||
#include "ui/effects/send_action_animations.h" // For SendActionAnimation
|
#include "ui/effects/send_action_animations.h" // For SendActionAnimation
|
||||||
|
#include "ui/text/text.h"
|
||||||
|
#include "data/data_photo.h"
|
||||||
|
#include "data/data_game.h"
|
||||||
|
#include "structs.h"
|
||||||
|
|
||||||
void HistoryInit();
|
void HistoryInit();
|
||||||
|
|
||||||
|
|
|
@ -24,9 +24,9 @@
|
||||||
|
|
||||||
#include "base/flags.h"
|
#include "base/flags.h"
|
||||||
#include "base/runtime_composer.h"
|
#include "base/runtime_composer.h"
|
||||||
|
#include "core/basic_types.h"
|
||||||
#include "core/click_handler.h"
|
#include "core/click_handler.h"
|
||||||
#include "history/history.h"
|
#include "history/history.h"
|
||||||
#include "structs.h"
|
|
||||||
#include "ui/animation.h"
|
#include "ui/animation.h"
|
||||||
#include "ui/text/text.h"
|
#include "ui/text/text.h"
|
||||||
|
|
||||||
|
@ -40,6 +40,7 @@ struct RippleAnimation;
|
||||||
} // namespace style
|
} // namespace style
|
||||||
|
|
||||||
class HistoryItem;
|
class HistoryItem;
|
||||||
|
class History;
|
||||||
|
|
||||||
class HistoryElement {
|
class HistoryElement {
|
||||||
public:
|
public:
|
||||||
|
|
|
@ -22,7 +22,9 @@
|
||||||
//
|
//
|
||||||
#include "inline_bots/inline_bot_result.h"
|
#include "inline_bots/inline_bot_result.h"
|
||||||
|
|
||||||
|
#include "app.h"
|
||||||
#include "core/file_utilities.h"
|
#include "core/file_utilities.h"
|
||||||
|
#include "data/data_game.h"
|
||||||
#include "inline_bots/inline_bot_layout_item.h"
|
#include "inline_bots/inline_bot_layout_item.h"
|
||||||
#include "inline_bots/inline_bot_send_data.h"
|
#include "inline_bots/inline_bot_send_data.h"
|
||||||
#include "mainwidget.h"
|
#include "mainwidget.h"
|
||||||
|
@ -188,7 +190,7 @@ std::unique_ptr<Result> Result::create(quint64 queryId, const MTPBotInlineResult
|
||||||
}
|
}
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
default: { badAttachment = true; } break;
|
default: badAttachment = true; break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (badAttachment || !result->sendData || !result->sendData->isValid()) {
|
if (badAttachment || !result->sendData || !result->sendData->isValid()) {
|
||||||
|
|
|
@ -23,11 +23,17 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "core/basic_types.h"
|
#include "core/basic_types.h"
|
||||||
#include "structs.h"
|
#include "data/data_types.h"
|
||||||
|
#include "ui/images.h"
|
||||||
|
#include "scheme.h"
|
||||||
|
|
||||||
class FileLoader;
|
class FileLoader;
|
||||||
class History;
|
class History;
|
||||||
class LocationCoords;
|
class LocationCoords;
|
||||||
|
class DocumentData;
|
||||||
|
class PhotoData;
|
||||||
|
|
||||||
|
struct GameData;
|
||||||
|
|
||||||
namespace InlineBots {
|
namespace InlineBots {
|
||||||
|
|
||||||
|
|
|
@ -20,8 +20,9 @@
|
||||||
// Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
// Copyright (c) 2014-2017 John Preston, https://desktop.telegram.org
|
||||||
// Copyright (c) 2017- Kepka Contributors, https://github.com/procxx
|
// Copyright (c) 2017- Kepka Contributors, https://github.com/procxx
|
||||||
//
|
//
|
||||||
#include "inline_bots/inline_bot_send_data.h"
|
|
||||||
#include "app.h"
|
#include "app.h"
|
||||||
|
#include "data/data_game.h"
|
||||||
|
#include "inline_bots/inline_bot_send_data.h"
|
||||||
#include "inline_bots/inline_bot_result.h"
|
#include "inline_bots/inline_bot_result.h"
|
||||||
#include "lang/lang_keys.h"
|
#include "lang/lang_keys.h"
|
||||||
#include "storage/localstorage.h"
|
#include "storage/localstorage.h"
|
||||||
|
|
|
@ -23,10 +23,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "core/basic_types.h"
|
#include "core/basic_types.h"
|
||||||
|
#include "data/data_types.h"
|
||||||
#include "history/history_location_manager.h"
|
#include "history/history_location_manager.h"
|
||||||
#include "mtproto/type_utils.h"
|
#include "mtproto/type_utils.h"
|
||||||
#include "structs.h"
|
|
||||||
|
|
||||||
|
struct GameData;
|
||||||
class History;
|
class History;
|
||||||
namespace InlineBots {
|
namespace InlineBots {
|
||||||
|
|
||||||
|
|
|
@ -22,7 +22,8 @@
|
||||||
//
|
//
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "structs.h"
|
#include "data/data_types.h"
|
||||||
|
#include "ui/twidget.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue