forked from quickshell/quickshell
dbus/properties: add QObjectBindableProperty based dbus property
Many times more lightweight than the original QObject-based one.
This commit is contained in:
parent
4163713bc4
commit
1955deee74
3 changed files with 151 additions and 15 deletions
|
@ -162,6 +162,10 @@ void DBusPropertyGroup::attachProperty(AbstractDBusProperty* property) {
|
|||
property->group = this;
|
||||
}
|
||||
|
||||
void DBusPropertyGroup::attachProperty(DBusPropertyCore* property) {
|
||||
this->properties.append(property);
|
||||
}
|
||||
|
||||
void DBusPropertyGroup::updateAllDirect() {
|
||||
qCDebug(logDbusProperties).noquote()
|
||||
<< "Updating all properties of" << this->toString() << "via individual queries";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue