mirror of
https://bitbucket.org/smil3y/kde-playground.git
synced 2025-02-23 10:22:50 +00:00
151 lines
4.4 KiB
C++
151 lines
4.4 KiB
C++
/*
|
|
Copyright (c) 2008 Volker Krause <vkrause@kde.org>
|
|
|
|
This library is free software; you can redistribute it and/or modify it
|
|
under the terms of the GNU Library General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or (at your
|
|
option) any later version.
|
|
|
|
This library is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public
|
|
License for more details.
|
|
|
|
You should have received a copy of the GNU Library General Public License
|
|
along with this library; see the file COPYING.LIB. If not, write to the
|
|
Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
02110-1301, USA.
|
|
*/
|
|
|
|
#ifndef AKONADI_COLLECTIONPROPERTIESDIALOG_H
|
|
#define AKONADI_COLLECTIONPROPERTIESDIALOG_H
|
|
|
|
#include "akonadi_export.h"
|
|
|
|
#include <akonadi/collectionpropertiespage.h>
|
|
|
|
#include <kdialog.h>
|
|
|
|
namespace Akonadi {
|
|
|
|
class Collection;
|
|
|
|
/**
|
|
* @short A generic and extensible dialog for collection properties.
|
|
*
|
|
* This dialog allows you to show or modify the properties of a collection.
|
|
*
|
|
* @code
|
|
*
|
|
* Akonadi::Collection collection = ...
|
|
*
|
|
* CollectionPropertiesDialog dlg( collection, this );
|
|
* dlg.exec();
|
|
*
|
|
* @endcode
|
|
*
|
|
* It can be extended by custom pages, which contains gui elements for custom
|
|
* properties.
|
|
*
|
|
* @see Akonadi::CollectionPropertiesPage
|
|
*
|
|
* @author Volker Krause <vkrause@kde.org>
|
|
*/
|
|
class AKONADI_EXPORT CollectionPropertiesDialog : public KDialog
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
/**
|
|
* Enumerates the registered default pages which can be displayed.
|
|
*
|
|
* @since 4.7
|
|
*/
|
|
enum DefaultPage {
|
|
GeneralPage, //!< General properties page
|
|
CachePage //!< Cache properties page
|
|
};
|
|
|
|
/**
|
|
* Creates a new collection properties dialog.
|
|
*
|
|
* @param collection The collection which properties should be shown.
|
|
* @param parent The parent widget.
|
|
*/
|
|
explicit CollectionPropertiesDialog(const Collection &collection, QWidget *parent = 0);
|
|
|
|
/**
|
|
* Creates a new collection properties dialog.
|
|
*
|
|
* This constructor allows to specify the subset of registered pages that will
|
|
* be shown as well as their order. The pages have to set an objectName in their
|
|
* constructor to make it work. If an empty list is passed, all registered pages
|
|
* will be loaded. Use defaultPageObjectName() to fetch the object name for a
|
|
* registered default page.
|
|
*
|
|
* @param collection The collection which properties should be shown.
|
|
* @param pages The object names of the pages that shall be loaded.
|
|
* @param parent The parent widget.
|
|
*
|
|
* @since 4.6
|
|
*/
|
|
CollectionPropertiesDialog(const Collection &collection, const QStringList &pages, QWidget *parent = 0);
|
|
|
|
/**
|
|
* Destroys the collection properties dialog.
|
|
*
|
|
* @note Never call manually, the dialog is deleted automatically once all changes
|
|
* are written back to the Akonadi storage.
|
|
*/
|
|
~CollectionPropertiesDialog();
|
|
|
|
/**
|
|
* Register custom pages for the collection properties dialog.
|
|
*
|
|
* @param factory The properties page factory that provides the custom page.
|
|
*
|
|
* @see Akonadi::CollectionPropertiesPageFactory
|
|
*/
|
|
static void registerPage(CollectionPropertiesPageFactory *factory);
|
|
|
|
/**
|
|
* Sets whether to @p use default page or not.
|
|
*
|
|
* @since 4.4
|
|
* @param use mode of default page's usage
|
|
*/
|
|
static void useDefaultPage(bool use);
|
|
|
|
/**
|
|
* Returns the object name of one of the dialog's registered default pages.
|
|
* The object name may be used in the QStringList constructor parameter to
|
|
* specify which default pages should be shown.
|
|
*
|
|
* @param page the desired page
|
|
* @return the page's object name
|
|
*
|
|
* @since 4.7
|
|
*/
|
|
static QString defaultPageObjectName(DefaultPage page);
|
|
|
|
/**
|
|
* Sets the page to be shown in the tab widget.
|
|
*
|
|
* @param name The object name of the page that is to be shown.
|
|
*
|
|
* @since 4.10
|
|
*/
|
|
void setCurrentPage(const QString &name);
|
|
|
|
private:
|
|
//@cond PRIVATE
|
|
class Private;
|
|
Private *const d;
|
|
|
|
Q_PRIVATE_SLOT(d, void save())
|
|
Q_PRIVATE_SLOT(d, void saveResult(KJob *))
|
|
//@endcond
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|