aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/options/OptionsWidget_identity.h
blob: f06a02db09b6050c5d4d32b4d3c04447552958b4 (about) (plain) (blame)
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
#ifndef _OPTW_IDENTITY_H_
#define _OPTW_IDENTITY_H_
//=============================================================================
//
//   File : OptionsWidget_identity.h
//   Creation date : Tue Nov 14 2000 23:06:12 CEST by Szymon Stefanek
//
//   This file is part of the KVIrc IRC client distribution
//   Copyright (C) 2000-2010 Szymon Stefanek (pragma at kvirc dot net)
//   Copyright (C) 2008 Elvio Basello (hellvis69 at netsons dot 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) 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 "KviOptionsWidget.h"
#include "kvi_settings.h"
#include "KviSelectors.h"
#include "KviPixmap.h"

#include <QDialog>

class QCheckBox;
class QLineEdit;
class QPushButton;
class QComboBox;
class KviHttpRequest;
class QTreeWidget;
class KviIdentityProfile;

class NickAlternativesDialog : public QDialog
{
	friend class KviIdentityGeneralOptionsWidget;
	Q_OBJECT
protected:
	NickAlternativesDialog(QWidget * par, const QString & n1, const QString & n2, const QString & n3);
	~NickAlternativesDialog();

protected:
	QLineEdit * m_pNickEdit1;
	QLineEdit * m_pNickEdit2;
	QLineEdit * m_pNickEdit3;

protected:
	void fill(QString & n1, QString & n2, QString & n3);
};

class AvatarSelectionDialog : public QDialog
{
	friend class OptionsWidget_identityAvatar;
	Q_OBJECT
public:
	AvatarSelectionDialog(QWidget * par, const QString & szInitialPath);
	~AvatarSelectionDialog();

protected:
	QLineEdit * m_pLineEdit;
	QString m_szAvatarName;

protected:
	void closeEvent(QCloseEvent * e) override;
	const QString & avatarName() { return m_szAvatarName; };
protected slots:
	void okClicked();
	void cancelClicked();
	void chooseFileClicked();
};

class AvatarDownloadDialog : public QDialog
{
	friend class OptionsWidget_identityAvatar;
	Q_OBJECT
public:
	AvatarDownloadDialog(QWidget * par, const QString & szUrl);
	~AvatarDownloadDialog();

protected:
	KviHttpRequest * m_pRequest;
	QLabel * m_pOutput;
	QString m_szErrorMessage;
	QString m_szLocalFileName;
	QString m_szUrl;

protected:
	void closeEvent(QCloseEvent * e) override;
	const QString & localFileName() { return m_szLocalFileName; };
	const QString & errorMessage() { return m_szErrorMessage; };
protected slots:
	void startDownload();
	void cancelClicked();
	void downloadTerminated(bool bSuccess);
	void downloadMessage(const QString & szMsg);
};

class IdentityProfileEditor : public QDialog
{
	friend class OptionsWidget_identityProfile;
	Q_OBJECT
public:
	IdentityProfileEditor(QWidget * pParent);
	~IdentityProfileEditor();

protected:
	QLineEdit * m_pNameEdit;
	QLineEdit * m_pNetworkEdit;
	QLineEdit * m_pNickEdit;
	QLineEdit * m_pAltNickEdit;
	QLineEdit * m_pUserNameEdit;
	QLineEdit * m_pRealNameEdit;
	QPushButton * m_pBtnOk;

public:
	bool editProfile(KviIdentityProfile * pProfile);
protected slots:
	void toggleButton();
};

#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_identity KviIconManager::Ident
#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_identity __tr2qs_no_lookup("Identity")
#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_identity 99998
#define KVI_OPTIONS_WIDGET_CONTAINER_OptionsWidget_identity true

class OptionsWidget_identity : public KviOptionsWidget
{
	Q_OBJECT
public:
	OptionsWidget_identity(QWidget * parent);
	~OptionsWidget_identity();
};

