Difference between revisions of "ES/Manuales/GuiaAOO/TemasAvanzados/Macros/Python/BasicAPython"

From Apache OpenOffice Wiki
< ES‎ | Manuales‎ | GuiaAOO‎ | TemasAvanzados‎ | Macros‎ | Python
Jump to: navigation, search
(Exception)
(Traduccion de encabezados)
Line 1: Line 1:
 
{{DISPLAYTITLE:De Basic a Python}}
 
{{DISPLAYTITLE:De Basic a Python}}
  
If you feel some displeasure at StarBasic/OpenOffice Basic or you meet requirement of custom UNO component, now it is the time to transfer coding environment from Basic to Python.
+
Si te sientes incomodo usando StarBasic/OpenOffice Basic entonces estas en el lugar indicado para crear componentes personalizados de UNO, y cambiar los requisitos de Basic a Python.
  
In StarBasic, there are some runtime function provides short cut to do something. But using Python-UNO bridge, you have to do such task by API ways.
+
En StarBasic, hay algunas funciones en el runtime provistas por atajos para hacer algo. Pero usando el puente Python-UNO, tendras que hacer estos procesos via el API.
  
Let's start with Python's tutorial and return back to here when you have learned a bit about Python language.
+
Vamos a comenzar con los tutoriales de Python y regresar a aquí cuando hayas parendido más sobre el lenguaje de Python.
  
== Macro Location ==
+
== Ubicación de las macros ==
  
  
== Macro Editor ==
+
== El editor de Macros ==
  
There is no built-in editor dedicated to code in Python. But you can choose your favorite text editor application to edit your Python script.
+
No existe un editor embedido para escribir o procesar tu codigo en Python. Pero puedes usar el editor favorito de tu preferencia para editarlo. Si no conoces alguno, Python incluye uno llamado IDLE.  
  
This is discussed in another page.
+
Para más información checar la inforamción de [[ES/Manuales/GuiaAOO/TemasAvanzados/Macros/Python/IntroduccionPython| Introducción a Python]].
  
== Short Example ==
+
== Pequeños ejemplos ==
  
== Usable Modules ==
+
== Modulos de UNO ==
  
 
<source lang="Python">
 
<source lang="Python">
 
  import uno
 
  import uno
 
 
  import unohelper
 
  import unohelper
 
</source>
 
</source>
Line 28: Line 27:
 
== Script Context ==
 
== Script Context ==
  
StarBasic is embedded runtime and it always works with living instance of the office. So the context is always the match with the office's one. But Python-UNO bridge provides the way to work as RPC client. At that time, remote Python instance does have different context from the office instance. Therefore you have to use correct component context to tell to the multi component factory to instantiate a service.
+
El motor (runtime) de StarBasic esta integrado y vive dentro de la instancia de la suite. Asi que el contexto siempre sera el mismo que el de la suite. Pero el puente de Python-UNO actua como un cliente remoto tipo RPC. En ese momento, una instancia remota de Python tiene un contexto diferente que el de la instancia de la suite. Así que debes usar el componente en el contexto correcto para decirle a la fabrica multi componente que instancie el servicio.
  
In StarBasic, you have no matching object provided.
+
En StarBasic, no tienes objetos coincidentes provistos.
  
'''In Python''' macro, you have to use '''XSCRIPTCONTEXT''' module variable that provides <idl>com.sun.star.script.provider.XScriptContext</idl> interface.
+
'''En Python''', las macros deben usar el modulo variable '''XSCRIPTCONTEXT''' que prove la interfaz <idl>com.sun.star.script.provider.XScriptContext</idl>.
  
 
* <idl>com.sun.star.frame.XModel</idl>'''getDocument()'''
 
* <idl>com.sun.star.frame.XModel</idl>'''getDocument()'''
 
+
:Retorna el objeto actual del document.
:Returns current document object.
+
 
+
 
* <idl>com.sun.star.document.XScriptInvocationContext</idl>'''getInvocationContext()'''
 
