Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed1.swip.net!uio.no!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.011 X-Spam-Evidence: '*H*': 0.98; '*S*': 0.00; 'say,': 0.05; 'subject:code': 0.07; 'subject:while': 0.09; 'cc:addr:python- list': 0.11; 'gui': 0.12; '"system': 0.16; 'ah,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'operation.': 0.16; 'patil': 0.16; 'subject:GUI': 0.16; 'system- wide': 0.16; 'wxpython': 0.16; 'subject:python': 0.16; 'wrote:': 0.18; 'aug': 0.22; 'cc:addr:python.org': 0.22; 'cc:2**0': 0.24; 'header:In-Reply-To:1': 0.27; 'feature': 0.29; 'message- id:@mail.gmail.com': 0.30; 'code': 0.31; 'critical': 0.32; 'fri,': 0.33; 'received:google.com': 0.35; 'subject:one': 0.36; 'should': 0.36; 'pm,': 0.38; 'short': 0.38; 'called': 0.40; 'most': 0.60; 'reserved': 0.61; 'simply': 0.61; 'programs,': 0.74; 'answer:': 0.84; 'subject:Keep': 0.84; 'absolutely': 0.87; 'to:none': 0.92 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=/krQTy3lvAlrt78W7N2Np1sq0CtSEZ4rWDc1pEwYdz0=; b=MPBXa/Tjulu3rbypYVLyVZztaJo0XcaykMsmrj7a6/bChvEmtiAl9/PAKJFRp1jNo9 HoKBE6MShJpaGXOWC8pqT3MrmYHIArgtc0iiaJqDKFA2ENIbeBsRGG5TNBiBfP+kCTMa RLpm7ILnAM08VpHPJIYuNlQlwLBRNyQM3curIN+hR45u8sLQYWTVEhnniscpWg56xYyo tECNSfncXGiGa3mfW+PPZv46gor1LS2tyf9zTXmP80NyrP9e4RnFCYd3OIu2cStT06fZ FhQ6PF2MXAMrAZUZx+/YmgWKAMGqBd2SyLM0NjdXWP/nRR/HI/990Ch7pxHvVMyHdr5r MKUQ== MIME-Version: 1.0 X-Received: by 10.50.66.197 with SMTP id h5mr2088859igt.34.1407477759244; Thu, 07 Aug 2014 23:02:39 -0700 (PDT) In-Reply-To: <32f85c79-17a1-4d2f-a926-43812b8083ed@googlegroups.com> References: <32f85c79-17a1-4d2f-a926-43812b8083ed@googlegroups.com> Date: Fri, 8 Aug 2014 16:02:39 +1000 Subject: Re: Keep one GUI always on TOP while python code is running From: Chris Angelico Cc: "python-list@python.org" Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1407477767 news.xs4all.nl 2911 [2001:888:2000:d::a6]:34059 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:75867 On Fri, Aug 8, 2014 at 3:57 PM, Jaydeep Patil wrote: > I mean to say, One GUI should be always on top from start to end of code running. > So that user cant do any other operation. > I am using wxpython Ah, that would be called "System Modal", and should be reserved for absolutely critical system-wide alerts. It's also a feature that's simply not available to most user-space programs, and not available in most GUI toolkits. Short answer: Don't. ChrisA