23 lines
890 B
C
23 lines
890 B
C
// widgetImage.h -- Image widget API
|
|
#ifndef WIDGET_IMAGE_H
|
|
#define WIDGET_IMAGE_H
|
|
|
|
#include "../core/dvxWidget.h"
|
|
|
|
typedef struct {
|
|
WidgetT *(*create)(WidgetT *parent, uint8_t *data, int32_t w, int32_t h, int32_t pitch);
|
|
WidgetT *(*fromFile)(WidgetT *parent, const char *path);
|
|
void (*setData)(WidgetT *w, uint8_t *data, int32_t imgW, int32_t imgH, int32_t pitch);
|
|
} ImageApiT;
|
|
|
|
static inline const ImageApiT *dvxImageApi(void) {
|
|
static const ImageApiT *sApi;
|
|
if (!sApi) { sApi = (const ImageApiT *)wgtGetApi("image"); }
|
|
return sApi;
|
|
}
|
|
|
|
#define wgtImage(parent, data, w, h, pitch) dvxImageApi()->create(parent, data, w, h, pitch)
|
|
#define wgtImageFromFile(parent, path) dvxImageApi()->fromFile(parent, path)
|
|
#define wgtImageSetData(w, data, imgW, imgH, pitch) dvxImageApi()->setData(w, data, imgW, imgH, pitch)
|
|
|
|
#endif // WIDGET_IMAGE_H
|