* <idl>com.sun.star.document.XScriptInvocationContext</idl>'''getInvocationContext()'''
 
+
:Retorna invocation dependent object.
:Returns invocation dependent object.
+
 
+
 
* <idl>com.sun.star.frame.XDesktop</idl>'''getDesktop()'''
 
* <idl>com.sun.star.frame.XDesktop</idl>'''getDesktop()'''
 
+
:Retorna instance of <idl>com.sun.star.frame.Desktop</idl> service.
:Returns instance of <idl>com.sun.star.frame.Desktop</idl> service.
+
 
+
 
* <idl>com.sun.star.uno.XComponentContext</idl>'''getComponentContext()'''
 
* <idl>com.sun.star.uno.XComponentContext</idl>'''getComponentContext()'''
 +
:Retorna current component context that is used to tell the which context is.
  
:Returns current component context that is used to tell the which context is.
+
Recuerda que, la variable '''XSCRIPTCONTEXT''' esta definida dentro del módulo y que no se incluye al momento de importar tus scripts.
 +
== Contexto del componente (Component Context) ==
 +
En StarBasic, puedes obtener el contexto del componente de esta manera:
  
Please keep in mind, '''XSCRIPTCONTEXT''' variable is defined in module level and it is not provided to imported modules from your script.
+
<source lang="oobas">
== Component Context ==
+
In StarBasic, you can get component context as follows:
+
 
+
<source lang="Python">
+
 
  ctx = GetDefaultContext()
 
  ctx = GetDefaultContext()
 
</source>
 
</source>
  
But you do not need to access to it until you need to get singletons.
+
Pero no es necesario que accedas a esta hasta que sea necesario, como el caso de obtener un singletons.
  
'''In Python''', you can get access to the component context through the script context.
+
'''En Python''', accedes al contexto del componente a traves del siguiente script de contexto.
  
 
<source lang="Python">
 
<source lang="Python">
Line 66: Line 58:
 
</source>
 
</source>
  
You need this value to instantiate services.
+
Necestas este valor para instanciar los servicios.
  
== Service Manager ==
+
== Gestor de servicios (Service Manager) ==
 
In StarBasic, you can get service manager as follows:
 
In StarBasic, you can get service manager as follows:
  
Line 86: Line 78:
 
You need both the component context and the service manager to instantiate services.
 
You need both the component context and the service manager to instantiate services.
  
== Service Instance ==
+
== Instanciando servicios ==
  
 
In StarBasic, you can instantiate services by built-in function as follows:
 
In StarBasic, you can instantiate services by built-in function as follows:
  
<source lang="Python">
+
<source lang="oobas">
 
  sfa = CreateUnoService("com.sun.star.ucb.SimpleFileAccess")
 
  sfa = CreateUnoService("com.sun.star.ucb.SimpleFileAccess")
 
</source>
 
</source>
  
or with initialize arguments:  
+
o con los argumentos inicializados:  
  
<source lang="Python">
+
<source lang="oobas">
 
  arg = com.sun.star.ui.dialogs.TemplateDescription.FILESAVE_SIMPLE
 
  arg = com.sun.star.ui.dialogs.TemplateDescription.FILESAVE_SIMPLE
 
  file_picker = CreateUnoServiceWithArguments("com.sun.star.ui.dialogs.FilePicker", Array(arg))
 
  file_picker = CreateUnoServiceWithArguments("com.sun.star.ui.dialogs.FilePicker", Array(arg))
Line 118: Line 110:
 
</source>
 
</source>
  
== Service with Constructor ==
+
== Servicios y constructores ==
  
 
In StarBasic, you can call service construct from its module:  
 
In StarBasic, you can call service construct from its module:  
Line 129: Line 121:
 
The constructor calling does type checking before to pass arguments to createInstanceWithArgumentsAndContext method.
 
The constructor calling does type checking before to pass arguments to createInstanceWithArgumentsAndContext method.
  
== Current Document ==
+
== Documento actual ==
 
