Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #100942
| Path | csiph.com!fu-berlin.de!uni-berlin.de!not-for-mail |
|---|---|
| From | Dennis Lee Bieber <wlfraed@ix.netcom.com> |
| Newsgroups | comp.lang.python |
| Subject | Re: Message Box |
| Date | Mon, 28 Dec 2015 23:55:14 -0500 |
| Organization | IISS Elusive Unicorn |
| Lines | 25 |
| Message-ID | <mailman.46.1451364928.11925.python-list@python.org> (permalink) |
| References | <CABe8r0LZQbkOgwjYTwU4uRCQJvbigZzaOqjRBMYms_zKP6_5Aw@mail.gmail.com> |
| Mime-Version | 1.0 |
| Content-Type | text/plain; charset=us-ascii |
| Content-Transfer-Encoding | 7bit |
| X-Trace | news.uni-berlin.de DaEBml4XRXCVuoGPhaON3QrsTtGvMpQVHGQtr+4jN2dQ== |
| Return-Path | <python-python-list@m.gmane.org> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.005 |
| X-Spam-Evidence | '*H*': 0.99; '*S*': 0.00; 'message-id:@4ax.com': 0.09; 'other)': 0.09; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'anyway': 0.11; '"message': 0.16; 'received:80.91.229.3': 0.16; 'received:io': 0.16; 'received:plane.gmane.org': 0.16; 'received:psf.io': 0.16; 'status)': 0.16; 'url:home': 0.18; 'gui': 0.18; 'windows': 0.20; '2015': 0.20; 'trying': 0.22; '(or': 0.23; '(where': 0.23; 'dec': 0.23; 'mon,': 0.24; 'script': 0.25; 'header:X-Complaints-To:1': 0.26; 'rest': 0.26; 'coding': 0.27; 'handling': 0.27; 'right.': 0.27; 'tend': 0.27; '-0500,': 0.29; 'convenience': 0.29; 'dialog': 0.29; 'url:wikipedia': 0.29; 'typically': 0.29; 'url:wiki': 0.30; "can't": 0.32; 'operate': 0.32; 'displayed': 0.33; 'driven': 0.33; 'generic': 0.35; 'but': 0.36; 'instead': 0.36; 'there': 0.36; 'url:org': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'display': 0.37; 'received:org': 0.37; 'charset:us-ascii': 0.37; 'seem': 0.37; 'means': 0.39; 'url:en': 0.39; 'application': 0.39; 'takes': 0.39; 'to:addr:python.org': 0.40; 'box.': 0.66; 'boxes.': 0.84; 'everything,': 0.84; 'dennis': 0.91; 'received:108': 0.93 |
| X-Injected-Via-Gmane | http://gmane.org/ |
| X-Gmane-NNTP-Posting-Host | adsl-108-79-218-6.dsl.klmzmi.sbcglobal.net |
| X-Newsreader | Forte Agent 6.00/32.1186 |
| X-No-Archive | YES |
| X-BeenThere | python-list@python.org |
| X-Mailman-Version | 2.1.20+ |
| Precedence | list |
| List-Id | General discussion list for the Python programming language <python-list.python.org> |
| List-Unsubscribe | <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe> |
| List-Archive | <http://mail.python.org/pipermail/python-list/> |
| List-Post | <mailto:python-list@python.org> |
| List-Help | <mailto:python-list-request@python.org?subject=help> |
| List-Subscribe | <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Xref | csiph.com comp.lang.python:100942 |
Show key headers only | View raw
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