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

From KDE TechBase
m (s/DBUS/D-Bus)
Line 1: Line 1:
== Abstract ==
== Abstract ==


DBUS allows applications to expose internal API to the outside world by means of remotely callable interfaces. This tutorial shows how to create and implement such interfaces in your applications.
D-Bus allows applications to expose internal API to the outside world by means of remotely callable interfaces. This tutorial shows how to create and implement such interfaces in your applications.


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




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


== Lights: Defining The Interface ==
== Lights: Defining The Interface ==

Revision as of 18:59, 26 December 2006

Abstract

D-Bus allows applications to expose internal API to the outside world by means of remotely callable interfaces. This tutorial shows how to create and implement such interfaces in your applications.

Prerequisites

Technologies:

  • Qt4
  • D-Bus
  • CMake


Tutorials:

Lights: Defining The Interface

Defining Methods

Naming The Interface

Camera: Generating the Interface

qdbuscpp2xml

CMake

Action: Instantiating the Interface At Runtime

Other Resources