In StarBasic, ThisComponent runtime function provides access to the current document:  
 
In StarBasic, ThisComponent runtime function provides access to the current document:  
 
<source lang="Python">
 
<source lang="Python">
Line 144: Line 136:
 
If your macro is '''embedded in the document''', the document model is match with the document that the macro stored in. If your macro is stored in user or shared location, the document object is from active frame.
 
If your macro is '''embedded in the document''', the document model is match with the document that the macro stored in. If your macro is stored in user or shared location, the document object is from active frame.
  
== Desktop ==
+
== Función: StarDesktop ==
 
In StarBasic, StarDesktop runtime function is provided:  
 
In StarBasic, StarDesktop runtime function is provided:  
 
<source lang="oobas">
 
<source lang="oobas">
Line 154: Line 146:
 
</source>
 
</source>
  
== Struct Instance ==
+
== Instanciar Struct ==
 
In Basic, instance of struct can be instantiated in two ways:  
 
In Basic, instance of struct can be instantiated in two ways:  
 
<source lang="oobas">
 
<source lang="oobas">
Line 196: Line 188:
  
 
<source lang="Python">
 
<source lang="Python">
 
 
  import uno
 
  import uno
 
 
 
 
  from com.sun.star.awt.FontSlant import ITALIC
 
  from com.sun.star.awt.FontSlant import ITALIC
 
 
  ITALIC = uno.getConstantByName("com.sun.star.awt.FontSlant.ITALIC")
 
  ITALIC = uno.getConstantByName("com.sun.star.awt.FontSlant.ITALIC")
 
 
  ITALIC = uno.Enum("com.sun.star.awt.FontSlant", "ITALIC")
 
  ITALIC = uno.Enum("com.sun.star.awt.FontSlant", "ITALIC")
 
 
</source>
 
</source>
  
 
All of the way results the instance of uno.Enum class.
 
All of the way results the instance of uno.Enum class.
  
 
+
== Constantes ==
 
+
== Constants ==
+
 
+
 
+
 
+
 
In StarBasic, you can get access to constants through its module:  
 
In StarBasic, you can get access to constants through its module:  
  
<source lang="Python">
+
<source lang="oobas">
  
 
  BOLD = com.sun.star.awt.FontWeight.BOLD
 
  BOLD = com.sun.star.awt.FontWeight.BOLD
 
+
</source>
 
+
  
 
In Python, the following ways are provided:  
 
In Python, the following ways are provided:  
  
 
<source lang="Python">
 
<source lang="Python">
 
 
  import uno
 
  import uno
 
 
  
 
  from com.sun.star.awt.FontWeight import BOLD
 
  from com.sun.star.awt.FontWeight import BOLD
 
 
  BOLD = uno.getConstantsByName("com.sun.star.awt.FontWeight.BOLD")
 
  BOLD = uno.getConstantsByName("com.sun.star.awt.FontWeight.BOLD")
 
 
</source>
 
</source>
 
 
 
 
== Sequence ==
 
== Sequence ==
 
 
 
 
The sequence is sequential value of the same type.
 
The sequence is sequential value of the same type.
 
 
 
 
In StarBasic, array is used.
 
In StarBasic, array is used.
 
 
 
 
In Python, tuple is chosen to represent UNO's sequence. Note, list is not allowed to pass as sequence value.
 
In Python, tuple is chosen to represent UNO's sequence. Note, list is not allowed to pass as sequence value.
 
 
 
 
== Boolean ==
 
== Boolean ==
 
 
 
 
In Python, True or False.
 
In Python, True or False.
 
 
 
 
== String ==
 
== String ==
 
 
 
 
Python's string can contain over 64K bytes.
 
Python's string can contain over 64K bytes.
 
 
 
 
If you have to write non Ascii 7 bit characters in your script, write magic comment at the head of your file. This is standard Python instructions.
 
If you have to write non Ascii 7 bit characters in your script, write magic comment at the head of your file. This is standard Python instructions.
 
 
  
 
<source lang="Python">
 
