diff options
author | Xisco Fauli <anistenis@gmail.com> | 2011-09-22 11:36:19 +0200 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2011-12-05 20:53:19 +0000 |
commit | adf772680c7cf0e3d6ae135cab49c847447b5bf1 (patch) | |
tree | 35bb986d762aa876db3ef19cc58ae2388c51a4d5 /wizards/com/sun/star | |
parent | e20b4fe7f98473bef13758070ab33b144c6930ff (diff) |
Hello world (python) as a component
Diffstat (limited to 'wizards/com/sun/star')
-rw-r--r-- | wizards/com/sun/star/wizards/fax/CallWizard.py | 43 | ||||
-rw-r--r-- | wizards/com/sun/star/wizards/fax/fax.component | 6 |
2 files changed, 46 insertions, 3 deletions
diff --git a/wizards/com/sun/star/wizards/fax/CallWizard.py b/wizards/com/sun/star/wizards/fax/CallWizard.py new file mode 100644 index 000000000000..33385a251a31 --- /dev/null +++ b/wizards/com/sun/star/wizards/fax/CallWizard.py @@ -0,0 +1,43 @@ +# -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- + +import uno +import unohelper + +from com.sun.star.task import XJobExecutor + +# implement a UNO component by deriving from the standard unohelper.Base class +# and from the interface(s) you want to implement. +class HelloWorldJob(unohelper.Base, XJobExecutor): + def __init__(self, ctx): + # store the component context for later use + self.ctx = ctx + + def trigger(self, args): + # note: args[0] == "HelloWorld", see below config settings + + # retrieve the desktop object + desktop = self.ctx.ServiceManager.createInstanceWithContext( + "com.sun.star.frame.Desktop", self.ctx) + + # get current document model + model = desktop.getCurrentComponent() + + # access the document's text property + text = model.Text + + # create a cursor + cursor = text.createTextCursor() + + # insert the text into the document + text.insertString(cursor, "Hello World", 0) + +# pythonloader looks for a static g_ImplementationHelper variable +g_ImplementationHelper = unohelper.ImplementationHelper() + +g_ImplementationHelper.addImplementation( \ + HelloWorldJob, # UNO object class + "com.sun.star.wizards.fax.CallWizard", # implemenation name + ("com.sun.star.task.Job",),) # list of implemented services + # (the only service) + +# vim:set shiftwidth=4 softtabstop=4 expandtab: diff --git a/wizards/com/sun/star/wizards/fax/fax.component b/wizards/com/sun/star/wizards/fax/fax.component index 462fe2901255..a03d00afc5a6 100644 --- a/wizards/com/sun/star/wizards/fax/fax.component +++ b/wizards/com/sun/star/wizards/fax/fax.component @@ -26,10 +26,10 @@ * **********************************************************************--> -<component loader="com.sun.star.loader.Java2" +<component loader="com.sun.star.loader.Python" xmlns="http://openoffice.org/2010/uno-components"> <implementation - name="com.sun.star.wizards.fax.CallWizard$WizardImplementation"> - <service name="com.sun.star.wizards.fax.CallWizard"/> + name="com.sun.star.wizards.fax.CallWizard"> + <service name="com.sun.star.task.Job"/> </implementation> </component> |