mirror of
https://github.com/linuxdeepin/dde-dock.git
synced 2025-06-04 17:33:05 +00:00
15 lines
364 B
C
15 lines
364 B
C
// SPDX-FileCopyrightText: 2018 - 2023 UnionTech Software Technology Co., Ltd.
|
|
//
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
#ifndef BLUETOOTHCONSTANTS_H
|
|
#define BLUETOOTHCONSTANTS_H
|
|
|
|
const int DeviceItemHeight = 36;
|
|
const int ItemWidth = 300;
|
|
const int TitleHeight = 46;
|
|
const int TitleSpace = 2;
|
|
const int MaxDeviceCount = 8;
|
|
|
|
#endif // BLUETOOTHCONSTANTS_H
|