<source lang="Python">
 
 
  # -*- coding: utf_8 -*-
 
  # -*- coding: utf_8 -*-
 
 
</source>
 
</source>
 
 
  
 
Please read Python's documentation for more detail.
 
Please read Python's documentation for more detail.
 
 
  
 
== Char ==
 
== Char ==
 
 
 
 
There is no dedicated value for char type in StarBasic.
 
There is no dedicated value for char type in StarBasic.
 
 
  
 
In Python, uno.Char class is defined for char type.
 
In Python, uno.Char class is defined for char type.
 
 
<source lang="Python">
 
<source lang="Python">
 
 
  import uno
 
  import uno
 
 
  c = uno.Char("a")
 
  c = uno.Char("a")
 
 
</source>
 
</source>
  
 
+
== Secuencia de Byte ==
 
+
 
+
 
+
== Byte Sequence ==
+
 
+
 
+
  
 
The byte sequence is sequence of byte type.
 
The byte sequence is sequence of byte type.
 
 
  
 
In Basic, array of byte is used to represent it.
 
In Basic, array of byte is used to represent it.
 
 
  
 
'''In Python''', it is represented by str wrapped by uno.ByteSequence class. If you takes some byte sequences from UNO, they are the instance of uno.ByteSequence. If you need to get real value of them, refer its ''value'' instance variable.
 
'''In Python''', it is represented by str wrapped by uno.ByteSequence class. If you takes some byte sequences from UNO, they are the instance of uno.ByteSequence. If you need to get real value of them, refer its ''value'' instance variable.
  
 
+
== Excepciones ==
 
+
== Exception ==
+
 
In StarBasic, you get thrown exception as some error. And On Error statement is used to catch it.
 
In StarBasic, you get thrown exception as some error. And On Error statement is used to catch it.
  
Line 360: Line 278:
 
</source>
 
</source>
  
== Empty Value ==
+
== Valores vacios ==
 
In Basic, there are some situations to meet variables that they do not contain any value (this is not correct). Null, empty, missing, nothing and so on.
 
In Basic, there are some situations to meet variables that they do not contain any value (this is not correct). Null, empty, missing, nothing and so on.
  
 
'''In Python''', None is used. If a method defined as void return value in its IDL, it results None if you call it. If you need to pass invalid interface as an argument for the method that takes some interface, pass None for it. The result of this behavior is fully dependent to the implementation of the method.
 
'''In Python''', None is used. If a method defined as void return value in its IDL, it results None if you call it. If you need to pass invalid interface as an argument for the method that takes some interface, pass None for it. The result of this behavior is fully dependent to the implementation of the method.
  
== Listener and Interface ==
+
== Receptores (Listeners) e Interfaces ==
 
+
 
+
  
 
In StarBasic, you can create new listener using CreateUnoListener runtime function with some subroutines or functions.
 
In StarBasic, you can create new listener using CreateUnoListener runtime function with some subroutines or functions.
Line 390: Line 306:
 
  End Sub
 
  End Sub
 
</source>
 
</source>
 
 
  
 
'''In Python''', you have define your own class with desired interfaces. With helper class, you can define easily as follows:  
 
'''In Python''', you have define your own class with desired interfaces. With helper class, you can define easily as follows:  
Line 415: Line 329:
  
 
== Containers ==
 
== Containers ==
 
 
  
 
In StarBasic, container object provides the way to access to its contents in sequentially.
 
In StarBasic, container object provides the way to access to its contents in sequentially.
 
 
  
 
'''In Python''', there is no shortcut provided.  
 
'''In Python''', there is no shortcut provided.  
 
 
  
 
If you need to access to elements of indexed container, use range function to generate sequential indexes.
 
If you need to access to elements of indexed container, use range function to generate sequential indexes.
  
 
<source lang="Python">
 
