(Created page with '== ECMA Script Interaction With The Plasma Desktop Shell (plasma-desktop) == It is possible to control and interact with a plasma-desktop session using ECMA Script (aka JavaScri...') |
(→API) |
||
| Line 129: | Line 129: | ||
Functions: | Functions: | ||
| − | * '' | + | * ''QRectF'' '''screenGeometry(number screen)''': returns a rect object representing the geometry of a screen |
=== Misc. Global Properties and Functions === | === Misc. Global Properties and Functions === | ||
| Line 140: | Line 140: | ||
Functions: | Functions: | ||
* '''sleep(number ms)''': sleeps the script for the specified number of millseconds | * '''sleep(number ms)''': sleeps the script for the specified number of millseconds | ||
| + | |||
| + | === QRectF === | ||
| + | A rectangle class is also provided for use with Widget, Panel and screen geometry properties and functions. | ||
| + | |||
| + | Read-only properites: | ||
| + | * ''boolean'' '''empty''': true if the rectangle's width or height is less than, or equal to, 0; an empty rectangle is also invalid | ||
| + | * ''boolean'' '''null''': true if the rectangle has both the width and the height set to 0; a null rectangle is also empty and not valid | ||
| + | * ''boolean'' '''valid''': true if the rectangle has a width > 0 and height 0. | ||
| + | |||
| + | Read-write properties: | ||
| + | * ''number'' '''left''' | ||
| + | * ''number'' '''top''' | ||
| + | * ''number'' '''bottom''' | ||
| + | * ''number'' '''right''' | ||
| + | * ''number'' '''height''' | ||
| + | * ''number'' '''width''' | ||
| + | * ''number'' '''x''' | ||
| + | * ''number'' '''y''' | ||
| + | |||
| + | Constructors: | ||
| + | * '''QRectF''' | ||
| + | * '''QRectF(number x, number y, number width, number height)''': Sets the coordinates of the rectangle's top-left corner to (x, y), and its size to the given width and height. | ||
| + | |||
| + | Functions: | ||
| + | * '''adjust(number dx1, number dy1, number dx2, number dy2)''': adds dx1, dy1, dx2 and dy2 respectively to the existing coordinates of the rectangle | ||
| + | * ''QRectF'' '''adjusted(number dx1, number dy1, number dx2, number dy2)''': returns a new QRectF with dx1, dy1, dx2 and dy2 added respectively to the existing coordinates of the rectangle | ||
| + | * '''translate(number dx, number dy)''': translates the rect by dx, dy | ||
| + | * '''setCoords(number x1, number y1, number x2, number y2)''': sets the coordinates of the rectangle's top-left corner to (x1, y1), and the coordinates of its bottom-right corner to (x2, y2). | ||
| + | * '''setRect(number x, number y, number width, number height)''': sets the coordinates of the rectangle's top-left corner to (x, y), and its size to the given width and height. | ||
| + | * ''boolean'' '''contains(number x, number y)''': returns true if the rect contains the point (x, y) | ||
| + | * '''moveBottom(number delta)'': moves the bottom by delta pixels | ||
| + | * '''moveLeft(number delta)''': moves the left by delta pixels | ||
| + | * '''moveRight(number delta)''': moves the right by delta pixels | ||
| + | * '''moveTo(number x, number y)''': moves the top left of the rect to point (x, y) | ||
| + | * '''moveTop(number delta)''': moves the top by delta pixels | ||
Contents |
It is possible to control and interact with a plasma-desktop session using ECMA Script (aka JavaScript). This scripting mechanism exposes containments (Desktop Activities and Panels), widgets and various other aspects of plasma-desktop configuration using the widely known and used ECMA Script language. The QtScript engine is used for the runtime environment.
This document describes the API that is provided along with how to run such scripts in plasma-desktop.
There are three ways that scripts can be executed in plasma-desktop:
| Note |
|---|
| For security reasons, scripts located in the user's home directory will not be run during this phase. |
`kde4-config --path data`/plasma-desktop/updates/ with a ".js" suffix for scripts that have not yet been run. If there is more than one script which has not been run yet they will be executed serially in the alphabetical order of the file names.
A record of which update scripts have been run is kept in the application's config file in the [Updates] group. This means that if the plasma-desktop configuraiton file is removed, all the update scripts will be run again.
| Note |
|---|
| For security reasons, scripts located in the user's home directory will not be run during this phase. |
qdbus org.kde.plasma-desktop /MainApplication showInteractiveConsole
qdbus org.kde.plasma-desktop /MainApplication loadScriptInInteractiveConsole /path/to/file
In addition to the normal ECMA Script API and the Qt-specific extensions (such as signal/slot support) provided by QtScript, the following API is provided for use by scripts.
All of the API below, unless otherwise noted with a version noticed, appear as below in the KDE Software Compilation v4.4.0 and later. API that is not noted as being part of a given class or object is part of the global namespace.
| Note |
|---|
| API compatibility is guaranteed from version to version starting with KDE Software Compilation v4.4.0. |
Activities are the desktop layer in a plasma-desktop session and may contain widgts. In sightly more technical terms, they are desktop containments. Activities can be created, enumerated, modified and destroyed.
New Activities can be created using the Activity constructor, like this:
var activity = new Activity("folderview")
The string passed into the constructor maps to the X-KDE-PluginInfo-Name= entry in the plugin's .desktop file). See the documentation on the Containment object class below.
Read-only properties:
Functions:
Panels can be created, enumerated, modified and destroyed. A panel object combines both a containment as well as the container itself, allowing for full control of things such as where it appears on screen and the hiding features associated with them.
New Panels can be created using the Panel constructor, like this:
var panel = new Panel("dock")
The string passed into the constructor maps to the X-KDE-PluginInfo-Name= entry in the plugin's .desktop file).
Read-only properties:
Functions:
Activity and Panel objects, ones created by the script, or as returned by activityById, activityForScreen, or panelById) provide the following read-only properties:
as well as the following read/write properties:
and the following methods:
in the widget's .desktop file
In addition to all of the above properties and functions, Panel objects also provide the folowing read/write properties:
Widgets may be enumerated by calling the widgetIds property on a Activity or Panel object. With a widget id in hand, a Widget object can be retrieved by calling widgetById(id) on an Activity or Panel object. New Widgets can be created with add addWidget(String) function provided by Activity and Panel objects.
A Widget object provides the following read-only properties:
as well as the following read-write properties:
and methods:
for the default value
Read-only properties:
Functions:
Read-write properties:
Read-only property:
Functions:
A rectangle class is also provided for use with Widget, Panel and screen geometry properties and functions.
Read-only properites:
Read-write properties:
Constructors:
Functions: