Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #100942
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
|---|---|
| Newsgroups | comp.lang.python |
| Subject | Re: Message Box |
| Date | 2015-12-28 23:55 -0500 |
| Organization | IISS Elusive Unicorn |
| Message-ID | <mailman.46.1451364928.11925.python-list@python.org> (permalink) |
| References | <CABe8r0LZQbkOgwjYTwU4uRCQJvbigZzaOqjRBMYms_zKP6_5Aw@mail.gmail.com> |
On Mon, 28 Dec 2015 16:43:02 -0500, Malik Brahimi <mbrahimi02@gmail.com>
declaimed the following:
>I have an event driven script that prompts users as the events are
>triggered with a message box. Is there anyway with any GUI toolkit to
>create these dialogs simultaneously in the event that they coincide? I have
>been trying everything, but I can't seem to get it right.
>
Typically (Well... M$ Windows world), "message boxes" are /modal/ --
the first message box to display takes over (or blocks other) event
processing until the user has acknowledged the displayed message box.
Generic "dialog boxes" tend to be /non-modal/ -- they allow the rest of
the application to operate in parallel.
So -- you may be looking at coding up full dialog boxes instead of
using convenience message boxes. That also means all the overhead of event
handling for the dialog (where a message box directly returns the status)
https://en.wikipedia.org/wiki/Dialog_box
--
Wulfraed Dennis Lee Bieber AF6VN
wlfraed@ix.netcom.com HTTP://wlfraed.home.netcom.com/
Back to comp.lang.python | Previous | Next | Find similar | Unroll thread
Re: Message Box Dennis Lee Bieber <wlfraed@ix.netcom.com> - 2015-12-28 23:55 -0500
csiph-web