blob: 0211e85e5484210d0df178596e5921ca510dc327 (
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
|
/*
Kopete Groupwise Protocol
gwprivacydialog.h - dialog summarising, and editing, the user's privacy settings
Copyright (c) 2004 SUSE Linux AG http://www.suse.com
Kopete (c) 2002-2004 by the Kopete developers <kopete-devel@kde.org>
*************************************************************************
* *
* This library 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. *
* *
*************************************************************************
*/
#ifndef GWPRIVACYDIALOG_H
#define GWPRIVACYDIALOG_H
#include <kdialogbase.h>
class GroupWiseAccount;
class GroupWisePrivacyWidget;
class GroupWiseContactSearch;
class TQListBoxItem;
/**
Logic for the UI part managing the allow and deny lists, and the default privacy setting.
@author Kopete Developers
*/
class GroupWisePrivacyDialog : public KDialogBase
{
Q_OBJECT
TQ_OBJECT
public:
GroupWisePrivacyDialog( GroupWiseAccount * account, TQWidget * tqparent, const char * name );
~GroupWisePrivacyDialog();
protected:
void commitChanges();
void errorNotConnected();
void disableWidgets();
void populateWidgets();
void updateButtonState();
protected slots:
void slotAllowClicked();
void slotBlockClicked();
void slotAddClicked();
void slotRemoveClicked();
void slotAllowListClicked();
void slotDenyListClicked();
void slotPrivacyChanged();
void slotSearchedForUsers();
void slotOk();
void slotApply();
private:
GroupWiseAccount * m_account;
GroupWisePrivacyWidget * m_privacy;
GroupWiseContactSearch * m_search;
TQListBoxItem * m_defaultPolicy;
bool m_dirty;
KDialogBase * m_searchDlg;
};
#endif
|