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

31 lines
763 B
C++

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