X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fqtui%2Fcoresessionwidget.h;h=e19b23b6859a753b6b9633a29c7b332d1df0c378;hb=8fe8accd73abf77ab21d2d1c1346d2bc5c4de2ff;hp=763c6137e03f6e93f0a7645bbe045845ad6ad7c5;hpb=9ef86f499753853c3751aee7da54d186837a5161;p=quassel.git diff --git a/src/qtui/coresessionwidget.h b/src/qtui/coresessionwidget.h index 763c6137..e19b23b6 100644 --- a/src/qtui/coresessionwidget.h +++ b/src/qtui/coresessionwidget.h @@ -1,13 +1,28 @@ -// -// Created by kuschku on 27.08.17. -// +/*************************************************************************** + * Copyright (C) 2005-2016 by the Quassel Project * + * devel@quassel-irc.org * + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) version 3. * + * * + * This program is distributed in the hope that it will be useful, * + * but WITHOUT ANY WARRANTY; without even the implied warranty of * + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * + * GNU General Public License for more details. * + * * + * You should have received a copy of the GNU General Public License * + * along with this program; if not, write to the * + * Free Software Foundation, Inc., * + * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * + ***************************************************************************/ +#pragma once -#ifndef CORESESSIONWIDGET_H -#define CORESESSIONWIDGET_H +#include +#include -#include -#include -#include +#include "ui_coresessionwidget.h" class CoreSessionWidget: public QWidget { @@ -18,8 +33,13 @@ public: void setData(QMap); +signals: + void disconnectClicked(int); + +private slots: + void disconnectClicked(); + private: Ui::CoreSessionWidget ui; + int _peerId; }; - -#endif //CORESESSIONWIDGET_H