class GenericInterface |
|
Generic interface to deal with a device. It exposes a set of properties
and is organized a a key/value set.
Warning: Using this class could expose some backend specific details and lead to non portable code. Use it at your own risk, or during transitional phases when the provided device interfaces don't provide the necessary methods. |
|
Creates a new GenericInterface object.
You generally won't need this. It's created when necessary using
Device.as().
backendObject - the device interface object provided by the backend See also Solid.Device.as() |
|
|
Retrieves a key/value map of all the known properties for the device.
Warning: Using this method could expose some backend specific details and lead to non portable code. Use it at your own risk, or during transitional phases when the provided device interfaces don't provide the necessary methods. Returns all the properties of the device |
|
This signal is emitted when an event occurred in the device.
For example when a button is pressed.
condition - the condition name reason - a message explaining why the condition has been raised |
|
Get the Solid.DeviceInterface.Type of the GenericInterface device interface.
Returns the Processor device interface type See also Solid.Ifaces.Enums.DeviceInterface.Type |
|
Retrieves a property of the device.
Warning: Using this method could expose some backend specific details and lead to non portable code. Use it at your own risk, or during transitional phases when the provided device interfaces don't provide the necessary methods. key - the property key Returns the actual value of the property, or QVariant() if the property is unknown |
|
This signal is emitted when a property is changed in the device.
changes - the map describing the property changes that occurred in the device, keys are property name and values describe the kind of change done on the device property (added/removed/modified), it's one of the type Solid.Device.PropertyChange |
|
Tests if a property exist in the device.
Warning: Using this method could expose some backend specific details and lead to non portable code. Use it at your own risk, or during transitional phases when the provided device interfaces don't provide the necessary methods. key - the property key Returns true if the property is available in the device, false otherwise |
This enum type defines the type of change that can occur to a GenericInterface property.
- PropertyModified : A property value has changed in the device - PropertyAdded : A new property has been added to the device - PropertyRemoved : A property has been removed from the device
PropertyModified | - | - | ||
PropertyAdded | - | - | ||
PropertyRemoved | - | - |