mirror of https://github.com/procxx/kepka.git
layerwidget: drop #include "structs.h"
Also add missing headers to the lots of files (they were in structs.h, but we reduce dependencies). Related to #174.
This commit is contained in:
parent
620d46393a
commit
0e1f7d1a46
|
@ -23,6 +23,10 @@
|
|||
#pragma once
|
||||
|
||||
#include "boxes/abstract_box.h"
|
||||
#include "core/basic_types.h"
|
||||
#include "data/data_types.h"
|
||||
|
||||
#include "structs.h" // temporarily. (ChannelData
|
||||
|
||||
namespace Ui {
|
||||
class FlatLabel;
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "boxes/abstract_box.h"
|
||||
#include "ui/text/text.h"
|
||||
|
||||
namespace Ui {
|
||||
class InputField;
|
||||
|
|
|
@ -24,6 +24,8 @@
|
|||
|
||||
#include "boxes/abstract_box.h"
|
||||
|
||||
#include "structs.h" // temporarily, need PeerId.
|
||||
|
||||
class PhotoCropBox : public BoxContent {
|
||||
Q_OBJECT
|
||||
|
||||
|
|
|
@ -25,6 +25,9 @@
|
|||
#include "base/observer.h"
|
||||
#include "boxes/abstract_box.h"
|
||||
#include "ui/effects/round_checkbox.h"
|
||||
#include "ui/text/text.h"
|
||||
|
||||
#include "structs.h" // temporarily: FullMsgId, CharData
|
||||
|
||||
namespace Dialogs {
|
||||
class Row;
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "boxes/abstract_box.h"
|
||||
#include "ui/text/text.h"
|
||||
|
||||
namespace Ui {
|
||||
class UsernameInput;
|
||||
|
|
|
@ -24,10 +24,12 @@
|
|||
|
||||
#include <QMouseEvent>
|
||||
|
||||
#include "structs.h"
|
||||
// #include "structs.h"
|
||||
#include "ui/animation.h"
|
||||
#include "ui/twidget.h"
|
||||
|
||||
class PhotoData;
|
||||
|
||||
class BoxContent;
|
||||
|
||||
namespace Window {
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
#pragma once
|
||||
|
||||
#include "core/single_timer.h"
|
||||
#include "core/click_handler.h"
|
||||
#include "platform/platform_main_window.h"
|
||||
#include "platform/platform_specific.h"
|
||||
#include <QCheckBox>
|
||||
|
@ -32,9 +33,12 @@
|
|||
#include <QPaintEvent>
|
||||
#include <QPushButton>
|
||||
#include <QSystemTrayIcon>
|
||||
#include <QTextEdit>
|
||||
|
||||
#include "layerwidget.h"
|
||||
|
||||
#include "ui/twidget.h"
|
||||
#include "ui/text/text_entity.h"
|
||||
|
||||
class PasscodeWidget;
|
||||
class MainWidget;
|
||||
|
|
Loading…
Reference in New Issue