|Home | Tutorial | Classes | Functions | Qt Scripter | Language | Library | Qt API | QSA Articles Qt Script for Applications

QSObjectFactory Class Reference

The QSObjectFactory class provides a mechanism for Qt Script programs to create C++ QObjects. More...

#include <qsobjectfactory.h>

Inherited by QSInputDialogFactory.

List of all member functions.

Public Members

Protected Members


Detailed Description

The QSObjectFactory class provides a mechanism for Qt Script programs to create C++ QObjects.

If we want script programmers to create their own C++ QObjects we can either provide a QObject subclass that has a slot which is a factory function that returns QObjects, or we can subclass QSObjectFactory and reimplement the create() and classes() functions.

The classes() function is called by the scripting engine to see which classes can be construced by the script programmer. And the create() function is called by the scripting engine to create the instance, i.e. when the user writes something like this:

    var x = new SomeCppObject( arg1, arg2 ); // Qt Script
  

The staticClasses() function is called by the scripting engine to see which classes provide static functions and variables. A QObject instance is then later created using createStatic() to provide the interpreter of the static representation.

A single QSObjectFactory subclass may be used to provide any number of creatable QObject classes. To make these classes known to the scripting engine, create an instance of the subclass with a pointer to the interpreter as an argument.

A QSObjectFactory becomes active when it is added to a QSInterpreter using the function QSInterpreter::addObjectFactory(). An object factory can only be added to one QSInterpreter at a time.


Member Function Documentation

QSObjectFactory::QSObjectFactory ()

Constructor. Creates the object factory. To make the object factory available to and interpreter, use the function QSInterpreter::addObjectFactory().

QStringList QSObjectFactory::classes () const [virtual]

This virtual function should be reimplemented in your QSObjectFactory subclass when you want to instantiate objects from script. It should return a list of the names of all the classes that your QSObjectFactory is capable of instantiating.

This function is used by the scripting engine to find out which classes this QSObjectFactory can instantiate.

QObject * QSObjectFactory::create ( const QString & className, const QSArgumentList & arguments, QObject * context ) [virtual]

This virtual function should be reimplemented in your QSObjectFactory subclass when you want to instantiate objects from script. The subclass can be used to create any number of different classes; the name of the required class is passed in the className argument, and the arguments to be passed to that class's constructor are passed in the arguments list. See QSArgument for further information on the arguments. context os the script QObject context in which the class has been instantiated, or 0 if the class has not been instantiated in a QObject context.

Only QObject subclasses may be created in this way. This function returns an instance of the requested class.

This function is called by the scripting engine, e.g. when it encounters code like this:

    var x = new ACppObject( arg1, arg2 ); // Qt Script
  

The classes that a particular QSObjectFactory instance is capable of instantiating is returned by classes().

If the argumenst are invalid or any other invalid operation happens, you can use throwError() to issue a Qt Script error.

QObject * QSObjectFactory::createStatic ( const QString & className ) [virtual]

This virtual function should be reimplemented in your QSObjectFactory subclass when you want to provide classes with static contents. The class name is specified by className. Unlike instances, static classes will always be located in the global scope.

This function will return a QObject which slots and properties will will exposed to the interpreter as static variables and functions.

This function is called by the scripting engine during initialization and can be used in code like this:

    MessageBox.information( "This is a static function" );
  

The classes that a particular QSObjectFactory instance is capable of providing static contents for is returned by staticClasses().

QSInterpreter * QSObjectFactory::interpreter () const [protected]

Returns the interpreter that this object factory is creating objects for.

QStringList QSObjectFactory::staticClasses () const [virtual]

This virtual function should be reimplemented in your QSObjectFactory subclass when you want to provide classes with static contents. It should return a list of the names of all the classes that your QSObjectFactory will provide static contents for.

This function is used by the scripting engine to find out which classes this QSObjectFactory can instantiate.

void QSObjectFactory::throwError ( const QString & message )

Informs the interpreter than an error occured. The error is treated like a normal Qt Script error. The error message is passed in message.

This file is part of Qt Script for Applications, copyright © 2001-2003 Trolltech. All Rights Reserved.


Copyright © 2001-2003 TrolltechTrademarks
QSA version 1.0.0-beta2