mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
33 lines
635 B
C++
33 lines
635 B
C++
#pragma once
|
|
|
|
#include "common/Channel.hpp"
|
|
#include "widgets/helper/NotebookTab.hpp"
|
|
|
|
#include <deque>
|
|
#include <mutex>
|
|
#include <utility>
|
|
|
|
namespace chatterino {
|
|
|
|
class ClosedSplits
|
|
{
|
|
public:
|
|
struct SplitInfo {
|
|
QString channelName;
|
|
NotebookTab *tab; // non owning ptr
|
|
};
|
|
|
|
static void invalidateTab(NotebookTab *const tab);
|
|
static void push(const SplitInfo &si);
|
|
static void push(SplitInfo &&si);
|
|
static SplitInfo pop();
|
|
static bool empty();
|
|
static std::size_t size();
|
|
|
|
private:
|
|
static std::mutex m_;
|
|
static std::vector<SplitInfo> closedSplits_;
|
|
};
|
|
|
|
} // namespace chatterino
|