mirror-chatterino2/src/widgets/Window.hpp
Daniel b024b47afd
Changelog crash fix (macOS) (#1935)
On macOS, trying to display a dialog before showing the main window
(like when starting minimized) leads to a crash. The dialog will now
show before the main window is opened, preventing this issue.
2020-09-06 12:02:15 +02:00

54 lines
1 KiB
C++

#pragma once
#include "widgets/BaseWindow.hpp"
#include <pajlada/settings/setting.hpp>
#include <pajlada/signals/signal.hpp>
#include <pajlada/signals/signalholder.hpp>
namespace chatterino {
class Theme;
class UpdateDialog;
class SplitNotebook;
class Channel;
enum class WindowType { Main, Popup, Attached };
class Window : public BaseWindow
{
Q_OBJECT
public:
explicit Window(WindowType type);
WindowType getType();
SplitNotebook &getNotebook();
pajlada::Signals::NoArgSignal closed;
protected:
void closeEvent(QCloseEvent *event) override;
bool event(QEvent *event) override;
private:
void addCustomTitlebarButtons();
void addDebugStuff();
void addShortcuts();
void addLayout();
void onAccountSelected();
void addMenuBar();
WindowType type_;
SplitNotebook *notebook_;
EffectLabel *userLabel_ = nullptr;
std::shared_ptr<UpdateDialog> updateDialogHandle_;
pajlada::Signals::SignalHolder signalHolder_;
friend class Notebook;
};
} // namespace chatterino