#define KVI_OPTIONS_WIDGET_ICON_KviIdentityGeneralOptionsWidget KviIconManager::Ident
#define KVI_OPTIONS_WIDGET_NAME_KviIdentityGeneralOptionsWidget __tr2qs_no_lookup("General")
#define KVI_OPTIONS_WIDGET_PRIORITY_KviIdentityGeneralOptionsWidget 90000
#define KVI_OPTIONS_WIDGET_PARENT_KviIdentityGeneralOptionsWidget OptionsWidget_identity

class KviIdentityGeneralOptionsWidget : public KviOptionsWidget
{
	Q_OBJECT
public:
	KviIdentityGeneralOptionsWidget(QWidget * pParent);
	~KviIdentityGeneralOptionsWidget();

protected:
	QString m_szAltNicknames[3];

	QComboBox * m_pAgeCombo;
	QComboBox * m_pGenderCombo;
protected slots:
	void setNickAlternatives();

protected:
	void commit() override;
};

#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_identityAvatar KviIconManager::Avatar
#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_identityAvatar __tr2qs_no_lookup("Avatar")
#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_identityAvatar 80000
#define KVI_OPTIONS_WIDGET_PARENT_OptionsWidget_identityAvatar OptionsWidget_identity

class OptionsWidget_identityAvatar : public KviOptionsWidget
{
	Q_OBJECT
public:
	OptionsWidget_identityAvatar(QWidget * pParent);
	~OptionsWidget_identityAvatar();

protected:
	QCheckBox * m_pUseAvatarCheck;
	QLineEdit * m_pAvatarNameEdit;
	QPushButton * m_pChooseAvatarButton;
	KviPixmap * m_pLocalAvatar;
	KviPixmapPreview * m_pAvatarPreview;
protected slots:
	void chooseAvatar();

protected:
	void commit() override;
};

#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_identityAdvanced KviIconManager::Gui
#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_identityAdvanced __tr2qs_no_lookup("Advanced")
#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_identityAdvanced 70000
#define KVI_OPTIONS_WIDGET_PARENT_OptionsWidget_identityAdvanced OptionsWidget_identity

class OptionsWidget_identityAdvanced : public KviOptionsWidget
{
	Q_OBJECT
public:
	OptionsWidget_identityAdvanced(QWidget * pParent);
	~OptionsWidget_identityAdvanced();

protected:
	bool m_bI;
	bool m_bW;
	bool m_bS;
	KviCString m_sModeStr;
	KviBoolSelector * m_pISelector;
	KviBoolSelector * m_pWSelector;
	KviBoolSelector * m_pSSelector;

protected:
	virtual void commit();
};

#define KVI_OPTIONS_WIDGET_ICON_OptionsWidget_identityProfile KviIconManager::UserWindow
#define KVI_OPTIONS_WIDGET_NAME_OptionsWidget_identityProfile __tr2qs_no_lookup("Profiles")
#define KVI_OPTIONS_WIDGET_PRIORITY_OptionsWidget_identityProfile 60000
#define KVI_OPTIONS_WIDGET_PARENT_OptionsWidget_identityProfile OptionsWidget_identity

class OptionsWidget_identityProfile : public KviOptionsWidget
{
	Q_OBJECT
public:
	OptionsWidget_identityProfile(QWidget * pParent);
	~OptionsWidget_identityProfile();

protected:
	QTreeWidget * m_pTreeWidget;
	QCheckBox * m_pProfilesCheck;
	QPushButton * m_pBtnAddProfile;
	QPushButton * m_pBtnEditProfile;
	QPushButton * m_pBtnDelProfile;
	IdentityProfileEditor * m_pEditor;
	int m_iCurrentEditedProfile;

public:
	virtual void commit();
protected slots:
	void toggleControls();
	void addProfileEntry();
	void editProfileEntry();
	void delProfileEntry();
	void editProfileOkPressed();
};

#endif //_OPTW_IDENTITY_H_