akonadi
agenttypedialog.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef AKONADI_AGENTTYPEDIALOG_H
00020 #define AKONADI_AGENTTYPEDIALOG_H
00021
00022 #include "agenttypewidget.h"
00023 #include "agenttype.h"
00024
00025 #include <KDE/KDialog>
00026
00027 namespace Akonadi {
00028
00053 class AKONADI_EXPORT AgentTypeDialog : public KDialog
00054 {
00055 Q_OBJECT
00056
00057 public:
00063 AgentTypeDialog( QWidget *parent = 0 );
00064
00068 ~AgentTypeDialog();
00069
00074 AgentType agentType() const;
00075
00081 AgentFilterProxyModel* agentFilterProxyModel() const;
00082
00083 public Q_SLOTS:
00084 virtual void done( int result );
00085
00086 private:
00087
00088 class Private;
00089 Private * const d;
00090
00091 };
00092
00093 }
00094
00095 #endif