DVX_GUI/widgets/image/image.h

27 lines
1.2 KiB
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);
void (*setTransparent)(WidgetT *w, bool hasTransparency, uint32_t keyColor);
} 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)
#define wgtImageSetTransparent(w, has, key) dvxImageApi()->setTransparent(w, has, key)
#endif // IMAGE_H