31 lines
737 B
C++
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 |