<source lang="Python">
 
 
  for i in range(container.getCount()):
 
  for i in range(container.getCount()):
 
 
     obj = container.getByIndex(i)
 
     obj = container.getByIndex(i)
 
 
</source>
 
</source>
 
+
== URL y Rutas de sistema ==
 
+
 
+
== URL and System Path ==
+
 
+
 
+
  
 
If you work with a file stored in your local file system, you have to get its corresponding URL.
 
If you work with a file stored in your local file system, you have to get its corresponding URL.
 
 
  
 
In StarBasic, ConvertToURL runtime function is prepared for this task. And there is ConvertFromURL runtime function for reverse conversion.
 
In StarBasic, ConvertToURL runtime function is prepared for this task. And there is ConvertFromURL runtime function for reverse conversion.
 
 
  
 
'''In Python''', the following functions are defined in uno module for such task.
 
'''In Python''', the following functions are defined in uno module for such task.
  
 
<source lang="Python">
 
<source lang="Python">
 
 
  import uno
 
  import uno
 
 
  
 
  path = "/home/foo/Documents/file.odt"
 
  path = "/home/foo/Documents/file.odt"
 
 
  url = uno.sytemPathToFileUrl(path)
 
  url = uno.sytemPathToFileUrl(path)
 
 
  path = uno.fileUrlToSystemPath(url)
 
  path = uno.fileUrlToSystemPath(url)
 
 
</source>
 
</source>
  
 
+
== Argumentos y valor de Retorno ==
 
+
== Arguments and Return Value ==
+
 
+
 
+
 
+
 
In StarBasic, mode of the first argument of parseStrict method is "inout" in the following code:  
 
In StarBasic, mode of the first argument of parseStrict method is "inout" in the following code:  
  
Line 505: Line 390:
 
In the above example, ''result'' variable takes original return value, ''num'' takes output value for second parameter and ''num2'' takes output value for third parameter. The method takes 100 as the second parameter but it is not used as input of value. No entry in returned tuple for in mode parameter.
 
In the above example, ''result'' variable takes original return value, ''num'' takes output value for second parameter and ''num2'' takes output value for third parameter. The method takes 100 as the second parameter but it is not used as input of value. No entry in returned tuple for in mode parameter.
  
== Functions to be Executed ==
+
== Funciones para ser Ejecutadas ==
 
In Basic, you can not choose routines to be executed by users.
 
In Basic, you can not choose routines to be executed by users.
  
Line 525: Line 410:
 
In the above code, func_hidden is not shown in execution dialog of macros.
 
In the above code, func_hidden is not shown in execution dialog of macros.
  
== Importing Modules ==
+
== Importando modulos ==
 
+
 
+
 
+
== Dialog ==
+
 
+
  
 +
== Dialogos ==
  
 
== Message Box ==
 
== Message Box ==
 
 
  
 
== Input Box ==
 
== Input Box ==
  
 
[[Category:ES]][[Category:Manuales]][[Category:ES/Python]]
 
[[Category:ES]][[Category:Manuales]][[Category:ES/Python]]

Revision as of 09:19, 21 August 2013


Si te sientes incomodo usando StarBasic/OpenOffice Basic entonces estas en el lugar indicado para crear componentes personalizados de UNO, y cambiar los requisitos de Basic a Python.

En StarBasic, hay algunas funciones en el runtime provistas por atajos para hacer algo. Pero usando el puente Python-UNO, tendras que hacer estos procesos via el API.

Vamos a comenzar con los tutoriales de Python y regresar a aquí cuando hayas parendido más sobre el lenguaje de Python.

Ubicación de las macros

El editor de Macros

No existe un editor embedido para escribir o procesar tu codigo en Python. Pero puedes usar el editor favorito de tu preferencia para editarlo. Si no conoces alguno, Python incluye uno llamado IDLE.

Para más información checar la inforamción de Introducción a Python.

Pequeños ejemplos

Modulos de UNO

 import uno
 import unohelper

Script Context

