mirror of
https://github.com/LHY0125/PathEditor.git
synced 2026-05-09 18:02:52 +08:00
feat: 增加双击编辑功能并调整按钮尺寸
- 为列表添加双击回调,双击项目可触发编辑对话框 - 实现自定义输入对话框以支持更宽的编辑区域 - 统一增大所有按钮尺寸至100x32像素 - 移除临时备份文件
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
|
||||
#include <iup.h>
|
||||
|
||||
// 按钮回调
|
||||
int btn_new_cb(Ihandle* self);
|
||||
int btn_edit_cb(Ihandle* self);
|
||||
int btn_browse_cb(Ihandle* self);
|
||||
@@ -13,4 +14,7 @@ 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
|
||||
Reference in New Issue
Block a user