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

30 lines
708 B
C++

/*
* Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved.
* Description: temperature
* Author:
* Create: 2022-02-15
*/
#ifndef TEMP_EXIT_PROMPT
#define TEMP_EXIT_PROMPT
#include "components/ui_image_view.h"
#include "components/ui_label.h"
#include "components/ui_scroll_view.h"
#include "TempPresenter.h"
namespace OHOS {
class TempExitPrompt : public UIScrollView {
public:
TempExitPrompt();
~TempExitPrompt() override;
bool InitExitPrompt();
static TempExitPrompt *GetInstance();
private:
bool TempInitImage(void);
bool TempInitLabel(void);
UIImageView *tempImage[SET_TWO]{nullptr};
UILabel *tempLabel{nullptr};
};
}
#endif