Kross
#include <actioncollection.h>
Signals | |
void | actionInserted (Action *child, ActionCollection *parent) |
void | actionRemoved (Action *child, ActionCollection *parent) |
void | actionToBeInserted (Action *child, ActionCollection *parent) |
void | actionToBeRemoved (Action *child, ActionCollection *parent) |
void | collectionInserted (ActionCollection *child, ActionCollection *parent) |
void | collectionRemoved (ActionCollection *child, ActionCollection *parent) |
void | collectionToBeInserted (ActionCollection *child, ActionCollection *parent) |
void | collectionToBeRemoved (ActionCollection *child, ActionCollection *parent) |
void | dataChanged (Action *) |
void | dataChanged (ActionCollection *) |
void | updated () |
Protected Member Functions | |
void | connectSignals (ActionCollection *collection, bool conn) |
void | connectSignals (Action *collection, bool conn) |
void | registerCollection (ActionCollection *collection) |
void | unregisterCollection (const QString &name) |
Detailed Description
The ActionCollection class manages collections of Action instances.
An ActionCollection can have both actions and other collections as children. Child actions can be accessed using actions() which returns a list of Action pointers. Child collections can be accessed using collections() which returns a list of collection names. The collection can then be accessed with collection(name). To add a child action, call addAction(), and to remove an action: removeAction(). To add a child collection, call setParentCollection(parent) in the collection you want to add to parent. To remove a collection call setParentCollection(0). NOTE: Do not use setParent().
Definition at line 45 of file actioncollection.h.
Constructor & Destructor Documentation
|
explicit |
Constructor.
- Parameters
-
name The objectName the ActionCollection has. parent The parent ActionCollection this ActionCollection will be child of. If parent is not NULL, this ActionCollection instance will register itself as child of the parent parent
by using the setParentCollection method.
Definition at line 61 of file actioncollection.cpp.
|
virtual |
Destructor.
Definition at line 73 of file actioncollection.cpp.
Member Function Documentation
- Returns
- action with given name or 0 if it wasn't found
Definition at line 168 of file actioncollection.cpp.
|
signal |
This signal is emitted after child
has been added to parent
.
|
signal |
This signal is emitted after child
has been removed from parent
.
Definition at line 163 of file actioncollection.cpp.
|
signal |
This signal is emitted just before child
is added to parent
.
|
signal |
This signal is emitted before child
is removed from parent
.
void ActionCollection::addAction | ( | Action * | action | ) |
Definition at line 173 of file actioncollection.cpp.
Definition at line 179 of file actioncollection.cpp.
ActionCollection * ActionCollection::collection | ( | const QString & | name | ) | const |
- Returns
- the ActionCollection instance which objectName is
name
or NULL if there exists no such ActionCollection .
Definition at line 128 of file actioncollection.cpp.
|
signal |
This signal is emitted after child
has been added to parent
.
|
signal |
This signal is emitted after child
has been removed from parent
.
QStringList ActionCollection::collections | ( | ) | const |
- Returns
- a list of names of child ActionCollection instances this collection has
Definition at line 133 of file actioncollection.cpp.
|
signal |
This signal is emitted just before child
is added to parent
.
|
signal |
This signal is emitted before child
is removed from parent
.
|
protected |
Definition at line 229 of file actioncollection.cpp.
Definition at line 218 of file actioncollection.cpp.
|
signal |
This signal is emitted when the data of a child action is changed.
|
signal |
This signal is emitted when the data of the ActionCollection is changed.
QString ActionCollection::description | ( | ) | const |
- Returns
- the optional description for this ActionCollection.
Definition at line 88 of file actioncollection.cpp.
- Returns
- true if this collection has a child ActionCollection instance which objectName is
name
.
Definition at line 123 of file actioncollection.cpp.
QIcon ActionCollection::icon | ( | ) | const |
- Returns
- the icon defined with
setIconName()
.
Definition at line 93 of file actioncollection.cpp.
QString ActionCollection::iconName | ( | ) | const |
- Returns
- the name of the icon.
Definition at line 91 of file actioncollection.cpp.
bool ActionCollection::isEnabled | ( | ) | const |
Return the enable this ActionCollection has.
Definition at line 95 of file actioncollection.cpp.
QString ActionCollection::name | ( | ) | const |
- Returns
- the objectName for this ActionCollection.
Definition at line 83 of file actioncollection.cpp.
ActionCollection * ActionCollection::parentCollection | ( | ) | const |
- Returns
- the parent ActionCollection instance this is child of or NULL if this collection does not have a parent.
Definition at line 98 of file actioncollection.cpp.
bool ActionCollection::readXml | ( | const QDomElement & | element, |
const QDir & | directory = QDir() |
||
) |
Load child Action and ActionCollection instances this collection has from the element
.
- Parameters
-
element The QDomElement that contains the XML. directory The current directory used for relative paths defined within a script-tag for the file-attribute. If the directory is QDir() relative paths are not resolved.
- Returns
- true on success else false.
Definition at line 271 of file actioncollection.cpp.
bool ActionCollection::readXml | ( | const QDomElement & | element, |
const QStringList & | searchPath | ||
) |
Definition at line 276 of file actioncollection.cpp.
Read XML from the QIODevice device
.
Definition at line 341 of file actioncollection.cpp.
bool ActionCollection::readXml | ( | QIODevice * | device, |
const QStringList & | searchPath | ||
) |
Definition at line 346 of file actioncollection.cpp.
Read the XML from the file file
.
- Parameters
-
file The existing XML file that should be read.
- Returns
- true if reading was successful else false.
Definition at line 361 of file actioncollection.cpp.
|
protected |
Definition at line 138 of file actioncollection.cpp.
void ActionCollection::removeAction | ( | const QString & | name | ) |
Definition at line 193 of file actioncollection.cpp.
void ActionCollection::removeAction | ( | Action * | action | ) |
Definition at line 208 of file actioncollection.cpp.
void ActionCollection::setDescription | ( | const QString & | description | ) |
Set the optional description for this ActionCollection.
Definition at line 89 of file actioncollection.cpp.
void ActionCollection::setEnabled | ( | bool | enabled | ) |
Enable or disable this ActionCollection.
Definition at line 96 of file actioncollection.cpp.
void ActionCollection::setIconName | ( | const QString & | iconname | ) |
Set the name of the icon to iconname
.
Definition at line 92 of file actioncollection.cpp.
void ActionCollection::setParentCollection | ( | ActionCollection * | parent | ) |
Set the parent to parent
. NOTE: Do not use setParent().
Definition at line 103 of file actioncollection.cpp.
void ActionCollection::setText | ( | const QString & | text | ) |
Set the display text to text
.
Definition at line 86 of file actioncollection.cpp.
QString ActionCollection::text | ( | ) | const |
- Returns
- the display text
Definition at line 85 of file actioncollection.cpp.
|
protected |
Definition at line 152 of file actioncollection.cpp.
|
signal |
This signal is emitted if the content of the ActionCollection was changed.
QDomElement ActionCollection::writeXml | ( | ) |
- Returns
- a QDomElement that represents the child Action and ActionCollection instances this collection has.
Definition at line 389 of file actioncollection.cpp.
QDomElement ActionCollection::writeXml | ( | const QStringList & | searchPath | ) |
Definition at line 394 of file actioncollection.cpp.
Write XML to the QIODevice device
and use a space-idention of indent
for the XML.
Definition at line 434 of file actioncollection.cpp.
bool ActionCollection::writeXml | ( | QIODevice * | device, |
int | indent, | ||
const QStringList & | searchPath | ||
) |
Definition at line 439 of file actioncollection.cpp.
The documentation for this class was generated from the following files:
Documentation copyright © 1996-2014 The KDE developers.
Generated on Tue Oct 14 2014 22:49:54 by doxygen 1.8.7 written by Dimitri van Heesch, © 1997-2006
KDE's Doxygen guidelines are available online.