mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-21 22:24:07 +01:00
put all split widgets inside the same directory
This commit is contained in:
parent
beaa2e849a
commit
22f528cd21
26 changed files with 41 additions and 60 deletions
|
@ -96,7 +96,7 @@ SOURCES += \
|
||||||
src/Application.cpp \
|
src/Application.cpp \
|
||||||
src/Channel.cpp \
|
src/Channel.cpp \
|
||||||
src/ChannelData.cpp \
|
src/ChannelData.cpp \
|
||||||
src/Common.h.cpp \
|
src/Common.cpp \
|
||||||
src/controllers/accounts/Account.cpp \
|
src/controllers/accounts/Account.cpp \
|
||||||
src/controllers/accounts/AccountController.cpp \
|
src/controllers/accounts/AccountController.cpp \
|
||||||
src/controllers/accounts/AccountModel.cpp \
|
src/controllers/accounts/AccountModel.cpp \
|
||||||
|
@ -184,11 +184,10 @@ SOURCES += \
|
||||||
src/widgets/helper/SearchPopup.cpp \
|
src/widgets/helper/SearchPopup.cpp \
|
||||||
src/widgets/helper/SettingsDialogTab.cpp \
|
src/widgets/helper/SettingsDialogTab.cpp \
|
||||||
src/widgets/helper/SignalLabel.cpp \
|
src/widgets/helper/SignalLabel.cpp \
|
||||||
src/widgets/helper/SplitColumn.cpp \
|
src/widgets/splits/SplitColumn.cpp \
|
||||||
src/widgets/helper/SplitHeader.cpp \
|
src/widgets/splits/SplitHeader.cpp \
|
||||||
src/widgets/helper/SplitInput.cpp \
|
src/widgets/splits/SplitInput.cpp \
|
||||||
src/widgets/helper/SplitNode.cpp \
|
src/widgets/splits/SplitOverlay.cpp \
|
||||||
src/widgets/helper/SplitOverlay.cpp \
|
|
||||||
src/widgets/helper/TitlebarButton.cpp \
|
src/widgets/helper/TitlebarButton.cpp \
|
||||||
src/widgets/Label.cpp \
|
src/widgets/Label.cpp \
|
||||||
src/widgets/LastRunCrashDialog.cpp \
|
src/widgets/LastRunCrashDialog.cpp \
|
||||||
|
@ -214,8 +213,8 @@ SOURCES += \
|
||||||
src/widgets/settingspages/ModerationPage.cpp \
|
src/widgets/settingspages/ModerationPage.cpp \
|
||||||
src/widgets/settingspages/SettingsPage.cpp \
|
src/widgets/settingspages/SettingsPage.cpp \
|
||||||
src/widgets/settingspages/SpecialChannelsPage.cpp \
|
src/widgets/settingspages/SpecialChannelsPage.cpp \
|
||||||
src/widgets/Split.cpp \
|
src/widgets/splits/Split.cpp \
|
||||||
src/widgets/SplitContainer.cpp \
|
src/widgets/splits/SplitContainer.cpp \
|
||||||
src/widgets/StreamView.cpp \
|
src/widgets/StreamView.cpp \
|
||||||
src/widgets/TextInputDialog.cpp \
|
src/widgets/TextInputDialog.cpp \
|
||||||
src/widgets/TooltipWidget.cpp \
|
src/widgets/TooltipWidget.cpp \
|
||||||
|
@ -357,11 +356,10 @@ HEADERS += \
|
||||||
src/widgets/helper/SettingsDialogTab.hpp \
|
src/widgets/helper/SettingsDialogTab.hpp \
|
||||||
src/widgets/helper/Shortcut.hpp \
|
src/widgets/helper/Shortcut.hpp \
|
||||||
src/widgets/helper/SignalLabel.hpp \
|
src/widgets/helper/SignalLabel.hpp \
|
||||||
src/widgets/helper/SplitColumn.hpp \
|
src/widgets/splits/SplitColumn.hpp \
|
||||||
src/widgets/helper/SplitHeader.hpp \
|
src/widgets/splits/SplitHeader.hpp \
|
||||||
src/widgets/helper/SplitInput.hpp \
|
src/widgets/splits/SplitInput.hpp \
|
||||||
src/widgets/helper/SplitNode.hpp \
|
src/widgets/splits/SplitOverlay.hpp \
|
||||||
src/widgets/helper/SplitOverlay.hpp \
|
|
||||||
src/widgets/helper/TitlebarButton.hpp \
|
src/widgets/helper/TitlebarButton.hpp \
|
||||||
src/widgets/Label.hpp \
|
src/widgets/Label.hpp \
|
||||||
src/widgets/LastRunCrashDialog.hpp \
|
src/widgets/LastRunCrashDialog.hpp \
|
||||||
|
@ -387,8 +385,8 @@ HEADERS += \
|
||||||
src/widgets/settingspages/ModerationPage.hpp \
|
src/widgets/settingspages/ModerationPage.hpp \
|
||||||
src/widgets/settingspages/SettingsPage.hpp \
|
src/widgets/settingspages/SettingsPage.hpp \
|
||||||
src/widgets/settingspages/SpecialChannelsPage.hpp \
|
src/widgets/settingspages/SpecialChannelsPage.hpp \
|
||||||
src/widgets/Split.hpp \
|
src/widgets/splits/Split.hpp \
|
||||||
src/widgets/SplitContainer.hpp \
|
src/widgets/splits/SplitContainer.hpp \
|
||||||
src/widgets/StreamView.hpp \
|
src/widgets/StreamView.hpp \
|
||||||
src/widgets/TextInputDialog.hpp \
|
src/widgets/TextInputDialog.hpp \
|
||||||
src/widgets/Titlebar.hpp \
|
src/widgets/Titlebar.hpp \
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
#include "widgets/Window.hpp"
|
#include "widgets/Window.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
#include "Application.hpp"
|
#include "Application.hpp"
|
||||||
#include "util/DebugCount.hpp"
|
#include "util/DebugCount.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
|
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
#include <QVBoxLayout>
|
#include <QVBoxLayout>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
|
|
||||||
#include "Channel.hpp"
|
#include "Channel.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace widgets {
|
namespace widgets {
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#include "widgets/helper/NotebookTab.hpp"
|
#include "widgets/helper/NotebookTab.hpp"
|
||||||
#include "widgets/helper/Shortcut.hpp"
|
#include "widgets/helper/Shortcut.hpp"
|
||||||
#include "widgets/SettingsDialog.hpp"
|
#include "widgets/SettingsDialog.hpp"
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
#include "widgets/Window.hpp"
|
#include "widgets/Window.hpp"
|
||||||
|
|
||||||
#include <QDebug>
|
#include <QDebug>
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
#include "widgets/BaseWidget.hpp"
|
#include "widgets/BaseWidget.hpp"
|
||||||
#include "widgets/helper/NotebookButton.hpp"
|
#include "widgets/helper/NotebookButton.hpp"
|
||||||
#include "widgets/helper/NotebookTab.hpp"
|
#include "widgets/helper/NotebookTab.hpp"
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
|
|
||||||
#include <QList>
|
#include <QList>
|
||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
#include "Channel.hpp"
|
#include "Channel.hpp"
|
||||||
#include "util/Helpers.hpp"
|
#include "util/Helpers.hpp"
|
||||||
#include "util/LayoutCreator.hpp"
|
#include "util/LayoutCreator.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
|
|
||||||
#ifdef USEWEBENGINE
|
#ifdef USEWEBENGINE
|
||||||
#include <QtWebEngineWidgets>
|
#include <QtWebEngineWidgets>
|
||||||
|
|
|
@ -12,7 +12,7 @@
|
||||||
#include "widgets/helper/Shortcut.hpp"
|
#include "widgets/helper/Shortcut.hpp"
|
||||||
#include "widgets/Notebook.hpp"
|
#include "widgets/Notebook.hpp"
|
||||||
#include "widgets/SettingsDialog.hpp"
|
#include "widgets/SettingsDialog.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
#include "widgets/WelcomeDialog.hpp"
|
#include "widgets/WelcomeDialog.hpp"
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
#include "singletons/WindowManager.hpp"
|
#include "singletons/WindowManager.hpp"
|
||||||
#include "util/Benchmark.hpp"
|
#include "util/Benchmark.hpp"
|
||||||
#include "util/DistanceBetweenPoints.hpp"
|
#include "util/DistanceBetweenPoints.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
#include "widgets/TooltipWidget.hpp"
|
#include "widgets/TooltipWidget.hpp"
|
||||||
#include "widgets/UserInfoPopup.hpp"
|
#include "widgets/UserInfoPopup.hpp"
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#include "singletons/ThemeManager.hpp"
|
#include "singletons/ThemeManager.hpp"
|
||||||
#include "widgets/helper/RippleEffectButton.hpp"
|
#include "widgets/helper/RippleEffectButton.hpp"
|
||||||
#include "widgets/Notebook.hpp"
|
#include "widgets/Notebook.hpp"
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
|
|
||||||
#include <QMouseEvent>
|
#include <QMouseEvent>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include "widgets/helper/RippleEffectLabel.hpp"
|
#include "widgets/helper/RippleEffectLabel.hpp"
|
||||||
#include "singletons/ThemeManager.hpp"
|
#include "singletons/ThemeManager.hpp"
|
||||||
#include "widgets/helper/SplitHeader.hpp"
|
#include "widgets/splits/SplitHeader.hpp"
|
||||||
|
|
||||||
#include <QBrush>
|
#include <QBrush>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
|
|
|
@ -1,6 +0,0 @@
|
||||||
#include "SplitNode.hpp"
|
|
||||||
|
|
||||||
SplitNode::SplitNode()
|
|
||||||
{
|
|
||||||
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
#ifndef SPLITNODE_HPP
|
|
||||||
#define SPLITNODE_HPP
|
|
||||||
|
|
||||||
|
|
||||||
class SplitNode
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
SplitNode();
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif // SPLITNODE_HPP
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
|
|
||||||
#include "Application.hpp"
|
#include "Application.hpp"
|
||||||
#include "Common.hpp"
|
#include "Common.hpp"
|
||||||
|
@ -14,10 +14,10 @@
|
||||||
#include "widgets/helper/DebugPopup.hpp"
|
#include "widgets/helper/DebugPopup.hpp"
|
||||||
#include "widgets/helper/SearchPopup.hpp"
|
#include "widgets/helper/SearchPopup.hpp"
|
||||||
#include "widgets/helper/Shortcut.hpp"
|
#include "widgets/helper/Shortcut.hpp"
|
||||||
#include "widgets/helper/SplitOverlay.hpp"
|
#include "widgets/splits/SplitOverlay.hpp"
|
||||||
#include "widgets/QualityPopup.hpp"
|
#include "widgets/QualityPopup.hpp"
|
||||||
#include "widgets/SelectChannelDialog.hpp"
|
#include "widgets/SelectChannelDialog.hpp"
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
#include "widgets/TextInputDialog.hpp"
|
#include "widgets/TextInputDialog.hpp"
|
||||||
#include "widgets/UserInfoPopup.hpp"
|
#include "widgets/UserInfoPopup.hpp"
|
||||||
#include "widgets/Window.hpp"
|
#include "widgets/Window.hpp"
|
|
@ -10,8 +10,8 @@
|
||||||
#include "widgets/BaseWidget.hpp"
|
#include "widgets/BaseWidget.hpp"
|
||||||
#include "widgets/helper/ChannelView.hpp"
|
#include "widgets/helper/ChannelView.hpp"
|
||||||
#include "widgets/helper/RippleEffectLabel.hpp"
|
#include "widgets/helper/RippleEffectLabel.hpp"
|
||||||
#include "widgets/helper/SplitHeader.hpp"
|
#include "widgets/splits/SplitHeader.hpp"
|
||||||
#include "widgets/helper/SplitInput.hpp"
|
#include "widgets/splits/SplitInput.hpp"
|
||||||
|
|
||||||
#include <QFont>
|
#include <QFont>
|
||||||
#include <QShortcut>
|
#include <QShortcut>
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
#include "Application.hpp"
|
#include "Application.hpp"
|
||||||
#include "Common.hpp"
|
#include "Common.hpp"
|
||||||
#include "singletons/ThemeManager.hpp"
|
#include "singletons/ThemeManager.hpp"
|
||||||
|
@ -8,7 +8,7 @@
|
||||||
#include "util/LayoutCreator.hpp"
|
#include "util/LayoutCreator.hpp"
|
||||||
#include "widgets/helper/NotebookTab.hpp"
|
#include "widgets/helper/NotebookTab.hpp"
|
||||||
#include "widgets/Notebook.hpp"
|
#include "widgets/Notebook.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QDebug>
|
#include <QDebug>
|
|
@ -3,7 +3,7 @@
|
||||||
#include "widgets/BaseWidget.hpp"
|
#include "widgets/BaseWidget.hpp"
|
||||||
#include "widgets/helper/DropPreview.hpp"
|
#include "widgets/helper/DropPreview.hpp"
|
||||||
#include "widgets/helper/NotebookTab.hpp"
|
#include "widgets/helper/NotebookTab.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
|
|
||||||
#include <QDragEnterEvent>
|
#include <QDragEnterEvent>
|
||||||
#include <QHBoxLayout>
|
#include <QHBoxLayout>
|
|
@ -1,4 +1,4 @@
|
||||||
#include "widgets/helper/SplitHeader.hpp"
|
#include "widgets/splits/SplitHeader.hpp"
|
||||||
|
|
||||||
#include "Application.hpp"
|
#include "Application.hpp"
|
||||||
#include "providers/twitch/TwitchChannel.hpp"
|
#include "providers/twitch/TwitchChannel.hpp"
|
||||||
|
@ -8,8 +8,8 @@
|
||||||
#include "util/LayoutCreator.hpp"
|
#include "util/LayoutCreator.hpp"
|
||||||
#include "util/UrlFetch.hpp"
|
#include "util/UrlFetch.hpp"
|
||||||
#include "widgets/Label.hpp"
|
#include "widgets/Label.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
#include "widgets/TooltipWidget.hpp"
|
#include "widgets/TooltipWidget.hpp"
|
||||||
|
|
||||||
#include <QByteArray>
|
#include <QByteArray>
|
|
@ -1,4 +1,4 @@
|
||||||
#include "widgets/helper/SplitInput.hpp"
|
#include "widgets/splits/SplitInput.hpp"
|
||||||
|
|
||||||
#include "Application.hpp"
|
#include "Application.hpp"
|
||||||
#include "controllers/commands/CommandController.hpp"
|
#include "controllers/commands/CommandController.hpp"
|
||||||
|
@ -10,8 +10,8 @@
|
||||||
#include "util/LayoutCreator.hpp"
|
#include "util/LayoutCreator.hpp"
|
||||||
#include "util/UrlFetch.hpp"
|
#include "util/UrlFetch.hpp"
|
||||||
#include "widgets/Notebook.hpp"
|
#include "widgets/Notebook.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
|
|
||||||
#include <QCompleter>
|
#include <QCompleter>
|
||||||
#include <QPainter>
|
#include <QPainter>
|
|
@ -1,6 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
#include "ResizingTextEdit.hpp"
|
#include "widgets/helper/ResizingTextEdit.hpp"
|
||||||
#include "widgets/BaseWidget.hpp"
|
#include "widgets/BaseWidget.hpp"
|
||||||
#include "widgets/EmotePopup.hpp"
|
#include "widgets/EmotePopup.hpp"
|
||||||
#include "widgets/helper/RippleEffectLabel.hpp"
|
#include "widgets/helper/RippleEffectLabel.hpp"
|
|
@ -10,8 +10,8 @@
|
||||||
|
|
||||||
#include "Application.hpp"
|
#include "Application.hpp"
|
||||||
#include "singletons/ResourceManager.hpp"
|
#include "singletons/ResourceManager.hpp"
|
||||||
#include "widgets/Split.hpp"
|
#include "widgets/splits/Split.hpp"
|
||||||
#include "widgets/SplitContainer.hpp"
|
#include "widgets/splits/SplitContainer.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace widgets {
|
namespace widgets {
|
Loading…
Reference in a new issue