windows....sigh

This commit is contained in:
2026-03-26 12:08:55 +01:00
parent 8fe7e726a4
commit b23365b05f
15 changed files with 499 additions and 128 deletions

View File

@@ -31,6 +31,7 @@ void Rktwebview_qt::processCommand(Command *cmd)
switch(cmd->cmd) {
case COMMAND_QUIT: { // Quit application
_app->quit();
cmd->done = true;
}
break;
case COMMAND_NEW_CONTEXT: {
@@ -640,6 +641,8 @@ void Rktwebview_qt::rktQuit()
{
Command c(COMMAND_QUIT);
postCommand(&c);
while(!c.done) { doEvents(); }
}
result_t Rktwebview_qt::fileDlg(rktwebview_t w, const char *title, const char *base, const char *filters,QFileDialog::FileMode mode, QFileDialog::AcceptMode am, QString evt_ok, QString evt_cancel)