active questions tagged python+wxpython - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T02:28:14Z http://stackoverflow.com/feeds/tag/python+wxpython http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1837558/python2-6-backtrack-ubuntu-wxpython 0 Python2.6 Backtrack/Ubuntu wxPython silverbandit91 2009-12-03T04:05:20Z 2009-12-03T04:15:40Z <p>I wrote a python app and it needs python2.6. I'm trying to get it to run in Backtrack 4 which is a pen-testing linux distro based on debian/ubuntu. I'v managed to install python2.6 along side of python2.5. Now I'm trying to install wxPython for 2.6 from the repos but I can't get it to install it for python2.6 rather than 2.5. Is there some way i can set a flag to specify what python installation to target? Or do I just need to install it from source?</p> http://stackoverflow.com/questions/1786194/knowing-if-any-key-is-pressed-wxpython 0 Knowing if any key is pressed, wxPython terabytest 2009-11-23T21:41:12Z 2009-12-02T02:17:15Z <p>Hi, I have a timer, and need to know if any of the keys is pressed on any cycle. How do I do it?</p> http://stackoverflow.com/questions/1820939/need-a-python-package-suitable-for-visualizing-queue-simulations 1 Need a Python package suitable for visualizing queue simulations cool-RR 2009-11-30T16:43:58Z 2009-11-30T21:36:15Z <p>I am working on a simulation in Queueing Theory, within a wxPython GUI. (<a href="http://garlicsim.org" rel="nofollow">Project link</a>.) What would be a good tool for visualizing the simulations? The visualization should consist of simple objects, such as clients, servers, a facility and a population. They should all be represented by simple boxes or something like that. There will be several queues in which clients will wait.</p> <p>Since this is a visualization of a progressing simulation, objects will move around the screen, and it would be nice if they could move smoothly from one place to another, and not jump abruptly.</p> <p>What would be a good tool to create that visualization? I could do it in native wxPython graphics. I could also use PyGame. But maybe someone here has something better to recommend?</p> http://stackoverflow.com/questions/1816353/getting-value-of-textctrl-from-a-different-wxpanel 0 Getting value of TextCtrl from a different wxPanel artdanil 2009-11-29T18:39:50Z 2009-11-30T15:14:52Z <p>I was trying to get my first wxWindow application to work and I ran into following difficulty:<br> I create wxPanel and add a wxNotebook object to it. Then I add a page to notebook created from another wxPanel object. How do I access a value of TextCtrl from first wxPanel in the second one?</p> <pre><code>import wx class BasicApp(wx.App): def OnInit(self): frame = BasicFrame(None, -1, "Test App") panel = BasicPanel(frame, -1); frame.Show(True) self.SetTopWindow(frame) return True; class BasicFrame(wx.Frame): def __init__(self, parent, ID, title): wx.Frame.__init__(self, parent, ID, title, wx.DefaultPosition, wx.Size(400, 300)) self.CreateStatusBar() class BasicPanel(wx.Panel): def __init__(self, parent, id): wx.Panel.__init__(self, parent, id) self.lblText1 = wx.StaticText(self, -1, "Text1:"); self.txtText1 = wx.TextCtrl(self, 1001, "Text1", size = wx.Size(140, -1)); self.line1 = wx.BoxSizer(wx.HORIZONTAL); self.line1.Add(self.lblText1, 0, wx.EXPAND); self.line1.Add(self.txtText1, proportion=1, flag=wx.LEFT, border=5); self.nb = wx.Notebook(self, -1); tab1 = Tab1(self.nb, -1); self.nb.AddPage(tab1, "Tab1"); self.sizer = wx.BoxSizer(wx.VERTICAL) self.sizer.Add(self.line1, 0, wx.EXPAND) self.sizer.Add(self.nb, 1, wx.EXPAND) self.SetSizer(self.sizer) self.SetAutoLayout(1) self.sizer.Fit(self) self.Show(1) class Tab1(wx.Panel): def __init__(self, parent, id): wx.Panel.__init__(self, parent, id); self.lblText2 = wx.StaticText(self, -1, "Text2:"); self.txtText2 = wx.TextCtrl(self, 1101, "Text2", size = wx.Size(140, -1)); self.line1 = wx.BoxSizer(wx.HORIZONTAL); self.line1.Add(self.lblText2, 0, wx.EXPAND); self.line1.Add(self.txtText2, 0, wx.EXPAND); self.lblMessage = wx.StaticText(self, -1, "Message:"); self.txtMessage = wx.TextCtrl(self, 1102, "", style = wx.TE_MULTILINE); self.cmdCreate = wx.Button(self, 1103, "Create"); self.cmdCreate.Bind(wx.EVT_BUTTON, self.Create_OnClick) self.line3 = wx.BoxSizer(wx.HORIZONTAL); self.sizer = wx.BoxSizer(wx.VERTICAL) self.sizer.Add(self.line1, 0, wx.EXPAND) self.sizer.Add(self.lblMessage, 0, wx.EXPAND) self.sizer.Add(self.txtMessage, 1, wx.EXPAND) self.sizer.Add(self.cmdCreate, 0, wx.LEFT) self.SetSizer(self.sizer) self.SetAutoLayout(1) self.sizer.Fit(self) self.Show(1) def Create_OnClick(self, event): text1 = ""; text2 = self.txtText2.GetValue(); self.txtMessage.SetValue(text1 + " " + text2); app = BasicApp(0) app.MainLoop() </code></pre> <p>To be more specific I want to be able to access value of txtText1 in Create_OnClick() method. How could this be achieved?</p> http://stackoverflow.com/questions/1200610/python-wx-python-card-logging-subprocess-output-to-window 0 Python wx (Python Card) logging subprocess output to window Jweede 2009-07-29T14:20:31Z 2009-11-28T06:09:12Z <p>There are <a href="http://stackoverflow.com/questions/531708/logging-output-of-external-program-with-wxpython">similar</a> <a href="http://stackoverflow.com/questions/865082/python-plugging-wx-py-shell-shell-into-a-separate-process">questions</a> to this one, but I'd like to see a clarified answer. I'm building a simple GUI with PythonCard to wrap a command line process. Specifically, it's a wrapper for a series of ANT Tasks and other custom operations so non-devs can use it.</p> <p>I'd like to redirect the output of the subprocess to a TextArea in the window. It looks like the way to do this is to use <code>subprocess.Popen(command, stdout=subprocess.PIPE)</code> and load the output to a variable. </p> <p>The question is how do I live update the window with the output of the subprocess? Any hints would be welcome</p> <p>Thanks</p> http://stackoverflow.com/questions/1811164/where-can-i-find-good-tutorials-and-guides-on-wxpython-and-wxglade 1 Where can I find good tutorials and guides on wxPython and wxGlade? Josh Steele 2009-11-28T00:45:04Z 2009-11-28T00:53:31Z <p>Just out of curiosity, aside from their respective sites, have any of you guys found a better resource for figuring out wxPython/wxGlade?</p> <p>I figured I'd ask while I'm chewing on something else, I plan on using those tools to create a GUI for the project I've started.</p> http://stackoverflow.com/questions/1784026/wxpython-create-a-panel-with-four-static-sized-boxes 0 wxPython. Create a panel with four static sized boxes. Orjanp 2009-11-23T15:53:21Z 2009-11-23T17:44:50Z <p>I'm trying to create a panel, with four boxes containing some data. These four boxes should have a predefined static size. What I have so far is four boxes that is overlapping to some extent. </p> <p>Any ideas?</p> <p>Code:</p> <pre><code>import wx class MyFrame(wx.Frame): def __init__(self, *args, **kwargs): wx.Frame.__init__(self, *args, **kwargs) self.pl = wx.Panel(self) self.SetSize((500, 350)) sb = wx.StaticBox(self.pl, -1, 'BOX0', size=(180, 150)) sat = wx.CheckBox(self.pl, -1, 'Satellite') gsm = wx.CheckBox(self.pl, -1, 'GSM') wlan = wx.CheckBox(self.pl, -1, 'WLAN') sb2 = wx.StaticBox(self.pl, -1, 'BOX1', size=(180, 150)) nm2 = wx.StaticText(self.pl, -1, 'default1') sb3 = wx.StaticBox(self.pl, -1, 'BOX2', size=(180, 150)) nm3 = wx.StaticText(self.pl, -1, 'default2') sb4 = wx.StaticBox(self.pl, -1, 'BOX3', size=(180, 150)) nm4 = wx.StaticText(self.pl, -1, 'default3') box = wx.StaticBoxSizer(sb, wx.VERTICAL) box.Add(sat, 0, wx.ALL, 5) box.Add(gsm, 0, wx.ALL, 5) box.Add(wlan, 0, wx.ALL, 5) box2 = wx.StaticBoxSizer(sb2) box2.Add(nm2, 0, wx.ALL, 5) box3 = wx.StaticBoxSizer(sb3) box3.Add(nm3, 0, wx.ALL, 5) box4 = wx.StaticBoxSizer(sb4) box4.Add(nm4, 0, wx.ALL, 5) gs = wx.BoxSizer(wx.HORIZONTAL) gs.Add(box) gs.Add(box2) gss = wx.BoxSizer(wx.HORIZONTAL) gss.Add(box3) gss.Add(box4) gt = wx.BoxSizer(wx.VERTICAL) gt.Add(gs) gt.Add(gss) self.pl.SetSizer(gt) class MyApp(wx.App): def OnInit(self): frame = MyFrame(None, -1, '08_gridsizer.py') frame.Show() self.SetTopWindow(frame) return 1 if __name__ == "__main__": app = MyApp(0) app.MainLoop() </code></pre> http://stackoverflow.com/questions/1775921/continuously-redraw-wxpython-element 1 Continuously redraw wxPython element Radek 2009-11-21T16:19:43Z 2009-11-21T16:24:00Z <p>Hi, I have a chat client that continuously polls a server and fetches new messages.</p> <p>From my <strong>def __init__()</strong> I have:</p> <pre><code>wx.CallAfter(self.pollServer) </code></pre> <p>Which is defined:</p> <pre><code>def pollServer(self): t = self.updateMessages() time.sleep(5) self.pollServer() </code></pre> <p>Now printing the messages into the Terminal shows that it works but the GUI is 'frozen' instead of being continuously refreshed and I thought CallAfter takes care of that. Could you help?</p> http://stackoverflow.com/questions/1774640/why-organizations-dont-use-python 0 Why organizations don’t use Python? [closed] unknown (yahoo) 2009-11-21T05:48:13Z 2009-11-21T05:53:49Z <p>Yesterday I came across this article..</p> <p><a href="http://programminglanguagefaqs.blogspot.com/2009/11/why-organizations-dont-use-python.html" rel="nofollow">http://programminglanguagefaqs.blogspot.com/2009/11/why-organizations-dont-use-python.html</a></p> <p>Well, Some points mentioned there stuck my mind...so let's discuss here why any small scale organizations do not prefer Python and go for Java or any other languages??</p> http://stackoverflow.com/questions/1761250/displaying-opencv-iplimage-data-structures-with-wxpython 1 Displaying OpenCV iplimage data structures with wxPython Domenic 2009-11-19T06:20:02Z 2009-11-19T06:25:17Z <p>Here is my current code (language is Python):</p> <pre><code>newFrameImage = cv.QueryFrame(webcam) newFrameImageFile = cv.SaveImage("temp.jpg",newFrameImage) wxImage = wx.Image("temp.jpg", wx.BITMAP_TYPE_ANY).ConvertToBitmap() wx.StaticBitmap(self, -1, wxImage, (0,0), (wxImage.GetWidth(), wxImage.GetHeight())) </code></pre> <p>I'm trying to display an iplimage captured from my webcam in a wxPython window. The problem is I don't want to store the image on hard disk first. Is there any way to convert an iplimage into another image format in memory? Any other solution?</p> <p>I found a few "solutions" to this problem in other languages, but I'm still having trouble with this issue.</p> <p>Thanks.</p> http://stackoverflow.com/questions/1653419/cross-platform-programming-language-with-a-decent-gui-toolkit 0 Cross-Platform Programming Language with a decent gui toolkit? Indebi 2009-10-31T04:34:48Z 2009-11-19T01:57:03Z <p>For the program idea I have, it requires that the software be written in one binary that is executeable by all major desktop platforms, meaning it needs an interpreted language or a language within a JVM. Either is fine with me, but the programming language has to balance power &amp; simplicity (e.g. Python)</p> <p>I know of wxPython but I have read that it's support on Mac OS X is fairly limited</p> <p>Java sounds good &amp; it looks good but it seems almost too difficult to program in</p> <p>Any help?</p> http://stackoverflow.com/questions/655662/why-is-wx-singlechoicedialog-not-subclassing-properly 1 Why is wx.SingleChoiceDialog not subclassing properly dangerouslyfacetious 2009-03-17T19:21:40Z 2009-11-15T11:48:01Z <p>I'm trying to subclass the wxpython SingleChoiceDialog class. I have a TableChoiceDialog class that inherits from SingleChoiceDialog adding generic functionality, and I have 2 sub classes for that add more refined functionality. Basically I'm O.O.P'ing</p> <p>In my TableChoiceDialog class I have a line which calls the superclass's <code>__init__</code>, i.e.</p> <pre><code>class TableChoiceDialog(wx.SingleChoiceDialog): def __init__(self, parent, message, caption, list, ...other args...): wx.SingleChoiceDialog.__init__(self, parent, message, caption, list) </code></pre> <p>The problem I'm having is that according to the <code>SingleChoiceDialog.__init__</code> docstring (and the wxPython API), SingleChoiceDialog does not have the self argument as part of it's <code>__init__</code> method.</p> <pre><code> __init__(Window parent, String message, String caption, List choices=EmptyList, long style=CHOICEDLG_STYLE, Point pos=DefaultPosition) -&gt; SingleChoiceDialog </code></pre> <p>As I have it above, the program prints the error:</p> <pre><code>swig/python detected a memory leak of type 'wxSingleChoiceDialog *', no destructor found. </code></pre> <p>If I take out the self parameter the system complains that it was expecting a <code>SingleChoiceDialog</code> object as a first argument, which seems to point to it actually wanting a reference to self.</p> <p>When I take out the parent argument, leaving self (and the other 3 which I'm pretty sure are fine) the system complains that it only recieved 3 arguments, when it needed 4. I'm pretty certain I'm passing 4.</p> <p>So. What blatantly obvious mistake have I made? Have I totally misunderstood how python handles objects (and hence pretty much misunderstood python)? Have I misunderstood OOP as a whole?</p> <p>Please help. Thanks in advance</p> http://stackoverflow.com/questions/1736917/tree-view-gui-widget-gui-library-that-can-do-multiple-icons 0 Tree view GUI widget/gui library that can do multiple icons? ThantiK 2009-11-15T07:48:46Z 2009-11-15T11:36:32Z <p><a href="http://imgur.com/fcTZ2.png" rel="nofollow">Screenshot</a></p> <p>I'm looking to recreate this in Python; I can't find a library that seems to have what I need. Are there any GUI libraries that might possibly have this? - I have scoured wxWidgets (which is my preferred gui library) but they have nothing similar.</p> <p>I have a script already that uses a standard wxTreeCtrl but it has no provisions for adding additional icons at the tail end like this screen shot.</p> <p>If no pre-existing gui library exists, any tips for my first steps in trying to create it myself?</p> http://stackoverflow.com/questions/1733461/wxpython-update-wx-listbox-list 1 wxPython: Update wx.ListBox list The.Anti.9 2009-11-14T06:17:47Z 2009-11-14T06:28:00Z <p>I have a wx.ListBox in a python program, and I wan't to change out the list in it on a wx.Timer update. I have the timer working, I just don't know how to change out the list that it displays.</p> http://stackoverflow.com/questions/1710724/wxpython-problem-updating-background-color-of-controls 0 wxPython : Problem updating background color of controls mark 2009-11-10T19:53:16Z 2009-11-13T21:56:28Z <p>[EDIT - Reduced and re-posted code, restated question]</p> <p>I would like to change the background color of a frame (or panel; whichever makes it work). The problem is that the background color of controls on that frame (or panel) don't have their background color updated until I click on the control (the slider control, specifically).</p> <p>Any ideas on how to fix this?</p> <p>Here's some demo code:</p> <pre><code>import wx class MyFrame(wx.Frame): def __init__(self, *args, **kwds): kwds["style"] = wx.DEFAULT_FRAME_STYLE wx.Frame.__init__(self, *args, **kwds) self.panel_1 = wx.Panel(self, -1) self.sliderDarken = wx.Slider(self.panel_1, -1, 206, 0, 255) self.label_3 = wx.StaticText(self.panel_1, -1, "This slider should darken the main panel.\n") self.btnPopup = wx.Button(self.panel_1, -1, "This button will pop up a dialog to dim the panel.") self.__set_properties() self.__do_layout() self.Bind(wx.EVT_COMMAND_SCROLL, self.onDarken, self.sliderDarken) self.Bind(wx.EVT_BUTTON, self.onDialogPopup, self.btnPopup) def __set_properties(self): self.SetTitle("Main Frame") def __do_layout(self): sizer_1 = wx.BoxSizer(wx.VERTICAL) sizer_3 = wx.BoxSizer(wx.HORIZONTAL) sizer_3.Add(self.sliderDarken, 0, 0, 0) sizer_3.Add(self.label_3, 0, 0, 0) sizer_3.Add(self.btnPopup, 0, 0, 0) self.panel_1.SetSizer(sizer_3) sizer_1.Add(self.panel_1, 1, wx.EXPAND, 0) self.SetSizer(sizer_1) sizer_1.Fit(self) self.Layout() def onDarken(self, event): self.panel_1.SetBackgroundColour(wx.Colour(self.sliderDarken.GetValue(),self.sliderDarken.GetValue(),self.sliderDarken.GetValue())) self.panel_1.Refresh() def onDialogPopup(self, event): dlgPopup=MyDialog1(None) dlgPopup.Show() class MyDialog1(wx.Dialog): def __init__(self, *args, **kwds): kwds["style"] = wx.DEFAULT_DIALOG_STYLE wx.Dialog.__init__(self, *args, **kwds) self.sliderDarkenPopup = wx.Slider(self, -1, 206, 0, 255, style=wx.SL_HORIZONTAL|wx.SL_AUTOTICKS|wx.SL_LABELS) self.label_2 = wx.StaticText(self, -1, "This slider should darken the panel on the main frame.") self.__set_properties() self.__do_layout() self.Bind(wx.EVT_COMMAND_SCROLL, self.onDarkenPopup, self.sliderDarkenPopup) def __set_properties(self): self.SetTitle("Dimmer Pop up") def __do_layout(self): sizer_2 = wx.BoxSizer(wx.HORIZONTAL) sizer_2.Add(self.sliderDarkenPopup, 0, 0, 0) sizer_2.Add(self.label_2, 0, 0, 0) self.SetSizer(sizer_2) sizer_2.Fit(self) self.Layout() def onDarkenPopup(self, event): frame_1.panel_1.SetBackgroundColour(wx.Colour(self.sliderDarkenPopup.GetValue(),self.sliderDarkenPopup.GetValue(),self.sliderDarkenPopup.GetValue())) frame_1.panel_1.Refresh() if __name__ == "__main__": app = wx.PySimpleApp(0) wx.InitAllImageHandlers() frame_1 = MyFrame(None, -1, "") app.SetTopWindow(frame_1) frame_1.Show() app.MainLoop() </code></pre> http://stackoverflow.com/questions/1730647/alternatives-to-wx-lib-masked-numctrl 1 Alternatives to wx.lib.masked.NumCtrl Joril 2009-11-13T17:11:47Z 2009-11-13T21:52:56Z <p>Hi everyone!<br> In a wxPython application I'm developing I need a lot of input fields for numbers (integers and floats), so I tried using wx.lib.masked.NumCtrl, but my users now tell me that it's quite uncomfortable to use (and I agree with them). </p> <p>Is there an alternative widget implementation I can use, or should I just roll my own, starting from a bare TextCtrl?</p> <p>(wxPython 2.8.9.1)</p> http://stackoverflow.com/questions/941470/wxpython-wont-close-frame-with-a-parent-who-is-a-window-handle 1 wxPython won't close Frame with a parent who is a window handle Fry 2009-06-02T19:33:30Z 2009-11-10T21:48:13Z <p>I have a program in Python that gets a window handle via COM from another program (think of the Python program as an addin) I set this window to be the main Python frame's parent so that if the other program minimizes, the python frame will too. The problem is when I go to exit, and try to close or destroy the main frame, the frame.close never completes it's execution (although it does disappear) and the other program refuses to close unless killed with TaskManager.</p> <p>Here are roughly the steps we take:</p> <pre><code>if we are started directly, launch other program if not, we are called from the other program, do nothing enter main function: create new wx.App set other program as frame parent: Get handle via COM create a parent using wx.Window_FromHWND create new frame with handle as parent show frame enter main loop App.onexit: close frame frame = None handle as parent = None handle = None </code></pre> <p>Anybody have any thoughts on this or experience with this sort of thing?</p> <p>I appreciate any help with this!</p> <p>[Edit] This is only the case when I use the handle as a parent, if I just get the handle and close the python program, the other program closes fine</p> http://stackoverflow.com/questions/477573/easyinstall-of-wxpython-has-setup-script-error 0 Easy_install of wxpython has "setup script" error. vgm64 2009-01-25T11:25:02Z 2009-11-04T19:35:05Z <p>I have an install of python 2.5 that fink placed in /sw/bin/. I use the easy install command</p> <pre><code>sudo /sw/bin/easy_install wxPython </code></pre> <p>to try to install wxpython and I get an error while trying to process wxPython-src-2.8.9.1.tab.bz2 that there is not setup script. Easy-install has worked for several other installations until this one. Any help on why it's busting now?</p> <p>EDIT: The error occurs before dumping back to shell prompt.</p> <p><i>Reading <a href="http://wxPython.org/download.php" rel="nofollow">http://wxPython.org/download.php</a><br> Best match: wxPython src-2.8.9.1<br> Downloading <a href="http://downloads.sourceforge.net/wxpython/wxPython-src-2.8.9.1.tar.bz2" rel="nofollow">http://downloads.sourceforge.net/wxpython/wxPython-src-2.8.9.1.tar.bz2</a><br> Processing wxPython-src-2.8.9.1.tar.bz2 <br> error: Couldn't find a setup script in /tmp/easy_install-tNg6FG/wxPython-src-2.8.9.1.tar.bz2 </i></p> http://stackoverflow.com/questions/1371510/set-max-width-for-frame-with-scrolledwindow-in-wxpython 0 Set Max Width for Frame with ScrolledWindow in wxPython Cristian 2009-09-03T05:05:53Z 2009-11-03T23:36:51Z <p>I created a Frame object and I want to limit the width it can expand to. The only window in the frame is a ScrolledWindow object and that contains all other children. I have a lot of objects arranged with a BoxSizer oriented vertically so the ScrolledWindow object gets pretty tall. There is often a scrollbar to the right so you can scroll up and down.</p> <p>The problem comes when I try to set a max size for the frame. I'm using the <code>scrolled_window.GetBestSize()</code> (or <code>scrolled_window.GetEffectiveMinSize()</code>) functions of ScrolledWindow, but they don't take into account the vertical scrollbar. I end up having a frame that's just a little too narrow and there's a horizontal scrollbar that will never go away.</p> <p>Is there a method that will account compensate for the vertical scrollbar's width? If not, how would I get the scrollbar's width so I can manually add it to the my frame's max size?</p> <p>Here's an example with a tall but narrow frame:</p> <pre><code>class TallFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self, parent=None, title='Tall Frame') self.scroll = wx.ScrolledWindow(parent=self) # our scroll area where we'll put everything scroll_sizer = wx.BoxSizer(wx.VERTICAL) # Fill the scroll area with something... for i in xrange(10): textbox = wx.StaticText(self.scroll, -1, "%d) Some random text" % i, size=(400, 100)) scroll_sizer.Add(textbox, 0, wx.EXPAND) self.scroll.SetSizer(scroll_sizer) self.scroll.Fit() width, height = self.scroll.GetBestSize() self.SetMaxSize((width, -1)) # Trying to limit the width of our frame self.scroll.SetScrollbars(1, 1, width, height) # throwing up some scrollbars </code></pre> <p>If you create this frame you'll see that <code>self.SetMaxSize</code> is set too narrow. There will always be a horizontal scrollbar since <code>self.scroll.GetBestSize()</code> didn't account for the width of scrollbar.</p> http://stackoverflow.com/questions/1645630/better-version-of-fakemodal 0 better version of fakemodal? Brett Stottlemyer 2009-10-29T18:20:24Z 2009-10-29T18:20:24Z <p>I found a code snippet (<a href="http://aspn.activestate.com/ASPN/Mail/Message/wxpython-users/3695248" rel="nofollow">http://aspn.activestate.com/ASPN/Mail/Message/wxpython-users/3695248</a>) for a "fakemodal" dialog. This works for what I am doing, but I would like to make it act more like a modal dialog.</p> <p>My problem - I have a main window and a 2nd dialog window. The 2nd dialog is non-modal. I would like to open a sub-window of the 2nd dialog, and have it act modally only for the 2nd dialog, not the main window. That is, the user should still be able to interact with the main window, but not the 2nd dialog (until the sub-window is closed). fakemodal works, but trying to click on the 2nd dialog doesn't respond the same as a modal window (i.e., on XP there is a system beep and the sub-window is focused).</p> <p>How can I add these features with fakemodal?</p> <p>FYI, here's the code for fakemodal</p> <pre><code>def FakeModal(self): self.CenterOnParent() self.GetParent().Enable(False) wx.Dialog.Show(self) self.Raise() then when closing: def MyClose(self): self.GetParent().Enable(True) self.Close() </code></pre> <p>Thanks, Brett</p> http://stackoverflow.com/questions/1628010/using-the-same-handler-for-multiple-wx-textctrls 0 Using the same handler for multiple wx.TextCtrls? Jay P. 2009-10-27T00:07:17Z 2009-10-27T02:05:13Z <p>I'm having a bit of trouble with a panel that has two wxPython TextCtrls in it. I want either an EVT_CHAR or EVT_KEY_UP handler bound to both controls, and I want to be able to tell which TextCtrl generated the event. I would think that event.Id would tell me this, but in the following sample code it's always 0. Any thoughts? I've only tested this on OS X.</p> <p>This code simply checks that both TextCtrls have some text in them before enabling the Done button</p> <pre><code>import wx class MyFrame(wx.Frame): def __init__(self, parent, ID, title): wx.Frame.__init__(self, parent, ID, title, wx.DefaultPosition, wx.Size(200, 150)) self.panel = BaseNameEntryPanel(self) class BaseNameEntryPanel(wx.Panel): def __init__(self, parent): wx.Panel.__init__(self, parent, -1) self.entry = wx.TextCtrl(self, wx.NewId()) self.entry2 = wx.TextCtrl(self, wx.NewId()) self.donebtn = wx.Button(self, wx.NewId(), "Done") self.donebtn.Disable() vsizer = wx.BoxSizer(wx.VERTICAL) vsizer.Add(self.entry, 1, wx.EXPAND|wx.GROW) vsizer.Add(self.entry2, 1, wx.EXPAND|wx.GROW) vsizer.Add(self.donebtn, 1, wx.EXPAND|wx.GROW) self.SetSizer(vsizer) self.Fit() self.entry.Bind(wx.EVT_KEY_UP, self.Handle) self.entry2.Bind(wx.EVT_KEY_UP, self.Handle) def Handle(self, event): keycode = event.GetKeyCode() print keycode, event.Id # &lt;- event.Id is always 0! def checker(entry): return bool(entry.GetValue().strip()) self.donebtn.Enable(checker(self.entry) and checker(self.entry2)) class MyApp(wx.App): def OnInit(self): frame = MyFrame(None, -1, "Hello from wxPython") frame.Show(True) self.SetTopWindow(frame) return True app = MyApp(0) app.MainLoop() </code></pre> http://stackoverflow.com/questions/441815/pythoncard-item-setsize 1 Pythoncard item setsize damnsweet 2009-01-14T03:29:10Z 2009-10-23T15:55:26Z <p>Below is the base class of my pythoncard application</p> <pre><code>class MyBackground(model.Background): def on_initialize(self, event): # if you have any initialization # including sizer setup, do it here self.setLayout() def setLayout(self): sizer1 = wx.BoxSizer(wx.VERTICAL) # main sizer for item in self.components.itervalues(): item.SetSize(item.GetBestSize()) print item.GetBestSize(),item.GetSize() # here sizer1.Add(item, 0, wx.ALL, 10) sizer1.Fit(self) self.panel.SetSizer(sizer1) self.panel.Layout() self.visible = 1 </code></pre> <p>which uses the resource file with content below</p> <pre><code>{'application':{'type':'Application', 'name':'Template', 'backgrounds': [ {'type':'Background', 'name':'bgTemplate', 'title':u'Standard Template with no menus', 'size': (800, 600), 'statusBar':1, 'style':['wx.MINIMIZE_BOX', 'wx.CLOSE_BOX', 'wx.MAXIMIZE_BOX', 'wx.FRAME_SHAPED', 'wx.CAPTION', 'wx.DEFAULT_FRAME_STYLE', 'wx.FULL_REPAINT_ON_RESIZE', 'wx.HW_SCROLLBAR_AUTO'], 'components': [ {'backgroundColor': '&amp;H00FFFFFF&amp;', 'name': 'MinMax0', 'position': (1080, 9900), 'size': (732, 220), 'text': '10000', 'type': 'TextField'}]}]} </code></pre> <p>line marked with 'here' prints (80, 21) (732, 220) , which i expected to be (80, 21) (80, 21). How can i set the size of the components in pythoncard application? </p> http://stackoverflow.com/questions/1470453/how-to-check-which-part-of-app-is-consuming-cpu 0 How to check which part of app is consuming CPU? Anurag Uniyal 2009-09-24T08:45:56Z 2009-10-22T16:35:43Z <p>I have a wxPython app which has many worker threads, idle event cycles, and many other such event handling code which can consume CPU, for now when app is not being interacted with consumes about 8-10% CPU.</p> <p>Question:</p> <p>Is there a tool which can tell which part/threads of my app is consuming most CPU? If there are no such generic tools, I am willing to know the approaches you usually take to tackle such scenarios? e.g. disabling part of app, trace etc</p> <p><strong>Edit:</strong> May be my question's language is ambiguous, I do not want to know which function or code block in my code takes up most resources, for that I can use profiler. What I want to know is when I run my app, and I see cpu usage it is 8-10%, now is there a way to know what different parts, threads of my app are using up that 10% cpu? Basically at that instant i want to know which part(s) of code is running?</p> http://stackoverflow.com/questions/464463/qt-being-now-released-under-lgpl-would-you-recommend-it-over-wxwidgets 7 Qt being now released under LGPL, would you recommend it over wxWidgets ? Mapad 2009-01-21T08:40:58Z 2009-10-20T04:10:12Z <p>I am quite a heavy user of wxWidgets, partly because of licensing reasons.</p> <ul> <li>How do you see the future of wxWidgets in prospect of the <a href="http://www.qtsoftware.com/about/licensing" rel="nofollow">recent announcement</a> of Qt now being released under LGPL?</li> <li>Do you think wxwidget is still a good technical choice for new projects ? Or would you recommand adopting Qt, because it is going to be a de-facto standard. </li> <li>I am also interested about the possible implications this will have on their bindings with the most common scripting languages (e.g. PyQt, wxPython, wxRuby). Why PyQt is so under-used when it has a professional grade designer and wxPython not?</li> </ul> <h3>Related:</h3> <blockquote> <p><a href="http://stackoverflow.com/questions/443546/qt-goes-lgpl-on-windows-is-it-good-enough-to-use-instead-of-mfc">http://stackoverflow.com/questions/443546/qt-goes-lgpl-on-windows-is-it-good-enough-to-use-instead-of-mfc</a> </p> </blockquote> http://stackoverflow.com/questions/1400179/how-do-i-scroll-a-wxpython-wx-html-htmlwindow-back-down-to-where-it-was-when-the 2 How do I scroll a wxPython wx.html.HtmlWindow back down to where it was when the user clicked a link? oofoe 2009-09-09T14:45:57Z 2009-10-16T16:17:26Z <p>I am using a wxPython wx.html.HtmlWindow to display part of my interface. The user can scroll down a list of links in a window smaller than the list. When they click on a link, I need to repaint the web page, but I want to return the page position back to where they clicked it. </p> <p>I've tried MouseEvent.GetLogicalPosition() on the event, but it wants a DC and the best I've been able to do is get the same information as GetPosition(), so I must not be feeding it the right one.</p> <p>I also tried HtmlWindow.CalcScrolledPosition(), but apparently that isn't available in HtmlWindow because I get a NotImplementedError...</p> <p>What I would like is a scroll position that can be derived from the MouseEvent, or the OnLinkClicked information.</p> <p>I know about HtmlWindow.ScrollToAnchor(), but it's flaky and unaesthetic -- I would prefer to bypass it if possible so that I can scroll back <em>exactly</em> to where the user clicked.</p> <p>Thanks!</p> http://stackoverflow.com/questions/1145662/py2exe-compiled-python-windows-application-wont-run-because-of-dll 4 py2exe: Compiled Python Windows Application won't run because of DLL SoaperGEM 2009-07-17T21:01:13Z 2009-10-15T17:40:27Z <p>I will confess I'm very new to Python and I don't really know what I'm doing yet. Recently I created a very small Windows application using Python 2.6.2 and wxPython 2.8. And it works great; I'm quite pleased with how well it works normally. By normally I mean when I invoke it directly through the Python interpreter, like this:</p> <pre><code>&gt; python myapp.py </code></pre> <p>However, I wanted to go a step further and actually compile this into a standalone executable file. So I followed <a href="http://wiki.wxpython.org/DistributingYourApplication" rel="nofollow">these instructions</a> from the wxPython wiki which utilize py2exe. At first it gave me errors in the command line, saying MSVCR90.dll was missing. Then I copied MSVCR90.dll to my Python\DLLs folder. That looked at first like it fixed it, since it successfully did what it needed to do. It did finish with a quick warning that there were some DLL files the program depends on and I may or may not need to distribute them.</p> <p>So I navigated into the dist folder that py2exe had created and tried running my executable. But trying to open it only popped up an error dialog that said:</p> <pre><code>This application failed to start because MSVCR90.dll was not found. Re-installing the application may fix this problem. </code></pre> <p>So I went ahead and copied MSVCR90.dll again into this dist folder. But that didn't do the trick. Then I copied it into the WINDOWS\system32 directory. That didn't do it either. What do I need to do to get this thing to work?</p> http://stackoverflow.com/questions/1153643/how-do-i-debug-a-py2exe-application-failed-to-initialize-properly-error 1 How do I debug a py2exe 'application failed to initialize properly' error? SoaperGEM 2009-07-20T13:37:08Z 2009-10-15T17:07:57Z <p>I'm very new to Python in general, but I made an app in Python 2.6 / wxPython 2.8 that works perfectly when I run it through Python. But I wanted to go a step further and be able to deploy it as a Windows executable, so I've been trying out py2exe. But I haven't been able to get it to work. It would always compile an exe, but when I actually try to run that it barks some cryptic error message. At first they were simple messages saying it couldn't find certain DLLs, but even after giving it all the DLLs it wanted, it now returns this:</p> <pre><code>The application failed to initialize properly (0xc0000142). Click OK to terminate the application. </code></pre> <p>So I broke things down and just made a very, very simple application utilizing wxPython just to see if that would work, or if some of the more complicated features of my original app were getting in the way. But even my simple test returned the same error. Here's the code for the simple test script:</p> <pre><code>import wx class MainWindow(wx.Frame): def __init__(self, parent, id, title): wx.Frame.__init__(self, parent, wx.ID_ANY, title, style=wx.DEFAULT_FRAME_STYLE ^ wx.MAXIMIZE_BOX) panel = wx.Panel(self, -1, style = wx.TAB_TRAVERSAL | wx.CLIP_CHILDREN | wx.FULL_REPAINT_ON_RESIZE) main_sizer = wx.BoxSizer(wx.VERTICAL) testtxt = wx.StaticText(panel, -1, label='This is a test!') main_sizer.Add(testtxt, 0, wx.ALIGN_CENTER) panel.SetSizerAndFit(main_sizer) self.Show(1) return app = wx.PySimpleApp() frame = MainWindow(None, -1, 'Test App') app.MainLoop() </code></pre> <p>And here's the py2exe setup script I used:</p> <pre><code>#!/usr/bin/python from distutils.core import setup import py2exe manifest = """ &lt;?xml version="1.0" encoding="UTF-8" standalone="yes"?&gt; &lt;assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"&gt; &lt;assemblyIdentity version="0.64.1.0" processorArchitecture="x86" name="Controls" type="win32" /&gt; &lt;description&gt;Test Program&lt;/description&gt; &lt;dependency&gt; &lt;dependentAssembly&gt; &lt;assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="X86" publicKeyToken="6595b64144ccf1df" language="*" /&gt; &lt;/dependentAssembly&gt; &lt;/dependency&gt; &lt;/assembly&gt; """ setup( windows = [ { "script": "testme.py", "icon_resources": [(1, "testme.ico")], "other_resources": [(24,1, manifest)] } ], data_files=["testme.ico"] </code></pre> <p>)</p> <p>Then I run <code>python setup.py py2exe</code>, it generates the EXE file, warns about some DLL files (which I subsequently copy into the dist directory), but then when I try to run the EXE, I get the error I quoted above immediately.</p> http://stackoverflow.com/questions/441256/py2exe-the-application-configuration-is-incorrect 3 Py2Exe - "The application configuration is incorrect." Hach-Que 2009-01-13T23:11:01Z 2009-10-15T06:26:17Z <p>I've compiled my Python program using Py2Exe, and on the client's computer we've satisfied all the dependencies using dependency walker, but we still get "The application configuration is incorrect. Reinstalling the application may correct the problem." I'm also using wxPython.</p> <p>The client does not have administrator access.</p> <p>Any ideas?</p> http://stackoverflow.com/questions/323424/py2exe-fails-to-generate-an-executable 9 py2exe fails to generate an executable Charles Anderson 2008-11-27T10:31:51Z 2009-10-15T06:23:53Z <p>I am using python 2.6 on XP. I have just installed py2exe, and I can successfully create a simple hello.exe from a hello.py. However, when I try using py2exe on my real program, py2exe produces a few information messages but fails to generate anything in the dist folder. </p> <p>My setup.py looks like this:</p> <pre><code>from distutils.core import setup import py2exe setup(console=['ServerManager.py']) </code></pre> <p>and the py2exe output looks like this:</p> <pre><code>python setup.py py2exe running py2exe creating C:\DevSource\Scripts\ServerManager\build creating C:\DevSource\Scripts\ServerManager\build\bdist.win32 creating C:\DevSource\Scripts\ServerManager\build\bdist.win32\winexe creating C:\DevSource\Scripts\ServerManager\build\bdist.win32\winexe\collect-2.6 creating C:\DevSource\Scripts\ServerManager\build\bdist.win32\winexe\bundle-2.6 creating C:\DevSource\Scripts\ServerManager\build\bdist.win32\winexe\temp creating C:\DevSource\Scripts\ServerManager\dist *** searching for required modules *** *** parsing results *** creating python loader for extension 'wx._misc_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_misc_.pyd -&gt; wx._misc_.pyd) creating python loader for extension 'lxml.etree' (C:\Python26\lib\site-packages\lxml\etree.pyd -&gt; lxml.etree.pyd) creating python loader for extension 'win32pipe' (C:\Python26\lib\site-packages\win32\win32pipe.pyd -&gt; win32pipe.pyd) creating python loader for extension 'win32api' (C:\Python26\lib\site-packages\win32\win32api.pyd -&gt; win32api.pyd) creating python loader for extension 'select' (C:\Python26\DLLs\select.pyd -&gt; select.pyd) creating python loader for extension '_socket' (C:\Python26\DLLs\_socket.pyd -&gt; _socket.pyd) creating python loader for extension 'unicodedata' (C:\Python26\DLLs\unicodedata.pyd -&gt; unicodedata.pyd) creating python loader for extension 'wx._windows_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_windows_.pyd -&gt; wx._windows_.pyd) creating python loader for extension 'wx._core_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_core_.pyd -&gt; wx._core_.pyd) creating python loader for extension 'wx._gdi_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_gdi_.pyd -&gt; wx._gdi_.pyd) creating python loader for extension 'wx._controls_' (C:\Python26\lib\site-packages\wx-2.8-msw-unicode\wx\_controls_.pyd -&gt; wx._controls_.pyd) creating python loader for extension '_ssl' (C:\Python26\DLLs\_ssl.pyd -&gt; _ssl.pyd) creating python loader for extension 'bz2' (C:\Python26\DLLs\bz2.pyd -&gt; bz2.pyd) *** finding dlls needed *** </code></pre> <p>py2exe seems to have found all my imports (though I was a bit surprised to see win32 mentioned, as I am not explicitly importing it). Also, my program starts up quite happily with this command:</p> <pre><code>python ServerManager.py </code></pre> <p>Clearly I am doing something fundamentally wrong, but in the absence of any error messages from py2exe I have no idea what.</p> http://stackoverflow.com/questions/1521670/close-python-when-parent-is-closed 0 Close Python when Parent is closed Fry 2009-10-05T18:28:55Z 2009-10-07T08:10:11Z <p>I have a Python program (PP) that loads another Program(AP) via COM, gets its window handle and sets it to be the PP parent.</p> <p>This works pretty well except that I can't control that AP still has their [X] button available in the top left corner. Since this is a pretty obvious place for the user to close when they are done with the program, I tried this and it left the PP in the Task Manager running, but not visible with no possible way to kill it other than through Task Manager. Any ideas on how to handle this? I expect it to be rather Common that the user closes in this manner.</p> <p>Thanks!</p>