DVX_GUI/widgets/image/image.h

25 lines
1,005 B
C

// image.h -- Image widget API
#ifndef IMAGE_H
#define IMAGE_H
#include "../../core/dvxWgt.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);
void (*loadFile)(WidgetT *w, const char *path);
} 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)
#define wgtImageLoadFile(w, path) dvxImageApi()->loadFile(w, path)
#endif // IMAGE_H