User:Dipesh/Kross-Tutorial: Difference between revisions

From KDE TechBase
(→‎The Module plugins: first three paras)
(use {{qt}} when necessary, and the right <code> for the various code snippets)
Line 41: Line 41:
with a new scripting-backend without any new line of code and even without any recompile. To
with a new scripting-backend without any new line of code and even without any recompile. To
achieve this internally Qt's introspection-functionality like signals, slots, properties,
achieve this internally Qt's introspection-functionality like signals, slots, properties,
enums, QVariant, QObject, QMetaObject, QMetaType, etc. are used to deal with functionality
enums, {{qt|QVariant}}, {{qt|QObject}}, {{qt|QMetaObject}}, {{qt|QMetaType}}, etc. are used to deal with functionality
at runtime.
at runtime.


Line 90: Line 90:
Modules are plugins which are loaded on demand, and expose application or library functionality to scripting backends.
Modules are plugins which are loaded on demand, and expose application or library functionality to scripting backends.


Since Qt's introspection functionality is used, we are able to simply use QObjects
Since Qt's introspection functionality is used, we are able to simply use {{qt|QObject}}s
and have them act as classes or objects within a scripting backend. Slots are member methods,
and have them act as classes or objects within a scripting backend. Slots are member methods,
while properties and enumerations are member variables.
while properties and enumerations are member variables.
Line 100: Line 100:


Let's take a look at the following code that implements such a module;
Let's take a look at the following code that implements such a module;
<pre>
<code cppqt>
class MyObject : public QObject {
class MyObject : public QObject {
         Q_OBJECT
         Q_OBJECT
Line 126: Line 126:
     QObject* krossmodule() { return new MyObject(); }
     QObject* krossmodule() { return new MyObject(); }
}
}
</pre>
</code>
Then we just need to have our myobject.h and myobject.cpp files, filled with the content
Then we just need to have our myobject.h and myobject.cpp files, filled with the content
above, defined in the CMakeLists.txt file. The library needs to be named "krossmodule..." where
above, defined in the CMakeLists.txt file. The library needs to be named "krossmodule..." where
Line 147: Line 147:
calls it's slots and properties and connects a signal with a python function (e.g. save as
calls it's slots and properties and connects a signal with a python function (e.g. save as
file named "myobjecttest.py" and execute with "kross ./myobjecttest.py");
file named "myobjecttest.py" and execute with "kross ./myobjecttest.py");
<pre>
<code python>
#!/usr/bin/env kross
#!/usr/bin/env kross
import Kross
import Kross
Line 158: Line 158:
obj1.setParent(m)
obj1.setParent(m)
print "obj1.name=%s m.name=%s" % (obj1.name, obj1.parent().name)
print "obj1.name=%s m.name=%s" % (obj1.name, obj1.parent().name)
</pre>
</code>


===Manager, GuiClient, Action===
===Manager, GuiClient, Action===
Line 167: Line 167:
script uses the Kross module to create a new Kross::Action instance, fills it with JavaScript
script uses the Kross module to create a new Kross::Action instance, fills it with JavaScript
code and executes that JavaScript code.
code and executes that JavaScript code.
<pre>
<code javascript>
#!/usr/bin/env kross
#!/usr/bin/env kross
import Kross
import Kross
Line 174: Line 174:
jsaction.setCode( "println(\"Hello world from Kjs\");" )
jsaction.setCode( "println(\"Hello world from Kjs\");" )
jsaction.trigger()
jsaction.trigger()
</pre>
</code>


