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

29 lines
663 B
C++

/*
* Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved.
* Description: temperature
* Author:
* Create: 2022-02-15
*/
#ifndef TEMP_STUDY_ABOUT
#define TEMP_STUDY_ABOUT
#include "components/ui_label.h"
#include "components/ui_scroll_view.h"
#include "TempPresenter.h"
namespace OHOS {
class TempStudyAbout : public UIScrollView {
public:
TempStudyAbout();
~TempStudyAbout() override;
bool InitStudyAbout();
static TempStudyAbout *GetInstance();
void RefreshStudy(void);
private:
bool SetBasicLabel(void);
bool SetAppendLabel(void);
UILabel *tempLabel[SET_FIVE]{nullptr};
};
}
#endif