Method |
Description |
|
Activity ( ) : string |
|
|
AddApplet ( string name ) : Applet |
|
|
AddApplet ( string name, List args ) : Applet |
|
|
AddApplet ( string name, List args, Qyoto.QRectF geometry ) : Applet |
Adds an applet to this Containment name="name" the plugin name for the applet, as given by KPluginInfo.PluginName() name="args" argument list to pass to the plasmoid name="geometry" where to place the applet, or to auto-place it if an invalid is provided |
|
AddApplet ( Plasma applet ) : void |
|
|
AddApplet ( Plasma applet, QPointF pos ) : void |
|
|
AddApplet ( Plasma applet, QPointF pos, bool dontInit ) : void |
Add an existing applet to this Containment If dontInit is true, the pending constraints are not flushed either. So it is your responsibility to call both init() and flushPendingConstraints() on the applet. name="applet" the applet that should be added name="pos" the containment-relative position name="dontInit" if true, init() will not be called on the applet |
|
AddToolBoxAction ( Qyoto.QAction action ) : void |
Add an action to the toolbox |
|
Applets ( ) : List |
|
|
ClearApplets ( ) : void |
Removes all applets from this Containment |
|
CloseToolBox ( ) : void |
Closes Containment's toolbox |
|
Containment ( IQGraphicsItem parent ) : System |
|
|
Containment ( IQGraphicsItem parent, string serviceId ) : System |
|
|
Containment ( IQGraphicsItem parent, string serviceId, uint containmentId ) : System |
name="parent" the QGraphicsItem this applet is parented to name="serviceId" the name of the .desktop file containing the information about the widget name="containmentId" a unique id used to differentiate between multiple instances of the same Applet type |
|
Containment ( QObject parent, List args ) : System |
This constructor is to be used with the plugin loading systems found in KPluginInfo and KService. The argument list is expected to have two elements: the KService service ID for the desktop entry and an applet ID which must be a base 10 number. name="parent" a QObject parent; you probably want to pass in 0 name="args" a list of strings containing two entries: the service id and the applet id |
|
ContainmentActions ( string trigger ) : string |
|
|
ContainmentActionsTriggers ( ) : List |
|
|
ContainmentType ( ) : Plasma.Containment.TypeOf |
Returns the type of containment |
|
Corona ( ) : Corona |
Returns the Corona (if any) that this Containment is hosted by |
|
Desktop ( ) : int |
|
|
Dispose ( ) : void |
|
|
DrawWallpaper ( ) : bool |
Return whether wallpaper is painted or not. |
|
EnableAction ( string name, bool enable ) : void |
convenience function - enables or disables an action by name name="name" the name of the action in our collection name="enable" true to enable, false to disable |
|
ListContainmentTypes ( ) : List |
|
|
ListContainments ( ) : List |
|
|
ListContainments ( string category ) : List |
|
|
ListContainments ( string category, string parentApp ) : List |
Returns a list of all known containments. name="category" Only containments matching this category will be returned. Useful in conjunction with knownCategories. If "Miscellaneous" is passed in, then applets without a Categories= entry are also returned. If an empty string is passed in, all applets are returned. name="parentApp" the application to filter applets on. Uses the X-KDE-ParentApp entry (if any) in the plugin info. The default value of string() will result in a list containing only applets not specifically registered to an application. |
|
ListContainmentsForMimetype ( string mimetype ) : List |
Returns a list of all known applets associated with a certain mimetype |
|
ListContainmentsOfType ( string type ) : List |
|
|
ListContainmentsOfType ( string type, string category ) : List |
|
|
ListContainmentsOfType ( string type, string category, string parentApp ) : List |
Returns a list of all known Containments that match the parameters. name="type" Only Containments with this string in X-Plasma-ContainmentCategories in their .desktop files will be returned. Common values are panel and desktop name="category" Only applets matchin this category will be returned. Useful in conjunction with knownCategories. If "Miscellaneous" is passed in, then applets without a Categories= entry are also returned. If an empty string is passed in, all applets are returned. name="parentApp" the application to filter applets on. Uses the X-KDE-ParentApp entry (if any) in the plugin info. The default value of string() will result in a list containing only applets not specifically registered to an application. |
|
OpenToolBox ( ) : void |
Open the Containment's toolbox |
|
RemoveToolBoxAction ( Qyoto.QAction action ) : void |
Remove an action from the toolbox |
|
Screen ( ) : int |
|
|
SetActivity ( string activity ) : void |
Sets the current activity by name name="activity" the name of the activity; if it doesn't exist in the semantic store, it will be created. |
|
SetContainmentActions ( string trigger, string pluginName ) : void |
Sets a containmentactions plugin. name="trigger" the mouse button (and optional modifier) to associate the plugin with name="pluginName" the name of the plugin to attempt to load. blank = set no plugin. |
|
SetScreen ( int screen ) : void |
|
|
SetScreen ( int screen, int desktop ) : void |
Sets the physical screen this Containment is associated with. name="screen" the screen number this containment is the desktop for, or -1 if it is not serving as the desktop for any screen name="desktop" the desktop to also associate this this screen with |
|
SetToolBoxOpen ( bool open ) : void |
Sets the open or closed state of the Containment's toolbox @arg open true to open the ToolBox, false to close it |
|
SetWallpaper ( string pluginName ) : void |
|
|
SetWallpaper ( string pluginName, string mode ) : void |
Sets wallpaper plugin. name="pluginName" the name of the wallpaper to attempt to load name="mode" optional mode or the wallpaper plugin (e.g. "Slideshow"). These values are pugin specific and enumerated in the plugin's .desktop file. |
|
ShowContextMenu ( QPointF containmentPos, QPoint screenPos ) : void |
Shows the context menu for the containment directly, bypassing Applets altogether. |
|
Wallpaper ( ) : Plasma.Wallpaper |
Return wallpaper plugin. |
|