akonadi
agenttypedialog.h
00001 /* 00002 Copyright (c) 2006 Tobias Koenig <tokoe@kde.org> 00003 Copyright (c) 2008 Omat Holding B.V. <info@omat.nl> 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Lesser General Public 00007 License as published by the Free Software Foundation; either 00008 version 2.1 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Lesser General Public License for more details. 00014 00015 You should have received a copy of the GNU Lesser General Public 00016 License along with this library. If not, see <http://www.gnu.org/licenses/>. 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 //@cond PRIVATE 00088 class Private; 00089 Private * const d; 00090 //@endcond 00091 }; 00092 00093 } 00094 00095 #endif
This file is part of the KDE documentation.
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu Aug 2 2012 15:25:17 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
Documentation copyright © 1996-2012 The KDE developers.
Generated on Thu Aug 2 2012 15:25:17 by doxygen 1.7.5 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.