El motor (runtime) de StarBasic esta integrado y vive dentro de la instancia de la suite. Asi que el contexto siempre sera el mismo que el de la suite. Pero el puente de Python-UNO actua como un cliente remoto tipo RPC. En ese momento, una instancia remota de Python tiene un contexto diferente que el de la instancia de la suite. Así que debes usar el componente en el contexto correcto para decirle a la fabrica multi componente que instancie el servicio.

En StarBasic, no tienes objetos coincidentes provistos.

En Python, las macros deben usar el modulo variable XSCRIPTCONTEXT que prove la interfaz com.sun.star.script.provider.XScriptContext.

Retorna el objeto actual del document.
Retorna invocation dependent object.
Retorna instance of com.sun.star.frame.Desktop service.
Retorna current component context that is used to tell the which context is.

Recuerda que, la variable XSCRIPTCONTEXT esta definida dentro del módulo y que no se incluye al momento de importar tus scripts.

Contexto del componente (Component Context)

En StarBasic, puedes obtener el contexto del componente de esta manera:

 ctx = GetDefaultContext()

Pero no es necesario que accedas a esta hasta que sea necesario, como el caso de obtener un singletons.

En Python, accedes al contexto del componente a traves del siguiente script de contexto.

 ctx = XSCRIPTCONTEXT.getComponentContext()

Necestas este valor para instanciar los servicios.

Gestor de servicios (Service Manager)

In StarBasic, you can get service manager as follows:

 smgr = GetProcessServiceManger()

But not so many people having to access to it.

In Python, this instance is most important value to instantiate services to work with the office APIs.

 ctx = XSCRIPTCONTEXT.getComponentContext()
 smgr = ctx.getServiceManager()

You need both the component context and the service manager to instantiate services.

Instanciando servicios

In StarBasic, you can instantiate services by built-in function as follows:

 sfa = CreateUnoService("com.sun.star.ucb.SimpleFileAccess")

o con los argumentos inicializados:

 arg = com.sun.star.ui.dialogs.TemplateDescription.FILESAVE_SIMPLE
 file_picker = CreateUnoServiceWithArguments("com.sun.star.ui.dialogs.FilePicker", Array(arg))

In Python, you have to work with com.sun.star.lang.XMultiComponentFactory interface as follows:

 ctx = XSCRIPTCONTEXT.getComponentContext()
 smgr = ctx.getServiceManager()
 sfa = smgr.createInstanceWithContext("com.sun.star.ucb.SimpleFileAccess", ctx)

If you need to initialize the instance, use createInstanceWithArgumentsAndContext method:

 from com.sun.star.ui.dialogs.TemplateDescription import FILESAVE_SIMPLE
 file_picker = smgr.createInstanceWithArgumentsAndContext("com.sun.star.ui.dialogs.FilePicker", (FILESAVE_SIMPLE,) ctx)

or initialize after the instantiation:

 file_picker = smgr.createInstanceWithContext("com.sun.star.ui.dialogs.FilePicker", ctx)
 file_picker.initialize((FILESAVE_SIMPLE,))

Servicios y constructores

In StarBasic, you can call service construct from its module:

 shell_execute = com.sun.star.system.SystemShellExecute.create()

In Python, you have to instantiate it with XMultiComponentFactory::createInstanceWithArgumentsAndContext method with initial arguments or instantiate after the instantiation.

The constructor calling does type checking before to pass arguments to createInstanceWithArgumentsAndContext method.

Documento actual

In StarBasic, ThisComponent runtime function provides access to the current document:

 doc = ThisComponent

Its return value is bound to the macro location. If the macro stored in a document, the result of ThisComponent is the document that the storage of the macro belongs to. And if your macro is stored in application wide, the returned value is the document model of currently active frame, this is the same result taken from StarDesktop.getCurrentComponent().

In Python, you can access to the current document through the script context:

 doc = XSCRIPTCONTEXT.getDocument()

If your macro is embedded in the document, the document model is match with the document that the macro stored in. If your macro is stored in user or shared location, the document object is from active frame.

