Development/Tutorials/Plasma4/JavaScript/API: Difference between revisions

From KDE TechBase
m (Fixed list formatting)
m (Added code tags)
Line 18: Line 18:


On top of the ECMA Script language, QtScript provides Qt integration features. Probably the most useful one in this context is the use of signals and slots which is Qt's callback mechanism. Signals may be emitted in QtScript by calling the signal method in question, a signal can be connected to a slot by using the connect() method (and disconnected with diconnnect()) and any function defined in the Plasmoid may be used as a slot. For example:  
On top of the ECMA Script language, QtScript provides Qt integration features. Probably the most useful one in this context is the use of signals and slots which is Qt's callback mechanism. Signals may be emitted in QtScript by calling the signal method in question, a signal can be connected to a slot by using the connect() method (and disconnected with diconnnect()) and any function defined in the Plasmoid may be used as a slot. For example:  
<code javascript>
function onClick()
{
    print("We got clicked!")
}


    function onClick()
function onFirstClick()
    {
{
        print("We got clicked!")
     print("First click!")
     }
    button.clicked.disconnect(onFirstClick)
 
}
    function onFirstClick()
    {
        print("First click!")
        button.clicked.disconnect(onFirstClick)
    }
 
    button = new PushButton
    button.clicked.connect(onClick)
    button.clicked.connect(onFirstClick)
    button.clicked()


button = new PushButton
button.clicked.connect(onClick)
button.clicked.connect(onFirstClick)
button.clicked()
</code>
This will print out:  
This will print out:  


<code>
We got clicked! First click!  
We got clicked! First click!  
</code>


on the console when the Plasmoid starts, and the "We got clicked!" again whenever the button is clicked by the user.  
on the console when the Plasmoid starts, and the "We got clicked!" again whenever the button is clicked by the user.  
Line 48: Line 50:


There are some events that are generated by Plasma for the Plasmoid. These can often be caught by providing a function assigned to a specific name in the plasmoid object. For instance, to get notified of form factor changes, one would provide a formFactorChanged method as follows:  
There are some events that are generated by Plasma for the Plasmoid. These can often be caught by providing a function assigned to a specific name in the plasmoid object. For instance, to get notified of form factor changes, one would provide a formFactorChanged method as follows:  
 
<code javascript>
plasmoid.formFactorChanged = function() {  
plasmoid.formFactorChanged = function() {  


Line 54: Line 56:


}  
}  
 
</code>
=== Environment  ===
=== Environment  ===


A set of read-only properties (and in most cases notification functions) that tell the plasmoid about its current environment:  
A set of read-only properties (and in most cases notification functions) that tell the plasmoid about its current environment:  


* apiVersion: the integer version of the Simlified JavaScript API in the current execution environment; can be used to change behaviour or usage of functions depending on the version number.
*apiVersion: the integer version of the Simlified JavaScript API in the current execution environment; can be used to change behaviour or usage of functions depending on the version number.  
* formFactor: one of Planar (e.g. on a desktop or in an application main view), Horizontal, Vertical or MediaCenter.
*formFactor: one of Planar (e.g. on a desktop or in an application main view), Horizontal, Vertical or MediaCenter.
 
   When the form factor changes, the plasmoid.formFactorChanged function, if defined in the Plasmoid, is called.
   When the form factor changes, the plasmoid.formFactorChanged function, if defined in the Plasmoid, is called.
