从 GetParm 回调中触发 OK

发布于 2024-11-26 10:44:09 字数 776 浏览 0 评论 0原文

我正在使用 IUP.GetParm 对话框进行搜索和替换提示。 该对话框支持 3 个按钮,前两个“确定”和“取消”关闭提示并返回主程序流程。

第三个按钮可以在 parm_action 函数中跟踪,我想做的是使用第三个按钮跳过该项目并关闭对话框,但我不知道这是否可能。

我已经在 IUP 邮件列表上询问过这个问题,但尚未得到回复。

function param_action(dialog,index)
   if index == -4 then
    bSkip = true
    return 1
   end
end
    bSkip = false
    bConfirm,strFromString,strToString,bSkip = 
    iup.GetParam("Search and Replace", 
    param_action,
    fhGetTag(ptrRecord)..'-'..fhGetTag(ptr)..
    ' '..fhGetDisplayText(ptrRecord).." %t\n"..
    "Replace: "..strBoxType.."\n"..
    "With: "..strBoxType.."\n"..
    "btn: %u[Ok,Cancel,Skip] \n"
    , strFromString,strToString)
    if bConfirm  and not(bSkip) then
       --  replace string
    end

当前要启用此功能,您必须按“跳过”按钮,然后按“确定”按钮。

I am using the IUP.GetParm dialog to do a search and replace prompt.
The dialog supports 3 buttons, the first two OK and Cancel close the prompt and return to the main program flow.

The third button can be tracked in the parm_action function, what I want to do is use the third button to skip the item and close the dialog, but I can't work out if this is possible.

I have asked this on the IUP mailing list but have not yet had a response.

function param_action(dialog,index)
   if index == -4 then
    bSkip = true
    return 1
   end
end
    bSkip = false
    bConfirm,strFromString,strToString,bSkip = 
    iup.GetParam("Search and Replace", 
    param_action,
    fhGetTag(ptrRecord)..'-'..fhGetTag(ptr)..
    ' '..fhGetDisplayText(ptrRecord).." %t\n"..
    "Replace: "..strBoxType.."\n"..
    "With: "..strBoxType.."\n"..
    "btn: %u[Ok,Cancel,Skip] \n"
    , strFromString,strToString)
    if bConfirm  and not(bSkip) then
       --  replace string
    end

To make this function currently you have to press the Skip button and then the Ok button.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半葬歌 2024-12-03 10:44:09

只需在此处重新发布 IUP 邮件列表中的答案即可:

在回调中,当按下第三个按钮时,设置对话框
将“status”属性设置为“1”并调用函数 iup.ExitLoop()。

Just re-posting the answer from the IUP mailing list here:

Inside the call-back, when the 3rd button is pressed, set the dialog
attribute "status" to "1" and call the function iup.ExitLoop().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文