mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-05-09 18:02:52 +08:00
2746b5674e
- 为列表添加双击回调,双击项目可触发编辑对话框 - 实现自定义输入对话框以支持更宽的编辑区域 - 统一增大所有按钮尺寸至100x32像素 - 移除临时备份文件
20 lines
459 B
C
20 lines
459 B
C
#ifndef CALLBACKS_H
|
|
#define CALLBACKS_H
|
|
|
|
#include <iup.h>
|
|
|
|
// 按钮回调
|
|
int btn_new_cb(Ihandle* self);
|
|
int btn_edit_cb(Ihandle* self);
|
|
int btn_browse_cb(Ihandle* self);
|
|
int btn_del_cb(Ihandle* self);
|
|
int btn_up_cb(Ihandle* self);
|
|
int btn_down_cb(Ihandle* self);
|
|
int btn_ok_cb(Ihandle* self);
|
|
int btn_cancel_cb(Ihandle* self);
|
|
int btn_help_cb(Ihandle* self);
|
|
|
|
// 双击回调
|
|
int list_dblclick_cb(Ihandle* self, int item, char* text);
|
|
|
|
#endif // CALLBACKS_H
|