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) 2006 Novell, Inc http://www.opensuse.org
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 <kdialog.h>
#include "gwsearch.h"
#include "ui_gwprivacy.h"
class GroupWiseAccount;
class Q3ListBoxItem;
/**
Logic for the UI part managing the allow and deny lists, and the default privacy setting.
@author Kopete Developers
*/
class GroupWisePrivacyDialog : public KDialog
{
Q_OBJECT
public:
GroupWisePrivacyDialog( GroupWiseAccount * account, QWidget * parent, 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;
Ui::GroupWisePrivacy m_privacy;
GroupWiseContactSearch * m_search;
Q3ListBoxItem * m_defaultPolicy;
bool m_dirty;
KDialog * m_searchDlg;
};
#endif
|