mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 09:23:03 +00:00

remove old v20 code, adjust sound devices widget style run dbus call in another thread to prevent main thread get into wait. make deviceList item undrageble, and sound setting clickable. log:
17 lines
403 B
C
17 lines
403 B
C
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef SOUNDACCESSIBLE_H
|
|
#define SOUNDACCESSIBLE_H
|
|
#include "accessibledefine.h"
|
|
|
|
QAccessibleInterface *soundAccessibleFactory(const QString &classname, QObject *object)
|
|
{
|
|
QAccessibleInterface *interface = nullptr;
|
|
|
|
return interface;
|
|
}
|
|
|
|
#endif // SOUNDACCESSIBLE_H
|