X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fqtui%2Fmainpage.h;h=c3fdf91ace51a03b1c915e2ff0fd971428484b47;hp=0557f8e337e1c501e98e7e932451f2b29ea17726;hb=c1cf157116de7fc3da96203aa6f03c38c7ebb650;hpb=921e54680da16fcf2adb7a90506875aceb6633a4 diff --git a/src/qtui/mainpage.h b/src/qtui/mainpage.h index 0557f8e3..c3fdf91a 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-2018 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -23,16 +23,21 @@ #include +class QPushButton; + class MainPage : public QWidget { Q_OBJECT public: - MainPage(QWidget *parent = 0); + MainPage(QWidget* parent = nullptr); -protected: - void paintEvent(QPaintEvent *event); -}; +private slots: + void showCoreConnectionDlg(); + void coreConnectionStateChanged(); +private: + QPushButton* _connectButton; +}; #endif