33 lines
817 B
C++
33 lines
817 B
C++
/*
|
|
* Copyright (c) CompanyNameMagicTag 2022-2022. All rights reserved.
|
|
* Description: temperature
|
|
* Author:
|
|
* Create: 2022-02-15
|
|
*/
|
|
|
|
#ifndef TEMP_PROMPT_WEAR_H
|
|
#define TEMP_PROMPT_WEAR_H
|
|
|
|
#include "components/ui_image_view.h"
|
|
#include "components/ui_label.h"
|
|
#include "components/ui_label_button.h"
|
|
#include "components/ui_scroll_view.h"
|
|
#include "TempPresenter.h"
|
|
|
|
namespace OHOS {
|
|
class TempPromptWear : public UIScrollView {
|
|
public:
|
|
TempPromptWear();
|
|
~TempPromptWear() override;
|
|
bool InitPromptWear();
|
|
static TempPromptWear *GetInstance();
|
|
private:
|
|
bool TempInitLabel(void);
|
|
bool TempInitButton(void);
|
|
bool TempInitImage(void);
|
|
UILabel *tempLabel{nullptr};
|
|
UILabelButton *tempButton{nullptr};
|
|
UIImageView *tempImage{nullptr};
|
|
};
|
|
}
|
|
#endif |