mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-05-09 18:02:52 +08:00
6a22202ce5
- 删除旧版iup-3.31_Win64_dllw6_lib目录及其所有二进制文件 - 将IUP和CD库重新组织为独立目录结构,包含头文件和静态库 - 更新CMakeLists.txt以链接新的静态库(iupcontrols、iupimglib、cd等) - 修改main.c以显式初始化IupControls和IupImageLib扩展库 - 更新回调函数签名以匹配IUP Matrix控件的实际参数 - 调整UI工具函数以使用Matrix控件的属性(MARKED、NUMLIN等) - 更新安装脚本仅复制实际依赖的DLL文件 - 添加所有缺失的IUP和CD头文件以支持完整功能
121 lines
2.2 KiB
C
121 lines
2.2 KiB
C
/** \file
|
|
* \brief Private Lua 3 Binding Functions
|
|
*
|
|
* See Copyright Notice in cd.h
|
|
*/
|
|
|
|
#ifndef __CDLUA3_PRIVATE_H
|
|
#define __CDLUA3_PRIVATE_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define COLOR_TAG "CDLUA_COLOR_TAG"
|
|
#define CANVAS_TAG "CDLUA_CANVAS_TAG"
|
|
#define STATE_TAG "CDLUA_STATE_TAG"
|
|
#define BITMAP_TAG "CDLUA_BITMAP_TAG"
|
|
#define IMAGE_TAG "CDLUA_IMAGE_TAG"
|
|
#define IMAGERGB_TAG "CDLUA_IMAGERGB_TAG"
|
|
#define IMAGERGBA_TAG "CDLUA_IMAGERGBA_TAG"
|
|
#define STIPPLE_TAG "CDLUA_STIPPLE_TAG"
|
|
#define PATTERN_TAG "CDLUA_PATTERN_TAG"
|
|
#define PALETTE_TAG "CDLUA_PALETTE_TAG"
|
|
#define IMAGEMAP_TAG "CDLUA_IMAGEMAP_TAG"
|
|
#define CHANNEL_TAG "CDLUA_CHANNEL_TAG"
|
|
|
|
/* context management */
|
|
|
|
typedef struct _cdCallbackLUA {
|
|
int lock;
|
|
char *name;
|
|
cdCallback func;
|
|
} cdCallbackLUA;
|
|
|
|
typedef struct _cdContextLUA {
|
|
int id;
|
|
char *name;
|
|
cdContext* (*ctx)(void);
|
|
void* (*checkdata)(int param);
|
|
cdCallbackLUA* cb_list;
|
|
int cb_n;
|
|
} cdContextLUA;
|
|
|
|
void cdlua_addcontext(cdContextLUA* luactx);
|
|
void cdlua_register(char* name, lua_CFunction func);
|
|
void cdlua_pushnumber(double num, char* name);
|
|
|
|
/* tag management */
|
|
|
|
typedef struct _canvas_t {
|
|
cdCanvas *cd_canvas;
|
|
} canvas_t;
|
|
|
|
typedef struct _state_t {
|
|
cdState *state;
|
|
} state_t;
|
|
|
|
typedef struct _stipple_t {
|
|
unsigned char *value;
|
|
int width;
|
|
int height;
|
|
long int size;
|
|
} stipple_t;
|
|
|
|
typedef struct _pattern_t {
|
|
long int *color;
|
|
int width;
|
|
int height;
|
|
long int size;
|
|
} pattern_t;
|
|
|
|
typedef struct _palette_t {
|
|
long int *color;
|
|
long int size;
|
|
} palette_t;
|
|
|
|
typedef struct _image_t {
|
|
void *cd_image;
|
|
} image_t;
|
|
|
|
typedef struct _imagergb_t {
|
|
unsigned char *red;
|
|
unsigned char *green;
|
|
unsigned char *blue;
|
|
int width;
|
|
int height;
|
|
long int size;
|
|
} imagergb_t;
|
|
|
|
typedef struct _imagergba_t {
|
|
unsigned char *red;
|
|
unsigned char *green;
|
|
unsigned char *blue;
|
|
unsigned char *alpha;
|
|
int width;
|
|
int height;
|
|
long int size;
|
|
} imagergba_t;
|
|
|
|
typedef struct _imagemap_t {
|
|
unsigned char *index;
|
|
int width;
|
|
int height;
|
|
long int size;
|
|
} imagemap_t;
|
|
|
|
typedef struct _channel_t {
|
|
unsigned char *value;
|
|
long int size;
|
|
} channel_t;
|
|
|
|
typedef struct _bitmap_t {
|
|
cdBitmap *image;
|
|
} bitmap_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|