summaryrefslogtreecommitdiffstats
path: root/src/modules/reguser/edituser.h
blob: 54b324a2ca59589512db9d8e546afb8b67551f1e (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
#ifndef _EDITUSER_H_
#define _EDITUSER_H_
//=============================================================================
//
//   File : edituser.h
//   Creation date : Sun Dec 24 2000 15:16:17 CEST by Szymon Stefanek
//
//   This file is part of the KVirc irc client distribution
//   Copyright (C) 2000-2004 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_string.h"
#include "kvi_regusersdb.h"
#include "kvi_selectors.h"

#include <tqwidget.h>
#include <tqlineedit.h>
#include <tqpushbutton.h>
#include "kvi_tal_listview.h"
#include "kvi_tal_listbox.h"
#include "kvi_pointerhashtable.h"
#include <kvi_tal_tabdialog.h>
#ifdef COMPILE_USE_QT4
#include <tq3table.h>
#define Kvi_Tal_Table Q3Table
#define Kvi_Tal_TableItem Q3TableItem

#else
#include <tqtable.h>
#define Kvi_Tal_Table TQTable
#define Kvi_Tal_TableItem TQTableItem

#endif
#include "kvi_tal_popupmenu.h"

#ifndef _EDITUSER_CPP_
	extern KviRegisteredUserDataBase * g_pLocalRegisteredUserDataBase;
#endif

class KviRegisteredUser;

class KviReguserPropertiesDialog : public TQDialog
{
	Q_OBJECT
  
public:
	KviReguserPropertiesDialog(TQWidget *p,KviPointerHashTable<TQString,TQString> * dict);
	~KviReguserPropertiesDialog();
protected:
#ifdef COMPILE_USE_QT4
	Q3Table *m_pTable;
#else
	TQTable             * m_pTable;
#endif
	KviPointerHashTable<TQString,TQString>     * m_pPropertyDict;
	TQPushButton        * m_pDelButton;
	TQPushButton        * m_pAddButton;
protected:
	void fillData();
	virtual void closeEvent(TQCloseEvent *);
protected slots:
	void okClicked();
	void addClicked();
	void delClicked();
};


class KviReguserMaskDialog : public TQDialog
{
	Q_OBJECT
  
public:
	KviReguserMaskDialog(TQWidget * p,KviIrcMask * m);
	~KviReguserMaskDialog();
protected:
	KviIrcMask * m_pMask;

	TQLineEdit * m_pNickEdit;
	TQLineEdit * m_pUserEdit;
	TQLineEdit * m_pHostEdit;
	
	virtual void closeEvent(TQCloseEvent *);
protected slots:
	void okClicked();
};


class KviRegisteredUserEntryDialog : public KviTalTabDialog
{
	Q_OBJECT
  
public:
	KviRegisteredUserEntryDialog(TQWidget * p,KviRegisteredUser * r,bool bModal = true);
	virtual ~KviRegisteredUserEntryDialog();
protected:
	KviRegisteredUser  * m_pUser;

	TQLineEdit          * m_pNameEdit;
	TQLineEdit          * m_pCommentEdit;

	KviTalListBox           * m_pMaskListBox;

	TQPushButton        * m_pDelMaskButton;
	TQPushButton        * m_pEditMaskButton;
	TQPushButton        * m_pAddMaskButton;

	TQCheckBox          * m_pNotifyCheck;
	TQLineEdit          * m_pNotifyNick;

	KviPixmap          * m_pAvatar;
	KviPixmapSelector  * m_pAvatarSelector;

	KviPointerHashTable<TQString,TQString>     * m_pPropertyDict;
	
	TQCheckBox          * m_pCustomColorCheck;
	TQColor		   * m_pCustomColor;
	KviColorSelector   * m_pCustomColorSelector;

	//Ignore TAB
	TQCheckBox          * m_pIgnoreEnabled;
	TQCheckBox          * m_pIgnoreQuery;
	TQCheckBox          * m_pIgnoreChannel;
	TQCheckBox          * m_pIgnoreNotice;
	TQCheckBox          * m_pIgnoreCtcp;
	TQCheckBox          * m_pIgnoreInvite;
	TQCheckBox          * m_pIgnoreDcc;

	virtual void closeEvent(TQCloseEvent *);
protected slots:
	void okClicked();
	void addMaskClicked();
	void delMaskClicked();
	void editMaskClicked();
	void editAllPropertiesClicked();
	void maskCurrentChanged(KviTalListBoxItem *it);
};



#endif //_EDITUSER_H_