mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
87 lines
1.8 KiB
C++
87 lines
1.8 KiB
C++
#pragma once
|
|
|
|
#include "util/helpers.hpp"
|
|
#include "widgets/basewidget.hpp"
|
|
#include "widgets/notebook.hpp"
|
|
#include "widgets/titlebar.hpp"
|
|
|
|
//#ifdef USEWINSDK
|
|
//#include <platform/borderless/qwinwidget.h>
|
|
//#endif
|
|
|
|
#include <boost/property_tree/ptree.hpp>
|
|
#include <boost/signals2.hpp>
|
|
#include <pajlada/settings/setting.hpp>
|
|
|
|
namespace chatterino {
|
|
|
|
class ChannelManager;
|
|
class ColorScheme;
|
|
class CompletionManager;
|
|
|
|
namespace widgets {
|
|
|
|
struct WindowGeometry {
|
|
WindowGeometry(const std::string &key)
|
|
: x(fS("/windows/{}/geometry/x", key))
|
|
, y(fS("/windows/{}/geometry/y", key))
|
|
, width(fS("/windows/{}/geometry/width", key))
|
|
, height(fS("/windows/{}/geometry/height", key))
|
|
{
|
|
}
|
|
|
|
pajlada::Settings::Setting<int> x;
|
|
pajlada::Settings::Setting<int> y;
|
|
pajlada::Settings::Setting<int> width;
|
|
pajlada::Settings::Setting<int> height;
|
|
};
|
|
|
|
class Window : public BaseWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
QString windowName;
|
|
|
|
WindowGeometry windowGeometry;
|
|
|
|
public:
|
|
explicit Window(const QString &_windowName, ChannelManager &_channelManager,
|
|
ColorScheme &_colorScheme, bool isMainWindow);
|
|
|
|
void repaintVisibleChatWidgets(Channel *channel = nullptr);
|
|
|
|
void load(const boost::property_tree::ptree &tree);
|
|
boost::property_tree::ptree save();
|
|
void loadDefaults();
|
|
|
|
bool isLoaded() const;
|
|
|
|
Notebook &getNotebook();
|
|
|
|
void refreshWindowTitle(const QString &username);
|
|
|
|
boost::signals2::signal<void()> closed;
|
|
|
|
protected:
|
|
virtual void closeEvent(QCloseEvent *event) override;
|
|
|
|
private:
|
|
float dpi;
|
|
|
|
virtual void refreshTheme() override;
|
|
|
|
void loadGeometry();
|
|
|
|
ChannelManager &channelManager;
|
|
ColorScheme &colorScheme;
|
|
|
|
Notebook notebook;
|
|
bool loaded = false;
|
|
TitleBar titleBar;
|
|
|
|
friend class Notebook;
|
|
};
|
|
|
|
} // namespace widgets
|
|
} // namespace chatterino
|