mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00

界面元素边距调整 Log: 修复声音列表显示问题 Bug: https://pms.uniontech.com/zentao/bug-view-81680.html Change-Id: Ie530864da00a221f52329581ee0b5ea1f66f2f7f
25 lines
649 B
C
25 lines
649 B
C
#ifndef SOUNDACCESSIBLE_H
|
|
#define SOUNDACCESSIBLE_H
|
|
#include "accessibledefine.h"
|
|
|
|
#include "sounditem.h"
|
|
#include "soundapplet.h"
|
|
#include "./componments/volumeslider.h"
|
|
|
|
SET_BUTTON_ACCESSIBLE(SoundItem, "plugin-sounditem")
|
|
SET_FORM_ACCESSIBLE(SoundApplet, "soundapplet")
|
|
SET_SLIDER_ACCESSIBLE(VolumeSlider, "volumeslider")
|
|
|
|
QAccessibleInterface *soundAccessibleFactory(const QString &classname, QObject *object)
|
|
{
|
|
QAccessibleInterface *interface = nullptr;
|
|
|
|
USE_ACCESSIBLE(classname, SoundItem);
|
|
USE_ACCESSIBLE(classname, SoundApplet);
|
|
USE_ACCESSIBLE(classname, VolumeSlider);
|
|
|
|
return interface;
|
|
}
|
|
|
|
#endif // SOUNDACCESSIBLE_H
|