25 lines
843 B
C++
25 lines
843 B
C++
/*
|
|
* Copyright (c) CompanyNameMagicTag 2021-2021. All rights reserved.
|
|
* Description: UIVIEWID
|
|
* Author:
|
|
* Create: 2021-10-15
|
|
*/
|
|
|
|
#ifndef UI_VIEWID_H
|
|
#define UI_VIEWID_H
|
|
|
|
#include <cstdint>
|
|
#include "ohos_types.h"
|
|
|
|
namespace OHOS {
|
|
#define BLUETOOTH_NEWEQUIPMENT_BUTTON "newEquipmentButton" // 新设备
|
|
#define BLUETOOTH_UNPAIR_BUTTON "unpairButton" // 取消配对
|
|
#define BLUETOOTH_OPTIONONE_BUTTON "optionsOneButton" // 重新连接
|
|
#define BLUETOOTH_SETTING_BUTTON "settingButton"
|
|
#define BLUETOOTH_DELETE_BUTTON "deleteButton"
|
|
#define BLUETOOTH_SUCC_BACK_BUTTON "succBackButton" // 连接成功确认
|
|
#define BLUETOOTH_FAIL_BACK_BUTTON "failBackButton" // 重试按钮
|
|
#define BLUETOOTH_CONN_FAIL_BACK_BUTTON "connfailBackButton" // 连接失败确认
|
|
}
|
|
|
|
#endif // UI_VIEWID_H
|