|
|
|
#ifndef _OPTW_CONNECTION_H_
|
|
|
|
#define _OPTW_CONNECTION_H_
|
|
|
|
//
|
|
|
|
// File : optw_connection.h
|
|
|
|
// Creation date : Sat Nov 24 04:25:12 2001 GMT by Szymon Stefanek
|
|
|
|
//
|
|
|
|
// This file is part of the KVirc irc client distribution
|
|
|
|
// Copyright (C) 2001-2006 Szymon Stefanek (pragma at kvirc dot net)
|
|
|
|
//
|
|
|
|
// 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 opinion) any later version.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "kvi_optionswidget.h"
|
|
|
|
|
|
|
|
#define KVI_OPTIONS_WIDGET_ICON_KviConnectionOptionsWidget KVI_SMALLICON_WORLD
|
|
|
|
#define KVI_OPTIONS_WIDGET_NAME_KviConnectionOptionsWidget __tr2qs_no_lookup("Connection")
|
|
|
|
#define KVI_OPTIONS_WIDGET_PRIORITY_KviConnectionOptionsWidget 98000
|
|
|
|
|
|
|
|
class KviConnectionOptionsWidget : public KviOptionsWidget
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KviConnectionOptionsWidget(TQWidget * parent);
|
|
|
|
~KviConnectionOptionsWidget();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define KVI_OPTIONS_WIDGET_ICON_KviConnectionAdvancedOptionsWidget KVI_SMALLICON_WORLD
|
|
|
|
#define KVI_OPTIONS_WIDGET_NAME_KviConnectionAdvancedOptionsWidget __tr2qs_no_lookup("Advanced")
|
|
|
|
#define KVI_OPTIONS_WIDGET_PARENT_KviConnectionAdvancedOptionsWidget KviConnectionOptionsWidget
|
|
|
|
#define KVI_OPTIONS_WIDGET_CONTAINER_KviConnectionAdvancedOptionsWidget true
|
|
|
|
|
|
|
|
class KviConnectionAdvancedOptionsWidget : public KviOptionsWidget
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KviConnectionAdvancedOptionsWidget(TQWidget * parent);
|
|
|
|
~KviConnectionAdvancedOptionsWidget();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define KVI_OPTIONS_WIDGET_ICON_KviSSLOptionsWidget KVI_SMALLICON_SSL
|
|
|
|
#define KVI_OPTIONS_WIDGET_NAME_KviSSLOptionsWidget __tr2qs_no_lookup("SSL")
|
|
|
|
#define KVI_OPTIONS_WIDGET_PARENT_KviSSLOptionsWidget KviConnectionAdvancedOptionsWidget
|
|
|
|
#define KVI_OPTIONS_WIDGET_PRIORITY_KviSSLOptionsWidget 30
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class KviSSLOptionsWidget : public KviOptionsWidget
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KviSSLOptionsWidget(TQWidget * parent);
|
|
|
|
~KviSSLOptionsWidget();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define KVI_OPTIONS_WIDGET_ICON_KviTransportOptionsWidget KVI_SMALLICON_SOCKETERROR
|
|
|
|
#define KVI_OPTIONS_WIDGET_NAME_KviTransportOptionsWidget __tr2qs_no_lookup("Socket")
|
|
|
|
#define KVI_OPTIONS_WIDGET_PARENT_KviTransportOptionsWidget KviConnectionAdvancedOptionsWidget
|
|
|
|
#define KVI_OPTIONS_WIDGET_PRIORITY_KviTransportOptionsWidget 20
|
|
|
|
|
|
|
|
|
|
|
|
class KviTransportOptionsWidget : public KviOptionsWidget
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KviTransportOptionsWidget(TQWidget * parent);
|
|
|
|
~KviTransportOptionsWidget();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define KVI_OPTIONS_WIDGET_ICON_KviIdentOptionsWidget KVI_SMALLICON_IDENT
|
|
|
|
#define KVI_OPTIONS_WIDGET_NAME_KviIdentOptionsWidget __tr2qs_no_lookup("Ident Service")
|
|
|
|
#define KVI_OPTIONS_WIDGET_PARENT_KviIdentOptionsWidget KviConnectionAdvancedOptionsWidget
|
|
|
|
#define KVI_OPTIONS_WIDGET_PRIORITY_KviIdentOptionsWidget 10
|
|
|
|
|
|
|
|
class TQRadioButton;
|
|
|
|
|
|
|
|
class KviIdentOptionsWidget : public KviOptionsWidget
|
|
|
|
{
|
|
|
|
TQ_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
KviIdentOptionsWidget(TQWidget * parent);
|
|
|
|
~KviIdentOptionsWidget();
|
|
|
|
|
|
|
|
virtual void commit();
|
|
|
|
protected:
|
|
|
|
KviBoolSelector * m_pEnableIdent;
|
|
|
|
KviBoolSelector * m_pEnableIpv6;
|
|
|
|
KviBoolSelector * m_pIpv4InIpv6;
|
|
|
|
|
|
|
|
TQRadioButton *m_pConsoleRadio;
|
|
|
|
TQRadioButton *m_pActiveRadio;
|
|
|
|
TQRadioButton *m_pQuietRadio;
|
|
|
|
public slots:
|
|
|
|
void enableIpv4InIpv6(bool);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif //_OPTW_CONNECTION_H_
|