123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*
- * LWSDK Header File
- * Copyright 2001 NewTek, Inc.
- *
- * LWPREVIEW.H -- LightWave Preview Services
- */
- #ifndef LWPREVIEW_H
- #define LWPREVIEW_H
- #include <lwimage.h>
- #include <lwtxtr.h>
- typedef struct st_PvSample {
- int x,y;
- float rgbaz[5];
- LWMicropol mp;
- } PvSample;
- typedef int clickFunc(int count,void *userData,PvSample *pixel);
- typedef void optionsFunc(int option,void *userData);
- typedef void closeFunc(void *userData);
- typedef int initFunc(void *renderData,int manual);
- typedef void cleanupFunc(void *renderData);
- typedef int evaluateFunc(void *renderData,int w,int h,PvSample *pixel);
- typedef void presetFunc(void *userData,LWImageID img);
- typedef struct st_PvContext *PvContextID;
- #define LWPREVIEWFUNCS_GLOBAL "Preview Functions"
- typedef struct st_LWPreviewFuncs {
- PvContextID (*subscribe)(char *title,void *userData,closeFunc *);
- void (*unsubscribe)(PvContextID);
- void (*open)(PvContextID);
- void (*close)(void);
- int (*isOpen)(void);
- void (*setContext)(PvContextID);
- void (*setClick)(PvContextID,clickFunc *);
- void (*setRender)(PvContextID,void *renderData,initFunc *,cleanupFunc *,evaluateFunc *);
- void (*setOptions)(PvContextID,char **list,optionsFunc *,int selection);
- void (*startRender)(PvContextID);
- void (*stopRender)(PvContextID);
- void (*getPixel)(PvSample *pixel);
- LWImageID (*getBitmap)(int *width,int *height);
- LWItemID (*getCamera)(double pos[3],double rot[3],double *zoomFactor);
- void (*getView)(int *width,int *height,double *pixelAspect);
- void (*setPreset)(PvContextID,presetFunc *);
- } LWPreviewFuncs;
- #endif
|