X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fmainpage.h;h=a08d9ce01ec84d35819bfca39ee2c1aa1f50a4ed;hb=517fc0fdbbd67b4e195b7a06246ff81a963a37fa;hp=0c48b9fae8e93a1e83c9c4055df3793b3f7bac55;hpb=66e6d26b38fb6e4528654e6525d205e9e9ca3243;p=quassel.git diff --git a/src/qtui/mainpage.h b/src/qtui/mainpage.h index 0c48b9fa..a08d9ce0 100644 --- a/src/qtui/mainpage.h +++ b/src/qtui/mainpage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-2015 by the Quassel Project * + * Copyright (C) 2005-2016 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,6 +23,8 @@ #include +class QPushButton; + class MainPage : public QWidget { Q_OBJECT @@ -30,6 +32,12 @@ class MainPage : public QWidget public: MainPage(QWidget *parent = 0); +private slots: + void showCoreConnectionDlg(); + void coreConnectionStateChanged(); + +private: + QPushButton *_connectButton; };