#pragma once #include "widgets/basewidget.hpp" #include "widgets/helper/droppreview.hpp" #include "widgets/helper/notebooktab.hpp" #include "widgets/split.hpp" #include #include #include #include #include #include namespace chatterino { namespace widgets { class SplitContainer : public BaseWidget { Q_OBJECT public: SplitContainer(Notebook *parent, NotebookTab *_tab); std::pair removeFromLayout(Split *widget); void addToLayout(Split *widget, std::pair position = std::pair(-1, -1)); const std::vector &getSplits() const; std::vector> getColumns() const; NotebookTab *getTab() const; void addChat(bool openChannelNameDialog = false); static bool isDraggingSplit; static Split *draggingSplit; static std::pair dropPosition; int currentX = 0; int currentY = 0; std::map lastRequestedY; void refreshCurrentFocusCoordinates(bool alsoSetLastRequested = false); void requestFocus(int x, int y); void updateFlexValues(); int splitCount() const; protected: bool eventFilter(QObject *object, QEvent *event) override; void paintEvent(QPaintEvent *event) override; void showEvent(QShowEvent *event) override; void enterEvent(QEvent *event) override; void leaveEvent(QEvent *event) override; void mouseReleaseEvent(QMouseEvent *event) override; void dragEnterEvent(QDragEnterEvent *event) override; void dragMoveEvent(QDragMoveEvent *event) override; void dragLeaveEvent(QDragLeaveEvent *event) override; void dropEvent(QDropEvent *event) override; private: struct DropRegion { QRect rect; std::pair position; DropRegion(QRect rect, std::pair position) { this->rect = rect; this->position = position; } }; NotebookTab *tab; struct { QVBoxLayout parentLayout; QHBoxLayout hbox; } ui; std::vector splits; std::vector dropRegions; NotebookPageDropPreview dropPreview; void setPreviewRect(QPoint mousePos); std::pair getChatPosition(const Split *chatWidget); Split *createChatWidget(); public: void refreshTitle(); void loadSplits(); void save(); }; } // namespace widgets } // namespace chatterino