Warning, /plasma/kwin/src/org.kde.KWin.Plugins.xml is written in an unsupported language. File is not indexed.

0001 <!DOCTYPE node PUBLIC "-//freedesktop//DTD D-BUS Object Introspection 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/introspect.dtd">
0002 <node>
0003     <interface name="org.kde.KWin.Plugins">
0004         <!--
0005             The list of all currently loaded plugins.
0006         -->
0007         <property name="LoadedPlugins" type="as" access="read"/>
0008 
0009         <!--
0010             The list of all available plugins.
0011         -->
0012         <property name="AvailablePlugins" type="as" access="read"/>
0013 
0014         <!--
0015             Loads a plugin with the specified @a name.
0016 
0017             If the plugin has been loaded successfully, @c true will be returned;
0018             otherwise @c false is returned.
0019         -->
0020         <method name="LoadPlugin">
0021             <arg type="b" direction="out"/>
0022             <arg name="name" type="s" direction="in"/>
0023         </method>
0024 
0025         <!--
0026             Unloads a plugin with the specified @a name.
0027         -->
0028         <method name="UnloadPlugin">
0029             <arg name="name" type="s" direction="in"/>
0030         </method>
0031     </interface>
0032 </node>