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

Kross

  • Kross
  • Manager
Public Slots | Signals | Public Member Functions | Static Public Member Functions | List of all members
Kross::Manager Class Reference

#include <manager.h>

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

Public Slots

QObject * action (const QString &name)
 
void addQObject (QObject *obj, const QString &name=QString())
 
void deleteModules ()
 
bool executeScriptFile (const QUrl &file=QUrl())
 
bool hasAction (const QString &name)
 
QStringList interpreters () const
 
QObject * module (const QString &modulename)
 
QObject * qobject (const QString &name) const
 
QStringList qobjectNames () const
 

Signals

void finished (Kross::Action *)
 
void started (Kross::Action *)
 

Public Member Functions

 Manager ()
 
virtual ~Manager ()
 
ActionCollection * actionCollection () const
 
bool hasHandlerAssigned (const QByteArray &typeName) const
 
bool hasInterpreterInfo (const QString &interpretername) const
 
Interpreter * interpreter (const QString &interpretername) const
 
InterpreterInfo * interpreterInfo (const QString &interpretername) const
 
QHash< QString, InterpreterInfo * > interpreterInfos () const
 
const QString interpreternameForFile (const QString &file)
 
MetaTypeHandler * metaTypeHandler (const QByteArray &typeName) const
 
void registerMetaTypeHandler (const QByteArray &typeName, MetaTypeHandler::FunctionPtr *handler)
 
void registerMetaTypeHandler (const QByteArray &typeName, MetaTypeHandler::FunctionPtr2 *handler)
 
void registerMetaTypeHandler (const QByteArray &typeName, MetaTypeHandler *handler)
 
void setStrictTypesEnabled (bool enabled)
 
bool strictTypesEnabled () const
 
- Public Member Functions inherited from Kross::ChildrenInterface
void addObject (QObject *object, const QString &name=QString(), Options options=NoOption)
 
bool hasObject (const QString &name) const
 
QObject * object (const QString &name) const
 
Options objectOption (const QString &name) const
 
QHash< QString, Options > objectOptions () const
 
QHash< QString, QObject * > objects () const
 

Static Public Member Functions

static Manager & self ()
 

Additional Inherited Members

- Public Types inherited from Kross::ChildrenInterface
enum  Options { NoOption = 0x00, AutoConnectSignals = 0x01, LastOption = 0x1000000 }
 

Detailed Description

The Manager class is a singleton that provides the main entry point to deal with the Kross Scripting Framework.

Use Interpreter to just work with some implementated interpreter like python or ruby. While Action implements a flexible abstract container to deal with single script files.

Definition at line 49 of file manager.h.

Constructor & Destructor Documentation

Manager::Manager ( )
explicit

The constructor.

Use self() to access the Manager singleton instance and don't call this direct.

Definition at line 121 of file manager.cpp.

Manager::~Manager ( )
virtual

Destructor.

Definition at line 231 of file manager.cpp.

Member Function Documentation

QObject * Manager::action ( const QString &  name)
slot
Returns
the Action QObject instance defined with name which is child of this Manager instance. If there exists no such Action yet, create one.

Definition at line 295 of file manager.cpp.

ActionCollection * Manager::actionCollection ( ) const
Returns
the root ActionCollection instance. Each collection could have children of other collections and/or Action instances.

Definition at line 285 of file manager.cpp.

void Manager::addQObject ( QObject *  obj,
const QString &  name = QString() 
)
slot

Definition at line 380 of file manager.cpp.

void Manager::deleteModules ( )
slot

External modules are dynamically loadable and are normally deleted when the kross library is unloaded.

Applications may choose to call deleteModules() instead to control deletion of the modules at another time.

Definition at line 364 of file manager.cpp.

bool Manager::executeScriptFile ( const QUrl &  file = QUrl())
slot

Execute a script file.

Parameters
fileThe script file that should be executed.

Definition at line 370 of file manager.cpp.

void Kross::Manager::finished ( Kross::Action *  )
signal

This signal is emitted when the execution of a script is finished.

bool Manager::hasAction ( const QString &  name)
slot
Returns
true if there exists a Action QObject instance which is child of this Manager instance and is defined as name else false is returned.

Definition at line 290 of file manager.cpp.

bool Manager::hasHandlerAssigned ( const QByteArray &  typeName) const
Returns
whether typeName has a handler assigned or not.

Definition at line 425 of file manager.cpp.

