GenericInterface Class Reference
from PyKDE4.solid import *
Inherits: Solid.DeviceInterface
Namespace: Solid
Detailed Description
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.
Enumerations | |
PropertyChange | { PropertyModified, PropertyAdded, PropertyRemoved } |
Signals | |
conditionRaised (QString condition, QString reason) | |
propertyChanged (QMap | |
Methods | |
__init__ (self, QObject backendObject) | |
QMap | allProperties (self) |
conditionRaised (self, QString condition, QString reason) | |
QVariant | property (self, QString key) |
propertyChanged (self, QMap | |
bool | propertyExists (self, QString key) |
Static Methods | |
Solid.DeviceInterface.Type | deviceInterfaceType () |
Method Documentation
__init__ | ( | self, | ||
QObject | backendObject | |||
) |
Creates a new GenericInterface object. You generally won't need this. It's created when necessary using Device.as().
- Parameters:
-
backendObject the device interface object provided by the backend
- See also:
- Solid.Device.as()
QMap |
( | self ) |
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.
- Parameters:
-
condition the condition name reason a message explaining why the condition has been raised
- Signal syntax:
QObject.connect(source, SIGNAL("conditionRaised(const QString&, const QString&)"), target_slot)
Solid.DeviceInterface.Type deviceInterfaceType | ( | ) |
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.
- Parameters:
-
key the property key
- Returns:
- the actual value of the property, or QVariant() if the property is unknown
propertyChanged | ( | self, | ||
QMap |
changes | |||
) |
This signal is emitted when a property is changed in the device.
- Parameters:
-
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
- Signal syntax:
QObject.connect(source, SIGNAL("propertyChanged(const QMap
&)"), target_slot)
bool propertyExists | ( | self, | ||
QString | key | |||
) |
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.
- Parameters:
-
key the property key
- Returns:
- true if the property is available in the device, false otherwise
Enumeration Documentation
PropertyChange |
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
- Enumerator:
-
PropertyModified PropertyAdded PropertyRemoved