* location: one of Floating (no specific location), Desktop (on the application's main view are), FullScreen, LeftEdge, RightEdge, TopEdge or ButtomEdge
 
*location: one of Floating (no specific location), Desktop (on the application's main view are), FullScreen, LeftEdge, RightEdge, TopEdge or ButtomEdge
 
   When the location changes, the plasmoid.locatationChanged function, if defined in the Plasmoid, is called.
   When the location changes, the plasmoid.locatationChanged function, if defined in the Plasmoid, is called.
* immutable: this property is set to true when the Plasmoid is set to not be movable or otherwise changeable, and false otherwise. Configuration is still usually allowed in this state.
 
*immutable: this property is set to true when the Plasmoid is set to not be movable or otherwise changeable, and false otherwise. Configuration is still usually allowed in this state.
 
   When the immutability changes, the plasmoid.immutabilityChanged function, if defined in the Plasmoid, is called.
   When the immutability changes, the plasmoid.immutabilityChanged function, if defined in the Plasmoid, is called.
* currentActivity: the current contextual activity name
 
*currentActivity: the current contextual activity name
 
   When the current activity changes, the plasmoid.currentActivityChanged function, if defined in the Plasmoid, is called.
   When the current activity changes, the plasmoid.currentActivityChanged function, if defined in the Plasmoid, is called.
* shouldConserveResources: true if the plasmoid should not be doing anything that would create too much draw on power, e.g. when on a device with low battery power it may be a good idea not to run a computationally expensive but optional animation
 
*shouldConserveResources: true if the plasmoid should not be doing anything that would create too much draw on power, e.g. when on a device with low battery power it may be a good idea not to run a computationally expensive but optional animation


=== Properties  ===
=== Properties  ===
Line 74: Line 84:
A set of read/write properties that allow the Plasmoid to set various visual or functional properties:  
A set of read/write properties that allow the Plasmoid to set various visual or functional properties:  


* aspectRatioMode: defines how to treat the aspect ratio of a Plasmoid when resizing it, one of:
*aspectRatioMode: defines how to treat the aspect ratio of a Plasmoid when resizing it, one of:  
**** IgnoreAspectRatio: The Plasmoid can be freely resized
****IgnoreAspectRatio: The Plasmoid can be freely resized  
**** KeepAspectRatio: The Plasmoid keeps a fixed aspect ratio
****KeepAspectRatio: The Plasmoid keeps a fixed aspect ratio  
**** Square: The Plasmoid is always a square
****Square: The Plasmoid is always a square  
**** ConstrainedSquare: The Plasmoid is no wider (in horizontal formfactors) or no higher (in vertical ones) than a square
****ConstrainedSquare: The Plasmoid is no wider (in horizontal formfactors) or no higher (in vertical ones) than a square  
**** FixedSize: The Plasmoid cannot be resized
****FixedSize: The Plasmoid cannot be resized  
* busy: set to true when the Plasmoid is currently processing or waiting for data and the user interface should be blocked while doing so; will generally show a full-Plasmoid animated overlay to denote business
*busy: set to true when the Plasmoid is currently processing or waiting for data and the user interface should be blocked while doing so; will generally show a full-Plasmoid animated overlay to denote business


=== Geometry  ===
=== Geometry  ===
Line 86: Line 96:
Functions:  
Functions:  


* resize(width, height)
*resize(width, height)  
* setMinimumSize(width, height)
*setMinimumSize(width, height)  
* setPreferredSize(width, height)
*setPreferredSize(width, height)


Properties:  
Properties:  


* rect: the current rect of the Plasmoid; note that the top left may be not be the origin point (0,0); this property is read only
*rect: the current rect of the Plasmoid; note that the top left may be not be the origin point (0,0); this property is read only


=== Painting and Layout  ===
=== Painting and Layout  ===
Line 104: Line 114:
Functions:  
Functions:  


* update() triggers a full repaint of the Plasmoid
*update() triggers a full repaint of the Plasmoid  
* update(QRectF rect) triggers a repaint of the rect area of the Plasmoid
*update(QRectF rect) triggers a repaint of the rect area of the Plasmoid  
* failedToLaunch(bool failed, string reason) sets the launch status of the Plasmoid; if set to true, the script will stop executing and the reason message, if any, will be displayed to the user
*failedToLaunch(bool failed, string reason) sets the launch status of the Plasmoid; if set to true, the script will stop executing and the reason message, if any, will be displayed to the user


Properties:  
Properties:  


* layout: the QGraphicsLayout associated with the Plasmoid for laying out top level items; this property is read-write, though the property is not usually set as one can simply do "new LinearLayout" (or one of the other layout classes provided) and it will be automatically associated with the Plasmoid
*layout: the QGraphicsLayout associated with the Plasmoid for laying out top level items; this property is read-write, though the property is not usually set as one can simply do "new LinearLayout" (or one of the other layout classes provided) and it will be automatically associated with the Plasmoid


<br>  
<br>  
Line 118: Line 128:
Functions:  
Functions:  


* string file(string type, string fileName): returns the path to a file named fileName in the Plasmoid package of the given type; e.g. file("images", "mypixmap.png")
*string file(string type, string fileName): returns the path to a file named fileName in the Plasmoid package of the given type; e.g. file("images", "mypixmap.png")  
* string file(string type): returns the path to a file named as part of the package, e.g.: file("mainscript")
*string file(string type): returns the path to a file named as part of the package, e.g.: file("mainscript")  
* bool include(string filename): attempts to include the script defined from the package's scripts directory
*bool include(string filename): attempts to include the script defined from the package's scripts directory


== User Interface Elements  ==
== User Interface Elements  ==
Line 163: Line 173:
BusyWidget  
BusyWidget  


** boolean running
**boolean running  
** string label
**string label  
** function clicked()
**function clicked()


CheckBox  
CheckBox  


** string text
**string text  
** string image
**string image  
** string styleSheet
**string styleSheet  
** boolean isChecked
**boolean isChecked  
** function toggled(bool)
**function toggled(bool)


ComboBox  
ComboBox  


** string text
**string text  
** string styleSheet
**string styleSheet  
** function activated(QString)
**function activated(QString)  
** function textChanged(QString)
**function textChanged(QString)  
** function clear()
**function clear()


FlashingLabel  
FlashingLabel  


** boolean autohide
**boolean autohide  
** object color
**object color  
** number duration
**number duration  
** function kill()
**function kill()  
** function fadeIn()
**function fadeIn()  
** function fadeOut()
**function fadeOut()  
** function flash(QString,int,QTextOption)
**function flash(QString,int,QTextOption)  
** function flash(QString,int)
**function flash(QString,int)  
** function flash(QString)
**function flash(QString)  
** function flash(QPixmap,int,Qt::Alignment)
**function flash(QPixmap,int,Qt::Alignment)  
** function flash(QPixmap,int)
**function flash(QPixmap,int)  
** function flash(QPixmap)
**function flash(QPixmap)


Frame  
Frame  


** number frameShadow
**number frameShadow  
** string text
**string text  
** string image
**string image  
** string styleSheet
**string styleSheet  
** number Plain
**number Plain  
** number Raised
**number Raised  
** number Sunken
**number Sunken


GroupBox  
GroupBox  


** string text
**string text  
** string styleSheet
**string styleSheet


IconWidget  
IconWidget  


** string text
**string text  
** string infoText
**string infoText  
** object icon
**object icon  
** object textBackgroundColor
**object textBackgroundColor  
** object iconSize
**object iconSize  
** string svg
**string svg  
** undefined action
**undefined action  
** number orientation
**number orientation  
** number numDisplayLines
**number numDisplayLines  
** function pressed(bool)
**function pressed(bool)  
** function clicked()
**function clicked()  
** function doubleClicked()
**function doubleClicked()  
** function activated()
**function activated()  
** function changed()
**function changed()  
** function setPressed(bool)
**function setPressed(bool)  
** function setPressed()
**function setPressed()  
** function setUnpressed()
**function setUnpressed()  
** function setIcon(QString)
**function setIcon(QString)


ItemBackground  
ItemBackground  


** object target
**object target  
** object targetItem
**object targetItem  
** function appearanceChanged()
**function appearanceChanged()  
** function animationStep(qreal)
**function animationStep(qreal)  
** function targetReached(QRectF)
**function targetReached(QRectF)  
** function targetItemReached(QGraphicsItem*)
**function targetItemReached(QGraphicsItem*)


Label  
Label  


** string text
**string text  
** string image
**string image  
** number alignment
**number alignment  
** boolean hasScaledContents
**boolean hasScaledContents  
** string styleSheet
**string styleSheet  
** function linkActivated(QString)
**function linkActivated(QString)  
** function linkHovered(QString)
**function linkHovered(QString)  
** function dataUpdated(QString,Plasma::DataEngine::Data)
**function dataUpdated(QString,Plasma::DataEngine::Data)


LineEdit  
LineEdit  


** string text
**string text  
** boolean isClearButtonShown
**boolean isClearButtonShown  
** string styleSheet
**string styleSheet  
** function editingFinished()
**function editingFinished()  
** function returnPressed()
**function returnPressed()  
** function textEdited(QString)
**function textEdited(QString)  
** function textChanged(QString)
**function textChanged(QString)


Meter  
Meter  


** number minimum
**number minimum  
** number maximum
**number maximum  
** number value
**number value  
** string svg
**string svg  
** number meterType
**number meterType  
** function dataUpdated(QString,Plasma::DataEngine::Data)
**function dataUpdated(QString,Plasma::DataEngine::Data)  
** number BarMeterHorizontal
**number BarMeterHorizontal  
** number BarMeterVertical
**number BarMeterVertical  
** number AnalogMeter
**number AnalogMeter


PushButton  
PushButton  


** string text
**string text  
** string image
**string image  
** undefined action
**undefined action  
** object icon
**object icon  
** boolean checkable
**boolean checkable  
** boolean checked
**boolean checked  
** boolean down
**boolean down  
** function pressed()
**function pressed()  
** function released()
**function released()  
** function clicked()
**function clicked()  
** function toggled(bool)
**function toggled(bool)


RadioButton  
RadioButton  


** string text
**string text  
** string image
**string image  
** string styleSheet
**string styleSheet  
** boolean isChecked
**boolean isChecked  
** function toggled(bool)
**function toggled(bool)


ScrollWidget  
ScrollWidget  


** object widget
**object widget  
** number horizontalScrollBarPolicy
**number horizontalScrollBarPolicy  
** number verticalScrollBarPolicy
**number verticalScrollBarPolicy  
** object scrollPosition
**object scrollPosition  
** object contentsSize
**object contentsSize  
** object viewportGeometry
**object viewportGeometry  
** string styleSheet
**string styleSheet  
** function ensureRectVisible(QRectF)
**function ensureRectVisible(QRectF)  
** function ensureItemVisible(QGraphicsItem*)
**function ensureItemVisible(QGraphicsItem*)  
** function registerAsDragHandle(QGraphicsWidget*)
**function registerAsDragHandle(QGraphicsWidget*)  
** function unregisterAsDragHandle(QGraphicsWidget*)
**function unregisterAsDragHandle(QGraphicsWidget*)


ScrollBar  
ScrollBar  


** number singleStep
**number singleStep  
** number pageStep
**number pageStep  
** number value
**number value  
** number minimum
**number minimum  
** number maximum
**number maximum  
** function valueChanged(int)
**function valueChanged(int)  
** function setValue(int)
**function setValue(int)  
** function setOrientation(Qt::Orientation)
**function setOrientation(Qt::Orientation)


Separator  
Separator  


** number orientation
**number orientation


SignalPlotter  
SignalPlotter  


** string title
**string title  
** string unit
**string unit  
** boolean useAutoRange
**boolean useAutoRange  
** number horizontalScale
**number horizontalScale  
** boolean showVerticalLines
**boolean showVerticalLines  
** object verticalLinesColor
**object verticalLinesColor  
** number verticalLinesDistance
**number verticalLinesDistance  
** boolean verticalLinesScroll
**boolean verticalLinesScroll  
** boolean showHorizontalLines
**boolean showHorizontalLines  
** object horizontalLinesColor
**object horizontalLinesColor  
** object fontColor
**object fontColor  
** number horizontalLinesCount
**number horizontalLinesCount  
** boolean showLabels
**boolean showLabels  
** boolean showTopBar
**boolean showTopBar  
** object backgroundColor
**object backgroundColor  
** string svgBackground
**string svgBackground  
** boolean thinFrame
**boolean thinFrame  
** boolean stackPlots
**boolean stackPlots


Slider  
Slider  


** number maximum
**number maximum  
** number minimum
**number minimum  
** number value
**number value  
** number orientation
**number orientation  
** string styleSheet
**string styleSheet  
** function sliderMoved(int)
**function sliderMoved(int)  
** function valueChanged(int)
**function valueChanged(int)  
** function setMaximum(int)
**function setMaximum(int)  
** function setMinimum(int)
**function setMinimum(int)  
** function setRange(int,int)
**function setRange(int,int)  
** function setValue(int)
**function setValue(int)  
** function setOrientation(Qt::Orientation)
**function setOrientation(Qt::Orientation)


SpinBox  
SpinBox  


** number maximum
**number maximum  
** number minimum
**number minimum  
** number value
**number value  
** string styleSheet
**string styleSheet  
** function sliderMoved(int)
**function sliderMoved(int)  
** function valueChanged(int)
**function valueChanged(int)  
** function editingFinished()
**function editingFinished()  
** function setMaximum(int)
**function setMaximum(int)  
** function setMinimum(int)
**function setMinimum(int)  
** function setRange(int,int)
**function setRange(int,int)  
** function setValue(int)
**function setValue(int)


SvgWidget  
SvgWidget  


** undefined svg
**undefined svg  
** string elementID
**string elementID  
** function clicked(Qt::MouseButton)
**function clicked(Qt::MouseButton)


TabBar  
TabBar  


** number currentIndex
**number currentIndex  
** number count
**number count  
** string styleSheet
**string styleSheet  
** boolean tabBarShown
**boolean tabBarShown  
** function currentChanged(int)
**function currentChanged(int)  
** function setCurrentIndex(int)
**function setCurrentIndex(int)  
** function insertTab(int,QIcon,QString,QGraphicsLayoutItem*)
**function insertTab(int,QIcon,QString,QGraphicsLayoutItem*)  
** function insertTab(int,QIcon,QString)
**function insertTab(int,QIcon,QString)  
** function insertTab(int,QString,QGraphicsLayoutItem*)
**function insertTab(int,QString,QGraphicsLayoutItem*)  
** function insertTab(int,QString)
**function insertTab(int,QString)  
** function addTab(QIcon,QString,QGraphicsLayoutItem*)
**function addTab(QIcon,QString,QGraphicsLayoutItem*)  
** function addTab(QIcon,QString)
**function addTab(QIcon,QString)  
** function addTab(QString,QGraphicsLayoutItem*)
**function addTab(QString,QGraphicsLayoutItem*)  
** function addTab(QString)
**function addTab(QString)  
** function removeTab(int)
**function removeTab(int)  
** function takeTab(int)
**function takeTab(int)  
** function tabAt(int)
**function tabAt(int)  
** function setTabText(int,QString)
**function setTabText(int,QString)  
** function tabText(int)
**function tabText(int)  
** function setTabIcon(int,QIcon)
**function setTabIcon(int,QIcon)  
** function tabIcon(int)
**function tabIcon(int)


TextEdit  
TextEdit  


** string text
**string text  
** boolean readOnly
**boolean readOnly  
** function textChanged()
**function textChanged()  
** function dataUpdated(QString,Plasma::DataEngine::Data)
**function dataUpdated(QString,Plasma::DataEngine::Data)


ToolButton  
ToolButton  


** string text
**string text  
** boolean autoRaise
**boolean autoRaise  
** string image
**string image  
** undefined action
**undefined action  
** function clicked()
**function clicked()  
** function pressed()
**function pressed()  
** function released()
**function released()


TreeView  
TreeView  


** undefined model
**undefined model  
** string styleSheet
**string styleSheet


VideoWidget  
VideoWidget  


** string url
**string url  
** number currentTime
**number currentTime  
** number totalTime
**number totalTime  
** number remainingTime
**number remainingTime  
** number usedControls
**number usedControls  
** boolean controlsVisible
**boolean controlsVisible  
** string styleSheet
**string styleSheet  
** function tick(qint64)
**function tick(qint64)  
** function aboutToFinish()
**function aboutToFinish()  
** function nextRequested()
**function nextRequested()  
** function previousRequested()
**function previousRequested()  
** function play()
**function play()  
** function pause()
**function pause()  
** function stop()
**function stop()  
** function seek(qint64)
**function seek(qint64)  
** function mediaObject()
**function mediaObject()  
** function audioOutput()
**function audioOutput()  
** number NoControls
**number NoControls  
** number Play
**number Play  
** number Pause
**number Pause  
** number Stop
**number Stop  
** number PlayPause
**number PlayPause  
** number Previous
**number Previous  
** number Next
**number Next  
** number Progress
**number Progress  
** number Volume
**number Volume  
** number OpenFile
**number OpenFile  
** number DefaultControls
**number DefaultControls


WebView  
WebView  


** object url
**object url  
** string html
**string html  
** boolean dragToScroll
**boolean dragToScroll  
** object scrollPosition
**object scrollPosition  
** object contentsSize
**object contentsSize  
** object viewportGeometry
**object viewportGeometry  
** function loadProgress(int)
**function loadProgress(int)  
** function loadFinished(bool)
**function loadFinished(bool)


=== Layouts  ===
=== Layouts  ===
Line 517: Line 527:
Properties  
Properties  


** bool isNull: returns true if the pixmap is empty or not
**bool isNull: returns true if the pixmap is empty or not  
** QRectF rect: the rect of the pixmap
**QRectF rect: the rect of the pixmap  
** QPixmap scaled(width, height): returns a scaled version of the pixmap with width and height dimensions
**QPixmap scaled(width, height): returns a scaled version of the pixmap with width and height dimensions


<br>  
<br>  
Line 537: Line 547:
Svg  
Svg  


** Constructors
**Constructors  
**** Svg(fileName): fileName can be a file in the desktop theme or the plasmoid package
****Svg(fileName): fileName can be a file in the desktop theme or the plasmoid package  
** object size
**object size  
** boolean multipleImages
**boolean multipleImages  
** string imagePath
**string imagePath  
** boolean usingRenderingCache
**boolean usingRenderingCache  
** function repaintNeeded()
**function repaintNeeded()  
** function pixmap(QString)
**function pixmap(QString)  
** function pixmap()
**function pixmap()  
** function paint(QPainter*,QPointF,QString)
**function paint(QPainter*,QPointF,QString)  
** function paint(QPainter*,QPointF)
**function paint(QPainter*,QPointF)  
** function paint(QPainter*,int,int,QString)
**function paint(QPainter*,int,int,QString)  
** function paint(QPainter*,int,int)
**function paint(QPainter*,int,int)  
** function paint(QPainter*,QRectF,QString)
**function paint(QPainter*,QRectF,QString)  
** function paint(QPainter*,QRectF)
**function paint(QPainter*,QRectF)  
** function paint(QPainter*,int,int,int,int,QString)
**function paint(QPainter*,int,int,int,int,QString)  
** function paint(QPainter*,int,int,int,int)
**function paint(QPainter*,int,int,int,int)  
** function resize(qreal,qreal)
**function resize(qreal,qreal)  
** function resize(QSizeF)
**function resize(QSizeF)  
** function resize()
**function resize()  
** function elementSize(QString)
**function elementSize(QString)  
** function elementRect(QString)
**function elementRect(QString)  
** function hasElement(QString)
**function hasElement(QString)  
** function elementAtPoint(QPoint)
**function elementAtPoint(QPoint)  
** function isValid()
**function isValid()


FrameSvg  
FrameSvg  


** Constructors
**Constructors  
**** FrameSvg(fileName): fileName can be a file in the desktop theme or the plasmoid package
****FrameSvg(fileName): fileName can be a file in the desktop theme or the plasmoid package  
** boolean multipleImages
**boolean multipleImages  
** function setEnabledBorders(EnabledBorders)
**function setEnabledBorders(EnabledBorders)  
** function enabledBorders()
**function enabledBorders()  
** function resizeFrame(QSizeF)
**function resizeFrame(QSizeF)  
** function frameSize()
**function frameSize()  
** function marginSize(Plasma::MarginEdge)
**function marginSize(Plasma::MarginEdge)  
** function getMargins(qreal&amp;,qreal&amp;,qreal&amp;,qreal&amp;)
**function getMargins(qreal&amp;,qreal&amp;,qreal&amp;,qreal&amp;)  
** function contentsRect()
**function contentsRect()  
** function setElementPrefix(Plasma::Location)
**function setElementPrefix(Plasma::Location)  
** function setElementPrefix(QString)
**function setElementPrefix(QString)  
** function hasElementPrefix(QString)
**function hasElementPrefix(QString)  
** function hasElementPrefix(Plasma::Location)
**function hasElementPrefix(Plasma::Location)  
** function prefix()
**function prefix()  
** function mask()
**function mask()  
** function setCacheAllRenderedFrames(bool)
**function setCacheAllRenderedFrames(bool)  
** function cacheAllRenderedFrames()
**function cacheAllRenderedFrames()  
** function framePixmap()
**function framePixmap()  
** function paintFrame(QPainter*,QRectF,QRectF)
**function paintFrame(QPainter*,QRectF,QRectF)  
** function paintFrame(QPainter*,QRectF)
**function paintFrame(QPainter*,QRectF)  
** function paintFrame(QPainter*,QPointF)
**function paintFrame(QPainter*,QPointF)  
** function paintFrame(QPainter*)
**function paintFrame(QPainter*)


=== Painting on the Canvas  ===
=== Painting on the Canvas  ===
Line 593: Line 603:
QPainter  
QPainter  


** function background
**function background  
** function backgroundMode
**function backgroundMode  
** function begin
**function begin  
** function boundingRect
**function boundingRect  
** function brush
**function brush  
** function brushOrigin
**function brushOrigin  
** function clipPath
**function clipPath  
** function clipRegion
**function clipRegion  
** function combinedMatrix
**function combinedMatrix  
** function combinedTransform
**function combinedTransform  
** function compositionMode
**function compositionMode  
** function device
**function device  
** function deviceMatrix
**function deviceMatrix  
** function deviceTransform
**function deviceTransform  
** function drawChord
**function drawChord  
** function drawConvexPolygon
**function drawConvexPolygon  
** function drawArc
**function drawArc  
** function drawEllipse
**function drawEllipse  
** function drawImage
**function drawImage  
** function drawLine
**function drawLine  
** function drawLines
**function drawLines  
** function drawPath
**function drawPath  
** function drawPicture
**function drawPicture  
** function drawPie
**function drawPie  
** function drawPixmap
**function drawPixmap  
** function drawPoint
**function drawPoint  
** function drawPoints
**function drawPoints  
** function drawPolygon
**function drawPolygon  
** function drawPolyline
**function drawPolyline  
** function drawRect
**function drawRect  
** function drawRects
**function drawRects  
** function drawRoundRect
**function drawRoundRect  
** function drawText
**function drawText  
** function drawTiledPixmap
**function drawTiledPixmap  
** function end
**function end  
** function eraseRect
**function eraseRect  
** function fillPath
**function fillPath  
** function fillRect
**function fillRect  
** function font
**function font  
** function fontInfo
**function fontInfo  
** function fontMetrics
**function fontMetrics  
** function hasClipping
**function hasClipping  
** function initFrom
**function initFrom  
** function isActive
**function isActive  
** function layoutDirection
**function layoutDirection  
** function opacity
**function opacity  
** function paintEngine
**function paintEngine  
** function pen
**function pen  
** function renderHints
**function renderHints  
** function resetMatrix
**function resetMatrix  
** function resetTransform
**function resetTransform  
** function restore
**function restore  
** function rotate
**function rotate  
** function save
**function save  
** function scale
**function scale  
** function setBackground
**function setBackground  
** function setBackgroundMode
**function setBackgroundMode  
** function setBrush
**function setBrush  
** function setBrushOrigin
**function setBrushOrigin  
** function setClipPath
**function setClipPath  
** function setClipRect
**function setClipRect  
** function setClipRegion
**function setClipRegion  
** function setClipping
**function setClipping  
** function setCompositionMode
**function setCompositionMode  
** function setFont
**function setFont  
** function setLayoutDirection
**function setLayoutDirection  
** function setOpacity
**function setOpacity  
** function setPen
**function setPen  
** function setRenderHint
**function setRenderHint  
** function setRenderHints
**function setRenderHints  
** function setTransform
**function setTransform  
** function setViewTransformEnabled
**function setViewTransformEnabled  
** function setViewport
**function setViewport  
** function setWindow
**function setWindow  
** function setWorldMatrix
**function setWorldMatrix  
** function setWorldMatrixEnabled
**function setWorldMatrixEnabled  
** function setWorldTransform
**function setWorldTransform  
** function shear
**function shear  
** function strokePath
**function strokePath  
** function testRenderHint
**function testRenderHint  
** function toString
**function toString  
** function transform
**function transform  
** function translate
**function translate  
** function viewTransformEnabled
**function viewTransformEnabled  
** function viewport
**function viewport  
** function window
**function window  
** function worldMatrix
**function worldMatrix  
** function worldMatrixEnabled
**function worldMatrixEnabled  
** function worldTransform
**function worldTransform


QColor  
QColor  


** Constructors:
**Constructors:  
**** QColor
****QColor  
**** QColor(string colorName)
****QColor(string colorName)  
**** QColor(number red, number green, number blue, number alpha)
****QColor(number red, number green, number blue, number alpha)  
** number red
**number red  
** number green
**number green  
** number blue
**number blue  
** number alpha
**number alpha  
** boolean isValid
**boolean isValid


QFont  
QFont  


** Constructors:
**Constructors:  
**** QFont
****QFont  
**** QFont(string fontName)
****QFont(string fontName)  
**** QFont(string fontName, number pointSize)
****QFont(string fontName, number pointSize)  
**** QFont(string fontName, number pointSize, number weight)
****QFont(string fontName, number pointSize, number weight)  
**** QFont(string fontName, number pointSize, number weight, boolean italic)
****QFont(string fontName, number pointSize, number weight, boolean italic)  
** boolean bold
**boolean bold  
** function defaultFamily
**function defaultFamily  
** function exactMatch
**function exactMatch  
** string family
**string family  
** boolean fixedPitch
**boolean fixedPitch  
** function fromString
**function fromString  
** function handle
**function handle  
** function isCopyOf
**function isCopyOf  
** boolean italic
**boolean italic  
** boolean kerning
**boolean kerning  
** string key
**string key  
** function lastResortFamily
**function lastResortFamily  
** function lastResortFont
**function lastResortFont  
** boolean overline
**boolean overline  
** number pixelSize
**number pixelSize  
** number pointSize
**number pointSize  
** number pointSizeF
**number pointSizeF  
** boolean rawMode
**boolean rawMode  
** string rawName
**string rawName  
** function resolve
**function resolve  
** undefined bamily
**undefined bamily  
** number stretch
**number stretch  
** boolean strikeOut
**boolean strikeOut  
** function setStyle
**function setStyle  
** function setStyleHint
**function setStyleHint  
** function setStyleStrategy
**function setStyleStrategy  
** boolean underline
**boolean underline  
** number weight
**number weight  
** function style
**function style  
** function styleHint
**function styleHint  
** function styleStrategy
**function styleStrategy  
** function toString
**function toString


QRectF  
QRectF  


** Constructors:
**Constructors:  
**** QRectF
****QRectF  
**** QRectF(number x, number y, number width, number height)
****QRectF(number x, number y, number width, number height)  
** function adjust
**function adjust  
** object adjusted
**object adjusted  
** function translate
**function translate  
** function setCoords
**function setCoords  
** function setRect
**function setRect  
** function contains
**function contains  
** function moveBottom
**function moveBottom  
** function moveLeft
**function moveLeft  
** function moveRight
**function moveRight  
** function moveTo
**function moveTo  
** function moveTop
**function moveTop  
** boolean isEmpty
**boolean isEmpty  
** boolean isNull
**boolean isNull  
** boolean isValid
**boolean isValid  
** number left
**number left  
** number top
**number top  
** number bottom
**number bottom  
** number right
**number right  
** number height
**number height  
** number width
**number width  
** number x
**number x  
** number y
**number y


QSizeF  
QSizeF  


** Constructors:
**Constructors:  
**** QSizeF
****QSizeF  
**** QSizeF(number width, number height)
****QSizeF(number width, number height)  
** number height
**number height  
** number width
**number width


QPoint  
QPoint  


** Constructors:
**Constructors:  
**** QPoint
****QPoint  
**** QPoint(number x, number y)
****QPoint(number x, number y)  
** bool isNull
**bool isNull  
** number manhattanLength
**number manhattanLength  
** number x
**number x  
** number y
**number y


<br>  
<br>  

Revision as of 19:27, 27 November 2009

Introduction to Plasmoids JavaScript API

If you have not done so already, please read the "plasmoid" design document first.

What Is A Simplified JavaScript Plasmoid?

This document describes the native Plasma API available to Simplified JavaScript Plasmoids. What makes them "Simplified" is that they do not have access to the entire C++ API in the Plasma, KDE and Qt libraries (let alone things lower in the API stack). This helps ensure that these Plasmoids are more likely to work properly between releases as changes in underlying API don't affect them as well as allowing Plasma to offer stronger security guarantees around them.

To denote that this Plasmoid is a Simplified JavaScript widget, ensure that in the metadata.desktop file there is this line:

X-Plasma-API=javascript

What follows is a description of the runtime environment available to a Simplified JavaScript Plasmoid.

QtScript

The Simplified JavaScript API is powered by Qt's QtScript system which provides access to a full featured ECMA Script interpreter. If it works in ECMA Script, it will work in a Simplified JavaScript Plasmoid. As an interesting implementation note, QtScript uses the high performance ECMA Script interpreter from WebKit and shares this code with QtWebKit.

On top of the ECMA Script language, QtScript provides Qt integration features. Probably the most useful one in this context is the use of signals and slots which is Qt's callback mechanism. Signals may be emitted in QtScript by calling the signal method in question, a signal can be connected to a slot by using the connect() method (and disconnected with diconnnect()) and any function defined in the Plasmoid may be used as a slot. For example: function onClick() {

   print("We got clicked!")

}

function onFirstClick() {

   print("First click!")
   button.clicked.disconnect(onFirstClick)

}

button = new PushButton button.clicked.connect(onClick) button.clicked.connect(onFirstClick) button.clicked() This will print out:

We got clicked! First click!

on the console when the Plasmoid starts, and the "We got clicked!" again whenever the button is clicked by the user.

The Global plasmoid Object

There is a global object available to the Plasmoid called, appropriately, "plasmoid". It has a number of useful properties (some of which are read only, but many of which are read/write), functions, constant values and callbacks. Each are enumerated below.

Callbacks

There are some events that are generated by Plasma for the Plasmoid. These can often be caught by providing a function assigned to a specific name in the plasmoid object. For instance, to get notified of form factor changes, one would provide a formFactorChanged method as follows: plasmoid.formFactorChanged = function() {

   print("the form factor has changed to: " + plasmoid.formFactor())

}

Environment

A set of read-only properties (and in most cases notification functions) that tell the plasmoid about its current environment:

  • apiVersion: the integer version of the Simlified JavaScript API in the current execution environment; can be used to change behaviour or usage of functions depending on the version number.
  • formFactor: one of Planar (e.g. on a desktop or in an application main view), Horizontal, Vertical or MediaCenter.
  When the form factor changes, the plasmoid.formFactorChanged function, if defined in the Plasmoid, is called.
  • location: one of Floating (no specific location), Desktop (on the application's main view are), FullScreen, LeftEdge, RightEdge, TopEdge or ButtomEdge
  When the location changes, the plasmoid.locatationChanged function, if defined in the Plasmoid, is called.
  • immutable: this property is set to true when the Plasmoid is set to not be movable or otherwise changeable, and false otherwise. Configuration is still usually allowed in this state.
  When the immutability changes, the plasmoid.immutabilityChanged function, if defined in the Plasmoid, is called.
  • currentActivity: the current contextual activity name
  When the current activity changes, the plasmoid.currentActivityChanged function, if defined in the Plasmoid, is called.
  • shouldConserveResources: true if the plasmoid should not be doing anything that would create too much draw on power, e.g. when on a device with low battery power it may be a good idea not to run a computationally expensive but optional animation

Properties

A set of read/write properties that allow the Plasmoid to set various visual or functional properties:

  • aspectRatioMode: defines how to treat the aspect ratio of a Plasmoid when resizing it, one of:
        • IgnoreAspectRatio: The Plasmoid can be freely resized
        • KeepAspectRatio: The Plasmoid keeps a fixed aspect ratio
        • Square: The Plasmoid is always a square
        • ConstrainedSquare: The Plasmoid is no wider (in horizontal formfactors) or no higher (in vertical ones) than a square
        • FixedSize: The Plasmoid cannot be resized
  • busy: set to true when the Plasmoid is currently processing or waiting for data and the user interface should be blocked while doing so; will generally show a full-Plasmoid animated overlay to denote business

Geometry

Functions:

  • resize(width, height)
  • setMinimumSize(width, height)
  • setPreferredSize(width, height)

Properties:

  • rect: the current rect of the Plasmoid; note that the top left may be not be the origin point (0,0); this property is read only

Painting and Layout

To paint directly on to the canvas, a widget may implement the paintInterface function in the plasmoid object:

   plasmoid.paintInterface = function(painter) { /* painting code goes here*/ }

See the Painting section below for information about helpful classes and functions that can be used when implementing a paintInterface function.

Functions:

  • update() triggers a full repaint of the Plasmoid
  • update(QRectF rect) triggers a repaint of the rect area of the Plasmoid
  • failedToLaunch(bool failed, string reason) sets the launch status of the Plasmoid; if set to true, the script will stop executing and the reason message, if any, will be displayed to the user

Properties:

  • layout: the QGraphicsLayout associated with the Plasmoid for laying out top level items; this property is read-write, though the property is not usually set as one can simply do "new LinearLayout" (or one of the other layout classes provided) and it will be automatically associated with the Plasmoid


Access To Packaged Files

Functions:

  • string file(string type, string fileName): returns the path to a file named fileName in the Plasmoid package of the given type; e.g. file("images", "mypixmap.png")
  • string file(string type): returns the path to a file named as part of the package, e.g.: file("mainscript")
  • bool include(string filename): attempts to include the script defined from the package's scripts directory

User Interface Elements

Plasma Widgets

The Plasma framework provides a set of standard user interface elmenets such as pushbuttons and checkboxes for use in Plasmoids, and these are available from the Simplified Javascript API as well. These elements follow the Plasma style and other conventions so that widgets blend well both visually and functionally with other Plasma elements.

Properties

By default, all of the Plasma user interface elements have the following properties:

  • objectName
  • opacity
  • enabled
  • visible
  • pos
  • x
  • y
  • z
  • rotation
  • scale
  • transformOriginPoint
  • palette
  • font
  • size
  • focusPolicy
  • geometry

Signals

opacityChanged() visibleChanged() enabledChanged() xChanged() yChanged() zChanged() rotationChanged() scaleChanged()

Undocumented Properties and Functions

There are a handful of other undocument properties and functions available to UI elements. These are not supported or guaranteed to exist in future versions however, and as such should be used or relied upon.

UI Element Gallery

BusyWidget

    • boolean running
    • string label
    • function clicked()

CheckBox

    • string text
    • string image
    • string styleSheet
    • boolean isChecked
    • function toggled(bool)

ComboBox

    • string text
    • string styleSheet
    • function activated(QString)
    • function textChanged(QString)
    • function clear()

FlashingLabel

    • boolean autohide
    • object color
    • number duration
    • function kill()
    • function fadeIn()
    • function fadeOut()
    • function flash(QString,int,QTextOption)
    • function flash(QString,int)
    • function flash(QString)
    • function flash(QPixmap,int,Qt::Alignment)
    • function flash(QPixmap,int)
    • function flash(QPixmap)

Frame

    • number frameShadow
    • string text
    • string image
    • string styleSheet
    • number Plain
    • number Raised
    • number Sunken

GroupBox

    • string text
    • string styleSheet

IconWidget

    • string text
    • string infoText
    • object icon
    • object textBackgroundColor
    • object iconSize
    • string svg
    • undefined action
    • number orientation
    • number numDisplayLines
    • function pressed(bool)
    • function clicked()
    • function doubleClicked()
    • function activated()
    • function changed()
    • function setPressed(bool)
    • function setPressed()
    • function setUnpressed()
    • function setIcon(QString)

ItemBackground

    • object target
    • object targetItem
    • function appearanceChanged()
    • function animationStep(qreal)
    • function targetReached(QRectF)
    • function targetItemReached(QGraphicsItem*)

Label

    • string text
    • string image
    • number alignment
    • boolean hasScaledContents
    • string styleSheet
    • function linkActivated(QString)
    • function linkHovered(QString)
    • function dataUpdated(QString,Plasma::DataEngine::Data)

LineEdit

    • string text
    • boolean isClearButtonShown
    • string styleSheet
    • function editingFinished()
    • function returnPressed()
    • function textEdited(QString)
    • function textChanged(QString)

Meter

    • number minimum
    • number maximum
    • number value
    • string svg
    • number meterType
    • function dataUpdated(QString,Plasma::DataEngine::Data)
    • number BarMeterHorizontal
    • number BarMeterVertical
    • number AnalogMeter

PushButton

    • string text
    • string image
    • undefined action
    • object icon
    • boolean checkable
    • boolean checked
    • boolean down
    • function pressed()
    • function released()
    • function clicked()
    • function toggled(bool)

RadioButton

    • string text
    • string image
    • string styleSheet
    • boolean isChecked
    • function toggled(bool)

ScrollWidget

    • object widget
    • number horizontalScrollBarPolicy
    • number verticalScrollBarPolicy
    • object scrollPosition
    • object contentsSize
    • object viewportGeometry
    • string styleSheet
    • function ensureRectVisible(QRectF)
    • function ensureItemVisible(QGraphicsItem*)
    • function registerAsDragHandle(QGraphicsWidget*)
    • function unregisterAsDragHandle(QGraphicsWidget*)

ScrollBar

    • number singleStep
    • number pageStep
    • number value
    • number minimum
    • number maximum
    • function valueChanged(int)
    • function setValue(int)
    • function setOrientation(Qt::Orientation)

Separator

    • number orientation

SignalPlotter

    • string title
    • string unit
    • boolean useAutoRange
    • number horizontalScale
    • boolean showVerticalLines
    • object verticalLinesColor
    • number verticalLinesDistance
    • boolean verticalLinesScroll
    • boolean showHorizontalLines
    • object horizontalLinesColor
    • object fontColor
    • number horizontalLinesCount
    • boolean showLabels
    • boolean showTopBar
    • object backgroundColor
    • string svgBackground
    • boolean thinFrame
    • boolean stackPlots

Slider

    • number maximum
    • number minimum
    • number value
    • number orientation
    • string styleSheet
    • function sliderMoved(int)
    • function valueChanged(int)
    • function setMaximum(int)
    • function setMinimum(int)
    • function setRange(int,int)
    • function setValue(int)
    • function setOrientation(Qt::Orientation)

SpinBox

    • number maximum
    • number minimum
    • number value
    • string styleSheet
    • function sliderMoved(int)
    • function valueChanged(int)
    • function editingFinished()
    • function setMaximum(int)
    • function setMinimum(int)
    • function setRange(int,int)
    • function setValue(int)

SvgWidget

    • undefined svg
    • string elementID
    • function clicked(Qt::MouseButton)

TabBar

    • number currentIndex
    • number count
    • string styleSheet
    • boolean tabBarShown
    • function currentChanged(int)
    • function setCurrentIndex(int)
    • function insertTab(int,QIcon,QString,QGraphicsLayoutItem*)
    • function insertTab(int,QIcon,QString)
    • function insertTab(int,QString,QGraphicsLayoutItem*)
    • function insertTab(int,QString)
    • function addTab(QIcon,QString,QGraphicsLayoutItem*)
    • function addTab(QIcon,QString)
    • function addTab(QString,QGraphicsLayoutItem*)
    • function addTab(QString)
    • function removeTab(int)
    • function takeTab(int)
    • function tabAt(int)
    • function setTabText(int,QString)
    • function tabText(int)
    • function setTabIcon(int,QIcon)
    • function tabIcon(int)

TextEdit

    • string text
    • boolean readOnly
    • function textChanged()
    • function dataUpdated(QString,Plasma::DataEngine::Data)

ToolButton

    • string text
    • boolean autoRaise
    • string image
    • undefined action
    • function clicked()
    • function pressed()
    • function released()

TreeView

    • undefined model
    • string styleSheet

VideoWidget

    • string url
    • number currentTime
    • number totalTime
    • number remainingTime
    • number usedControls
    • boolean controlsVisible
    • string styleSheet
    • function tick(qint64)
    • function aboutToFinish()
    • function nextRequested()
    • function previousRequested()
    • function play()
    • function pause()
    • function stop()
    • function seek(qint64)
    • function mediaObject()
    • function audioOutput()
    • number NoControls
    • number Play
    • number Pause
    • number Stop
    • number PlayPause
    • number Previous
    • number Next
    • number Progress
    • number Volume
    • number OpenFile
    • number DefaultControls

WebView

    • object url
    • string html
    • boolean dragToScroll
    • object scrollPosition
    • object contentsSize
    • object viewportGeometry
    • function loadProgress(int)
    • function loadFinished(bool)

Layouts

LinearLayout AnchorLayout

Creating Items From UI Files

TODO

Animations

An animation object can be retrieved by calling the animation(string) method. The string corresponds to the Plasma::Animator::Animation enumeration, and currently the following are supported (case insensitive) along with a list of their properties:

  • fade
  • grow
  • expand
  • pause
  • pulse
  • rotate
  • rotateStacked
  • slide

All animations support the following properties:

  • duration (int): length of the animation in ms
  • widgetToAnimate: the QGraphicsWidget (e.g. a Plasma::Widget) to operate on
  • forwards (bool): true if the animation should play forwards or false if backwards (rewind)
  • visible (bool): whether or not the animation is currently visible (??!?!)

By default the animation object is associated with the plasmoid itself. By setting the widgetToAnimate property, however, it can be re-assigned to any QGraphicsWidget (e.g. Plasma widgets such as push buttons, sliders, etc) one wants.

Animations may also be put into groups for convenient sequential or parallel running by creating an AnimationGroup object and then calling add(widget) on it. The parallel (bool) property holds whether or not the animations should be run in parallel or sequentially. The default is sequential.

Painting

See the "Painting and Layout" section, part of the Global Plasmoid chapter, for information on using these classes within a widget.

Pixmaps

The QPixmap object allows widgets to use pixmaps for painting. Widgets may include pixmaps in various common formats (PNG, JPEG, GIF, etc.) in the contents/images/ directory of the Plasmoid package and load them by passing the name of the file into the pixmap contrustor:

   var pixmap = new QPixmap("myimage.png")

In addition to being used as a file load, some objects return or take pixmaps and the QPixmap object facilitates that as well.

Properties

    • bool isNull: returns true if the pixmap is empty or not
    • QRectF rect: the rect of the pixmap
    • QPixmap scaled(width, height): returns a scaled version of the pixmap with width and height dimensions


SVG Images

Plasma makes heavy usage of SVG images. More information on this industry standard scalable vector format can be found here:

   http://www.w3.org/Graphics/SVG/

Free and Open Source Software tools for creating SVGs include Inkscape and Karbon13. Widgets may include their own SVG files in the contents/images/ directdory or may use SVG images that are part of the standard Plasma Desktop Theme as documented here:

   http://techbase.kde.org/Projects/Plasma/Theme

Two classes are provide: Svg and FrameSvg. Svg allows loading and painting entire SVG documents or individual elements in an SVG document. FrameSvg extends Svg with methods to paint bordered frames from specially crafted SVG documents (see the Plasma Desktop Theme documentation for more information on this).

Svg

    • Constructors
        • Svg(fileName): fileName can be a file in the desktop theme or the plasmoid package
    • object size
    • boolean multipleImages
    • string imagePath
    • boolean usingRenderingCache
    • function repaintNeeded()
    • function pixmap(QString)
    • function pixmap()
    • function paint(QPainter*,QPointF,QString)
    • function paint(QPainter*,QPointF)
    • function paint(QPainter*,int,int,QString)
    • function paint(QPainter*,int,int)
    • function paint(QPainter*,QRectF,QString)
    • function paint(QPainter*,QRectF)
    • function paint(QPainter*,int,int,int,int,QString)
    • function paint(QPainter*,int,int,int,int)
    • function resize(qreal,qreal)
    • function resize(QSizeF)
    • function resize()
    • function elementSize(QString)
    • function elementRect(QString)
    • function hasElement(QString)
    • function elementAtPoint(QPoint)
    • function isValid()

FrameSvg

    • Constructors
        • FrameSvg(fileName): fileName can be a file in the desktop theme or the plasmoid package
    • boolean multipleImages
    • function setEnabledBorders(EnabledBorders)
    • function enabledBorders()
    • function resizeFrame(QSizeF)
    • function frameSize()
    • function marginSize(Plasma::MarginEdge)
    • function getMargins(qreal&,qreal&,qreal&,qreal&)
    • function contentsRect()
    • function setElementPrefix(Plasma::Location)
    • function setElementPrefix(QString)
    • function hasElementPrefix(QString)
    • function hasElementPrefix(Plasma::Location)
    • function prefix()
    • function mask()
    • function setCacheAllRenderedFrames(bool)
    • function cacheAllRenderedFrames()
    • function framePixmap()
    • function paintFrame(QPainter*,QRectF,QRectF)
    • function paintFrame(QPainter*,QRectF)
    • function paintFrame(QPainter*,QPointF)
    • function paintFrame(QPainter*)

Painting on the Canvas

QPainter

    • function background
    • function backgroundMode
    • function begin
    • function boundingRect
    • function brush
    • function brushOrigin
    • function clipPath
    • function clipRegion
    • function combinedMatrix
    • function combinedTransform
    • function compositionMode
    • function device
    • function deviceMatrix
    • function deviceTransform
    • function drawChord
    • function drawConvexPolygon
    • function drawArc
    • function drawEllipse
    • function drawImage
    • function drawLine
    • function drawLines
    • function drawPath
    • function drawPicture
    • function drawPie
    • function drawPixmap
    • function drawPoint
    • function drawPoints
    • function drawPolygon
    • function drawPolyline
    • function drawRect
    • function drawRects
    • function drawRoundRect
    • function drawText
    • function drawTiledPixmap
    • function end
    • function eraseRect
    • function fillPath
    • function fillRect
    • function font
    • function fontInfo
    • function fontMetrics
    • function hasClipping
    • function initFrom
    • function isActive
    • function layoutDirection
    • function opacity
    • function paintEngine
    • function pen
    • function renderHints
    • function resetMatrix
    • function resetTransform
    • function restore
    • function rotate
    • function save
    • function scale
    • function setBackground
    • function setBackgroundMode
    • function setBrush
    • function setBrushOrigin
    • function setClipPath
    • function setClipRect
    • function setClipRegion
    • function setClipping
    • function setCompositionMode
    • function setFont
    • function setLayoutDirection
    • function setOpacity
    • function setPen
    • function setRenderHint
    • function setRenderHints
    • function setTransform
    • function setViewTransformEnabled
    • function setViewport
    • function setWindow
    • function setWorldMatrix
    • function setWorldMatrixEnabled
    • function setWorldTransform
    • function shear
    • function strokePath
    • function testRenderHint
    • function toString
    • function transform
    • function translate
    • function viewTransformEnabled
    • function viewport
    • function window
    • function worldMatrix
    • function worldMatrixEnabled
    • function worldTransform

QColor

    • Constructors:
        • QColor
        • QColor(string colorName)
        • QColor(number red, number green, number blue, number alpha)
    • number red
    • number green
    • number blue
    • number alpha
    • boolean isValid

QFont

    • Constructors:
        • QFont
        • QFont(string fontName)
        • QFont(string fontName, number pointSize)
        • QFont(string fontName, number pointSize, number weight)
        • QFont(string fontName, number pointSize, number weight, boolean italic)
    • boolean bold
    • function defaultFamily
    • function exactMatch
    • string family
    • boolean fixedPitch
    • function fromString
    • function handle
    • function isCopyOf
    • boolean italic
    • boolean kerning
    • string key
    • function lastResortFamily
    • function lastResortFont
    • boolean overline
    • number pixelSize
    • number pointSize
    • number pointSizeF
    • boolean rawMode
    • string rawName
    • function resolve
    • undefined bamily
    • number stretch
    • boolean strikeOut
    • function setStyle
    • function setStyleHint
    • function setStyleStrategy
    • boolean underline
    • number weight
    • function style
    • function styleHint
    • function styleStrategy
    • function toString

QRectF

    • Constructors:
        • QRectF
        • QRectF(number x, number y, number width, number height)
    • function adjust
    • object adjusted
    • function translate
    • function setCoords
    • function setRect
    • function contains
    • function moveBottom
    • function moveLeft
    • function moveRight
    • function moveTo
    • function moveTop
    • boolean isEmpty
    • boolean isNull
    • boolean isValid
    • number left
    • number top
    • number bottom
    • number right
    • number height
    • number width
    • number x
    • number y

QSizeF

    • Constructors:
        • QSizeF
        • QSizeF(number width, number height)
    • number height
    • number width

QPoint

    • Constructors:
        • QPoint
        • QPoint(number x, number y)
    • bool isNull
    • number manhattanLength
    • number x
    • number y


Accessing Sources of Data

dataEngine(string name) dataUpdate

Configuration

Declaring Config Values

KConfigXt XML -> main.xml

Accessing Configuration Data

activeConfig plasmoid.readConfig(string) WriteConfig(string, var)

User Customization

Qt UI file configChanged()

Other Functions and Classes

print(string) debug(string) GraphicsItem Timer Url

Extensions

Extensions to the standard API plasmoid.hasExtension