13 lines
329 B
C++
13 lines
329 B
C++
#ifndef TJDUI_IMAGE_VIEW_H
|
|
#define TJDUI_IMAGE_VIEW_H
|
|
#include "components/ui_image_view.h"
|
|
|
|
namespace TJD {
|
|
class TjdUiImageView : public OHOS::UIImageView {
|
|
public:
|
|
TjdUiImageView();
|
|
virtual ~TjdUiImageView();
|
|
void SetPosition(int16_t x, int16_t y, int16_t width, int16_t height, bool isMirror = false);
|
|
};
|
|
}
|
|
#endif |