• Skip to content
  • Skip to link menu
KDE API Reference
  • KDE API Reference
  • kdelibs API Reference
  • KDE Home
  • Contact Us
 

Kross

  • Kross
  • ActionCollection
Signals | Public Member Functions | Protected Member Functions | List of all members
Kross::ActionCollection Class Reference

#include <actioncollection.h>

Inheritance diagram for Kross::ActionCollection:
Inheritance graph
[legend]

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 ()
 

Public Member Functions

 ActionCollection (const QString &name, ActionCollection *parent=0)
 
virtual ~ActionCollection ()
 
Action * action (const QString &name) const
 
QList< Action * > actions () const
 
void addAction (Action *action)
 
void addAction (const QString &name, Action *action)
 
ActionCollection * collection (const QString &name) const
 
QStringList collections () const
 
QString description () const
 
bool hasCollection (const QString &name) const
 
QIcon icon () const
 
QString iconName () const
 
bool isEnabled () const
 
QString name () const
 
ActionCollection * parentCollection () const
 
bool readXml (const QDomElement &element, const QDir &directory=QDir())
 
bool readXml (const QDomElement &element, const QStringList &searchPath)
 
bool readXml (QIODevice *device, const QDir &directory=QDir())
 
bool readXml (QIODevice *device, const QStringList &searchPath)
 
bool readXmlFile (const QString &file)
 
void removeAction (const QString &name)
 
void removeAction (Action *action)
 
void setDescription (const QString &description)
 
void setEnabled (bool enabled)
 
void setIconName (const QString &iconname)
 
void setParentCollection (ActionCollection *parent)
 
void setText (const QString &text)
 
QString text () const
 
QDomElement writeXml ()
 
QDomElement writeXml (const QStringList &searchPath)
 
bool writeXml (QIODevice *device, int indent=2)
 
bool writeXml (QIODevice *device, int indent, const QStringList &searchPath)
 

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

ActionCollection::ActionCollection ( const QString &  name,
ActionCollection *  parent = 0 
)
explicit

Constructor.

Parameters
nameThe objectName the ActionCollection has.
parentThe 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.

ActionCollection::~ActionCollection ( )
virtual

Destructor.

Definition at line 73 of file actioncollection.cpp.

Member Function Documentation

Action * ActionCollection::action ( const QString &  name) const
Returns
action with given name or 0 if it wasn't found

Definition at line 168 of file actioncollection.cpp.

void Kross::ActionCollection::actionInserted ( Action *  child,
ActionCollection *  parent 
)
signal

This signal is emitted after child has been added to parent.

void Kross::ActionCollection::actionRemoved ( Action *  child,
ActionCollection *  parent 
)
signal

This signal is emitted after child has been removed from parent.

QList< Action * > ActionCollection::actions ( ) const

Definition at line 163 of file actioncollection.cpp.

void Kross::ActionCollection::actionToBeInserted ( Action *  child,
ActionCollection *  parent 
)
signal

This signal is emitted just before child is added to parent.

void Kross::ActionCollection::actionToBeRemoved ( Action *  child,
ActionCollection *  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.

void ActionCollection::addAction ( const QString &  name,
Action *  action 
)

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.

void Kross::ActionCollection::collectionInserted ( ActionCollection *  child,
ActionCollection *  parent 
)
signal

This signal is emitted after child has been added to parent.

void Kross::ActionCollection::collectionRemoved ( ActionCollection *  child,
ActionCollection *  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.

void Kross::ActionCollection::collectionToBeInserted ( ActionCollection *  child,
ActionCollection *  parent 
)
signal

This signal is emitted just before child is added to parent.

void Kross::ActionCollection::collectionToBeRemoved ( ActionCollection *  child,
ActionCollection *  parent 
)
signal

This signal is emitted before child is removed from parent.

void ActionCollection::connectSignals ( ActionCollection *  collection,
bool  conn 
)
protected

Definition at line 229 of file actioncollection.cpp.

void ActionCollection::connectSignals ( Action *  collection,
bool  conn 
)
protected

Definition at line 218 of file actioncollection.cpp.

void Kross::ActionCollection::dataChanged ( Action *  )
signal

This signal is emitted when the data of a child action is changed.

void Kross::ActionCollection::dataChanged ( ActionCollection *  )
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.

bool ActionCollection::hasCollection ( const QString &  name) const
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
elementThe QDomElement that contains the XML.
directoryThe 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.

bool ActionCollection::readXml ( QIODevice *  device,
const QDir &  directory = QDir() 
)

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.

bool ActionCollection::readXmlFile ( const QString &  file)

Read the XML from the file file .

Parameters
fileThe existing XML file that should be read.
Returns
true if reading was successful else false.

Definition at line 361 of file actioncollection.cpp.

void ActionCollection::registerCollection ( ActionCollection *  collection)
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.

void ActionCollection::unregisterCollection ( const QString &  name)
protected

Definition at line 152 of file actioncollection.cpp.

void Kross::ActionCollection::updated ( )
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.

bool ActionCollection::writeXml ( QIODevice *  device,
int  indent = 2 
)

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:
  • actioncollection.h
  • actioncollection.cpp
This file is part of the KDE documentation.
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.

Kross

Skip menu "Kross"
  • Main Page
  • Namespace List
  • Namespace Members
  • Alphabetical List
  • Class List
  • Class Hierarchy
  • Class Members
  • File List
  • File Members
  • Related Pages

kdelibs API Reference

Skip menu "kdelibs API Reference"
  • DNSSD
  • Interfaces
  •   KHexEdit
  •   KMediaPlayer
  •   KSpeech
  •   KTextEditor
  • kconf_update
  • KDE3Support
  •   KUnitTest
  • KDECore
  • KDED
  • KDEsu
  • KDEUI
  • KDEWebKit
  • KDocTools
  • KFile
  • KHTML
  • KImgIO
  • KInit
  • kio
  • KIOSlave
  • KJS
  •   KJS-API
  • kjsembed
  •   WTF
  • KNewStuff
  • KParts
  • KPty
  • Kross
  • KUnitConversion
  • KUtils
  • Nepomuk
  • Nepomuk-Core
  • Nepomuk
  • Plasma
  • Solid
  • Sonnet
  • ThreadWeaver

Search



Report problems with this website to our bug tracking system.
Contact the specific authors with questions and comments about the page contents.

KDE® and the K Desktop Environment® logo are registered trademarks of KDE e.V. | Legal