qscript

Disable native Next button in Qt installer framework

人盡茶涼 提交于 2019-12-10 14:16:50
问题 I have to disable standard next button, on my custom page via installscript.qs file. I can disable my own button (that I created in .ui file) via .qs script like this: widget.myButton.setEnabled(false); This man shows that native buttons represented as enumeration and I cannot disable them same way. Controller Scripting manual page shows some interactions with native buttons. Like gui.clickButton(buttons.NextButton) . I go through whole gui object man and don't found anything useful. Qt