Función: StarDesktop

In StarBasic, StarDesktop runtime function is provided:

 desktop = StarDesktop()

In Python, you can get access to the desktop through the script context:

 desktop = XSCRIPTCONTEXT.getDesktop()

Instanciar Struct

In Basic, instance of struct can be instantiated in two ways:

 Dim a As New com.sun.star.awt.Point
 a = CreateUnoStruct("com.sun.star.awt.Point")

With Dim statement and New keyword, you can instantiate a struct or array of structs. Or CreateUnoStruct method provides the way to instantiate a struct at runtime. You can not initialize the instance at the creation, you have to set its value of members.

In Python, you can use the following ways to instantiate a struct. Import struct class and call it.

 from com.sun.star.awt import Point
 
 a = Point()         # instantiate with default values, X=0, Y=0
 b = Point(100, 200) # initialize with initial values, X=100, Y=200

Calling the class to create new instance of the struct, you can empty its arguments or you have to pass values for all fields. In other words, you can not pass insufficient number of arguments to initialize. And its order should be match with definition of the struct in its IDL. For example, instance of struct b having X=100 and Y=200 in the above piece of code.

You can initialize without to import the class of your target struct with uno.createUnoStruct function as follows:

 import uno
 
 a = uno.createUnoStruct("com.sun.star.awt.Point")
 b = uno.createUnoStruct("com.sun.star.awt.Point", 100, 200)

This makes the same result with the above example. The first parameter of the createUnoStruct method is the name of the struct to initialize. The following arguments are initial values for new instance.

Enum

In Basic, you can access to the module of the enum as follows:

 ITALIC = com.sun.star.awt.FontSlant.ITALIC

In Python, the following ways can be used:

 import uno
 from com.sun.star.awt.FontSlant import ITALIC
 ITALIC = uno.getConstantByName("com.sun.star.awt.FontSlant.ITALIC")
 ITALIC = uno.Enum("com.sun.star.awt.FontSlant", "ITALIC")

All of the way results the instance of uno.Enum class.

Constantes

In StarBasic, you can get access to constants through its module:

 BOLD = com.sun.star.awt.FontWeight.BOLD

In Python, the following ways are provided:

 import uno
 
 from com.sun.star.awt.FontWeight import BOLD
 BOLD = uno.getConstantsByName("com.sun.star.awt.FontWeight.BOLD")

Sequence

The sequence is sequential value of the same type. In StarBasic, array is used. In Python, tuple is chosen to represent UNO's sequence. Note, list is not allowed to pass as sequence value.

Boolean

In Python, True or False.

String

Python's string can contain over 64K bytes. If you have to write non Ascii 7 bit characters in your script, write magic comment at the head of your file. This is standard Python instructions.

 # -*- coding: utf_8 -*-

Please read Python's documentation for more detail.

Char

There is no dedicated value for char type in StarBasic.

In Python, uno.Char class is defined for char type.

 import uno
 c = uno.Char("a")

Secuencia de Byte

The byte sequence is sequence of byte type.

In Basic, array of byte is used to represent it.

In Python, it is represented by str wrapped by uno.ByteSequence class. If you takes some byte sequences from UNO, they are the instance of uno.ByteSequence. If you need to get real value of them, refer its value instance variable.

Excepciones

In StarBasic, you get thrown exception as some error. And On Error statement is used to catch it.

 Sub ErrorExample
   On Error GoTo Handler
   ' ... error
   Exit Sub
   Handler: 
 End Sub

And you can not throw any exceptions from StarBasic.

In Python, the exception thrown in UNO world can be treated as normal Python's exception. Here is an example:

 from com.sun.star.container import IndexOutOfBoundsException
 try:
     obj.getByIndex(100) # raises IndexOutOfBoundsException
 except IndexOutOfBoundsException as e:
     print(e)

If getByIndex method raises IndexOutOfBoundsException, it can be caught in except statement because all exceptions inherit Python's Exception class.

