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

32 lines
745 B
C++

/**
* Copyright (c) CompanyNameMagicTag 2023-2023. All rights reserved.
* Description: alipay bind view.
* Author:
* Create:
*/
#ifndef ALIPAY_BIND_H
#define ALIPAY_BIND_H
#include "components/ui_image_view.h"
#include "components/ui_label.h"
#include "components/ui_label_button.h"
#include "AlipayPresenter.h"
#include "components/ui_qrcode.h"
namespace OHOS {
class AlipayBind : public UIViewGroup {
public:
explicit AlipayBind(AlipayPresenter *presenter);
~AlipayBind() override;
bool InitView();
private:
bool AlipayInitImage(void);
bool AlipayInitLabel(void);
AlipayPresenter *presenter_;
UILabel *labelBind { nullptr };
UIQrcode *qrcodeGroup { nullptr };
};
}
#endif