mcu_hi3321_watch/application/wearable/nativeapp/nativeui/rebootdevice/include/RebootDeviceView.h
2025-05-26 20:15:20 +08:00

29 lines
741 B
C++

/*
* Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved.
* Description: RebootDevice View
* Create: 2022-04-28
*/
#ifndef REBOOTDEVICE_VIEW_H
#define REBOOTDEVICE_VIEW_H
#include "View.h"
#include "components/ui_view_group.h"
#include "components/ui_label.h"
#include "components/ui_button.h"
namespace OHOS {
class RebootDeviceView {
public:
RebootDeviceView();
~RebootDeviceView();
static RebootDeviceView *GetInstance();
UIViewGroup *InitShowUpView(void);
private:
bool ShowUpRebootDeviceView(void);
UILabel *rebootDeviceLabel{nullptr};
UIButton *rebootDeviceButton{nullptr};
UIViewGroup *group{nullptr};
};
} // namespace OHOS
#endif // REBOOTDEVICE_VIEW_H