gb.dbus
This
componente allows to take part in the D-Bus system.
Clases
By using this component, you will be able to:
- Call any método and properties of any application connected to D-Bus.
- Catch any signal sent by any application connected to D-Bus.
- Export your own objects to a D-Bus bus.
For more information, see
http://dbus.freedesktop.org.
Ejemplo
' Lock the screen
DBus["org.kde.krunner"]["/ScreenSaver"].lock()
' Check if compositing is active
If DBus["org.kde.kwin"]["/KWin"].compositingActive() Then Print "Compositing is active!"
' Get a password from KDE wallet
Dim sLocalWallet As String = DBus["org.kde.kwalletd"]["/modules/kwalletd"].localWallet()
Dim sWalletId As String = DBus["org.kde.kwalletd"]["/modules/kwalletd"].open(sLocalWallet, Application.Title)
Dim sPassword As String = DBus["org.kde.kwalletd"]["/modules/kwalletd"].readPassword(Application.Name, sWalletId, "login", Application.Title)
' Set the geometry of the KMail window
DBus["org.kde.kmail"]["/kmail/kmail_mainwindow_1"].geometry = [0, 24, 1024, 768]