And also you can throw UNO's exception from your Python code as follows:

 from com.sun.star.uno import RuntimeException
 raise RuntimeException("Some message", None)

Valores vacios

In Basic, there are some situations to meet variables that they do not contain any value (this is not correct). Null, empty, missing, nothing and so on.

In Python, None is used. If a method defined as void return value in its IDL, it results None if you call it. If you need to pass invalid interface as an argument for the method that takes some interface, pass None for it. The result of this behavior is fully dependent to the implementation of the method.

Receptores (Listeners) e Interfaces

In StarBasic, you can create new listener using CreateUnoListener runtime function with some subroutines or functions.

 Sub Add
 
   d = CreateUnoDialog(DialogLibraries.Standard.Dialog1)
   listener = CreateUnoListener("ActionListener", "com.sun.star.awt.XActionListener")
   d.getControl("CommandButton1").addActionListener(listener)
   d.execute()
   d.dispose()
 
 End Sub
 
 Sub ActionListener_actionPerformed(ev)
 
 End Sub
 
 Sub ActionListener_disposing(ev)
 
 End Sub

In Python, you have define your own class with desired interfaces. With helper class, you can define easily as follows:

 import unohelper
 
 from com.sun.star.awt import XActionListener
 
 class ActionListener(unohelper.Base, XActionListener):
 
     def __init__(self):
         pass
 
     def disposing(self, ev):
         pass
 
     def actionPerformed(self, ev):
         pass

unohelper.Base class provides required interface for UNO components.

Containers

In StarBasic, container object provides the way to access to its contents in sequentially.

In Python, there is no shortcut provided.

If you need to access to elements of indexed container, use range function to generate sequential indexes.

 for i in range(container.getCount()):
     obj = container.getByIndex(i)

URL y Rutas de sistema

If you work with a file stored in your local file system, you have to get its corresponding URL.

In StarBasic, ConvertToURL runtime function is prepared for this task. And there is ConvertFromURL runtime function for reverse conversion.

In Python, the following functions are defined in uno module for such task.

 import uno
 
 path = "/home/foo/Documents/file.odt"
 url = uno.sytemPathToFileUrl(path)
 path = uno.fileUrlToSystemPath(url)

Argumentos y valor de Retorno

In StarBasic, mode of the first argument of parseStrict method is "inout" in the following code:

 aURL = CreateUnoStruct("com.sun.star.util.URL")
 aURL.Complete = ".uno:Paste"
 CreateUnoService("com.sun.star.util.URLTransformer").parseStrict(aURL)

The content of aURL variable is updated after calling the method.

In Python, out mode parameter is returned as part of return value.

 from com.sun.star.util import URL
 
 aURL = URL()
 aURL.Complete = ".uno:Paste"
 dummy, aURL = smgr.createInstanceWithContext("com.sun.star.util.URLTransformer", ctx).parseStrict(aURL)
 # Definition of com.sun.star.util.XURLTransformer::parseStrict method: 
 # void parseStrict([inout] com.sun.star.util.URL aURL);

If a method has out mode in its parameters, its return is always tuple that contains original return value and values for out parameters.

Here is a potential example:

 # boolean getSomeValue([in] string aName, [out] short aNum, [inout] long aNum2);
 result, num, num2 = obj.getSomeValue("foo", 100, 200)

In the above example, result variable takes original return value, num takes output value for second parameter and num2 takes output value for third parameter. The method takes 100 as the second parameter but it is not used as input of value. No entry in returned tuple for in mode parameter.

Funciones para ser Ejecutadas

In Basic, you can not choose routines to be executed by users.

In Python, define g_exportedScripts variable that contains tuple of callable in your macro file.

 def func_a():
 pass
 
 def func_b():
 pass
 
 def func_hidden():
 pass # not shown in the UI
 
 g_exportedScripts = func_a, func_b

In the above code, func_hidden is not shown in execution dialog of macros.

Importando modulos

Dialogos

Message Box

Input Box

Personal tools