Cleanup allowing for tags to be available at later points, adds TAGMSG
[quassel.git] / src / qtui / coresessionwidget.h
index 763c613..8ffb54b 100644 (file)
@@ -1,25 +1,45 @@
-//
-// Created by kuschku on 27.08.17.
-//
+/***************************************************************************
+ *   Copyright (C) 2005-2019 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 <QMap>
+#include <QWidget>
 
-#include <QtWidgets/QWidget>
-#include <ui_coresessionwidget.h>
-#include <QtCore/QMap>
+#include "ui_coresessionwidget.h"
 
-class CoreSessionWidget: public QWidget
+class CoreSessionWidget : public QWidget
 {
-Q_OBJECT
+    Q_OBJECT
 
 public:
-    explicit CoreSessionWidget(QWidget *);
+    explicit CoreSessionWidget(QWidget*);
 
     void setData(QMap<QString, QVariant>);
 
+signals:
+    void disconnectClicked(int);
+
+private slots:
+    void onDisconnectClicked();
+
 private:
     Ui::CoreSessionWidget ui;
+    int _peerId;
 };
-
-#endif //CORESESSIONWIDGET_H