Show invite menu in wlm chat window immediately
[kdenetwork.git] / kopete / plugins / privacy / contactselectorwidget.h
blobed5d59fbfdcdc27f1cdffdc11b0add7a6842d0ff
1 /*
2 contactselectorwidget.h
4 Copyright (c) 2006 by Andre Duffeck <duffeck@kde.org>
5 Kopete (c) 2002-2006 by the Kopete developers <kopete-devel@kde.org>
7 *************************************************************************
8 * *
9 * This program is free software; you can redistribute it and/or modify *
10 * it under the terms of the GNU General Public License as published by *
11 * the Free Software Foundation; either version 2 of the License, or *
12 * (at your option) any later version. *
13 * *
14 *************************************************************************
18 #ifndef CONTACT_SELECTOR_WIDGET_H
19 #define CONTACT_SELECTOR_WIDGET_H
21 #include <QWidget>
22 #include "privacyaccountlistmodel.h"
24 class Ui_ContactSelectorWidget_Base;
26 class ContactSelectorWidget : public QWidget
28 public:
29 ContactSelectorWidget( QWidget *parent = 0);
30 ~ContactSelectorWidget();
32 QList<AccountListEntry> contacts();
33 private:
34 Ui_ContactSelectorWidget_Base *mUi;
37 #endif