mirror of
https://github.com/YACReader/yacreader
synced 2026-04-12 15:49:53 -04:00
Include sanitation
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
#include "rounded_corners_dialog.h"
|
||||
|
||||
#include <QtWidgets>
|
||||
#include <QPainter>
|
||||
|
||||
YACReader::RoundedCornersDialog::RoundedCornersDialog(QWidget *parent)
|
||||
: QDialog(parent)
|
||||
|
||||
@ -3,8 +3,6 @@
|
||||
#include "whats_new_dialog.h"
|
||||
#include "yacreader_global.h"
|
||||
|
||||
#include <QtCore>
|
||||
|
||||
YACReader::WhatsNewController::WhatsNewController() { }
|
||||
|
||||
void YACReader::WhatsNewController::showWhatsNewIfNeeded(QWidget *fromParent)
|
||||
|
||||
@ -1,7 +1,14 @@
|
||||
#include "whats_new_dialog.h"
|
||||
#include "yacreader_global.h"
|
||||
|
||||
#include <QtWidgets>
|
||||
#include <QFrame>
|
||||
#include <QGridLayout>
|
||||
#include <QLabel>
|
||||
#include <QPushButton>
|
||||
#include <QScrollArea>
|
||||
#include <QScrollBar>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
#include "yacreader_global.h"
|
||||
|
||||
YACReader::WhatsNewDialog::WhatsNewDialog(QWidget *parent)
|
||||
: RoundedCornersDialog(parent)
|
||||
|
||||
@ -1,9 +1,8 @@
|
||||
#include "yacreader_library_item_widget.h"
|
||||
|
||||
#include "yacreader_global.h"
|
||||
#include "yacreader_global_gui.h"
|
||||
|
||||
#include <QHBoxLayout>
|
||||
|
||||
#include "yacreader_global.h"
|
||||
#include <QLabel>
|
||||
#include <QToolButton>
|
||||
#include <QMouseEvent>
|
||||
|
||||
@ -4,7 +4,6 @@
|
||||
#include <QLineEdit>
|
||||
#include <QCompleter>
|
||||
|
||||
#include "yacreader_global.h"
|
||||
#include "themable.h"
|
||||
|
||||
class QToolButton;
|
||||
|
||||
@ -6,7 +6,6 @@
|
||||
#include "yacreader_folders_view.h"
|
||||
#include "yacreader_reading_lists_view.h"
|
||||
#include "yacreader_library_list_widget.h"
|
||||
#include "yacreader_search_line_edit.h"
|
||||
#include "yacreader_titled_toolbar.h"
|
||||
|
||||
#include "yacreader_global.h"
|
||||
|
||||
@ -1,7 +1,13 @@
|
||||
#ifndef YACREADER_SIDEBAR_H
|
||||
#define YACREADER_SIDEBAR_H
|
||||
|
||||
#include <QtWidgets>
|
||||
#include <QCloseEvent>
|
||||
#include <QColor>
|
||||
#include <QList>
|
||||
#include <QPaintEvent>
|
||||
#include <QSettings>
|
||||
#include <QSplitter>
|
||||
#include <QWidget>
|
||||
|
||||
#include "themable.h"
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
#include "yacreader_table_view.h"
|
||||
|
||||
#include "yacreader_global.h"
|
||||
#include "yacreader_global_gui.h"
|
||||
|
||||
#include <QHeaderView>
|
||||
@ -10,7 +9,6 @@
|
||||
#include <QMimeData>
|
||||
#include <QApplication>
|
||||
#include <QBuffer>
|
||||
#include <qmath.h>
|
||||
|
||||
#include "QsLog.h"
|
||||
|
||||
|
||||
@ -1,6 +1,5 @@
|
||||
#include "yacreader_titled_toolbar.h"
|
||||
|
||||
#include "yacreader_global.h"
|
||||
#include "yacreader_busy_widget.h"
|
||||
|
||||
#include <QAction>
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
#include "yacreader_treeview.h"
|
||||
|
||||
#include "yacreader_global.h"
|
||||
#include <QHeaderView>
|
||||
|
||||
YACReaderTreeView::YACReaderTreeView(QWidget *parent)
|
||||
: QTreeView(parent), clicking(false)
|
||||
|
||||
@ -1,7 +1,14 @@
|
||||
#ifndef YACREADER_TREEVIEW_H
|
||||
#define YACREADER_TREEVIEW_H
|
||||
|
||||
#include <QtWidgets>
|
||||
#include <QDragEnterEvent>
|
||||
#include <QDragLeaveEvent>
|
||||
#include <QDragMoveEvent>
|
||||
#include <QDropEvent>
|
||||
#include <QMouseEvent>
|
||||
#include <QPoint>
|
||||
#include <QTimer>
|
||||
#include <QTreeView>
|
||||
|
||||
#include "themable.h"
|
||||
|
||||
|
||||
Reference in New Issue
Block a user