The [http://websvn.kde.org/trunk/KDE/kdelibs/kross/core/guiclient.h?view=markup Kross::GuiClient]
The [http://websvn.kde.org/trunk/KDE/kdelibs/kross/core/guiclient.h?view=markup Kross::GuiClient]
Line 188: Line 188:
instance. Following Python script accesses the Kross module and the self variable which is
instance. Following Python script accesses the Kross module and the self variable which is
our Kross::Action instance that provides the context for the running Python script.
our Kross::Action instance that provides the context for the running Python script.
<pre>
<code python>
#!/usr/bin/env kross
#!/usr/bin/env kross
import Kross
import Kross
Line 200: Line 200:
print "self.description=%s" % self.description()
print "self.description=%s" % self.description()
print "self.code=%s" % self.code()
print "self.code=%s" % self.code()
</pre>
</code>


===DBus and Kross===
===DBus and Kross===
Line 280: Line 280:
===The KApplication===
===The KApplication===
The main function ([http://kross.dipe.org/kross2tutorial/src/main.cpp main.cpp]) creates the KApplication and shows the MainWindow.
The main function ([http://kross.dipe.org/kross2tutorial/src/main.cpp main.cpp]) creates the KApplication and shows the MainWindow.
<pre>
<code cppqt>
int main(int argc, char **argv) {
int main(int argc, char **argv) {
     KAboutData about();
     KAboutData about();
Line 289: Line 289:
     return app.exec();
     return app.exec();
}
}
</pre>
</code>


===The KPart main window===
===The KPart main window===
Line 295: Line 295:
[http://kross.dipe.org/kross2tutorial/src/main.cpp mainwindow.cpp]) contains the
[http://kross.dipe.org/kross2tutorial/src/main.cpp mainwindow.cpp]) contains the
top-level KParts::MainWindow implementation.
top-level KParts::MainWindow implementation.
<pre>
<code cppqt>
class MainWindow : public KParts::MainWindow {
class MainWindow : public KParts::MainWindow {
     public:
     public:
Line 305: Line 305:
         virtual ~MainWindow() {}
         virtual ~MainWindow() {}
};
};
</pre>
</code>


<!-- ################################################################################ //-->
<!-- ################################################################################ //-->
Line 315: Line 315:
[http://kross.dipe.org/kross2tutorial/src/plugin/part.cpp part.cpp]) implements
[http://kross.dipe.org/kross2tutorial/src/plugin/part.cpp part.cpp]) implements
a KParts::ReadWritePart.
a KParts::ReadWritePart.
<pre>
<code cppqt>
class Part : public KParts::ReadWritePart {
class Part : public KParts::ReadWritePart {
     public:
     public:
Line 333: Line 333:
         QPointer &lt; Kross::Action &gt; m_action;
         QPointer &lt; Kross::Action &gt; m_action;
};
};
</pre>
</code>


===The Module===
===The Module===
Line 339: Line 339:
[http://kross.dipe.org/kross2tutorial/src/plugin/module.cpp module.cpp]) implements
[http://kross.dipe.org/kross2tutorial/src/plugin/module.cpp module.cpp]) implements
the "KrossModuleTutorial" module.
the "KrossModuleTutorial" module.
<pre>
<code cppqt>
class Module : public QObject {
class Module : public QObject {
         Q_OBJECT
         Q_OBJECT
Line 360: Line 360:
         QPointer &lt; QWidget &gt; m_widget;
         QPointer &lt; QWidget &gt; m_widget;
};
};
</pre>
</code>


<!-- ################################################################################ //-->
<!-- ################################################################################ //-->
Line 373: Line 373:
The [http://kross.dipe.org/kross2tutorial/src/sample_forms.py sample_forms.py]
The [http://kross.dipe.org/kross2tutorial/src/sample_forms.py sample_forms.py]
Python script demonstrates usage of into an application embedded Kross forms.
Python script demonstrates usage of into an application embedded Kross forms.
<pre>
<code python>
#!/usr/bin/env kross
#!/usr/bin/env kross
import Kross
import Kross
Line 388: Line 388:
btn.connect("clicked()", buttonClicked)
btn.connect("clicked()", buttonClicked)
btn.text = "Show messagebox"
btn.text = "Show messagebox"
</pre>
</code>


===Python Tkinter script===
===Python Tkinter script===
The [http://kross.dipe.org/kross2tutorial/src/sample_tkinter.py sample_tkinter.py]
The [http://kross.dipe.org/kross2tutorial/src/sample_tkinter.py sample_tkinter.py]
Python script uses the Tkinter to show a modal dialog.
Python script uses the Tkinter to show a modal dialog.
<pre>
<code python>
#!/usr/bin/env kross
#!/usr/bin/env kross
class TkTest:
class TkTest:
Line 410: Line 410:
         tkMessageBox.showinfo("Callback1", "Callback1 called.")
         tkMessageBox.showinfo("Callback1", "Callback1 called.")
TkTest()
TkTest()
</pre>
</code>


===Ruby forms script===
===Ruby forms script===
The [http://kross.dipe.org/kross2tutorial/src/sample_forms.rb sample_forms.rb]
The [http://kross.dipe.org/kross2tutorial/src/sample_forms.rb sample_forms.rb]
Ruby script uses the Kross forms module to create and embedded a QLabel instance.
Ruby script uses the Kross forms module to create and embedded a QLabel instance.
<pre>
<code ruby>
#!/usr/bin/env kross
#!/usr/bin/env kross
require 'Kross'
require 'Kross'
Line 424: Line 424:
label.wordWrap = true
label.wordWrap = true
label.text = "This is the labels text."
label.text = "This is the labels text."
</pre>
</code>


===JavaScript with KjsEmbed script===
===JavaScript with KjsEmbed script===
The [http://kross.dipe.org/kross2tutorial/src/sample_forms.rb sample_kjsembed.js]
The [http://kross.dipe.org/kross2tutorial/src/sample_forms.rb sample_kjsembed.js]
JavaScript script creates and embeddes a QFrame using KjsEmbed.
JavaScript script creates and embeddes a QFrame using KjsEmbed.
<pre>
<code javascript>
#!/usr/bin/env kross
#!/usr/bin/env kross
mainwidget = KrossModuleTutorial.widget()
mainwidget = KrossModuleTutorial.widget()
Line 437: Line 437:
frame.lineWidth = 4;
frame.lineWidth = 4;
frame.show();
frame.show();
</pre>
</code>

Revision as of 16:35, 7 March 2007

Warning
This section needs improvements: Please help us to

cleanup confusing sections and fix sections which contain a todo


Intro

The purpose of this tutorial is to offer a step-by-step introduction how to integrate Kross into your application. While you can integrate Kross also in non-kpartified applications, it's easier to do with the KPart system. This tutorial will assume that you have a kpart application and what we will do is to go step by step through the process of creating a KPart plugin that integrates into your application and provides all the scripting. The scripting functionality is strictly separated from the application. The plugin that implements scripting is optional and the application does not need to know any details about what the plugin does.

This tutorial needs kdelibs4 based on Qt 4.2. While Kross and the KDE Javascript backend are included in kdelibs4, it is needed to compile the KOffice2 libraries to install the Ruby and Python support (will be moved to kdebindings soon).

The whole sourcecode we will produce within this tutorial could also be downloaded as kross2tutorial.tar.gz and contains all files needed to build a simple example that demonstrates how Kross could be used. Download and extract the tarball. Compile, install and run the kross2tutorialapp application and its kross2tutorial KPart plugin now with;

cd src && mkdir _build && cd _build
cmake -DCMAKE_INSTALL_PREFIX=`kde4-config --prefix` ..
make
sudo make install
./kross2tutorialapp

For additional examples where Kross is used you may also like to look at;


Kross

The Kross scripting framework provides full Python, Ruby and KDE JavaScript scripting support. The goal was to limit the work needed on applications to have them fully scriptable and to provide a modular way to transparently integrate additional interpreters and in that way extend your application with a new scripting-backend without any new line of code and even without any recompile. To achieve this internally Qt's introspection-functionality like signals, slots, properties, enums, QVariant, QObject, QMetaObject, QMetaType, etc. are used to deal with functionality at runtime.

The Interpreter plugins

Kross offers a plugin-interface to integrate interpreter backends like Python, Ruby and KDE-Javascript. They are loaded on demand at runtime. Neither the application nor Kross needs to know any details about the backends. This clear separation between the application and scripting details enables at the one hand, to deal with scripting at an abstract level without being bound to only one backend, and at the other hand makes it easy to integrate scripting into an already existing application.

Currently Kross comes with support for 3 scripting backends;

Each interpreter plugin needs to implement two abstract classes;

  • The Kross::Interpreter class is a singleton controlled by the Kross::Manager and could be used to setup the interpreter or do other things to share functionality between instances of the Script class.
  • The Kross::Script class handles exactly one script instance. An application is able to deal with multiple scripts at the same time where each of them has it's own instance of the Kross::Script class controlled by an instance of the more abstract Kross::Action class.

The Module plugins

Modules are plugins which are loaded on demand, and expose application or library functionality to scripting backends.

Since Qt's introspection functionality is used, we are able to simply use QObjects and have them act as classes or objects within a scripting backend. Slots are member methods, while properties and enumerations are member variables.

If your application offers DBus support, it may appropriate to reuse existing QDBusAbstractAdaptor implementations for scripting, as was done with KSpread.

Let's take a look at the following code that implements such a module; class MyObject : public QObject {

       Q_OBJECT
       Q_PROPERTY(QString name READ name WRITE setName)
   public:
       MyObject(QObject* parent = 0) : QObject(parent) {}
       virtual ~MyObject() {}
       QString name() const { return objectName(); }
       void setName(const QString& name) { return setObjectName(name); }
   public slots:
       QObject* create(const QString& name, QObject* parent = 0) {
           MyObject* obj = new MyObject(parent);
           obj->setObjectName(name);
           return obj;
       }
       QObject* parent() const { return parent(); }
       void setParent(QObject* parent) {
            setParent(parent);
            emit parentChanged(); 
       }
   signals:
       void parentChanged();

}; extern "C" {

   QObject* krossmodule() { return new MyObject(); }

} Then we just need to have our myobject.h and myobject.cpp files, filled with the content above, defined in the CMakeLists.txt file. The library needs to be named "krossmodule..." where the "..." is then the name the module is accessible as. For our example we use "krossmodulemyobjectmod" and therefore we are able to access the module if installed as "myobjectmod". The example does not depend on Kross, so you may like to replace ${KROSS_INCLUDES} with whatever else your module depends on.

TODO: Make the following block less wide, pre tends to come across best at, say 60 chars max

It may be wise to insert whatever CMake uses for line continuations if you want to break lines in this sort of example. --Argonel 06:06, 19 January 2007 (CET)
include_directories(${CMAKE_SOURCE_DIR} ${KROSS_INCLUDES})
set(krossmodulemyobjectmod_PART_SRCS myobject.cpp)
kde4_automoc(${krossmodulemyobjectmod_PART_SRCS})
kde4_add_plugin(krossmodulemyobjectmod ${krossmodulemyobjectmod_PART_SRCS})
target_link_libraries(krossmodulemyobjectmod ${KDE4_KDECORE_LIBS} ${KDE4_KROSSCORE_LIBS})
install(TARGETS krossmodulemyobjectmod DESTINATION ${PLUGIN_INSTALL_DIR})

The following Python sample code accesses then the module at runtime and uses the QObject, calls it's slots and properties and connects a signal with a python function (e.g. save as file named "myobjecttest.py" and execute with "kross ./myobjecttest.py");

  1. !/usr/bin/env kross

import Kross m = Kross.module("myobjectmod") m.name = "MyObjectModuleName" obj1 = m.create("OtherObjectName") def myCallbackFunc(args):

   print "The parent of obj1 changed"

obj1.connect("parentChanged()", myCallbackFunc) obj1.setParent(m) print "obj1.name=%s m.name=%s" % (obj1.name, obj1.parent().name)

Manager, GuiClient, Action

The Kross::Manager class is a singleton that provides access to the interpreters, to actions and to the modules. The Kross::Manager is available within scripting code as module named "Kross". Following Python script uses the Kross module to create a new Kross::Action instance, fills it with JavaScript code and executes that JavaScript code.

  1. !/usr/bin/env kross

import Kross jsaction = Kross.action("MyKjsScript") jsaction.setInterpreter("javascript") jsaction.setCode( "println(\"Hello world from Kjs\");" ) jsaction.trigger()

The Kross::GuiClient class implements KXMLGUIClient to provide GUI functionality, handling of XML configuration files on a more abstract level and offers some predefined actions that could be optionally used in your application.

The Kross::Action class offers an abstract container to deal with scripts like a single standalone scriptfile. Each action holds a reference to the by the matching Kross::Interpreter instance created by Kross::Script instance. Following Python script accesses the Kross module and the self variable which is our Kross::Action instance that provides the context for the running Python script.

  1. !/usr/bin/env kross

import Kross print "Kross.objectName=%s" % Kross.objectName() print "Kross.interpreters=%s" % Kross.interpreters() print "self.objectName=%s" % self.objectName() print "self.text=%s" % self.text print "self.enabled=%s" % self.enabled print "self.currentPath=%s" % self.currentPath() print "self.interpreter=%s" % self.interpreter() print "self.description=%s" % self.description() print "self.code=%s" % self.code()

DBus and Kross

With the QtDBus module Qt provides a library that a Qt/KDE application is able to use to make Inter-Process Communication using the D-BUS protocol.

The QtDBus module uses the Qt Signals and Slots mechanism. Applications that like to provide parts of there functionality to the DBus world are able to do so by implementing classes that inherit from the QDBusAbstractAdaptor class.

Kross is able to reuse such by an application provided bindings. So, once your application supports dbus, Kross is able to reuse those already existing code and offers transparent access to the scripting-backends to them. How does this differ from e.g. the python-dbus package? Well, first method-calls don't go through the dbus-socket and then it's not dbus-related at all except, that we are able to reuse what your application offers anyway: a clean interface to the outside world. But that's not all, we are not limited to what's possible with dbus. We are also able to exchange instance-pointers to QObject or QWidget instances.

For an example you may like to take a look at how it was done in the KSpread ScriptingModule class.


The application

This section deals with the question how to integrate Kross into a KPart-application to be able to extend your application with scripting.

For testing purposes we first create a simple KPart application. If you already have an application you may like to skip this section and continue with the KPart Plugin.

Relevant files within the kross2tutorial.tar.gz are;

The CMake build system

The src/CMakeLists.txt file;

project(kross2tutorial)

find_package(KDE4 REQUIRED)
include(KDE4Defaults)
find_package(Perl REQUIRED)
add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS} -DHAVE_CONFIG_H=1)
link_directories(${KDE4_LIB_DIR})
set(CMAKE_REQUIRED_DEFINITIONS ${_KDE4_PLATFORM_DEFINITIONS})
include_directories(${CMAKE_SOURCE_DIR} ${KDE4_KDECORE_INCLUDES} ${KDE4_INCLUDES} ${KDE4_KDEUI_INCLUDES} ${KDE4_KPARTS_INCLUDES})

add_subdirectory( plugin )

set(kross2tutorialapp_SRCS mainwindow.cpp main.cpp)
kde4_automoc(${kross2tutorialapp_SRCS})
kde4_add_executable(kross2tutorialapp ${kross2tutorialapp_SRCS})
target_link_libraries(kross2tutorialapp ${KDE4_KDECORE_LIBS} ${KDE4_KDEUI_LIBS} kparts krosscore )

The src/plugin/CMakeLists.txt file;

include_directories( ${CMAKE_SOURCE_DIR} ${KROSS_INCLUDES} )
set(krossmoduletutorial_PART_SRCS module.cpp part.cpp)
kde4_automoc(${krossmoduletutorial_PART_SRCS})
kde4_add_plugin(krossmoduletutorial ${krossmoduletutorial_PART_SRCS})
target_link_libraries(krossmoduletutorial ${KDE4_KDECORE_LIBS} ${KDE4_KROSSCORE_LIBS} kparts )
install(TARGETS krossmoduletutorial DESTINATION ${PLUGIN_INSTALL_DIR})
install( FILES  krossmoduletutorial.desktop  DESTINATION ${SERVICES_INSTALL_DIR})

The KApplication

The main function (main.cpp) creates the KApplication and shows the MainWindow. int main(int argc, char **argv) {

   KAboutData about();
   KCmdLineArgs::init(argc, argv, &about);
   KApplication app();
   MainWindow *mainWin = new MainWindow();
   mainWin->show();
   return app.exec();

}

The KPart main window

The MainWindow class (mainwindow.h mainwindow.cpp) contains the top-level KParts::MainWindow implementation. class MainWindow : public KParts::MainWindow {

   public:
       MainWindow() : KParts::MainWindow() {
           KLibFactory* factory = KLibLoader::self()->factory("krossmoduletutorial");
           KParts::ReadWritePart* part = dynamic_cast<KParts::ReadWritePart*>( factory->create(this) );
           part->openUrl( KUrl("file:///home/myuser/myscript.py") );
       }
       virtual ~MainWindow() {}

};


The plugin

The KPart plugin

The Part class (part.h part.cpp) implements a KParts::ReadWritePart. class Part : public KParts::ReadWritePart {

   public:
       Part(QWidget* widget, QObject* parent, const QStringList&)
           : KParts::ReadWritePart(parent)
           , m_guiclient( new Kross::GUIClient(this, this) )
           , m_action(0) {}
       virtual ~Part() { delete m_action; }
       virtual bool openFile() {
           delete m_action;
           m_action = new Kross::Action(m_file);
           m_action->trigger();
       }
       virtual bool saveFile() { return false; } // not implemented yet
   private:
       Kross::GUIClient* m_guiclient;
       QPointer < Kross::Action > m_action;

};

The Module

The Module class (module.h module.cpp) implements the "KrossModuleTutorial" module. class Module : public QObject {

       Q_OBJECT
   public:
       Module(Part* part = 0) : QObject(part), m_widget(0) {}
       virtual ~Module() {}
   public slots:
       QWidget* widget() {
           if( ! m_widget ) {
               Part* part = dynamic_cast<Part*>( parent() );
               m_widget = new QWidget( part ? part->widget() : 0 );
               m_widget->setLayout( new QVBoxLayout(m_widget) );
               if( part && part->widget() && part->widget()->layout() )
                   part->widget()->layout()->addWidget(m_widget);
               m_widget->show();
           }
           return m_widget;
       }
   private:
       QPointer < QWidget > m_widget;

};


Samples

Following sample scripts are also included in the kross2tutorial.tar.gz and should be executed using the "kross2tutorialapp" application.

Python forms script

The sample_forms.py Python script demonstrates usage of into an application embedded Kross forms.

  1. !/usr/bin/env kross

import Kross import KrossModuleTutorial forms = Kross.module("forms") mainwidget = KrossModuleTutorial.widget() label = forms.createWidget(mainwidget, "QLabel") label.wordWrap = True label.text = "The labels text." btn = forms.createWidget(mainwidget, "QPushButton") def buttonClicked():

   global forms
   forms.showMessageBox("Information", "Caption", "the message text")

btn.connect("clicked()", buttonClicked) btn.text = "Show messagebox"

Python Tkinter script

The sample_tkinter.py Python script uses the Tkinter to show a modal dialog.

  1. !/usr/bin/env kross

class TkTest:

   def __init__(self):
       import Tkinter
       self.root = Tkinter.Tk()
       self.root.title("TkTest")
       self.root.deiconify()
       self.mainframe = Tkinter.Frame(self.root)
       self.mainframe.pack()
       self.button1 = Tkinter.Button(self.mainframe, text="Button1", command=self.callback1)
       self.button1.pack(side=Tkinter.LEFT)
       self.root.mainloop()
   def callback1(self):
       import tkMessageBox
       tkMessageBox.showinfo("Callback1", "Callback1 called.")

TkTest()

Ruby forms script

The sample_forms.rb Ruby script uses the Kross forms module to create and embedded a QLabel instance.

  1. !/usr/bin/env kross

require 'Kross' require 'KrossModuleTutorial' forms = Kross.module("forms") mainwidget = KrossModuleTutorial.widget() label = forms.createWidget(mainwidget, "QLabel") label.wordWrap = true label.text = "This is the labels text."

JavaScript with KjsEmbed script

The sample_kjsembed.js JavaScript script creates and embeddes a QFrame using KjsEmbed.

  1. !/usr/bin/env kross

mainwidget = KrossModuleTutorial.widget() var frame = new Widget("QFrame", mainwidget); frame.frameShape = frame.StyledPanel; frame.frameShadow = frame.Sunken; frame.lineWidth = 4; frame.show();