#ifndef CHATWIDGET_H #define CHATWIDGET_H #include "channel.h" #include "messages/word.h" #include "widgets/chatwidgetheader.h" #include "widgets/chatwidgetinput.h" #include "widgets/chatwidgetview.h" #include #include #include #include namespace chatterino { namespace widgets { class ChatWidget : public QWidget { Q_OBJECT public: ChatWidget(QWidget *parent = 0); ~ChatWidget(); ChatWidgetView & getView() { return view; } Channel * getChannel() const { return channel; } const QString & getChannelName() const { return channelName; } void setChannelName(const QString &name); void showChangeChannelPopup(); protected: void paintEvent(QPaintEvent *) Q_DECL_OVERRIDE; private: Channel *channel; QString channelName; QFont font; QVBoxLayout vbox; ChatWidgetHeader header; ChatWidgetView view; ChatWidgetInput input; public: void load(const boost::property_tree::ptree &tree); boost::property_tree::ptree save(); }; } // namespace widgets } // namespace chatterino #endif // CHATWIDGET_H