* do not add a KStandardAction manually to actionCollection()
[kdenetwork.git] / krfb / manageinvitationsdialog.h
blobd7f171ab00d6de013892f9430271ba112d99745f
1 /* This file is part of the KDE project
2 Copyright (C) 2007 Alessandro Praduroux <pradu@pradu.it>
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public
6 License as published by the Free Software Foundation; either
7 version 2 of the License, or (at your option) any later version.
8 */
10 #ifndef MANAGEINVITATIONSDIALOG_H
11 #define MANAGEINVITATIONSDIALOG_H
13 #include <KDialog>
14 #include "ui_manageinvitations.h"
16 /**
17 @author Alessandro Praduroux <pradu@pradu.it>
19 class ManageInvitationsDialog : public KDialog, private Ui::ManageInvitationsDialog
21 Q_OBJECT
22 public:
23 ManageInvitationsDialog(QWidget *parent = 0);
25 ~ManageInvitationsDialog();
27 public Q_SLOTS:
28 void showWhatsthis();
29 void inviteManually();
30 void inviteByMail();
31 void reloadInvitations();
32 void showConfiguration();
33 void deleteAll();
34 void deleteCurrent();
35 void selectionChanged();
37 private:
41 #endif