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

31 lines
737 B
C++

/*
* Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved.
* Description: temperature
* Author:
* Create: 2022-02-15
*/
#ifndef TEMP_CLICK_MEA_H
#define TEMP_CLICK_MEA_H
#include "components/ui_label.h"
#include "components/ui_label_button.h"
#include "components/ui_scroll_view.h"
#include "TempPresenter.h"
namespace OHOS {
class TempClickMea : public UIScrollView {
public:
TempClickMea();
~TempClickMea() override;
bool InitClickMea();
static TempClickMea *GetInstance();
void RefreshClickMea(void);
private:
bool TempInitButton(void);
bool TempInitLabel(void);
UILabel *tempLabel{nullptr};
UILabelButton *tempButton[SET_TWO]{nullptr};
};
}
#endif