PythonForS60 1 4 0 Doc PDF
PythonForS60 1 4 0 Doc PDF
04 July 2007
Nokia
Copyright
c 2004-2007 Nokia Corporation.
This is Python for S60 version 1.4.0 final created by Nokia Corporation. Files added by Nokia Corpo-
ration are licensed under Apache License Version 2.0. The original software, including modifications of
Nokia Corporation therein, is licensed under the applicable license(s) for Python 2.2.2, unless specifically
indicated otherwise in the relevant source code file.
See http://www.apache.org/licenses/LICENSE-2.0 and http://www.python.org/2.2.2/license.html
ii
CONTENTS
1 Introduction 1
1.1 Scope . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.2 Audience . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
1.3 Naming Conventions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 2
2 API Summary 3
2.1 Python Standard Library . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
2.2 Python for S60 Extensions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3
2.3 Third-Party Extensions . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4
7 Data Management 55
7.1 contacts — A contacts related services package . . . . . . . . . . . . . . . . . . . . . . . 55
iii
7.2 calendar — Access to calendar related services . . . . . . . . . . . . . . . . . . . . . . . 60
7.3 calendar for EKA2 — Access to calendar related services . . . . . . . . . . . . . . . . . 65
7.4 e32db — Interface to the Symbian native DB . . . . . . . . . . . . . . . . . . . . . . . . . 70
7.5 e32dbm — DBM implemented using the Symbian native DBMS . . . . . . . . . . . . . . 73
A Reporting Bugs 87
Module Index 89
Index 91
iv
CHAPTER
ONE
Introduction
The Python for S60 Platform (Python for S60) simplifies application development and provides a scripting
solution for the Symbian C++ APIs. This document is for Python for S60 release 1.4.0 final that is
based on Python 2.2.2.
The documentation for Python for S60 includes three documents:
• Getting Started with Python for S60 Platform [5] contains information on how to install Python
for S60 and how to write your first program.
• This document contains API and other reference material.
• Programming with Python for S60 Platform [6] contains code examples and programming patterns
for S60 devices that can be used as a basis for programs.
A plugin for the S60 C++ SDK is also available. This plugin makes it possible to run Python scripts in
the S60 emulator environment and to compile Python extension modules (PYDs) for the emulator and
the device.
The Python for S60 developer discussion board [9] on the Forum Nokia Web site is a useful resource for
finding out information on specific topics concerning Python for S60. You are welcome to give feedback
or ask questions about Python for S60 through this discussion board.
1.1 Scope
This document includes the information required by developers to create applications that use Python
for S60, and some advice on extending the platform.
1
1.2 Audience
This guide is intended for developers looking to create programs that use the native features and re-
sources of the S60 phones. The reader should be familiar with the Python programming language
(http://www.python.org/) and the basics of using Python for S60 (see Getting Started with Python for S60
Platform [5]).
2 Chapter 1. Introduction
CHAPTER
TWO
API Summary
All built-in object types of the Python language are supported in the S60 environment. The rest of the
programming interfaces are implemented by various library modules as summarized in this chapter.
There are two built-in extensions in the Python for S60 package:
• The e32 extension module is built into the Python interpreter on Symbian OS, and implements
interfaces to special Symbian OS Platform services that are not accessible via Python standard
library modules.
• The appuifw module for Python for S60 Platform offers UI application framework related Python
interfaces.
These dynamically loadable extension modules provide proprietary APIs to S60 Platform’s services:
3
• inbox: see Chapter 6.4
THREE
5
shell. For more details on this topic, see Programming with Python for S60 Platform [6]. In the first
case the script application is launched via application menu, and it executes in its own process context.
The latter case is suitable for development, testing, and trying out new scripts.
The Python script shell delivered with Python for S60 package has itself been written in Python. It is a
collection of scripts that offer an interactive Python console and a possibility to execute scripts located
in the directory of the script shell. Due to this kind of design the scripts are not fully isolated from each
other. This means that any changes a script makes in the script shell namespace are visible to other
scripts as well. This may be helpful during the development of a script suite, as long as care is taken to
avoid unwanted interference between scripts.
For some special issues to consider when writing Python scripts to be run in the current Python script
shell, see Programming with Python for S60 Platform [6]. These include the arrangements for standard
output and the maintenance of the Options menu contents.
Note: Note that unlike some previous releases, the current version of the Python for S60 script shell
takes care of restoring appuifw.app.menu, appuifw.app.title, appuifw.app.exit key handler,
appuifw.app.screen, appuifw.app.body, sys.stderr and ?? after a script has been run, and The
application programmer doesn’t need to save and restore these settings.
Warning: Trying to use native objects from the wrong thread can crash the interpreter. If display of
panic codes is enabled, a typical panic code displayed in this case is “KERN-EXEC 3”.
FOUR
The following free functions - functions that do not belong to any class - are defined in the e32 module:
ao yield()
Yields to the active scheduler to have ready active objects with priority above normal scheduled for
running. This has the effect of flushing the eventual pending UI events. Note that the UI callback
code may be run in the context of the thread that performs an ao yield. For information on
active scheduler, see S60 SDK documentation [4].
ao sleep(interval [, callback ])
Sleeps for the given interval without blocking the active scheduler. When the optional callback is
given, the call to ao sleep returns immediately and the callback gets called after interval . See
also Section 4.1.3, Ao timer Type.
ao callgate(wrapped callable)
Wraps wrapped callable into returned callable object callgate that can be called in any thread. As
a result of a call to callgate, wrapped callable gets called in the context of the thread that originally
created the callgate. Arguments can be given to the call. This is actually a simple wrapping of the
Symbian active object facility.
drive list()
Returns a list of currently visible drives as a list of Unicode strings ’<driveletter>:’
file copy(target name, source name)
Copies the file source name to target name. The names must be complete paths.
in emulator()
Returns 1 if running in an emulator, or 0 if running on a device.
set home time(time)
Set the device’s time to time (see Section 3.5).
pys60 version
A string containing the version number of the Python for S60 and some additional information.
Example:
9
A tuple containing the five components of the Python for S60 version number: major, minor, micro,
release tag, and serial. All values except release level are integers; the release tag is a string. A value
other than ’final’ for the release tag signifies a development release. The pys60 version info
value corresponding to the Python for S60 version 1.2 is (1, 2, 0, ’final’, 0).
s60 version info
The SDK version with which this Python was compiled (tuple). The following values are possible:
Examples:
class Ao lock()
Creates an Ao lock instance. A Symbian active object based synchronization service. This can
be used in the main thread without blocking the handling of UI events. The application should
not exit while a thread is waiting in Ao lock. If Ao lock.wait is called while another wait call
is already in progress, an AssertionError is raised.
Instances of Ao lock type have the following methods:
wait()
If the lock has already been signaled, returns immediately. Otherwise blocks in wait for the lock
to be signaled. Only one waiter is allowed, so you should avoid recursive calls to this service. wait
can only be called in the thread that created the lock object. During the wait, other Symbian-
active objects are being served, so the UI will not freeze. This may result in the UI callback code
The rationale for the Ao timer type is that you cannot cancel a pending e32.ao sleep. This is
problematic if e.g. the user exits an application which is sleeping. In this case a panic would occur
since the sleep is not cancelled - this is the reason you should avoid using e32.ao sleep and instead
use the Ao timer with appropriate cancel calls if there is for example a possibility for the user to exit
the application during a sleep.
class Ao timer()
Creates an Ao timer instance. A Symbian active object based sleeping service. This can be used
in the main thread without blocking the handling of UI events. The application should not exit
while a thread has a pending after call in Ao timer. Only one after invocation can be pending
at time for each instance of this type.
Instances of Ao timer type have the following methods:
after(interval [,callback ])
Sleeps for the given interval without blocking the active scheduler. When the optional callback is
given, the call to after returns immediately and the callback gets called after interval.
cancel()
Cancels a pending after call.
signal bars()
Returns the current network signal strength ranging from 0 to 7, with 0 meaning no signal and 7
meaning a strong signal. If using an emulator, value 0 is always returned.
signal dbm()
Returns the current network signal strength in dBm. This is available SDK 2.8 onwards. If using
an emulator value 0 is always returned.
sw version()
Returns the software version as a Unicode string. On the emulator, returns the hardcoded string
u’emulator’. For example, a software version can be returned as u’V 4.09.1 26-02-04 NHL-10
(c) NMP’.
1 Descriptions for these values are based on information found in S60 SDK documentation [4].
FIVE
Figure 5.2 shows the layout of a S60 application UI in the normal screen mode and a summary of how
it relates to the services available at the appuifw API. For alternative layouts, see Figure 5.3.
The main application window may be set up to be occupied by a UI control.
A multi-view application can show the different views as tabs in the navigation pane and react as the
users navigate between tabs.
Dialogs always take precedence over the usual UI controls and appear on top of them.
UI controls are implemented as Python types. These types are available:
• Text
• Listbox
• Canvas
UI controls appear on the screen as soon as an instance of the corresponding Python type is set to the
body field (app.body) of the current application UI.
Form is a versatile dialog implemented as a type.
The Content handler type facilitates interfacing to other UI applications and common high-level UI
components. It is based on the notion that designated handlers can reduce UI application interaction to
operations on MIME-type content.
The following dialogs are implemented as functions:
• note
• query
• multi query
• selection list
• multi selection list
13
Figure 5.1: Python for S60 UI environment overview
Figure 5.2: The different parts of the screen when using the ’normal’ layout
• popup menu
A dialog becomes visible as soon as the corresponding Python function has been called. The function
returns with the eventual user input or information on the cancellation of the dialog. Form is an exception;
it is shown when its execute method is called.
5.1.2 Softkeys
The softkeys are managed by the underlying S60 Platform. When no dialog is visible, the right softkey is
bound to application exit and the left one represents an Options menu. Python for S60 offers an interface
for manipulating the menu and for binding the Exit key to a Python-callable object (see Section 5.1.4).
The native code that implements a dialog also manages the softkeys of the dialog, typically OK and
Cancel. When the user input needs to be validated before accepting it and dismissing the dialog, it is
best to use Form.
The following free functions - functions that do not belong to any class - are defined in the appuifw
module:
available fonts()
Returns a list (Unicode) of all fonts available in the device.
query(label, type [, initial value ])
Performs a query with a single-field dialog. The prompt is set to label , and the type of the dialog
is defined by type. The value of type can be any of the following strings:
•’text’
•’code’
•’number’
•’date’
•’time’
•’query’
•’float’
The type of the optional initial value parameter and the returned input depend on the value of
type:
A simple confirmation query and time query take no initial value and return True/None and seconds
since local midnight, correspondingly. All queries return None if the users cancel the dialog.
For ’float’ query the initial value setting has no effect.
multi query(label 1, label 2 )
A two-field text (Unicode) input dialog. Returns the inputted values as a 2-tuple. Returns None if
the users cancel the dialog.
note(text [, type [, global ]])
Displays a note dialog of the chosen type with text (Unicode). The default value for type is ’info’,
which is automatically used if type is not set. type can be one of the following strings: ’error’,
’info’, or ’conf’.
If global (integer) is any other value than zero a global note is displayed. A global note is displayed
even if the Python application calling this function is in background. The same set of types is
supported as in standard note.
popup menu(list [, label ])
A pop-up menu style dialog. list representing the menu contents can be a list of Unicode strings
or a list of Unicode string pairs (tuples). The resulting dialog list is then a single-style or a double-
style list. A single-style list is shown in full; whereas a double-style list shows the items one at a
time. Returns None if the user cancels the operation.
selection list(choices [, search field=0 ])
Executes a dialog that allows the users to select a list item and returns the index of the chosen item,
or None if the selection is cancelled by the users. choices is a list of Unicode strings. search field
is 0 (disabled) by default and is optional. Setting it to 1 enables a search field (find pane) that
facilitates searching for items in long lists. If enabled, the search field appears after you press a
letter key.
multi selection list(choices [, style=’checkbox’, search field=0 ])
Executes a dialog that allows the users to select multiple list items. Returns a tuple of indexes (a
pair of Unicode strings) of the chosen items, or empty tuple if the selection is cancelled by the users.
choices is a list of Unicode strings. style is an optional string; the default value being ’checkbox’.
If ’checkbox’ is given, the list will be a checkbox list, where empty checkboxes indicate what items
can be marked. The other possible value that can be set for style is ’checkmark’. If ’checkmark’
is given, the list will be a markable list, which lists items but does not indicate specifically that
items can be selected. To select items on a markable list, use the Navigation key to browse the
list and the Edit key to select an item. For example views on checkbox and markable lists, see
Figure 5.4. search field is 0 (disabled) by default and is optional. Setting it to 1 enables a search
field (find pane) that facilitates searching for items in long lists. If enabled, the search field is
always visible with checkbox lists; with markable lists it appears by pressing a letter key.
Example:
A single implicit instance of this type always exists when appuifw module is present and can be referred
to with the name app. New instances cannot be created by a Python program.
class Application
Instances of Application type have the following attributes:
body
The UI control that is visible in the application’s main window. Currently either Text, a
Listbox object, Canvas, or None.
exit key handler
A callable object that is called when the user presses the Exit softkey. Setting
exit key handler to None sets it back to the default value.
menu
This is a list of the following kinds of items:
•(title, callback) which creates a regular menu item
•(title, ((title, callback)[... ])) which creates a submenu
title (Unicode) is the name of the item and callback the associated callable object. The
maximum allowed number of items in a menu, or items in a submenu, or submenus in a menu
is 30.
Example:
Form implements a dynamically configurable, editable multi-field dialog. Form caters for advanced dialog
use cases with requirements such as free selectability of the combination of fields, possibility of validating
the user input, and automatically producing the contents of some dialog fields before allowing the closing
of the dialog.
class Form(fields [, flags=0 ])
Creates a Form instance. fields is a list of field descriptors: (label, type[, value ]) where
label is a Unicode string
type is one of the following strings: ’text’, ’number’, ’date’, ’time’, ’combo’ or ’float’
Text is a text editor UI control. For examples on the options available with Text, see Figure 5.5.
•Using a supported Unicode font, for example u"Latin12". Trying to set a font which is not
supported by the device has no effect. A list of supported fonts can be retrieved by using
appuifw.available fonts.
Example, setting font:
t = appuifw.Text()
t.font = u"albi17b" # sets font to Albi 17 bold
t.font = u"LatinPlain12" # sets font to Latin Plain 12
•Using one of the default device fonts that are associated with the following labels (plain
strings): ’annotation’, ’title’, ’legend’, ’symbol’, ’dense’, ’normal’ Example,
setting font:
unicodeFont = t.font
The attribute value retrieved is always a Unicode string. If the font has been set with a label, for
example, ’title’, the attribute will retrieve the font associated with that label.
highlight color
The highlight color of the text. highlight color supports the same color representation models
as the graphics module. For the supported color representation models, see Section 5.2.
style
The style of the text. The flags for this attribute are defined in the appuifw module. These flags
can be combined by using the binary operator |. The flags can be divided into two types: text
style and text highlight. Text style flags can be freely combined with each other. However, one or
more text style flags can be combined with only one text highlight flag. The flags are:
Text style:
An instance of this UI control type is visible as a listbox, also known as a list in Symbian, that can be
configured to be a single-line item or a double-item listbox. Figure 5.6 shows a single-line item Listbox
with icons. For more information on the MBM and MIF formats, see Section 5.1.8.
class Listbox(list, callback )
Creates a Listbox instance. A callable object callback gets called when a listbox selection has
been made. list defines the content of the listbox and can be one of the following:
•A normal (single-line item) listbox: a list of Unicode strings, for example [unicode string
item1, unicode string item2]
•A double-item listbox: a two-element tuple of Unicode strings , for exam-
ple [(unicode string item1, unicode string item1description), (unicode string
item2, unicode string item2description)]
•A normal (single-line item) listbox with graphics: a two-element tuple consisting of
a Unicode string and an Icon object, for example [(unicode string item1, icon1),
(unicode string item2, icon2)].
•A double-item listbox with graphics: a three-element tuple consisting of
two Unicode strings and one Icon object, for example [(unicode string
item1, unicode string item1description, icon1), (unicode string item2,
unicode string item2description, icon2)]
An instance of Icon type encapsulates an icon to be used together with a Listbox instance. Note that
currently Icon can only be used with Listbox (see Section 5.1.7).
MBM is the native Symbian OS format used for pictures. It is a compressed file format where the files
can contain several bitmaps and can be referred to by a number. An .mbg file is the header file usually
associated with an .mbm file, which includes symbolic definitions for each bitmap in the file. For example,
an ‘avkon.mbm’ file has an associated index file called ‘avkon.mbg’, which is included in S60 SDKs. For
more information on the MBM format and the bitmap converter tool, see [4] and search the topics with
the key term ”How to provide Icons”; this topic also points you to the Bitmap Converter tool that can
be used for converting bitmaps into the MBM format.
S60 2nd Edition FP3 introduces a new format for icons called Multi-Image File (MIF). This format is
very similar to the MBM format and also contains several compressed files. The files to be compressed
should be in Scalable Vector Graphics Tiny (SVG-T) format. For more information on the SVG format,
see Scalable Vector Graphics (SVG) 1.1 Specification [10].
class Icon(filename, bitmap, bitmapMask )
Creates an icon. filename is a Unicode file name and must include the whole path. Note that
MBM and MIF (MIF only in S60 2nd Edition FP3) are the only file formats supported. bitmap
and bitmapMask are integers that represent the index of the icon and icon mask inside that file
respectively.
Example: The following builds an icon with the standard signal symbol:
Canvas is a UI control that provides a drawable area on the screen and support for handling raw key
events. Canvas supports the standard drawing methods that are documented in Section 5.2.
class Canvas([redraw callback=None, event callback=None, resize callback=None ])
Constructs a Canvas. The optional parameters are callbacks that are called when specific events
occur.
Note: Watch out for cyclic references here. For example, if the callbacks are methods of an object
that holds a reference to the Canvas, a reference cycle is formed that must be broken at cleanup
time or the Canvas will not be freed.
redraw callback is called whenever a part of the Canvas has been obscured by something, is then
revealed, and needs to be redrawn. This can typically happen, for example, when the user switches
away from the Python application and back again, or after displaying a pop-up menu. The callback
takes as its argument a four-element tuple that contains the top-left and the bottom-right corner
of the area that needs to be redrawn. In many cases redrawing the whole Canvas is a reasonable
option.
event callback is called whenever a raw key event is received. There are three kinds of key
events: EEventKeyDown, EEventKey, and EEventKeyUp. When a user presses a key down, events
EEventKeyDown and EEventKey are generated. When the key is released, an EEventKeyUp event is
generated.
The argument to the event callback is a dictionary that contains the following data for key events:
Each key on the keyboard has one or more scancodes and zero or more keycodes associated with it.
A scancode represents the physical key itself and a keycode is the result of state-related operating
system defined processing done on the key. For keys that correspond to a symbol in the current
character set of the phone, the keycode is equal to the code of the corresponding symbol in that
character set. For example, if you are using the Nokia Wireless Keyboard (SU-8W), pressing the
key A will always produce the scancode 65 (ASCII code for an upper case A), but the keycode
could be either 65 or 91 (ASCII code for a lower case A) depending on whether or not the Shift
key is pressed or Caps Lock is active.
The key codes module contains definitions for the keycodes and scancodes. See Figure 5.7 for the
codes of the most common keys on the phone keypad.
Some keys are handled in a special way:
•A short press of the Edit key causes it to stay down, meaning that no EEventKeyUp event is
sent. The event is only sent after a long press.
•Detecting presses of the Voice tags key or the Power key is not supported.
•If the right softkey is pressed, the appuifw.app.exit key handler callback is always exe-
cuted.
There is no way to prevent the standard action of the Hang-up key, the Menu key, the Power key
or the Voice tags key from taking place.
resize callback is called when screen size is changed when the Canvas rect size has been changed.
The callback takes as its argument a two-element tuple that contains the new clientRect width and
height.
The following free functions - functions that do not belong to any class - are defined in the graphics
module:
screenshot()
Takes a screen shot and returns the image in Image format.
The following Image class static methods are defined in the graphics module:
Image.new(size [, mode=’RGB16’ ])
Creates and returns a new Image object with the given size and mode. size is a two-element tuple.
mode specifies the color mode of the Image to be created. It can be one of the following:
Image.open(filename)
Note: Not supported in S60 1st Edition!
Returns a new Image object (mode RGB16) that contains the contents of the named file. The
supported file formats are JPEG and PNG. The file format is automatically detected based on file
contents. filename should be a full path name.
Image.inspect(filename)
Note: Not supported in S60 1st Edition!
Examines the given file and returns a dictionary of the attributes of the file. At present the
dictionary contains only the image size in pixels as a two-element tuple, indexed by key ’size’.
filename should be a full path name.
•FLIP LEFT RIGHT: Flips the image horizontally, exchanging left and right edges.
•FLIP TOP BOTTOM: Flips the image vertically, exchanging top and bottom edges.
•ROTATE 90: Rotates the image 90 degrees counterclockwise.
•ROTATE 180: Rotates the image 180 degrees.
•ROTATE 270: Rotates the image 270 degrees counterclockwise.
If callback is given, the operation is asynchronous and the returned image will be only partially
complete until callback is called.
load(filename [, callback=None ])
Note: Not supported in S60 1st Edition!
Replaces the contents of this Image with the contents of the named file, while keeping the current
image mode. This Image object must be of the same size as the file to be loaded.
If callback is given, the operation is asynchronous and the loaded image will be only partially
complete until callback is called. filename should be a full path name.
save(filename [,callback=None, format=None, quality=75, bpp=24, compression=’default’ ])
Note: Not supported in S60 1st Edition!
Saves the image into the given file. The supported formats are JPEG and PNG. If format is not
given or is set to None, the format is determined based on the file name extension: ’.jpg’ or
’.jpeg’ are interpreted to be in JPEG format and ’.png’ to be in PNG format. filename should
be a full path name.
When saving in JPEG format, the quality argument specifies the quality to be used and can range
from 1 to 100.
When saving in PNG format, the bpp argument specifies how many bits per pixel the resulting file
should have, and compression specifies the compression level to be used.
Valid values for bpp are:
If callback is given, the operation is asynchronous. When the saving is complete, the callback is
called with the result code.
stop()
Stops the current asynchronous operation, if any. If an asynchronous call is not in progress, this
method has no effect.
Image objects have the following attribute:
size
A two-element tuple that contains the size of the Image. Read-only.
Objects that represent a surface that can be drawn on support a set of common drawing methods,
described in this section. At present there are two such objects: Canvas from the appuifw module and
Image from the graphics module.
Options
Many of these methods support a set of standard options. This set of options is as follows:
• outline: The color to be used for drawing outlines of primitives and text. If None, the outlines of
primitives are not drawn.
• fill : The color to be used for filling the insides of primitives. If None, the insides of primitives are
not drawn. If pattern is also specified, fill specifies the color to be used for areas where the pattern
is white.
• width: The line width to be used for drawing the outlines of primitives.
• pattern: Specifies the pattern to be used for filling the insides of primitives. If given, this must be
either None or a 1-bit (black and white) Image.
Coordinate representation
The methods accept an ordered set of coordinates in the form of a coordinate sequence. Coordinates
can be of type int, long, or float. A valid coordinate sequence is a non-empty sequence of either
• Alternating x and y coordinates. In this case the sequence length must be even, or
• Sequences of two elements, that specify x and y coordinates.
Color representation
All methods that take color arguments accept the following two color representations:
• A three-element tuple of integers in the range from 0 to 255 inclusive, representing the red, green,
and blue components of the color.
• An integer of the form 0xrrggbb, where rr is the red, gg the green, and bb the blue component of
the color.
For 12 and 16 bit color modes the color component values are simply truncated to the lower bit depth. For
the 8-bit grayscale mode images the color is converted into grayscale using the formula (2*r+5*g+b)/8,
rounded down to the nearest integer. For 1-bit black and white mode images the color is converted into
black (0) or white (1) using the formula (2*r+5*g+b)/1024.
Examples of valid colors:
• 0: Black
You can combine the flags with the binary or operator “—”. For example, the flags setting
FONT BOLD|FONT ITALIC will produce text that is both bold and italic.
Note: Antialiasing support is only available for scalable fonts.
You can obtain a list of all available fonts with the appuifw module function available fonts.
The symbolic names for UI fonts are:
• ’normal’
• ’dense’
• ’title’
• ’symbol’
• ’legend’
• ’annotation’
Since background processes have no access to the UI framework, these symbolic names are not supported
in them. You need to specify the full font name.
line(coordseq [, <options> ])
Draws a line connecting the points in the given coordinate sequence. For more information about
the choices available for options, see Section 5.2.4.
polygon(coordseq [, <options> ])
Draws a line connecting the points in the given coordinate sequence, and additionally draws an
extra line connecting the first and the last point in the sequence. If a fill color or pattern is specified,
the polygon is filled with that color or pattern. For more information about the choices available
for options, see Section 5.2.4.
•the bounding box for the text as a 4-tuple: (topleft-x, topleft-y, bottomright-x, bottomright-y)
•the number of pixels the graphics cursor would move to the right
•the number of characters of the text that fits into the given maximum width and advance
blit(image [,target=(0,0), source=((0,0),image.size), mask=None, scale=0 ])
Copies the source area from the given image to the target area in this drawable. The source area
is copied in its entirety if mask is not given or is set to None. If the mask is given, the source area
is copied where the mask is white. mask can be either None, a 1-bit (black and white) Image or
(on S60 2nd edition FP2 and later) a grayscale Image, and must be of the same size as the source
image. A grayscale mask acts as an alpha channel, i.e. partial transparency.
target and source specify the target area in this image and the source area in the given source. They
are coordinate sequences of one or two coordinates. If they specify one coordinate, it is interpreted
as the upper-left corner for the area; if they specify two coordinates, they are interpreted as the
top-left and bottom-right corners of the area.
If scale is other than zero, scaling is performed on the fly while copying the source area to the
1.Image format (for more information on Image format, see Chapter 5.2 graphics Module) or
2.Raw JPEG data3 .
The settings listed below describe all settings that are supported by the camera module. You can
retrieve the mode settings available for your device by using the appropriate functions listed at the
beginning of this chapter.
•mode is the display mode of the image. The default value is ’RGB16’. The following display
modes are supported for the Image format pictures taken:
–’RGB12’: 4096 colors (12 bits per pixel)
–’RGB16’: 65536 colors (16 bits per pixel). Default value, always supported
–’RGB’: 16.7 million colors (24 bits per pixel)
For the JPEG data format images the following modes are supported:
–’JPEG Exif’: JPEG Exchangeable image file format
–’JPEG JFIF’: JPEG File Interchange Format
2 Descriptions for some of the values are based on information found in S60 SDK documentation [4]
3 For more information, see e.g. http://en.wikipedia.org/wiki/JPEG.
If some other application is using the camera, this operation fails, with error SymbianError:
KErrInUse. Invoking this function right after the device boot, might result in SymbianError:
KErrNotReady error.
KeyCapturer object takes a callback method as a mandatory parameter to its constructor. The callback
method must have one single parameter for forwarding the key code of the captured key.
There can be several KeyCapturer objects existing at the same time.
KeyCapturer object has following methods and properties:
keys
List of keys to be captured. Can be read and written.
Example:
5.5 topwindow — Interface for creating windows that are shown on top of
other applications.
The topwindow module offers an API for creating windows that are shown on top of other applications
and managing the content of these windows. Images can be inserted into the windows and the background
color, visibility, corner type and shadow of the window can be manipulated.
topwindow extension does not provide sophisticated drawing capabilities by any means but rather relies
on services provided by the graphics extension: topwindow allows graphics Image objects to be put
into the windows that are represented by TopWindow objects.
TopWindow object provides mainly only two services: TopWindow objects can be shown or hidden and
Images can be put into the windows. However, several images can be added into one TopWindow object
and several TopWindow objects can be created and shown. Since the images can be manipulated using
the graphics extension this makes it possible to create many kind of content to the TopWindow objects.
add_image(image, (10,20))
add_image(image, (10,20,20,30))
5.5. topwindow — Interface for creating windows that are shown on top of other applications. 37
5.6 gles — Bindings to OpenGL ES
The gles module provides Python bindings to OpenGL ES 2D/3D graphics C API. OpenGL ES is a
standard defined by Khronos Group (www.khronos.org). Currently S60 Python supports OpenGL ES
version 1.0 from Series 60 version 2.6 onwards. Support for OpenGL ES version 1.1 should also become
available in the near future, and both versions are documented here. OpenGL ES 1.1 will require Series
60 version 3.0 or newer.
For detailed description of the OpenGL ES API see the official specifications at
http://www.khronos.org/opengles. This documentation contains only information that is specific
to the S60 Python bindings to OpenGL ES. Where possible, the conventions of the PyOpenGL desktop
OpenGL bindings (http://pyopengl.sourceforge.net) have been followed.
The display of OpenGL ES graphics is handled by separate module, glcanvas. See glcanvas module
documentation for more information.
gles module defines array type for representing numerical data of specific GL type. array objects are
convenient when numerical data for OpenGL ES calls is specified in Python code. Class array also
defines the standard Python sequence methods so its instances can be iterated and individual items in
arrays can be manipulated easily.
class array(type, dimension, sequence)
Constructs a new array object that contains the given type of data that is taken from sequence.
Parameter dimension specifies how many items there are in each array element. The dimension
information is stored with the array and is used by those functions that need to know the element
size of the input data, for example, if colors are specified with three or four components. The
dimension does not affect the length of an array or its indexing: both are based on individual
items.
Value of type must be one of the following: GL FLOAT, GL BYTE, GL UNSIGNED BYTE, GL SHORT,
GL UNSIGNED SHORT, or GL FIXED.
The data in sequence is flattened before it is used to fill the array. When type is GL FLOAT, the
sequence can contains floats or integers. With all other types, sequence must only contain integers.
Values in sequence are casted in C to the requested type, so if the requested type cannot properly
represent all the values the results can be unexpected.
len ()
Returns the number of items in the array. Note that array dimension does not affect the
calculation of the length.
getitem (index )
Returns the item in array with index . Note that array dimension does not affect indexing.
setitem (index, value)
Sets the value of the item in position index to value. Note that array dimension does not
affect indexing.
Errors generated by the API calls are handled similarly as in PyOpenGL: all GL errors are reported
as Python exceptions of type gles.GLerror. The wrapper code checks GL error status after each call
automatically. There is no Python binding for glGetError call.
Certain OpenGL ES functions require special handling in Python, mainly because of the pointer pa-
rameters in the C API. Additionally, special Python versions for some OpenGL ES functions have been
OpenGL ES 1.0
•size If sequence is an instance of gles.array, its dimension is used; otherwise the length of
sequence is used.
•type GL BYTE
•stride 0
glTexCoordPointers(sequence)
Table 5.1: Legal combinations of format and type with the equivalent Symbian display mode.
OpenGL ES 1.1
•size If sequence is an instance of gles.array, its dimension is used; otherwise the length of
sequence is used.
•type GL UNSIGNED BYTE
•stride 0
glPointParameterfv(pname, params)
Parameter params must be a Python sequence containing float values.
glPointParameterxv(pname, params)
Parameter params must be a Python sequence containing integer values.
glPointSizePointerOES(type, stride, sequence)
Parameter sequence must be either a gles.array object or some other Python sequence object.
gles.array objects require less processing and can be therefore slightly faster. If gles.array
object is used, the type of its data is ignored and type is used instead.
glPointSizePointerOESf(sequence)
Special Python version of glPointSizePointerOES uses GL FLOAT as type and 0 as stride.
glPointSizePointerOESx(target, data, usage)
Special Python version of glPointSizePointerOES uses GL FIXED as type and 0 as stride.
glWeightPointerOES(size, type, stride, sequence)
Parameter sequence must be either a gles.array object or some other Python sequence object.
gles.array objects require less processing and can be therefore slightly faster. If gles.array
object is used, the dimension and type of its data are ignored and size and type are used instead.
glWeightPointerOESf(sequence)
Special Python version of glWeightPointerOES that accepts either a gles.array object or some
other Python sequence object. Other parameters of glWeightPointerOES will be determined as
follows:
•size If sequence is an instance of gles.array, its dimension is used; otherwise the length of
sequence is used.
•type GL FLOAT
•stride 0
glWeightPointerOESx(sequence)
Special Python version of glWeightPointerOES that behaves exactly as glWeightPointerOESf
except GL FIXED is used as type.
SIX
Note: The method current volume is not available for S60 1st Edition.
class Sound
Sound objects have the following functions:
play([times=1, interval=0, callback=None ])
Starts playback of an audio file from the beginning. Without the parameters times and
1 The dynamically loaded audio codec for the sound file is based on the MIME-type information inside the audio file
47
interval it plays the audio file one time. times defines the number of times the audio file is
played, the default being 1 . If the audio file is played several times, interval gives the time
interval between the subsequent plays in microseconds.
The optional callback is called when the playing starts and when the end of the sound file
is reached. The callback should take three parameters: the previous state, the current state
and the possible error code. The possible states given as parameters to the callback are data
items in the module audio.
Other issues:
•Calling play(audio.KMdaRepeatForever) will repeat the file forever.
•If an audio file is played but not stopped before exiting, the Python script will leave audio
playing on; therefore stop needs to be called explicitly prior to exit.
•Currently the module does not support playing simultaneous audio files, calling play to a
second Sound instance while another audio file is playing, stops the earlier audio file and
starts to play the second Sound instance.
•Calling play while a telephone call is ongoing plays the sound file to uplink. In some
devices the sound file is also played to the device speaker.
•Calling play when already playing or recording results in RuntimeError. Calling stop
prior to play will prevent this from happening.
stop()
Stops playback or recording of an audio file.
record()
Starts recording audio data to a file. If the file already exists, the operation appends to the
file. For Nokia devices, WAV is typically supported for recording. For more information on
the audio types supported by different devices, see the Forum Nokia Web site [7] and S60
Platform Web site [8]. Other issues:
•Calling record while a telephone call is ongoing starts the recording of the telephone call.
•Calling record when already playing or recording results in RuntimeError. Calling stop
prior to record will prevent this from happening.
close()
Closes an opened audio file.
state()
Returns the current state of the Sound type instance. The different states (constants) are
defined in the audio module. The possible states2 are:
•ENotReady
The Sound object has been constructed but no audio file is open.
•EOpen
An audio file is open but no playing or recording operation is in progress.
•EPlaying
An audio file is playing.
•ERecording
An audio file is being recorded.
max volume()
Returns the maximum volume of the device.
set volume(volume)
Sets the volume. If the given volume is negative, then the volume is set to zero which mutes
the device. If the volume is greater than max volume, then max volume is used.
current volume()
Returns the current volume set.
duration()
Returns the duration of the file in microseconds.
set position(microseconds)
Set the position for the playhead.
2 Descriptions for these options are based on information found in S60 SDK documentation [4].
in many cases.
The amount of resending is approx. 4 times – After this the sending operation is cancelled and the user of the device will
see a visual cue of the failure in the status pane.
6.5.1 Examples
Here is an example of how to use the location package to fetch the location information:
6.6.1 Example
The following example demonstrates how to use the python position module.
# set requestors.
# at least one requestor must be set before requesting the position.
# the last requestor must always be service requestor
# (whether or not there are other requestors).
positioning.set_requestors([{"type":"service",
"format":"application",
"data":"test_app"}])
SEVEN
Data Management
The following free functions - functions that do not belong to any class - are defined in the Contact
module:
open([filename [, mode ]])
Opens a contacts database and returns a ContactDb object. filename should be a full Unicode
path name. If filename is not given, opens the default contacts database. If mode is not given, the
database must exist. If mode is ’c’, the database is created if it does not already exist. If mode is
’n’, a new, empty database is created, overwriting the possible previous database.
Warning: Using open together with the additional parameters filename or mode is intended for testing
purposes only. Due to S60 SDK functionality, the open method can sometimes be unreliable with these
parameters.
There is one default contact database, but it is possible to create several databases with the open function.
class ContactDb
ContactDb objects have the following methods:
add contact()
Adds a new contact into the database. Returns a Contact object that represents the new
contact. The returned object is already locked for modification. Note that a newly created
contact will contain some empty default fields. If you do not want to use the default fields for
anything, you can ignore them.
55
find(searchterm)
Finds the contacts that contain the given Unicode string as a substring and returns them as
a list.
import vcards(vcards)
Imports the vCard(s) in the given string into the database.
export vcards(ids)
Converts the contacts corresponding to the ID’s in the given tuple ids to vCards and returns
them as a string.
keys()
Returns a list of unique IDs of all Contact objects in the database.
compact required()
Verifies whether compacting is recommended. Returns an integer value indicating either a
true or false state. Returns True if more than 32K of space is unused and if this comprises
more than 50 percent of the database file, or if more than 256K is wasted in the database file.
compact()
Compacts the database to its minimum size.
delitem (id )
Deletes the given contact from the database.
field types()
Returns a list of dictionary objects that contains information on all supported field types.
The list contains dictionary objects, which each describe one field type. The most important
keys in the dictionary are ’type’ and ’location’ which together indentify the field type.
’type’ can have string values such as ’email address’. ’location’ can have the string
values ’none’, ’home’, or ’work’. Another important key is ’storagetype’, which defines
the storage type of the field. ’storagetype’ can have the string values ’text’, ’datetime’,
’item id’, or ’binary’. Note that the Contacts extension does not support adding, read-
ing, or modifying fields of any other type than ’text’ or ’datetime’. The other content
returned by field types is considered to be advanced knowledge and is not documented
here.
groups
Returns contact groups of the database. Read-only.
A Contact object represents a live view into the state of a single contact in the database. You can access
the fields either with a contact’s numeric field ID as contact[fieldid], or using the find method.
Attempting to modify a contact while it has been locked for editing in another application will raise the
exception ContactBusy.
class Contact
Contact objects have the following attributes:
id
The unique ID of this Contact. Read-only.
title
The title of this Contact. Read-only.
is group
Returns 1 if this contact is a contact group. Returns 0 if normal contact entry. Read-only.
Contact objects have the following methods:
begin()
Locks the contact for editing. This prevents other applications from modifying the contact for
as long as the lock is held. This method will raise the exception ContactBusy if the contact
has already been locked.
commit()
Releases the lock and commits the changes made into the database.
A Groups object represents Symbian contact groups as a dictionary like object with limited subset of
dictionary functionality. Each group can be accessed using the group’s unique id as a key. The Groups
object returns a list like Group object as the value matching the given key.
The following common methods are supported: iter , getitem , delitem and len .
class Groups
Groups objects have the following attributes:
add group([name ])
Creates new contact group and returns corresponding Group object. Group name can be given
as an optional parameter.
A Group object represents single Symbian contact group as a list object with limited subset of list
functionality. The Group object lists Contact entry ids that belong to the group.
The native Symbian group objects are represented as Symbian contact entries in the database. Therefore
they can also be accessed as Python Contact objects, but this way their group handling properties cannot
be used from Python. Use Groups and Group objects to access group functionalities.
The following common methods are supported: iter , getitem , delitem and len .
class Group
Group objects have the following attributes:
id
The unique id of the Group object. Read-only.
name
The name of the Group object. Read-write.
The following free functions - functions that do not belong to any class - are defined in the calendar
module:
open([filename=None, mode=None ])
Opens a calendar database and returns a new CalendarDb object.
If filename is None, the default database is opened.
If filename is given, it should be a full, absolute path name in Unicode that specifies the calendar
database to open.
mode can be:
Calendar entries and todo lists are stored in a calendar database. There is one default calendar database
but more calendar databases can be created by invoking open with parameters ’n’ or ’c’.
class CalendarDb
CalendarDb objects have the following methods:
add appointment()
Creates and returns a new appointment entry AppointmentEntry. The entry is not added
and saved into the database until Entry.commit is called.
add event()
Creates and returns a new event entry EventEntry. The entry is not added and saved into
the database until Entry.commit is called.
add anniversary()
Creates and returns a new anniversary entry AnniversaryEntry. The entry is not added and
saved into the database until Entry.commit is called.
add todo()
Creates and returns new todo entry TodoEntry. The entry is not added and saved into the
database until Entry.commit is called.
find instances(start date, end date, search str=u” [ ,appointments=0,events=0,anniversaries=0,todos=0 ])
The parameters for this function include the start date, end date, search string, and optional
parameters. The optional parameters define the entry types to be included into the search.
By default all entry types are included. Returns a list that contains Entry instances found in
the search. An instance is a dictionary that contains the entry ID and the datetime value. An
entry may have several instances if it is repeated, for example once every week, etc. However,
all the returned instances occur on the same day, i.e. on the first day between the start
and end datetime values that contains instances. To search all instances between the initial
start and end datetime values, you may have to execute several searches and change the start
datetime value for each search. A match is detected if the search string is a substring of an
entry’s content.
monthly instances(month, appointments=0, events=0, anniversaries=0, todos=0 )
The parameters for this function include month (float) and optional parameters. The optional
parameters define the entry types to be returned. Returns a list that contains entry instances
occurring during the specified calendar month.
daily instances(day, appointments=0, events=0, anniversaries=0, todos=0 )
The parameters for this function include day (float) and optional parameters. The optional
parameters define the entry types to be returned. Returns a list that contains entry instances
occurring on the specified day.
add todo list([name=None ])
Creates a new todo list. name sets the name of the todo list (Unicode). Returns the ID of
the created todo list.
export vcalendars((int,...))
Returns a vcalendar string that contains the specified entries in vCalendar format. The
parameter for this function is a tuple that contains the entry IDs of the exported entries.
import vcalendars(string)
Imports vcalendar entries, given in the string parameter, to the database. Returns a tuple
that contains the unique IDs of the imported entries.
todo lists
Contains a dictionary-like TodoListDict object for accessing the todo lists of this database.
delitem (id )
Deletes the given calendar Entry from the database. id is the unique ID of the calendar
Entry.
getitem (id )
Returns a calendar Entry object indicated by the unique ID. The returned object can be one
An Entry object represents a live view into the state of a single entry in the database. You can access
the entries with an entry’s unique ID. If you create a new entry using db.add appointment etc., it is
saved into the database only if you call the entry’s commit method. In case an entry is already saved
into the database, the autocommit mode is on by default and all the changes are automatically saved
into the database, unless you call the entry’s begin method. If you call the entry’s begin method, the
changes are not saved into the database until you call the entry’s commit method.
Database entries cannot be locked. In other words, other applications are able to make changes to the
database entries you are using (not directly to the EntryObjects you are using, but to their representation
in the database) at the same time you are modifying them, even if you use begin and commit methods.
class Entry
Entry objects have the following methods and properties:
content
Sets or returns the entry’s content text (Unicode).
commit()
Saves the entry or in case of a new entry adds the entry into the database. Note that this can
be called only in case of a new entry, created with db.add appointment etc., or after begin
is called.
rollback()
Undoes the changes made after last commit.
set repeat(dictionary)
Sets the repeat data of the entry. dictionary is a repeat data dictionary that contains all the
repeat rules. For more information on repeat rules, see Section 7.3.4, Repeat Rules.
get repeat()
Returns the repeat data dictionary of the entry.
location
Sets or returns the entry’s location data (Unicode), for example meeting room information.
set time(start [, end ])
Sets the start and end datetime values of the entry (floats). If only one parameter is given,
the other will have the same value.
In case of events, anniversaries, and todo entries the datetime values are truncated to corre-
sponding date values.
TodoEntries can be made undated with TodoEntry.set time(None). Making the todo entry
undated means removing the start and end date and all the repeat rules.
start time
The start datetime value (float) of the entry or None if the start datetime of the entry is not
set.
end time
The end datetime value (float) of the entry or None if the end datetime of the entry is not set.
id
The unique ID of the entry.
last modified
The datetime value (float) of the entry’s last modification in universal time.
AppointmentEntry Objects
class AppointmentEntry
AppointmentEntry class contains no additional methods compared to the Entry class from which it is
derived.
EventEntry
class EventEntry
EventEntry class contains no additional methods compared to the Entry class from which it is derived.
AnniversaryEntry
class AnniversaryEntry
AnniversaryEntry class contains no additional methods compared to the Entry class from which it is
derived.
TodoEntry
TodoEntryobjects represent todo entry types. They have additional properties compared to the Entry
class from which they are derived.
class TodoEntry
TodoEntryobjects have the following additional properties:
cross out time
The cross-out date value of the entry. The value can be None meaning that the entry is
not crossed out, or the cross-out date (float). The set value must be date (float). Setting a
cross-out time also crosses out the entry. See also Section 7.3.3, Entry Object, crossed out.
TodoListDict
TodoListDict objects are dictionary-like objects that enable accessing todo lists.
class TodoListDict
TodoListDict objects have the following property:
default list
The ID of the default todo list.
TodoList
TodoList objects are dictionary-like objects that enable accessesing todo lists.
class TodoList
TodoList objects have the following properties:
name
The name of the todo list as a Unicode string.
id
Returns the ID of the todo list as an integer.
Repeat rules specify an entry’s repeat status, that is, the recurrence of the entry. There are six repeat
types:
• weekly: repeat on the specified days of the week, such as Monday and Wednesday, etc.
• monthly by dates: repeat monthly on the specified dates, such as the 15th and 17th day of the
month
• monthly by days: repeat monthly on the specified days, such as the fourth Wednesday of the
month, or the last Monday of the month
• yearly by day: repeat yearly on the specified day, such as every third Tuesday of May
There are exceptions to repeat rules. For example, you can specify the datetime value (float) in such a
way that the entry is not repeated on a specific day even if the repeat rule would specify otherwise.
You must set the start and end dates (floats) of the repeat. The end date can also be set to None to
indicate that the repeating continues forever. You can set interval defining how often the repeat occurs,
for example in a daily repeat: 1 means every day, 2 means every second day, etc. You can also set the
days specifier which lets you explicitly specify the repeat days; for example in a weekly repeat you can
set "days":[0,2] which sets the repeat to occur on Mondays and Wednesdays. If you do not set the
days specifier, the repeat days are calculated automatically based on the start date.
You can modify repeat data by calling rep data = entry.get repeat(), then making changes to
rep data dictionary, and then calling entry.set repeat(rep data).
Repeating can be cancelled by calling entry.set repeat with a parameter that is interpreted to be
false, such as entry.set repeat(None).
Repeat definition examples:
The following free functions - functions that do not belong to any class - are defined in the calendar
module:
open([filename=None, mode=None ])
Opens a calendar database and returns a new CalendarDb object.
If filename is None, the default database is opened.
If filename is given, it should contain drive letter, colon and file’s name, but no absolute path.
mode can be:
Calendar entries are stored in a calendar database. There is one default calendar database but more
calendar databases can be created by invoking open with parameters ’n’ or ’c’.
class CalendarDb
CalendarDb objects have the following methods:
add appointment()
Creates and returns a new appointment entry AppointmentEntry. The entry is not added
and saved into the database until Entry.commit is called.
add event()
Creates and returns a new event entry EventEntry. The entry is not added and saved into
the database until Entry.commit is called.
add anniversary()
Creates and returns a new anniversary entry AnniversaryEntry. The entry is not added and
saved into the database until Entry.commit is called.
add todo()
Creates and returns new todo entry TodoEntry. The entry is not added and saved into the
database until Entry.commit is called.
add reminder()
Creates and returns new reminder entry ReminderEntry. The entry is not added and saved
into the database until Entry.commit is called.
find instances(start date, end date, search str=u” [ ,appointments=0,events=0,anniversaries=0,todos=0,remin
The parameters for this function include the start date, end date, search string, and optional
parameters. The optional parameters define the entry types to be included into the search.
By default all entry types are included. Returns a list that contains Entry instances found
in the search. An instance is a dictionary that contains the entry ID and the datetime value.
An entry may have several instances if it is repeated, for example once every week, etc.
monthly instances(month, appointments=0, events=0, anniversaries=0, todos=0, reminders=0 )
The parameters for this function include month (float) and optional parameters. The optional
parameters define the entry types to be returned. Returns a list that contains entry instances
occurring during the specified calendar month.
An Entry object represents a live view into the state of a single entry in the database. You can access
the entries with an entry’s unique ID. If you create a new entry using db.add appointment etc., it is
saved into the database only if you call the entry’s commit method. In case an entry is already saved
into the database, the autocommit mode is on by default and all the changes are automatically saved
into the database, unless you call the entry’s begin method. If you call the entry’s begin method, the
changes are not saved into the database until you call the entry’s commit method.
Database entries cannot be locked. In other words, other applications are able to make changes to the
database entries you are using (not directly to the EntryObjects you are using, but to their representation
in the database) at the same time you are modifying them, even if you use begin and commit methods.
class Entry
Entry objects have the following methods and properties:
content
Sets or returns the entry’s content text (Unicode).
commit()
Saves the entry or in case of a new entry adds the entry into the database. Note that this can
be called only in case of a new entry, created with db.add appointment etc., or after begin
is called.
rollback()
Undoes the changes made after last commit.
set repeat(dictionary)
Sets the repeat data of the entry. dictionary is a repeat data dictionary that contains all the
repeat rules. For more information on repeat rules, see Section 7.3.4, Repeat Rules.
get repeat()
Returns the repeat data dictionary of the entry.
location
Sets or returns the entry’s location data (Unicode), for example meeting room information.
set time(start [, end ])
Sets the start and end datetime values of the entry (floats). If only one parameter is given,
the other will have the same value.
In case of events, anniversaries, and todo entries the datetime values are truncated to corre-
sponding date values.
TodoEntries can be made undated with TodoEntry.set time(None). Making the todo entry
undated means removing the start and end date and all the repeat rules.
AppointmentEntry Objects
class AppointmentEntry
AppointmentEntry class contains no additional methods compared to the Entry class from which it is
derived.
EventEntry
class EventEntry
EventEntry class contains no additional methods compared to the Entry class from which it is derived.
AnniversaryEntry
class AnniversaryEntry
AnniversaryEntry class contains no additional methods compared to the Entry class from which it is
derived.
class ReminderEntry
ReminderEntry class contains no additional methods compared to the Entry class from which it is
derived.
TodoEntry
TodoEntryobjects represent todo entry types. They have additional properties compared to the Entry
class from which they are derived.
class TodoEntry
TodoEntryobjects have the following additional properties:
cross out time
The cross-out date value of the entry. The value can be None meaning that the entry is
not crossed out, or the cross-out date (float). The set value must be date (float). Setting a
cross-out time also crosses out the entry. See also Section 7.3.3, Entry Object, crossed out.
Repeat rules specify an entry’s repeat status, that is, the recurrence of the entry. There are six repeat
types:
• weekly: repeat on the specified days of the week, such as Monday and Wednesday, etc.
• monthly by dates: repeat monthly on the specified dates, such as the 15th and 17th day of the
month
• monthly by days: repeat monthly on the specified days, such as the fourth Wednesday of the
month, or the last Monday of the month
• yearly by day: repeat yearly on the specified day, such as every third Tuesday of May
There are exceptions to repeat rules. For example, you can specify the datetime value (float) in such a
way that the entry is not repeated on a specific day even if the repeat rule would specify otherwise.
You must set the start and end dates (floats) of the repeat. The end date can also be set to None to
indicate that the repeating continues forever. You can set interval defining how often the repeat occurs,
for example in a daily repeat: 1 means every day, 2 means every second day, etc. You can also set the
days specifier which lets you explicitly specify the repeat days; for example in a weekly repeat you can
set "days":[0,2] which sets the repeat to occur on Mondays and Wednesdays. If you do not set the
days specifier, the repeat days are calculated automatically based on the start date.
You can modify repeat data by calling rep data = entry.get repeat(), then making changes to
rep data dictionary, and then calling entry.set repeat(rep data).
Repeating can be cancelled by calling entry.set repeat with a parameter that is interpreted to be
false, such as entry.set repeat(None).
Repeat definition examples:
class Dbms()
Creates a Dbms object. Dbms objects support basic operations on a database.
Dbms objects have the following methods:
begin()
Begins a transaction on the database.
close()
Closes the database object. It is safe to try to close a database object even if it is not open.
commit()
Commits the current transaction.
compact()
Compacts the database, reclaiming unused space in the database file.
create(dbname)
Creates a database with path dbname.
execute(query)
Executes an SQL query. On success, returns 0 if a DDL (SQL schema update) statement was
executed. Returns the number of rows inserted, updated, or deleted, if a DML (SQL data update)
statement was executed.
open(dbname)
Opens the database in file dbname. This should be a full Unicode path name, for example,
u’c:\\foo.db’.
rollback()
Rolls back the current transaction.
class Db view()
Creates a Db view object. DB view objects generate rowsets from a SQL query. They provide
functions to parse and evaluate the rowsets.
Db view objects have the following methods:
col(column)
Returns the value in column. The first column of the rowset has the index 1. If the type of the
column is not supported, a TypeError is raised. See Table 7.1 for a list of supported data types.
col count()
Returns the number of columns defined in the rowset.
col length(column)
Gets the length of the value in column. Empty columns have a length of zero; non-empty numerical
and date/time columns have a length of 1. For text columns, the length is the character count,
and for binary columns, the length is the byte count.
col raw(column)
Extracts the value of column as raw binary data, and returns it as a Python string. The first
column of the rowset has the index 1. See Table 7.1 for a list of supported data types.
col rawtime(column)
Extracts the value of a date/time column at index column as a long integer, which represents the
raw Symbian time value. The first column of the rowset has the index 1. See Table 7.1 for a list
of the supported data types.
col type(column)
Returns the numeric type of the given column as an integer from a Symbian-specific list of types.
This function is used in the implementation of method col.
See Table 7.1 for a summary of mapping between SQL and Python data types. The col function can
extract any value except LONG VARBINARY and return it as the proper Python value. In addition, the
col raw function can extract any column type except LONG VARCHAR and LONG VARBINARY as raw binary
data and return it as a Python string.
Inserting, updating, or searching for BINARY, VARBINARY, or LONG VARBINARY values is not supported.
BINARY and VARBINARY values can be read with col or col raw.
SQL type Symbian column type (in the Python type Supported
DBMS C++ API)
BIT EDbColBit
TINYINT EDbColInt8
UNSIGNED TINYINT EDbColUint8
SMALLINT EDbColInt16
UNSIGNED SMALLINT EDbColUint16 int
INTEGER EDbColInt32
UNSIGNED INTEGER EDbColUint32
COUNTER EDbColUint32 (with the TDb-
Col::EAutoIncrement attribute)
BIGINT EDbColInt64 long
REAL EDbColReal32 yes
FLOAT
DOUBLE float
EDbColReal64
DOUBLE PRECISION
DATE
TIME EDbColDateTime float (or long, with col rawtime())
TIMESTAMP
CHAR(n)
EDbColText
VARCHAR(n) Unicode
LONG VARCHAR EDbColLongText
BINARY(n)
EDbColBinary str read only
VARBINARY(n)
LONG VARBINARY EDbColLongBinary n/a no
The functions col and format time use Unix time, seconds since January 1, 1970, 00:00:00 UTC, as the
time format. Internally the database uses the native Symbian time representation that provides greater
precision and range than the Unix time. The native Symbian time format is a 64-bit value that represents
microseconds since January 1st 0 AD 00:00:00 local time, nominal Gregorian. BC dates are represented
by negative values. Since converting this format to Unix time and back may cause slight round-off errors,
you have to use the functions col rawtime and format rawtime if you need to be able to handle these
values with full precision.
The representation of date and time literals in SQL statements depends on the current system date and
time format. Note that the only accepted ordering of day, month, and year is the one that the system is
currently configured to use. Dates in other order are rejected. The recommended way to form date/time
literals for SQL statements is to use the functions format time or format rawtime that format the
given date/time values properly according to the current system’s date/time format settings.
• The firstkey() - nextkey() interface for iterating through keys is not supported. Use the "for
key in db" idiom or the keys or keysiter methods instead.
• This module supports a more complete set of dictionary features than gdbm
• The values are always stored as Unicode, and thus the values returned are Unicode strings even if
they were given to the DBM as normal strings.
•’r’: opens an existing database in read-only mode. This is the default value.
•’w’: opens an existing database in read-write mode.
•’c’: opens a database in read-write mode. Creates a new database if the database does not
exist.
•’n’: creates a new empty database and opens it in read-write mode.
If the character ’f’ is appended to flags, the database is opened in fast mode. In fast mode, updates
are written to the database only when one of these methods is called: sync, close, reorganize,
or clear.
Since the connection object destructor calls close, it is not strictly necessary to close the database before
exiting to ensure that data is saved, but it is still good practice to call the close method when you are
done with using the database. Closing the database releases the lock on the file and allows the file to be
reopened or deleted without exiting the interpreter.
If you plan to do several updates, it is highly recommended that you open the database in fast mode,
since inserts and updates are more efficient when they are bundled together in a larger transaction. This
is especially important when you plan to insert large amounts of data, since inserting records to e32db
is very slow if done one record at a time.
The e32dbm objects returned by the open function support most of the standard dictionary methods.
The supported dictionary methods are:
• getitem
• setitem
• delitem
• has key
• update
• len
• iter
• iterkeys
• iteritems
• itervalues
• get
• setdefault
• pop
• popitem
• clear
These work the same way as the corresponding methods in a normal dictionary.
In addition, e32dbm objects have the following methods:
close()
Closes the database. In fast mode, commits all pending updates to disk. close raises an exception
if called on a database that is not open.
reorganize()
Reorganizes the database. Reorganization calls compact on the underlying e32db database file,
which reclaims unused space in the file. Reorganizing the database is recommended after several
updates.
sync()
In fast mode, commits all pending updates to disk.
EIGHT
1 Derived from the RSA Data Security, Inc. MD5 Message-Digest Algorithm.
75
random PY X
re PY X Uses PY sre as its engine.
repr PY X
rfc822 PY X
select PY X A minimal implementation: select is sup-
ported only for input from sockets.
socket PY X Requires PYD e32socket. Contains exten-
sions as described in Section 8.2.2, socket
Module. Limitations discussed in Section 3.9,
Limitations and Areas of Development.
sre PY X Wraps built-in sre.
string PY X
StringIO PY X
struct built-in X
sys built-in X
thread built-in X Contains extensions as described in Section
8.2.1, thread Module
threading PY (X)
time built-in X
traceback PY X
types PY X
urllib PY X
urlparse(urlsplit only) PY X
uu PY X
warnings PY X
whichdb PY X
xreadlines built-in X
zipfile PY X
zlib PYD X
Table 8.1: Status of library module support.
The following function has been added to the standard thread module:
ao waittid(thread id )
Synchronizes with the end of the execution of the thread identified by the given thread id . The
implementation is based on a Symbian OS active object. For the blocking behavior, see Section
4.1.2, Ao lock Type.
Bluetooth (BT) support has been added to the standard socket module. The following related constants
and functions are defined:
Note: In release 1.0 the functions bt advertise service, bt obex receive, and
bt rfcomm get available server channel incorrectly expected to be given the internal
e32socket.socket object as the socket parameter instead of the proper socket object. Now the func-
tions work correctly. The old calling convention is still supported but it is deprecated and may be
removed in a future release.
AF BT
Represents the Bluetooth address family.
BTPROTO RFCOMM
This constant represents the Bluetooth protocol RFCOMM.
RFCOMM
OBEX
Bluetooth service classes supported by bt advertise service.
AUTH
ENCRYPT
AUTHOR
Bluetooth security mode flags.
bt advertise service(name, socket, flag, class)
Sets a service advertising the service name (Unicode) on local channel that is bound to socket.
If flag is True, the advertising is turned on, otherwise it is turned off. The service class to be
advertised is either RFCOMM or OBEX.
bt discover([address ])
Performs the Bluetooth device discovery (if the optional BT device address is not given) and the
discovery of RFCOMM class services on the chosen device. Returns a pair: BT device address,
dictionary of services, where Unicode service name is the key and the corresponding port is the
value.
bt obex discover([address ])
Same as discover, but for discovery of OBEX class services on the chosen device.
bt obex send file(address, channel, filename)
Sends file filename (Unicode) wrapped into an OBEX object to remote address, channel .
bt obex receive(socket, filename)
Receives a file as an OBEX object, unwraps and stores it into filename (Unicode). socket is a
bound OBEX socket.
bt rfcomm get available server channel(socket)
Returns an available RFCOMM server channel for socket.
set security(socket, mode)
Sets the security level of the given bound socket. The mode is an integer flag that is formed using
a binary or operation of one or more of: AUTH (authentication), ENCRYPT, AUTHOR (authorization).
Example: set security(s, AUTH | AUTHOR).
s = socket(AF_INET, SOCK_STREAM)
print apo.ip()
s.connect((’www.sourceforge.net’,80))
s.send(’GET /\r\n\r\n’)
s.recv(100)
s.close()
apo.stop()
Example 2:
s = socket(AF_INET, SOCK_STREAM)
s.connect((’www.sourceforge.net’,80))
s.send(’GET /\r\n\r\n’)
s.recv(100)
s.close()
apo.stop()
Example 3:
NINE
static CSPyInterpreter*
NewInterpreterL(TBool aCloseStdlib = ETrue,
void(*aStdioInitFunc)(void*) = NULL,
void* aStdioInitCookie = NULL);
TInt RunScript(int argc, char** argv);
void PrintError();
void (*iStdI)(char* buf, int n);
void (*iStdO)(const char* buf, int n);
The caller of the constructor CSPyInterpreter::NewInterpreterL() may provide its own function
aStdioInitFunc for initializing Symbian OS STDLIB’s standard I/O descriptors. It gets called with the
argument aStdioInitCookie. The CSPyInterpreter class can also be requested to leave STDLIB open
at its destruction.
The RunScript method establishes a Python interpreter context and runs the script file whose full path
name is in argv[0] with the given argument vector. After completion, it leaves the interpreter context
and returns a Symbian error code to indicate success or failure.
The CSPyInterpreter::PrintError method can be used to print current Python exception information
to the standard error output.
79
int SPyAddGlobal(PyObject *key, PyObject *value)
int SPyAddGlobalString(char *key, PyObject *value)
PyObject* SPyGetGlobal(PyObject *key)
PyObject* SPyGetGlobalString(char *key)
void SPyRemoveGlobal(PyObject *key)
void SPyRemoveGlobalString(char *key)
Py_BEGIN_ALLOW_THREADS
/* ...your code... */
Py_END_ALLOW_THREADS
To restore/save the interpreter context:
PyEval_RestoreThread(PYTHON_TLS-$>$thread_state)
/* ...your code... */
PyEval_SaveThread()
Defined in pythread.h
• Preparation of the data structures that make the C/C++ coded extensions visible to the Python
interpreter and make it possible to perform calls from Python to C/C++ code
• Conversions between C/C++ representations of the Python objects and object types used in the
extension code
• Maintenance of the reference counts of the C/C++ representations of the Python objects
• Related to the above: design interfaces in such a way that information can be passed between them
with minimal conversions.
• Unicode strings are used at the interfaces to represent text that gets shown on the GUI. They can
be passed to and from Symbian operating system without conversions.
• Rather than always implementing a thin wrapper on top of a Symbian OS facility, consider the
actual task for which the script writer needs the particular interface. For example, if the task
involves interaction with the users using the GUI, the script writer’s interest may well be limited
to performing the interaction / information exchange in a way that is compatible with the UI style
rather than having full control of the low-level details of the GUI implementation.
• The C/C++ implementation of a Python interface should be optimized for performance and cov-
ering access to the necessary features of the underlying Platform. Where necessary, the Python
programming interface can be further refined by wrapper modules written in Python.
An extension module is packaged in its own dynamically loadable library that must be installed into
‘\system\libs’ directory and named ‘module name.pyd’. The module initialization function must be ex-
ported at ordinal 1. The module identification is based on the filename only. As a special feature of
PyS60, an optional module finalizer function may be exported at ordinal 2.
The macro versions of memory-management functions PyMem MALLOC and PyObject NEW are not in-
cluded. Use the functions PyMem Malloc and PyObject New instead.
S60 Python Platform implements an adaptation layer between S60 UI application framework and script
language UI extensions to simplify UI extension development. This API is used by the implementation of
the appuifw module but not exported in the current release. Some general utility services for extensions
are also provided, see Chapter 9.1.
9.2.2 Example
This extension code snippet demonstrates some of the issues mentioned in this chapter, such as:
• Conversion from Python data types, usage of built-in data types at extension interface, usage of
Unicode strings (lines 8-12)
• Releasing the interpreter lock while performing a blocking call to a service outside the interpreter
(lines 29, 31)
TEN
The following list defines the terms and abbreviations used in this document:
Term Definition
AAC; Adaptive AAC provides basically the same sound quality as MP3 while using a
Audio Coding smaller bit rate. AAC is mainly used to compress music.
Advertise Advertise service in Bluetooth makes it known that a certain Bluetooth
service is available.
AMR Adaptive Multi-rate Codec file format.
API Application Programming Interface
Bluetooth Bluetooth is a technology for wireless communication between devices that
is based on a low-cost short-range radio link.
BPP Bits Per Pixel
C STDLIB Symbian OS’s implementation of the C standard library
Dialog A temporary user interface window for presenting context-specific informa-
tion to the user, or prompting for information in a specific context.
Discovery Discovery is a process where Bluetooth finds other nearby Bluetooth devices
and their advertised services.
DLL Dynamic link library
GSM; Global GSM is a digital mobile telephone system that uses a variation of time
System for division multiple access. It digitizes and compresses data, then sends it
Mobile commu- down a channel with two other streams of user data, each in its own time
nication slot.
GUI Graphical User Interface
I/O input/output
IP Internet Protocol
MBM; Multi- The native Symbian OS format used for pictures. MBM files can be gener-
BitMap ated with the bmconv.exe tool included in the S60 SDK.
MIDI; Musi- A protocol and a set of commands for storing and transmitting information
cal Instrument about music.
Digital Interface
MIF; Multi- MIF files are similar to MBM files and can contain compressed SVG-T files.
Image File This file type can be generated with the MifConv.exe tool.
MIME; Multi- MIME is an extension of the original Internet e-mail protocol that can be
purpose Internet used to exchange different kinds of data files on the Internet.
Mail Extensions
MP3 A standard technology and format for compressing a sound sequence into
a very small file while preserving the original level of sound quality when
it is played.
OS Operating System
Real Audio An audio format developed by Real Networks.
RDBMS Relational database management system
SMS; Short SMS is a service for sending messages of up to 160 characters, or 224 charac-
Message System ters if using a 5-bit mode, to mobile phones that use GSM communication.
(within GSM)
83
Term Definition
Softkey Softkey is a key that does not have a fixed function nor a function label
printed on it. On a phone, selection keys reside below or above on the
side of the screen, and derive their meaning from what is presently on the
screen.
SQL Structured Query Language
SVG, SVG-T; XML-based vector graphics format for describing two-dimensional graphics
Scalable Vec- and graphical applications.
tor Graphics
(-Tiny)
Twip Twips are screen-independent units to ensure that the proportion of screen
elements are the same on all display systems. A twip is defined as 1/1440
of an inch, or 1/567 of a centimeter.
UI User Interface
UI control UI control is a GUI component that enables user interaction and represents
properties or operations of an object.
WAV A file format for recording sound, especially in multimedia applications.
[1] G. van Rossum, and F.L. Drake, Jr., editor. [Python] Library Reference. Available at
http://www.python.org/doc
[2] G. van Rossum, and F.L. Drake, Jr., editor. Extending and Embedding [the Python Interpreter].
Available at http://www.python.org/doc
[3] G. van Rossum, and F.L. Drake, Jr., editor. Python/C API [Reference Manual]. Available at
http://www.python.org/doc
[5] Getting Started with Python for S60 Platform, available at http://www.forum.nokia.com/
[8] Developers section on the S60 Platform Web site (for all S60 devices), http://www.s60.com/
85
86
APPENDIX
Reporting Bugs
In order to improve the quality of Python for S60 the developers would like to know of any deficiencies
you find in Python for S60 or its documentation.
Before submitting a report, you will be required to log into SourceForge; this will make it possible for
the developers to contact you for additional information if needed. It is not possible to submit a bug
report anonymously.
All bug reports should be submitted via the project PyS60 Bug Tracker on SourceForge
(http://sourceforge.net/tracker/?group id=154155). The bug tracker offers a Web form which allows per-
tinent information to be entered and submitted to the developers.
The first step in filing a report is to determine whether the problem has already been reported. The
advantage in doing so, aside from saving the developers time, is that you learn what has been done to
fix it; it may be that the problem has already been fixed for the next release, or additional information
is needed (in which case you are welcome to provide it if you can!). To do this, search the bug database
using the search box near the bottom of the page.
If the problem you’re reporting is not already in the bug tracker, go back to the project PyS60 Bug
Tracker (http://sourceforge.net/tracker/?group id=154155). Select the “Submit a Bug” link at the top of
the page to open the bug reporting form.
The submission form has a number of fields. The only fields that are required are the “Summary” and
“Details” fields. For the summary, enter a very short description of the problem; less than ten words is
good. In the Details field, describe the problem in detail, including what you expected to happen and
what did happen. Be sure to include the version of Python for S60 you used, whether any extension
modules were involved and what hardware (the S60 device model or emulator) you were using, including
version information of the S60 SDK and your device firmware version as appropriate. You can see the
device firmware version by entering *#0000# on the device keypad - please include all information that
is shown by this code.
The only other field that you may want to set is the “Category” field, which allows you to place the bug
report into a broad category (such as “Documentation” or “Library”).
Each bug report will be assigned to a developer who will determine what needs to be done to correct the
problem. You will receive an update each time action is taken on the bug.
See Also:
How to Report Bugs Effectively
(http://www-mice.cs.ucl.ac.uk/multimedia/software/documentation/ReportingBugs.html)
Article which goes into some detail about how to create a useful bug report. This describes what
kind of information is useful and why it is useful.
Bug Writing Guidelines
(http://www.mozilla.org/quality/bug-writing-guidelines.html)
Information about writing a good bug report. Some of this is specific to the Mozilla project, but
describes general good practices.
87
88
MODULE INDEX
A
appuifw, 13
audio, 47
C
calendar, 60, 65
camera, 33
contacts, 55
E
e32, 9
e32db, 70
e32dbm, 73
G
glcanvas, 44
gles, 38
graphics, 27
I
inbox, 50
K
keycapture, 35
L
location, 51
M
messaging, 49
P
position, 52
S
socket, 77
sysinfo, 11
T
telephone, 49
thread, 77
topwindow, 36
89
90
INDEX
91
color (Text attribute), 21 EDraft (data in inbox), 50
commit() EFatalServerError (data in messaging), 50
Contact method, 56 EFindPane (data in appuifw), 19
Dbms method, 71 EInbox (data in inbox), 50
Entry method, 62, 67 EIndicatorPane (data in appuifw), 19
compact() ellipse() ( method), 32
CalendarDb method, 62 EMainPane (data in appuifw), 18
ContactDb method, 56 EMovedToOutBox (data in messaging), 49
Dbms method, 71 ENaviPane (data in appuifw), 19
compact required() (ContactDb method), 56 ENCRYPT (data in socket), 77
Contact (class in contacts), 56 end time (Entry attribute), 62, 68
ContactDb (class in contacts), 55 ENoServiceCentre (data in messaging), 50
ContactField (class in contacts), 59 ENotReady (data in audio), 47
contacts (extension module), 55 Entry (class in calendar), 62, 67
content() (Inbox method), 51 EOpen (data in audio), 47
content (Entry attribute), 62, 67 EOutbox (data in inbox), 50
Content handler (class in appuifw), 24 EPlaying (data in audio), 47
corner type (TopWindow attribute), 37 ERecording (data in audio), 47
count line() (Db view method), 72 EScheduledForSend (data in messaging), 49
create() (Dbms method), 71 EScheduleFailed (data in messaging), 50
cross out time (TodoEntry attribute), 63, 69 EScreen (data in appuifw), 18
crossed out (Entry attribute), 63, 68 ESendFailed (data in messaging), 50
current() (Listbox method), 24 ESent
current position() (Sound method), 49 data in inbox, 50
current volume() (Sound method), 48 data in messaging, 49
ESignalPane (data in appuifw), 18
D EStaconBottom (data in appuifw), 19
daily instances() (CalendarDb method), 61, 67 EStaconTop (data in appuifw), 19
Db view (class in e32db), 71 EStatusPane (data in appuifw), 18
Dbms (class in e32db), 71 EStatusPaneBottom (data in appuifw), 19
default list (TodoListDict attribute), 64 EStatusPaneTop (data in appuifw), 19
default module() (in module position), 52 ETitlePane (data in appuifw), 18
delete() EUniversalIndicatorPane (data in appuifw), 19
Inbox method, 51 EventEntry (class in calendar), 63, 68
Text method, 22 EWallpaperPane (data in appuifw), 19
dial() (in module telephone), 49 execute()
display pixels() (in module sysinfo), 11 Dbms method, 71
display twips() (in module sysinfo), 11 Form method, 20
drawNow() (GLCanvas method), 45 exit key handler (Application attribute), 17
drive list() (in module e32), 9 export vcalendars() (CalendarDb method), 61,
duration() (Sound method), 48 67
export vcards() (ContactDb method), 56
E exposure modes() (in module camera), 33
e32 (extension module), 9
e32db (extension module), 70
F
e32dbm (module), 73 FFormAutoFormEdit (data in appuifw), 20
EAColumn (data in appuifw), 19 FFormAutoLabelEdit (data in appuifw), 20
EApplicationWindow (data in appuifw), 18 FFormDoubleSpaced (data in appuifw), 20
EBatteryPane (data in appuifw), 19 FFormEditModeOnly (data in appuifw), 20
EBColumn (data in appuifw), 19 FFormViewModeOnly (data in appuifw), 20
ECColumn (data in appuifw), 19 field types() (ContactDb method), 56
EContextPane (data in appuifw), 18 file copy() (in module e32), 9
EControlPane (data in appuifw), 18 find()
EControlPaneBottom (data in appuifw), 19 Contact method, 58
EControlPaneTop (data in appuifw), 19 ContactDb method, 56
ECreated (data in messaging), 49 find instances() (CalendarDb method), 61, 66
EDColumn (data in appuifw), 19 first line() (Db view method), 72
EDeleted (data in messaging), 49 flags (Form attribute), 20
92 Index
flash modes() (in module camera), 33 glGetClipPlanef() (in module gles), 43
focus glGetFixedv() (in module gles), 43
Application attribute, 17 glGetFloatv() (in module gles), 43
Text attribute, 21 glGetIntegerv() (in module gles), 39
font (Text attribute), 21 glGetLightfv() (in module gles), 43
Form (class in appuifw), 19 glGetLightxv() (in module gles), 43
format rawtime() (in module e32db), 70 glGetMaterialfv() (in module gles), 43
format time() (in module e32db), 70 glGetMaterialxv() (in module gles), 43
forwarding (KeyCapturer attribute), 36 glGetString() (in module gles), 39
free drivespace() (in module sysinfo), 11 glGetTexEnvf() (in module gles), 43
free ram() (in module sysinfo), 12 glGetTexEnvx() (in module gles), 43
full name() (Application method), 18 glGetTexParameterf() (in module gles), 43
glGetTexParameterx() (in module gles), 43
G glLightfv() (in module gles), 40
get() (Text method), 23 glLightModelfv() (in module gles), 39
get line() (Db view method), 72 glLightModelxv() (in module gles), 40
get pos() (Text method), 22 glLightxv() (in module gles), 40
get repeat() (Entry method), 62, 67 glLoadMatrixf() (in module gles), 40
glBufferData() (in module gles), 42 glLoadMatrixx() (in module gles), 40
glBufferDatab() (in module gles), 42 glMaterialfv() (in module gles), 40
glBufferDataf() (in module gles), 42 glMaterialxv() (in module gles), 40
glBufferDatas() (in module gles), 42 glMatrixIndexPointerOES() (in module gles), 43
glBufferDataub() (in module gles), 42 glMatrixIndexPointerOESub() (in module gles),
glBufferDataus() (in module gles), 42 43
glBufferDatax() (in module gles), 42 glMultMatrixf() (in module gles), 40
glBufferSubData() (in module gles), 42 glMultMatrixx() (in module gles), 40
glBufferSubDatab() (in module gles), 42 glNormalPointer() (in module gles), 40
glBufferSubDataf() (in module gles), 42 glNormalPointerb() (in module gles), 40
glBufferSubDatas() (in module gles), 42 glNormalPointerf() (in module gles), 40
glBufferSubDataub() (in module gles), 42 glNormalPointers() (in module gles), 40
glBufferSubDataus() (in module gles), 42 glNormalPointerx() (in module gles), 40
glBufferSubDatax() (in module gles), 42 glPointParameterfv() (in module gles), 44
GLCanvas (class in glcanvas), 45 glPointParameterxv() (in module gles), 44
glcanvas (extension module), 44 glPointSizePointerOES() (in module gles), 44
glClipPlanef() (in module gles), 42 glPointSizePointerOESf() (in module gles), 44
glClipPlanex() (in module gles), 43 glPointSizePointerOESx() (in module gles), 44
glColorPointer() (in module gles), 39 glReadPixels() (in module gles), 40
glColorPointerf() (in module gles), 39 glTexCoordPointer() (in module gles), 40
glColorPointerub() (in module gles), 39 glTexCoordPointerb() (in module gles), 40
glColorPointerx() (in module gles), 39 glTexCoordPointerf() (in module gles), 41
glCompressedTexImage2D() (in module gles), 39 glTexCoordPointers() (in module gles), 40
glCompressedTexSubImage2D() (in module gles), glTexCoordPointerx() (in module gles), 41
39 glTexEnvfv() (in module gles), 41
glDeleteBuffers() (in module gles), 43 glTexEnvxv() (in module gles), 41
glDeleteTextures() (in module gles), 39 glTexImage2D() (in module gles), 41
glDrawElements() (in module gles), 39 glTexSubImage2D() (in module gles), 41
glDrawElementsub() (in module gles), 39 glVertexPointer() (in module gles), 41
glDrawElementsus() (in module gles), 39 glVertexPointerb() (in module gles), 41
glDrawTexfvOES() (in module gles), 43 glVertexPointerf() (in module gles), 41
glDrawTexivOES() (in module gles), 43 glVertexPointers() (in module gles), 41
glDrawTexsvOES() (in module gles), 43 glVertexPointerx() (in module gles), 41
gles (extension module), 38 glWeightPointerOES() (in module gles), 44
glFogv() (in module gles), 39 glWeightPointerOESf() (in module gles), 44
glFogxv() (in module gles), 39 glWeightPointerOESx() (in module gles), 44
glGenBuffers() (in module gles), 43 graphics (extension module), 27
glGenTextures() (in module gles), 39 Group (class in contacts), 59
glGetBooleanv() (in module gles), 43 Groups (class in contacts), 59
glGetBufferParameteriv() (in module gles), 43 groups (ContactDb attribute), 56
Index 93
gsm location() (in module location), 52 M
makeCurrent() (GLCanvas method), 45
H max ramdrive size() (in module sysinfo), 12
hang up() (in module telephone), 49 max volume() (Sound method), 48
hide() (TopWindow method), 36 max zoom() (in module camera), 33
highlight color (Text attribute), 21 maximum size (TopWindow attribute), 37
HIGHLIGHT ROUNDED (data in appuifw), 22 measure text() ( method), 32
HIGHLIGHT SHADOW (data in appuifw), 22 menu
HIGHLIGHT STANDARD (data in appuifw), 22 Application attribute, 17
Form attribute, 20
I messaging (extension module), 49
Icon (class in appuifw), 24 mms send() (in module messaging), 49
id module info() (in module position), 52
Contact attribute, 56 modules() (in module position), 52
Entry attribute, 62, 68 monthly instances() (CalendarDb method), 61,
Group attribute, 59 66
TodoList attribute, 64 multi query() (in module appuifw), 16
Image.inspect() (in module graphics), 27 multi selection list() (in module appuifw),
Image.new() (in module graphics), 27 16
Image.open() (in module graphics), 27
image modes() (in module camera), 33 N
image sizes() (in module camera), 33 name
images (TopWindow attribute), 37 Group attribute, 59
imei() (in module sysinfo), 11 TodoList attribute, 64
import vcalendars() (CalendarDb method), 61, next line() (Db view method), 72
67 note() (in module appuifw), 16
import vcards() (ContactDb method), 56
in emulator() (in module e32), 9 O
inactivity() (in module e32), 10 OBEX (data in socket), 77
Inbox (class in inbox), 50 open()
inbox (extension module), 50 Content handler method, 24
insert() (Form method), 20 Dbms method, 71
is col null() (Db view method), 72 in module calendar, 60, 66
is group (Contact attribute), 56 in module contacts, 55
is ui thread() (in module e32), 10 in module e32dbm, 73
open standalone() (Content handler method),
K 24
keycapture (extension module), 35 orientation (Application attribute), 18
keys() (ContactDb method), 56 originating (Entry attribute), 68
keys (KeyCapturer attribute), 35 os version() (in module sysinfo), 12
KMdaRepeatForever (data in audio), 47
P
L pieslice() ( method), 32
label (ContactField attribute), 59 play() (Sound method), 47
last key() (KeyCapturer method), 36 point() ( method), 32
last modified (Entry attribute), 62, 68 polygon() ( method), 31
layout() (Application method), 18 pop() (Form method), 20
len() (Text method), 22 popup menu() (in module appuifw), 16
length() (Form method), 20 position() (in module position), 52
line() ( method), 31 position
Listbox (class in appuifw), 23 extension module, 52
load() (Image method), 28 TopWindow attribute, 37
location prepare() (Db view method), 72
ContactField attribute, 59 priority (Entry attribute), 63, 68
Entry attribute, 62, 67 pys60 version (data in e32), 9
extension module, 51 pys60 version info (data in e32), 9
PYTHON TLS->thread state, 80
PyThread AtExit(), 80
94 Index
Q Sound.open() (in module audio), 47
query() (in module appuifw), 15 SPyAddGlobal(), 80
SPyAddGlobalString(), 80
R SPyErr SetFromSymbianOSErr(), 79
SPyGetGlobal(), 80
record() (Sound method), 48
SPyGetGlobalString(), 80
rectangle() ( method), 32
SPyRemoveGlobal(), 80
release() (in module camera), 35
SPyRemoveGlobalString(), 80
ReminderEntry (class in calendar), 69
start() (KeyCapturer method), 36
remove image() (TopWindow method), 36
start exe() (in module e32), 10
reorganize() (e32dbm method), 74
start finder() (in module camera), 35
replication (Entry attribute), 63, 68
start server() (in module e32), 10
reset inactivity() (in module e32), 10
start time (Entry attribute), 62, 68
resize() (Image method), 28
state() (Sound method), 48
RFCOMM (data in socket), 77
stop()
ring type() (in module sysinfo), 12
Image method, 29
rollback()
KeyCapturer method, 36
Contact method, 57
Sound method, 48
Dbms method, 71
stop finder() (in module camera), 35
Entry method, 62, 67
style (Text attribute), 21
S STYLE BOLD (data in appuifw), 22
STYLE ITALIC (data in appuifw), 22
s60 version info (data in e32), 10
STYLE STRIKETHROUGH (data in appuifw), 22
save() (Image method), 28
STYLE UNDERLINE (data in appuifw), 22
save hook (Form attribute), 20
sw version() (in module sysinfo), 12
say() (in module audio), 47
sync() (e32dbm method), 74
schema (ContactField attribute), 59
sysinfo (extension module), 11
screen (Application attribute), 17
screenshot() (in module graphics), 27
select access point() (in module socket), 78
T
select module() (in module position), 52 take photo() (in module camera), 33
selection list() (in module appuifw), 16 telephone (extension module), 49
set() (Text method), 23 text() ( method), 32
set default access point() (in module thread (extension module), 77
socket), 78 time() (Inbox method), 51
set exit() (Application method), 18 title
set home time() (in module e32), 9 Application attribute, 17
set list() (Listbox method), 24 Contact attribute, 56
set pos() (Text method), 23 todo list (TodoEntry attribute), 64
set position() (Sound method), 48 todo lists (CalendarDb attribute), 61
set repeat() (Entry method), 62, 67 TodoEntry (class in calendar), 63, 69
set requestors() (in module position), 52 TodoList (class in calendar), 64
set security() (in module socket), 77 TodoListDict (class in calendar), 64
set tabs() (Application method), 18 TopWindow (class in topwindow), 36
set time() (Entry method), 62, 67 topwindow (extension module), 36
set volume() (Sound method), 48 total ram() (in module sysinfo), 12
shadow (TopWindow attribute), 37 total rom() (in module sysinfo), 12
show() (TopWindow method), 36 transpose() (Image method), 28
signal() (Ao lock method), 11 type (ContactField attribute), 59
signal bars() (in module sysinfo), 12
signal dbm() (in module sysinfo), 12 U
size uid() (Application method), 18
Canvas attribute, 27 unread() (Inbox method), 51
Image attribute, 29
TopWindow attribute, 37 V
sms messages() (Inbox method), 51 value (ContactField attribute), 59
sms send() (in module messaging), 49 visible (TopWindow attribute), 37
socket (extension module), 77
Sound (class in audio), 47
Index 95
W
wait() (Ao lock method), 10
white balance modes() (in module camera), 33
96 Index