1 /***************************************************************************
2                           tcpconnectwidget.h  -  description
3                              -------------------
4     begin                : Sun Sep 20 2009
5     copyright            : (C) 2009 by Gaël de Chalendar
6     email                : kleag@free.fr
7  ***************************************************************************/
8 
9 /***************************************************************************
10  *                                                                         *
11  *   This program is free software; you can redistribute it and/or modify  *
12  *   it under the terms of the GNU General Public License as published by  *
13  *   the Free Software Foundation; either either version 2
14    of the License, or (at your option) any later version.of the License, or     *
15  *   (at your option) any later version.                                   *
16  *                                                                         *
17  *   You should have received a copy of the GNU General Public License
18  *   along with this program; if not, write to the Free Software
19  *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20  *   02110-1301, USA
21  ***************************************************************************/
22 #ifndef TCPCONNECTWIDGET_H
23 #define TCPCONNECTWIDGET_H
24 
25 #include "ui_tcpconnectwidget.h"
26 
27 #include <QWidget>
28 #include <QMap>
29 
30 namespace Ksirk
31 {
32 
33 class TcpConnectWidget : public QWidget, public Ui::TcpConnectWidget
34 {
35   Q_OBJECT
36 public:
37   explicit TcpConnectWidget(QWidget *parent=0);
38 
39   ~TcpConnectWidget() override;
40 
41 Q_SIGNALS:
42   void next();
43   void previous();
44   void cancel();
45 
46 };
47 
48 }
49 
50 #endif // TCPCONNECTWIDGET_H
51