File indexing completed on 2024-04-14 04:01:10

0001 /***************************************************************************
0002                           tcpconnectwidget.h  -  description
0003                              -------------------
0004     begin                : Sun Sep 20 2009
0005     copyright            : (C) 2009 by Gaƫl de Chalendar
0006     email                : kleag@free.fr
0007  ***************************************************************************/
0008 
0009 /***************************************************************************
0010  *                                                                         *
0011  *   This program is free software; you can redistribute it and/or modify  *
0012  *   it under the terms of the GNU General Public License as published by  *
0013  *   the Free Software Foundation; either either version 2
0014    of the License, or (at your option) any later version.of the License, or     *
0015  *   (at your option) any later version.                                   *
0016  *                                                                         *
0017  *   You should have received a copy of the GNU General Public License
0018  *   along with this program; if not, write to the Free Software
0019  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
0020  *   02110-1301, USA
0021  ***************************************************************************/
0022 #ifndef TCPCONNECTWIDGET_H
0023 #define TCPCONNECTWIDGET_H
0024 
0025 #include "ui_tcpconnectwidget.h"
0026 
0027 #include <QWidget>
0028 #include <QMap>
0029 
0030 namespace Ksirk
0031 {
0032 
0033 class TcpConnectWidget : public QWidget, public Ui::TcpConnectWidget
0034 {
0035   Q_OBJECT
0036 public:
0037   explicit TcpConnectWidget(QWidget *parent=nullptr);
0038   
0039   ~TcpConnectWidget() override;
0040   
0041 Q_SIGNALS:
0042   void next();
0043   void previous();
0044   void cancel();
0045   
0046 };
0047 
0048 }
0049 
0050 #endif // TCPCONNECTWIDGET_H