Development/Tutorials/D-Bus/Accessing Interfaces: Difference between revisions

From KDE TechBase
mNo edit summary
m (DBUS->D-Bus)
Line 1: Line 1:
== Abstract ==
== Abstract ==


DBUS allows applications to expose internal API to the outside world. These APIs can then be accessed via the DBUS protocol using command line applications or DBUS libraries and bindings themselves. This tutorial looks at the latter method with examples that you can use in your applications.
D-Bus allows applications to expose internal API to the outside world. These APIs can then be accessed via the D-Bus protocol using command line applications or D-Bus libraries and bindings themselves. This tutorial looks at the latter method with examples that you can use in your applications.


== Prerequisites ==
== Prerequisites ==
Technologies:
Technologies:
* Qt4
* Qt4
* DBUS
* D-Bus




Tutorials:
Tutorials:
* [[Development/Tutorials/Introduction_To_DBUS|Introduction To DBUS]]
* [[Development/Tutorials/Introduction_To_DBUS|Introduction To D-Bus]]


== DBUS Interfaces ==
== D-Bus Interfaces ==





Revision as of 18:20, 26 December 2006

Abstract

D-Bus allows applications to expose internal API to the outside world. These APIs can then be accessed via the D-Bus protocol using command line applications or D-Bus libraries and bindings themselves. This tutorial looks at the latter method with examples that you can use in your applications.

Prerequisites

Technologies:

  • Qt4
  • D-Bus


Tutorials:

D-Bus Interfaces

Using QDBusMessage

Using QDBusInterface

Using An Interface

Connecting To Signals

Other Resources