summaryrefslogtreecommitdiffstats
path: root/src/preferencesdialog.h
blob: 7a80de290f460c6d2061eb084d190db7a7c8e7a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
/***************************************************************************
*   Copyright (C) 2004 by Christoph Thielecke                             *
*   crissi99@gmx.de                                                       *
*                                                                         *
*   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) 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.,                                       *
*   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
***************************************************************************/
#ifndef PREFERENCESDIALOG_H
#define PREFERENCESDIALOG_H

#include <kdialogbase.h>

#include <tqptrlist.h>
#include <tqstringlist.h>
#include <tqtextedit.h>
#include <tqcolor.h>
#include <tqscrollview.h>

#include "vpnaccountdata.h"

// content
#include "configdebugoptions.h"
#include "configgeneraloptions.h"
#include "configconnectoptions.h"
#include "configlogoptions.h"
#include "configdaemonoptions.h"
#include "confighelperprogramoptions.h"
#include "profilecertoptions.h"
#include "profilesmartcardoptions.h"
#include "profilepskoptions.h"
#include "profileciscooptions.h"
#include "profilecmdexecafterconnectoptions.h"
#include "profilecmdexecafterdisconnectoptions.h"
#include "profilecmdexecbeforeconnectoptions.h"
#include "profilecmdexecbeforedisconnectoptions.h"
#include "profilegeneraloptions.h"
#include "profilenetworkgeneraloptions.h"
#include "profilenetworknatoptions.h"
#include "profilenetworkhttpproxyoptions.h"
#include "profilenetworkrouteoptions.h"
#include "profilenetworkvirtualipoptions.h"
#include "profileopenvpnoptions.h"
#include "profilepptpoptions.h"
#include "profileracoonoptions.h"
#include "profileipsecoptions.h"
#include "profilevtunoptions.h"
#include "profilesshoptions.h"
#include "profileuseroptions.h"


/**
@author Christoph Thielecke
*/
class PreferencesDialog : public KDialogBase
{
	TQ_OBJECT
  
public:

	/**
	 *  Constructor
	 * @param parent parent widget
	 * @param app pointer to main application
	 * @param LogOutput textedit for debug messages
	 * @param GlobalConfig pointer to configuration object
	 * @param showOnlyProfiles view mode. true: show as profile manager, false: show as preferences dialog
	 * @return
	 */
	PreferencesDialog( TQWidget *parent, TQApplication *app,TQTextEdit *LogOutput, KVpncConfig *GlobalConfig, bool showOnlyProfiles);
	~PreferencesDialog();

public slots:
	void accept();
	void reject();
	void slotApply();
	void authTypeChanged( int authtype );
	void connectionTypeChanged( int connectiontype );
	void profileChanged( const TQString& itemtext );
	void saveSessionClicked();
	void deleteSessionClicked();
	void renameSessionClicked();
	void newSessionClicked();
	void importCertificate();
	void pageChanged(TQWidget *);
	void userAuthToggled(bool);
	void useUdpToggled(bool);
	void useSpecialServerSmartcardificateToggled(bool);
	void applicationVersionToggled(bool);
	void IkeGroupToggled(bool);
	void perfectForwardSecurityToggled(bool);
	void singleDesToggled(bool);
	void useTDEwalletToggled(bool);
	void dpdToggled(bool);
	void useCiscoCertStoreToggled(bool);
	void natModeToggled( const TQString &);
	void slotProfileCreated(TQString Name);

private slots:
	void OpenvpnPathChanged(const TQString&);
	void FreeswanPathChanged(const TQString&);
	void PppdPathChanged(const TQString&);
	void PptpPathChanged(const TQString&);
	void RacoonPathChanged(const TQString&);
	void VpncPathChanged(const TQString&);
	void CiscoVpncPathChanged(const TQString&);
	void L2tpdPathChanged(const TQString&);
	void Xl2tpdPathChanged(const TQString&);
	void Openl2tpPathChanged(const TQString&);
	void VtundPathChanged(const TQString&);
	void SshPathChanged(const TQString&);
	void showEvent(TQShowEvent* e);
	void detectPkcs11Ids();
	void detectPkcs11Slots();
	void localPortToggled(bool);
	void tunnelDeviceTypeChanged(const TQString &);
	void useXauthToggled(bool);
	void slotStatusMsg ( const TQString &text, int id );
	bool getVpncHasHybridSupport();


protected:
	void setupGui();
	TQPtrList<VpnAccountData> *AccountList;
	TQTextEdit *LogOutput;
	VpnAccountData *currentProfile;
	KVpncConfig *GlobalConfig;
	TQString lastProfileName;
	int KvpncDebugLevel;
	bool canAccept;
	bool configChanged;
	TQPixmap ok_icon;
	TQPixmap wrong_icon;
	TQScrollView* DaemonScrollView;
	TQStringList CiscoCerts;
	TQStringList CiscoCaCerts;

private:
	TQWidget *prev_page;
	TQWidget *current_page;

public:
	TQApplication *app;

	/* -- option pages -- */
	// Kvpnc
	ConfigGeneralOptions *GeneralOptionsWidget;
	ConfigDebugOptions *DebugOptionsWidget;
	ConfigConnectOptions *ConnectOptionsWidget;
	ConfigLogOptions *LogOptionsWidget;

