Вопрос

Я заметил, что модальные диалоги на Qt используются локальный QeventLoop с помощью ProcessEventflags, установленными как «Диалогекс»

eventLoop.exec(QEventLoop::DialogExec);
.

Qt Assistant не имеет информации о том, что означает этот канал.Есть еще один под названием EventLoopexec.У кого-нибудь есть идеи, что они на самом деле значит и почему они не документируются?

Спасибо

Это было полезно?

Решение

I did some poking around and this is what I found:

  • This enum is intentionally omitted from the documentation, along with several other QEventLoop::ProcessEventsFlag enum values (X11ExcludeTimers, ExcludeUserInput, WaitForMore, EventLoopExec) as there is an \omitvalue in front of each one in the comments that generate the docs.

  • There is only one place in all of Qt that actually uses it, in qeventdispatcher_mac.mm in which it appears to be some kind of mac-specific optimization according to the in-line comments

The intentional omission of these values from the docs leads me to conclude that they're for internal Qt use only, and that you shouldn't need to use them or worry about them.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top