00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "collectionpropertiespage.h"
00021
00022 using namespace Akonadi;
00023
00024
00025
00029 class CollectionPropertiesPage::Private
00030 {
00031 public:
00032 QString title;
00033 };
00034
00035
00036
00037 CollectionPropertiesPage::CollectionPropertiesPage( QWidget *parent ) :
00038 QWidget( parent ),
00039 d( new Private )
00040 {
00041 }
00042
00043 CollectionPropertiesPage::~CollectionPropertiesPage()
00044 {
00045 delete d;
00046 }
00047
00048 bool CollectionPropertiesPage::canHandle(const Collection&) const
00049 {
00050 return true;
00051 }
00052
00053 QString Akonadi::CollectionPropertiesPage::pageTitle() const
00054 {
00055 return d->title;
00056 }
00057
00058 void CollectionPropertiesPage::setPageTitle(const QString & title)
00059 {
00060 d->title = title;
00061 }
00062
00063 CollectionPropertiesPageFactory::~CollectionPropertiesPageFactory()
00064 {
00065 }
00066
00067 #include "collectionpropertiespage.moc"