CollectionPropertiesDialog Class Reference
from PyKDE4.akonadi import *
Inherits: KDialog → QDialog → QWidget → QObject
Namespace: Akonadi
Detailed Description
A generic and extensible dialog for collection properties.
This dialog allows you to show or modify the properties of a collection.
Akonadi.Collection collection = ... CollectionPropertiesDialog dlg( collection, this ); dlg.exec();
It can be extended by custom pages, which contains gui elements for custom properties.
- See also:
- Akonadi.CollectionPropertiesPage
Methods | |
__init__ (self, Akonadi.Collection collection, QWidget parent=0) | |
__init__ (self, Akonadi.Collection collection, QStringList pages, QWidget parent=0) | |
Static Methods | |
registerPage (Akonadi.CollectionPropertiesPageFactory factory) | |
useDefaultPage (bool use) |
Method Documentation
__init__ | ( | self, | ||
Akonadi.Collection | collection, | |||
QWidget | parent=0 | |||
) |
Creates a new collection properties dialog.
- Parameters:
-
collection The collection which properties should be shown. parent The parent widget.
__init__ | ( | self, | ||
Akonadi.Collection | collection, | |||
QStringList | pages, | |||
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.
- Parameters:
-
collection The collection which properties should be shown. pages The object names of the pages that shall be loaded. parent The parent widget.
- Since:
- 4.6
Static Method Documentation
registerPage | ( | Akonadi.CollectionPropertiesPageFactory | factory | |
) |
Register custom pages for the collection properties dialog.
- Parameters:
-
factory The properties page factory that provides the custom page.
- See also:
- Akonadi.CollectionPropertiesPageFactory
useDefaultPage | ( | bool | use | |
) |
Sets whether to use default page or not.
- Since:
- 4.4