	// programs
	ConfigDaemonOptions *ConfigDaemonOptionsWidget;
	ConfigHelperProgramOptions *HelperProgramOptionsWidget;

	// profile
	ProfileGeneralOptions *ProfileGeneralOptionsWidget;
	ProfileNetworkRouteOptions *ProfileNetworkRouteOptionsWidget;
	ProfileNetworkGeneralOptions *ProfileNetworkGeneralOptionsWidget;
	ProfileNetworkNatOptions *ProfileNetworkNatOptionsWidget;
	ProfileNetworkVirtualIpOptions *ProfileNetworkVirtualIpOptionsWidget;
	ProfileCertOptions *ProfileCertOptionsWidget;
	ProfileSmartcardOptions *ProfileSmartcardOptionsWidget;
	ProfilePskOptions *ProfilePskOptionsWidget;
	ProfileUserOptions *ProfileUserOptionsWidget;
	ProfileOpenvpnOptions *ProfileOpenvpnOptionsWidget;
	ProfileNetworkHttpProxyOptions *ProfileNetworkHttpProxyOptionsWidget;
	ProfilePptpOptions *ProfilePptpOptionsWidget;
	ProfileRacoonOptions *ProfileRacoonOptionsWidget;
	ProfileIpsecOptions *ProfileIpsecOptionsWidget;
	ProfileCiscoOptions *ProfileCiscoOptionsWidget;
	ProfileVtunOptions *ProfileVtunOptionsWidget;
	ProfileSshOptions *ProfileSshOptionsWidget;
	ProfileCmdExecBeforeConnectOptions *ProfileCmdExecBeforeConnectOptionsWidget;
	ProfileCmdExecBeforeDisconnectOptions *ProfileCmdExecBeforeDisconnectOptionsWidget;
	ProfileCmdExecAfterConnectOptions *ProfileCmdExecAfterConnectOptionsWidget;
	ProfileCmdExecAfterDisconnectOptions *ProfileCmdExecAfterDisconnectOptionsWidget;

	TQFrame* ProfileNetworkRouteOptionsFrame;
	TQFrame* ConfigConnectOptionsFrame;
	TQFrame* DaemonOptionsFrame;
	TQFrame* DebugFrame;
	TQFrame* LogFrame;
	TQFrame* HelperProgramFrame;
	TQFrame* ProfileGeneralOptionsFrame;
	TQFrame* ProfileUserOptionsFrame;
	TQFrame* ProfileCertOptionsFrame;
	TQFrame* ProfileCiscoOptionsFrame;
	TQFrame* ProfileNetworkHttpProxyOptionsFrame;
	TQFrame* ProfileCmdExecAfterConnectOptionsFrame;
	TQFrame* ProfileCmdExecBeforeDisconnectOptionsFrame;
	TQFrame* ProfileCmdExecAfterDisconnectOptionsFrame;
	TQFrame* ProfileCmdExecBeforeConnectOptionsFrame;
	TQFrame* GeneralFrame;
	TQFrame* ProfileSmartcardOptionsFrame;
	TQFrame* ProfilePskOptionsFrame;
	TQFrame* ProfileNetworkGeneralOptionsFrame;
	TQFrame* ProfileNetworkNatOptionsFrame;
	TQFrame* ProfileNetworkVirtualIpOptionsFrame;
	TQFrame* ProfileRacoonOptionsFrame;
	TQFrame* ProfileIpsecOptionsFrame;
	TQFrame* ProfileOpenvpnOptionsFrame;
	TQFrame* ProfilePptpOptionsFrame;
	TQFrame* ProfileVtunOptionsFrame;
	TQFrame* ProfileSshOptionsFrame;


	TQComboBox *ProfileGeneralSelector;
	TQComboBox *ProfileNetworkRouteSelector;
	TQComboBox *ProfileNetworkGeneralSelector;
	TQComboBox *ProfileNetworkNatSelector;
	TQComboBox *ProfileNetworkVirtualIpSelector;
	TQComboBox *ProfileCertSelector;
	TQComboBox *ProfileSmartcardSelector;
	TQComboBox *ProfilePskSelector;
	TQComboBox *ProfileUserSelector;
	TQComboBox *ProfileOpenvpnSelector;
	TQComboBox *ProfileNetworkHttpProxySelector;
	TQComboBox *ProfilePptpSelector;
	TQComboBox *ProfileRacoonSelector;
	TQComboBox *ProfileIpsecSelector;
	TQComboBox *ProfileCiscoSelector;
	TQComboBox *ProfileVtunSelector;
	TQComboBox *ProfileSshSelector;
	TQComboBox *ProfileCmdExecBeforeConnectSelector;
	TQComboBox *ProfileCmdExecBeforeDisconnectSelector;
	TQComboBox *ProfileCmdExecAfterConnectSelector;
	TQComboBox *ProfileCmdExecAfterDisconnectSelector;

	

	bool profileAddedOrDeleted;
	bool profileHasChanged;
	bool showOnlyProfiles;
	TQString NewProfileName;
};

#endif