ApplicationIPCInterface QML Type

The definition of an IPC interface between the application manager and applications. More...

Import Statement: import QtApplicationManager.SystemUI 2.0

Properties

Detailed Description

Using ApplicationIPCInterface items, you can define an IPC interface between the System UI and your applications. The actual interface consists of all the properties, signals, and functions that you define within this item. However, it's also possible to use this item to wrap an existing QtObject or even QObject instances by setting the serviceObject property. This way, you can expose all properties, signals, and functions of the serviceObject instead of the ones in this item.

For an in-depth explanation on how to set up these IPC interfaces, see ApplicationIPCManager::registerInterface().

Property Documentation

serviceObject : QtObject

This property holds the pointer to the object which is exposed via IPC. By default, this property returns the ApplicationIPCInterface object itself. However, you can set this property to wrap existing objects in order to expose them as IPC interfaces to applications.