bool Manager::hasInterpreterInfo ( const QString &  interpretername) const
Returns
true if there exists an interpreter with the name interpretername else false.

Definition at line 245 of file manager.cpp.

Interpreter * Manager::interpreter ( const QString &  interpretername) const

Return the Interpreter instance defined by the interpretername.

Parameters
interpreternameThe name of the interpreter. e.g. "python" or "kjs".
Returns
The Interpreter instance or NULL if there does not exists an interpreter with such an interpretername.

Definition at line 271 of file manager.cpp.

InterpreterInfo * Manager::interpreterInfo ( const QString &  interpretername) const
Returns
the InterpreterInfo* matching to the defined interpretername or NULL if there does not exists such a interpreter.

Definition at line 250 of file manager.cpp.

QHash< QString, InterpreterInfo * > Manager::interpreterInfos ( ) const
Returns
a map with InterpreterInfo* instances used to describe interpreters.

Definition at line 240 of file manager.cpp.

const QString Manager::interpreternameForFile ( const QString &  file)

Return the name of the Interpreter that feels responsible for the defined file .

Parameters
fileThe filename we should try to determinate the interpretername for.
Returns
The name of the Interpreter which will be used to execute the file or QString() if we failed to determinate a matching interpreter for the file.

Definition at line 255 of file manager.cpp.

QStringList Manager::interpreters ( ) const
slot
Returns
a list of names of all supported scripting interpreters. The list may contain for example "python", "ruby" and "kjs" depending on what interpreter-plugins are installed.

Definition at line 280 of file manager.cpp.

MetaTypeHandler * Manager::metaTypeHandler ( const QByteArray &  typeName) const
Returns
the MetaTypeHandler instance for custom types of type typeName .
Since
4.2

Definition at line 395 of file manager.cpp.

QObject * Manager::module ( const QString &  modulename)
slot

Load and return an external module.

Modules are dynamic loadable plugins which could be loaded on demand to provide additional functionality.

Parameters
modulenameThe name of the module we should try to load.
Returns
The QObject instance that repesents the module or NULL if loading failed.

Definition at line 307 of file manager.cpp.

QObject * Manager::qobject ( const QString &  name) const
slot

Definition at line 385 of file manager.cpp.

QStringList Manager::qobjectNames ( ) const
slot

Definition at line 390 of file manager.cpp.

void Manager::registerMetaTypeHandler ( const QByteArray &  typeName,
MetaTypeHandler::FunctionPtr *  handler 
)

Register a handler for custom types.

See also the WrapperInterface class.

Parameters
typeNameThe custom type the handler should handle.
handlerFunction that should be called to handle a custom type.
Since
4.2

Definition at line 400 of file manager.cpp.

void Manager::registerMetaTypeHandler ( const QByteArray &  typeName,
MetaTypeHandler::FunctionPtr2 *  handler 
)

Register a handler for custom types.

See also the WrapperInterface class.

Parameters
typeNameThe custom type the handler should handle.
handlerFunction that should be called to handle a custom type.
Since
4.2

Definition at line 405 of file manager.cpp.

void Manager::registerMetaTypeHandler ( const QByteArray &  typeName,
MetaTypeHandler *  handler 
)

Register a handler for custom types.

See also the WrapperInterface class.

Parameters
typeNameThe custom type the handler should handle.
handlerFunction that should be called to handle a custom type.
Since
4.2

Definition at line 410 of file manager.cpp.

Manager & Manager::self ( )
static

Return the Manager instance.

Always use this function to access the Manager singleton.

Definition at line 73 of file manager.cpp.

void Manager::setStrictTypesEnabled ( bool  enabled)

Enable more strict type handling.

If enabled then scripting-backends don't handle unknown pointer-types where no MetaTypeHandler was registered for. If disabled, such unknown types will be reinterpret_cast to QObject* what allows to also handle unknown QObject's but will also result in a crash if the unknown type isn't a QObject. Per default strict type handling is enabled.

Since
4.2

Definition at line 420 of file manager.cpp.

void Kross::Manager::started ( Kross::Action *  )
signal

This signal is emitted when the execution of a script is started.

bool Manager::strictTypesEnabled ( ) const

Returns true if strict type handling is enabled.

Since
4.2

Definition at line 415 of file manager.cpp.


The documentation for this class was generated from the following files:
  • manager.h
  • manager.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