X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=gui%2Fchannelwidget.h;fp=gui%2Fchannelwidget.h;h=a9f768f6f98a6a2c80f5f842190018802c8ae297;hp=3d36cf85b9bd3eb1931aa80393d679a0d4cef01f;hb=8b192b08f3df4ce0e7cc4a08564645c76efa688d;hpb=ffd440f541000c365ce74bce4cef14e617283b51 diff --git a/gui/channelwidget.h b/gui/channelwidget.h index 3d36cf85..a9f768f6 100644 --- a/gui/channelwidget.h +++ b/gui/channelwidget.h @@ -23,14 +23,25 @@ #include "ui_channelwidget.h" +#include "core.h" + class ChannelWidget : public QWidget { Q_OBJECT public: ChannelWidget(QWidget *parent = 0); + signals: + void inputLine(const QString &); + + private slots: + void enterPressed(); + private: Ui::ChannelWidget ui; + + Core core; + Server server; };