User Toni Ruža - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T01:27:55Z http://stackoverflow.com/feeds/user/6267 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1450639/wx-staticbitmap-or-wx-dc-which-is-better-to-use-for-constantly-changing-images/1450677#1450677 0 Answer by Toni Ruža for wx.StaticBitmap or wx.DC: Which is better to use for constantly changing images? Toni Ruža 2009-09-20T09:48:31Z 2009-09-20T09:48:31Z <p>You don't have to delete the <code>StaticBitmap</code>, you can just set another bitmap to it using it's <code>SetBitmap</code> method.</p> <p>If the new image has different dimensions you will probably have to do an explicit <code>Layout</code> call on it's parent so that the sizers would adjust.</p> http://stackoverflow.com/questions/1415727/how-to-create-hover-effect-on-staticbitmap-in-wxpython/1415815#1415815 0 Answer by Toni Ruža for How to create hover effect on StaticBitmap in wxpython? Toni Ruža 2009-09-12T18:44:06Z 2009-09-12T18:44:06Z <p>It looks like this is a wxGTK bug, ENTER and LEAVE events work fine on windows. You should direct the attention of the core developers to the problem, a good place to do this is their <a href="http://trac.wxwidgets.org/" rel="nofollow">bug tracker</a>. This is an issue you should not have to work around IMHO.</p> <p>I have found that GenericButtons do not have this problem on wxGTK, so maybe you can use that until StaticBitmap gets fixed.</p> <pre><code>#!/usr/bin/python # -*- coding: utf-8 -*- import wx from wx.lib import buttons def onWindow(event): print "window event:", event.m_x, event.m_y def onMotion(event): print "motion event:", event.m_x, event.m_y app = wx.App() imageA = wx.Image("b.gif", wx.BITMAP_TYPE_ANY).ConvertToBitmap() imageB = wx.Image("a.gif", wx.BITMAP_TYPE_ANY).ConvertToBitmap() frame = wx.Frame(None, wx.ID_ANY, title="Hover effect", size=(100+imageA.GetWidth(), 100+imageA.GetHeight())) w = wx.Window(frame) #bmp = wx.StaticBitmap(w, -1, imageA, (50, 50), (imageA.GetWidth(), imageA.GetHeight())) bmp = buttons.GenBitmapButton(w, -1, imageA, style=wx.BORDER_NONE) #bmp.Bind(wx.EVT_MOTION, onMotion) bmp.Bind(wx.EVT_ENTER_WINDOW, onWindow) bmp.Bind(wx.EVT_LEAVE_WINDOW, onWindow) frame.Show() app.MainLoop() </code></pre> http://stackoverflow.com/questions/1351448/how-to-make-custom-buttons-in-wx/1351690#1351690 1 Answer by Toni Ruža for How to make custom buttons in wx? Toni Ruža 2009-08-29T15:19:49Z 2009-08-29T15:19:49Z <p>Try using a <a href="http://www.wxpython.org/docs/api/wx.lib.buttons-module.html" rel="nofollow">Generic Button</a> or a <a href="http://www.wxpython.org/docs/api/wx.BitmapButton-class.html" rel="nofollow">Bitmap Button</a>.</p> http://stackoverflow.com/questions/1323361/getting-wing-ide-to-stop-catching-the-exceptions-that-wxpython-catches/1323458#1323458 0 Answer by Toni Ruža for Getting Wing IDE to stop catching the exceptions that wxPython catches Toni Ruža 2009-08-24T16:40:33Z 2009-08-24T17:27:19Z <p>There is a <code>Ignore this exception location</code> check box in the window where the exception is reported in wing, or you could explicitly silence that specific exception in you code with a <code>try except</code> block.</p> http://stackoverflow.com/questions/1265821/changing-height-of-an-object-in-wxpython/1265988#1265988 3 Answer by Toni Ruža for Changing height of an object in wxPython Toni Ruža 2009-08-12T12:49:26Z 2009-08-12T12:49:26Z <p>For the width or height to be automatically determined based on context you use for it the value of -1, for example <code>(-1, 100)</code> for a height of 100 and automatic width.</p> <p>The default size for all controls is usually <code>(-1, -1)</code>.</p> <p>If a width or height is specified and the sizer item for the control doesn't have <code>wx.EXPAND</code> flag set (note that even if this flag is set some sizers won't expand in both directions by default) you might call it "locked" as it won't chage that dimension.</p> <p>Make sure to study the workings of sizers in depth as it is one of the most important things in GUI design.</p> http://stackoverflow.com/questions/1265599/system-standard-sound-in-python/1265745#1265745 1 Answer by Toni Ruža for System standard sound in Python Toni Ruža 2009-08-12T12:01:39Z 2009-08-12T12:01:39Z <p>From the documentation:</p> <blockquote> <p><strong>wxTopLevelWindow::RequestUserAttention</strong></p> <p><strong>void RequestUserAttention(int flags = wxUSER_ATTENTION_INFO)</strong></p> <p>Use a system-dependent way to attract users attention to the window when it is in background.</p> <p>flags may have the value of either wxUSER_ATTENTION_INFO (default) or wxUSER_ATTENTION_ERROR which results in a more drastic action. When in doubt, use the default value.</p> <p>Note that this function should normally be only used when the application is not already in foreground.</p> <p>This function is currently implemented for Win32 where it flashes the window icon in the taskbar, and for wxGTK with task bars supporting it.</p> </blockquote> http://stackoverflow.com/questions/1241708/specifying-relative-path-in-py2exe/1242020#1242020 0 Answer by Toni Ruža for Specifying relative path in py2exe Toni Ruža 2009-08-06T23:12:51Z 2009-08-06T23:12:51Z <p>How can you speak of py2exe and cross-platform? py2exe is windows only.</p> <p>As far as I know, you have to keep your setup file in the same place as your script. Or if you don't have to it is certainly a strong convention.</p> <p>What you can do is define a dist_dir option so that your program gets built in the right place.</p> <pre><code>setup( options = {"py2exe": {"dist_dir": os.path.join("..", "foo", "bar")}}, windows = ["pythonturtle.py"], ) </code></pre> http://stackoverflow.com/questions/1230630/how-do-you-force-refresh-of-a-wx-panel/1231708#1231708 1 Answer by Toni Ruža for How do you force refresh of a wx.Panel? Toni Ruža 2009-08-05T07:41:06Z 2009-08-05T07:41:06Z <p>You need to call the <a href="http://www.wxpython.org/docs/api/wx.Window-class.html#Update" rel="nofollow"><code>Update</code></a> method.</p> http://stackoverflow.com/questions/1229525/opening-a-wx-frame-in-python-via-a-new-thread/1229823#1229823 0 Answer by Toni Ruža for Opening a wx.Frame in Python via a new thread Toni Ruža 2009-08-04T20:40:48Z 2009-08-04T20:40:48Z <p>You don't need threads for this. The drawback is that the splash window will block while loading but that is an issue only if you want to update it's contents (animate it) or if you want to be able to drag it. An issue that can be solved by periodically calling <code>wx.SafeYield</code> for example.</p> <pre><code>import time import wx class Loader(wx.Frame): def __init__(self): wx.Frame.__init__(self, None) sizer = wx.BoxSizer(wx.VERTICAL) self.SetSizer(sizer) self.btn1 = wx.Button(self, label="Option 1") self.btn2 = wx.Button(self, label="Option 2") sizer.Add(self.btn1, flag=wx.EXPAND) sizer.Add(self.btn2, flag=wx.EXPAND) self.btn1.Bind(wx.EVT_BUTTON, self.OnOption1) self.btn2.Bind( wx.EVT_BUTTON, lambda e: wx.MessageBox("There is no option 2") ) def OnOption1(self, event): self.btn1.Hide() self.btn2.Hide() self.Sizer.Add( wx.StaticText(self, label="Loading Option 1..."), 1, wx.ALL | wx.EXPAND, 15 ) self.Layout() self.Update() AppFrame(self).Show() class AppFrame(wx.Frame): def __init__(self, parent): wx.Frame.__init__(self, parent) time.sleep(3) parent.Hide() # the top window (Loader) is hidden so the app needs to be told to exit # when this window is closed self.Bind(wx.EVT_CLOSE, lambda e: wx.GetApp().ExitMainLoop()) app = wx.PySimpleApp() app.TopWindow = Loader() app.TopWindow.Show() app.MainLoop() </code></pre> http://stackoverflow.com/questions/1224567/whats-the-state-of-the-art-in-python-programming-in-windows/1224773#1224773 1 Answer by Toni Ruža for What's the state-of-the-art in Python programming in Windows? Toni Ruža 2009-08-03T21:43:24Z 2009-08-03T21:43:24Z <p>There are no set standards in these matters, and for good reasons:</p> <ul> <li>there is a fair amount of good choice</li> <li>different people are productive with different tools</li> <li>different tools and libraries are suited for solving different problems</li> </ul> <p>That said, I think it's a valid question exactly because there is a fair amount of good choice. When there is too much choice people often do not chose at all and move on. You still need to do your own research to decide what is best for you but you may find here some good starting points.</p> <p>Here is what I use professionally on windows:</p> <ul> <li>python 2.5.4</li> <li>latest wxPython</li> <li>XRC Resource Editor from the wxPython docs &amp; demos for the grunt of the tedious GUI design</li> <li><a href="http://codespeak.net/lxml/" rel="nofollow">lxml</a> or <a href="http://gnosis.cx/download/gnosis/" rel="nofollow">gnosis utils</a> for xml</li> <li><a href="http://www.wingware.com/" rel="nofollow">WingIDE Professional</a></li> </ul> http://stackoverflow.com/questions/1204378/getting-total-free-ram-from-within-python/1204839#1204839 3 Answer by Toni Ruža for Getting total/free RAM from within python Toni Ruža 2009-07-30T06:43:20Z 2009-07-30T14:08:55Z <p>For the free memory part, there is a function in the wx library:</p> <pre><code>wx.GetFreeMemory() </code></pre> http://stackoverflow.com/questions/1198067/why-is-wxgridsizer-much-slower-to-initialize-on-a-wxdialog-then-on-a-wxframe 2 Why is wxGridSizer much slower to initialize on a wxDialog then on a wxFrame? Toni Ruža 2009-07-29T04:36:47Z 2009-07-30T06:58:31Z <p>It seems that this is specific to windows, here is an example that reproduces the effect:</p> <pre><code>import wx def makegrid(window): grid = wx.GridSizer(24, 10, 1, 1) window.SetSizer(grid) for i in xrange(240): cell = wx.Panel(window) cell.SetBackgroundColour(wx.Color(i, i, i)) grid.Add(cell, flag=wx.EXPAND) class TestFrame(wx.Frame): def __init__(self, parent): wx.Frame.__init__(self, parent) makegrid(self) class TestDialog(wx.Dialog): def __init__(self, parent): wx.Dialog.__init__(self, parent) makegrid(self) class Test(wx.Frame): def __init__(self): wx.Frame.__init__(self, None) btn1 = wx.Button(self, label="Show Frame") btn2 = wx.Button(self, label="Show Dialog") sizer = wx.BoxSizer(wx.VERTICAL) self.SetSizer(sizer) sizer.Add(btn1, flag=wx.EXPAND) sizer.Add(btn2, flag=wx.EXPAND) btn1.Bind(wx.EVT_BUTTON, self.OnShowFrame) btn2.Bind(wx.EVT_BUTTON, self.OnShowDialog) def OnShowFrame(self, event): TestFrame(self).Show() def OnShowDialog(self, event): TestDialog(self).ShowModal() app = wx.PySimpleApp() app.TopWindow = Test() app.TopWindow.Show() app.MainLoop() </code></pre> <p>I have tried this on the following configurations:</p> <ul> <li>Windows 7 with Python 2.5.4 and wxPython 2.8.10.1</li> <li>Windows XP with Python 2.5.2 and wxPython 2.8.7.1</li> <li>Windows XP with Python 2.6.0 and wxPython 2.8.9.1</li> <li>Ubuntu 9.04 with Python 2.6.2 and wxPython 2.8.9.1</li> </ul> <p>The wxDialog wasn't slow only on Ubuntu.</p> http://stackoverflow.com/questions/1198067/why-is-wxgridsizer-much-slower-to-initialize-on-a-wxdialog-then-on-a-wxframe/1204886#1204886 1 Answer by Toni Ruža for Why is wxGridSizer much slower to initialize on a wxDialog then on a wxFrame? Toni Ruža 2009-07-30T06:58:31Z 2009-07-30T06:58:31Z <p>I got a reply on the <a href="http://groups.google.com/group/wxPython-users/browse%5Fthread/thread/66762899a9f3b697#" rel="nofollow">wxPython-users mailing list</a>, the problem can be fixed by calling <code>Layout</code> explicitly before the dialog is shown.</p> http://stackoverflow.com/questions/1185156/creating-child-frames-of-main-frame-in-wxpython/1185226#1185226 1 Answer by Toni Ruža for Creating child frames of main frame in wxPython. Toni Ruža 2009-07-26T18:37:56Z 2009-07-26T18:37:56Z <pre><code>class AboutFrame(wx.Frame): title = "About this program" def __init__(self): wx.Frame.__init__(self, wx.GetApp().TopWindow, title=self.title) </code></pre> http://stackoverflow.com/questions/1181391/dynamic-plotting-in-wxpython/1181433#1181433 2 Answer by Toni Ruža for dynamic plotting in wxpython Toni Ruža 2009-07-25T07:01:02Z 2009-07-25T07:01:02Z <blockquote> <p>To do this, I basically use an array to store my results, in which I keep appending it to</p> </blockquote> <p>Try limiting the size of this array, either by deleting old data or by deleting every n-th entry (the screen resolution will prevent all entries to be displayed anyway). I assume you write all the data to disk so you won't lose anything.</p> <p>Also, analise your code for memory leaks. Stuff you use and don't need anymore but that doesn't get garbage-collected because you still have a reference to it.</p> http://stackoverflow.com/questions/1006598/wxprogressdialog-like-behaviour-for-a-wxdialog/1007845#1007845 1 Answer by Toni Ruža for wxProgressDialog like behaviour for a wxDialog Toni Ruža 2009-06-17T15:37:32Z 2009-06-17T17:56:20Z <p>Just use <code>Show</code> instead of <code>ShowModal</code>.</p> <p>If your function (the <code>print "xxx"</code> part) runs for a long time you will either have to manually call <code>wx.SafeYield</code> every so often or move your work to a separate thread and send custom events to your dialog from it.</p> <p>One more tip. As I understand, you want to execute some code after the modal dialog is shown, here is a little trick for a special bind to <code>EVT_INIT_DIALOG</code> that accomplishes just that.</p> <pre><code>import wx class TestFrame(wx.Frame): def __init__(self): wx.Frame.__init__(self, None) btn = wx.Button(self, label="Show Dialog") btn.Bind(wx.EVT_BUTTON, self.ShowDialog) def ShowDialog(self, event): dlg = wx.Dialog(self) dlg.Bind(wx.EVT_INIT_DIALOG, lambda e: wx.CallAfter(self.OnModal, e)) dlg.ShowModal() dlg.Destroy() def OnModal(self, event): wx.MessageBox("Executed after ShowModal") app = wx.PySimpleApp() app.TopWindow = TestFrame() app.TopWindow.Show() app.MainLoop() </code></pre> http://stackoverflow.com/questions/996129/py2exe-windows-service-problem/996645#996645 0 Answer by Toni Ruža for py2exe windows service problem Toni Ruža 2009-06-15T15:07:59Z 2009-06-15T15:07:59Z <p>You will find an example in the py2exe package, look in site-packages\py2exe\samples\advanced.</p> http://stackoverflow.com/questions/962323/instance-methods-called-in-a-separate-thread-than-the-instantiation-thread/962862#962862 0 Answer by Toni Ruža for Instance methods called in a separate thread than the instantiation thread Toni Ruža 2009-06-07T21:23:13Z 2009-06-07T21:23:13Z <p>The sole act of passing instance methods between threads is safe as long as you properly synchronize eventual destruction of those instances (threads share memory so it really doesn't matter which one did the allocation/initialization of a bit of it).</p> <p>The overall thread safety depends on what those methods actually do, so just make them "play nice" and you should be ok.</p> http://stackoverflow.com/questions/901704/wxwidget-grid/902083#902083 2 Answer by Toni Ruža for Wxwidget Grid Toni Ruža 2009-05-23T18:05:19Z 2009-05-23T18:05:19Z <p>You could make your own GridTableBase that implements this, for a simple example to get you started see my answer to <a href="http://stackoverflow.com/questions/328003/wxpython-updating-a-dict-or-other-appropriate-data-type-from-wx-lib-sheet-csheet/328078#328078">this</a> question.</p> http://stackoverflow.com/questions/818942/wxpython-cross-platform-way-to-conform-ok-cancel-button-order/819026#819026 3 Answer by Toni Ruža for WxPython: Cross-Platform Way to Conform Ok/Cancel Button Order Toni Ruža 2009-05-04T06:48:22Z 2009-05-04T06:48:22Z <p>The appearance of a dialog can change only if you use stock dialogs (like wx.FileDialog), if you make your own the layout will stay the same on every platform.</p> <p>wx.Dialog has a CreateStdDialogButtonSizer method that creates a wx.StdDialogButtonSizer with standard buttons where you might see differences in layout on different platforms but you don't have to use that.</p> http://stackoverflow.com/questions/816887/wxpython-a-foldable-panel-widget/817095#817095 1 Answer by Toni Ruža for wxPython: A foldable panel widget Toni Ruža 2009-05-03T13:47:19Z 2009-05-03T17:09:03Z <p>Here is one way using wx.SplitterWindow</p> <pre><code>import wx, wx.calendar class FoldableWindowContainer(wx.Panel): def __init__(self, parent, left, right): wx.Panel.__init__(self, parent) sizer = wx.BoxSizer(wx.HORIZONTAL) self.SetSizer(sizer) self.splitter = wx.SplitterWindow(self, style=wx.SP_LIVE_UPDATE) left.Reparent(self.splitter) right.Reparent(self.splitter) self.left = left self.right = right self.splitter.SplitVertically(self.left, self.right) self.splitter.SetMinimumPaneSize(50) self.sash_pos = self.splitter.SashPosition sizer.Add(self.splitter, 1, wx.EXPAND) fold_button = wx.Button(self, size=(10, -1)) fold_button.Bind(wx.EVT_BUTTON, self.On_FoldToggle) sizer.Add(fold_button, 0, wx.EXPAND) def On_FoldToggle(self, event): if self.splitter.IsSplit(): self.sash_pos = self.splitter.SashPosition self.splitter.Unsplit() else: self.splitter.SplitVertically(self.left, self.right, self.sash_pos) class FoldTest(wx.Frame): def __init__(self): wx.Frame.__init__(self, None) left = wx.Panel(self, style=wx.BORDER_SUNKEN) right = wx.Panel(self, style=wx.BORDER_SUNKEN) left_sizer = wx.BoxSizer(wx.VERTICAL) left.SetSizer(left_sizer) left_sizer.Add(wx.calendar.CalendarCtrl(left), 1, wx.EXPAND | wx.ALL, 5) left_sizer.Add(wx.Button(left, label="Act"), 0, wx.EXPAND | wx.ALL, 5) right_sizer = wx.BoxSizer(wx.VERTICAL) right.SetSizer(right_sizer) right_sizer.Add( wx.StaticText(right, label="Fold panel", style=wx.BORDER_RAISED), 1, wx.EXPAND | wx.ALL, 5 ) FoldableWindowContainer(self, left, right) app = wx.PySimpleApp() app.TopWindow = FoldTest() app.TopWindow.Show() app.MainLoop() </code></pre> <p>Also, check out wx.CollapsiblePane in the wxPython demos.</p> http://stackoverflow.com/questions/800849/nice-ide-for-wxpython-or-tkinter-gui-development/801181#801181 1 Answer by Toni Ruža for Nice IDE for wxPython or Tkinter GUI Development Toni Ruža 2009-04-29T06:52:14Z 2009-04-29T06:52:14Z <p>I use xrced (comes with wxPython). The GUI is defined in xml files, you have an autogenerated python file that automates some initialization then you subclass those autogenerated classes and do the rest of the initialization by hand. I find that this is a good way to blend the elegance of hand-written GUI code with ease of GUI code generation.</p> <p>For the code I use <a href="http://www.wingware.com/" rel="nofollow">WingIDE</a>, it's helpfull to have a good debuger and good source code completion when dealing with large libraries (or frameworks if you will) like wxPython.</p> <p>If you want more automation (and so, uglier code) try the latest version of <a href="http://boa-constructor.sourceforge.net/" rel="nofollow">Boa</a>, there are some nice introductory screencasts for it at <a href="http://showmedo.com/videos/series?name=wKQrywla5" rel="nofollow">ShowMeDo.com</a></p> http://stackoverflow.com/questions/783023/wxpython-using-evtidle/783386#783386 0 Answer by Toni Ruža for wxPython: Using EVT_IDLE Toni Ruža 2009-04-23T20:27:04Z 2009-04-23T20:34:59Z <p>Something like this (executes at most every second):</p> <pre><code>... def On_Idle(self, event): if not self.queued_batch: wx.CallLater(1000, self.Do_Batch) self.queued_batch = True def Do_Batch(self): # &lt;- insert your stuff here self.queued_batch = False ... </code></pre> <p>Oh, and don't forget to set self.queued_batch to False in the constructor and maybe call event.RequestMore() in some way in On_Idle.</p> http://stackoverflow.com/questions/778202/smtplib-and-gmail-python-script-problems/780516#780516 1 Answer by Toni Ruža for smtplib and gmail - python script problems Toni Ruža 2009-04-23T06:33:55Z 2009-04-23T06:33:55Z <p>Have you tried constructing a valid message?</p> <pre><code>from email.MIMEText import MIMEText msg = MIMEText('body') msg['Subject'] = 'subject' msg['From'] = "..." msg['Reply-to'] = "..." msg['To'] = "..." </code></pre> http://stackoverflow.com/questions/731759/showing-data-in-a-gui-where-the-data-comes-from-an-outside-source/732117#732117 0 Answer by Toni Ruža for Showing data in a GUI where the data comes from an outside source Toni Ruža 2009-04-08T22:21:50Z 2009-04-08T22:21:50Z <p>Here is the way I would do it (on windows):</p> <pre><code>import wx, wx.lib.newevent, threading import win32event, win32pipe, win32file, pywintypes, winerror NewMessage, EVT_NEW_MESSAGE = wx.lib.newevent.NewEvent() class MessageNotifier(threading.Thread): pipe_name = r"\\.\pipe\named_pipe_demo" def __init__(self, frame): threading.Thread.__init__(self) self.frame = frame def run(self): open_mode = win32pipe.PIPE_ACCESS_DUPLEX | win32file.FILE_FLAG_OVERLAPPED pipe_mode = win32pipe.PIPE_TYPE_MESSAGE sa = pywintypes.SECURITY_ATTRIBUTES() sa.SetSecurityDescriptorDacl(1, None, 0) pipe_handle = win32pipe.CreateNamedPipe( self.pipe_name, open_mode, pipe_mode, win32pipe.PIPE_UNLIMITED_INSTANCES, 0, 0, 6000, sa ) overlapped = pywintypes.OVERLAPPED() overlapped.hEvent = win32event.CreateEvent(None, 0, 0, None) while 1: try: hr = win32pipe.ConnectNamedPipe(pipe_handle, overlapped) except: # Error connecting pipe pipe_handle.Close() break if hr == winerror.ERROR_PIPE_CONNECTED: # Client is fast, and already connected - signal event win32event.SetEvent(overlapped.hEvent) rc = win32event.WaitForSingleObject( overlapped.hEvent, win32event.INFINITE ) if rc == win32event.WAIT_OBJECT_0: try: hr, data = win32file.ReadFile(pipe_handle, 64) win32file.WriteFile(pipe_handle, "ok") win32pipe.DisconnectNamedPipe(pipe_handle) wx.PostEvent(self.frame, NewMessage(data=data)) except win32file.error: continue class Messages(wx.Frame): def __init__(self): wx.Frame.__init__(self, None) self.messages = wx.TextCtrl(self, style=wx.TE_MULTILINE | wx.TE_READONLY) self.Bind(EVT_NEW_MESSAGE, self.On_Update) def On_Update(self, event): self.messages.Value += "\n" + event.data app = wx.PySimpleApp() app.TopWindow = Messages() app.TopWindow.Show() MessageNotifier(app.TopWindow).start() app.MainLoop() </code></pre> <p>Test it by sending some data with:</p> <pre><code>import win32pipe print win32pipe.CallNamedPipe(r"\\.\pipe\named_pipe_demo", "Hello", 64, 0) </code></pre> <p>(you also get a response in this case)</p> http://stackoverflow.com/questions/722298/how-can-i-get-the-width-of-a-wx-listctrl-and-its-column-name/722878#722878 1 Answer by Toni Ruža for How can I get the width of a wx.ListCtrl and its column name? Toni Ruža 2009-04-06T19:43:54Z 2009-04-06T19:43:54Z <p>Yes, you would have to make this yourself for wx.ListCtrl and I'm not sure it would be easy (or elegant) to do right.</p> <p>Consider using a wx.Grid, here is a small example to get you going:</p> <pre><code>import wx, wx.grid class GridData(wx.grid.PyGridTableBase): _cols = "This is a long column name,b,c".split(",") _data = [ "1 2 3".split(), "4,5,And here is a long cell value".split(","), "7 8 9".split() ] def GetColLabelValue(self, col): return self._cols[col] def GetNumberRows(self): return len(self._data) def GetNumberCols(self): return len(self._cols) def GetValue(self, row, col): return self._data[row][col] class Test(wx.Frame): def __init__(self): wx.Frame.__init__(self, None) grid = wx.grid.Grid(self) grid.SetTable(GridData()) grid.EnableEditing(False) grid.SetSelectionMode(wx.grid.Grid.SelectRows) grid.SetRowLabelSize(0) grid.AutoSizeColumns() app = wx.PySimpleApp() app.TopWindow = Test() app.TopWindow.Show() app.MainLoop() </code></pre> http://stackoverflow.com/questions/703262/most-efficient-way-of-loading-formatted-binary-files-in-python/704265#704265 1 Answer by Toni Ruža for Most efficient way of loading formatted binary files in Python Toni Ruža 2009-04-01T06:12:57Z 2009-04-01T06:12:57Z <p><a href="http://www.hl.id.au/projects/bdec/" rel="nofollow">bdec</a> seems promising.</p> http://stackoverflow.com/questions/694002/understanding-python-class-instances/694217#694217 0 Answer by Toni Ruža for Understanding Python Class instances Toni Ruža 2009-03-29T06:36:33Z 2009-03-29T22:11:47Z <p>If I understood you correctly you want a class attribute.</p> <p><strong>UPDATE:</strong> Added a way for automatically reseting the total</p> <pre><code>import random class Die(): _total = 0 @classmethod def total(cls): t = cls._total cls._total = 0 return t def __init__(self, s=6): self.sides = s def roll_die(self): x = random.randint(1,self.sides) self.__class__._total += x return x roll1 = Die() #Rolling die 1 with the default side of 6 roll2 = Die(4) #Rolling die 2 with 4 sides roll3 = Die(12) #Rolling die 3 with 12 sides print roll1.roll_die() print roll2.roll_die() print roll3.roll_die() print Die.total() print "--" print roll1.roll_die() print roll2.roll_die() print roll3.roll_die() print Die.total() </code></pre> http://stackoverflow.com/questions/692040/is-it-bad-form-to-call-a-classmethod-as-a-method-from-an-instance/692388#692388 3 Answer by Toni Ruža for Is it bad form to call a classmethod as a method from an instance? Toni Ruža 2009-03-28T07:35:40Z 2009-03-28T07:35:40Z <p>If you are tempted to call a class method from an instance you probably don't need a class method.</p> <p>In the example you gave a static method would be more appropriate precisely because of your last remark (no self/cls interaction).</p> <pre><code>class C(object): @staticmethod def f(x): return x + x </code></pre> <p>this way it's "good form" to do both</p> <pre><code>c = C() c.f(2) </code></pre> <p>and</p> <pre><code>C.f(2) </code></pre> http://stackoverflow.com/questions/683542/how-to-put-a-function-and-arguments-into-python-queue/683612#683612 4 Answer by Toni Ruža for how to put a function and arguments into python queue? Toni Ruža 2009-03-25T21:46:45Z 2009-03-25T21:46:45Z <pre><code>from Queue import * from thread import * from time import * q = Queue() def HandleMsg( arg1, arg2 ) : print arg1, arg2 def HandleAnotherMsg( arg1, arg2, arg3 ) : print arg1, arg2, arg3 def DestinationThread() : while True : f, args = q.get() f(*args) start_new_thread( DestinationThread, tuple() ) print "start" sleep( 1 ) q.put( (HandleMsg, [1, 2]) ) sleep( 1 ) q.put( (HandleAnotherMsg, [1, 2, 3]) ) sleep( 1 ) print "stop" </code></pre> http://stackoverflow.com/questions/1450639/wx-staticbitmap-or-wx-dc-which-is-better-to-use-for-constantly-changing-images/1450677#1450677 Comment by Toni Ruža on wx.StaticBitmap or wx.DC: Which is better to use for constantly changing images? Toni Ruža 2009-09-20T19:17:56Z 2009-09-20T19:17:56Z Look again <a href="http://docs.wxwidgets.org/stable/wx_wxstaticbitmap.html#wxstaticbitmapsetbitmap" rel="nofollow">docs.wxwidgets.org/stable/&hellip;</a> http://stackoverflow.com/questions/1006598/wxprogressdialog-like-behaviour-for-a-wxdialog/1007845#1007845 Comment by Toni Ruža on wxProgressDialog like behaviour for a wxDialog Toni Ruža 2009-06-18T06:06:11Z 2009-06-18T06:06:11Z When you give up control to this long running third party lib init in the main thread you will have trouble refreshing your UI (event based programing thing... functions should not run for a long time in the event loop). It's not impossible to solve but ask yourself is it worth the bother. You could just use a static &quot;loading...&quot; dialog using something like the example I gave and be done with it. http://stackoverflow.com/questions/1006598/wxprogressdialog-like-behaviour-for-a-wxdialog/1007845#1007845 Comment by Toni Ruža on wxProgressDialog like behaviour for a wxDialog Toni Ruža 2009-06-17T17:45:28Z 2009-06-17T17:45:28Z It seems to me that you are trying to force some logic that is tied to this dialog outside of it. Is there a good reason for this? Why can't the dialog do the print &quot;xxx&quot; when it's shown? http://stackoverflow.com/questions/901704/wxwidget-grid/902083#902083 Comment by Toni Ruža on Wxwidget Grid Toni Ruža 2009-05-30T06:14:34Z 2009-05-30T06:14:34Z You can intercept those deletions as well as any other action preformed on your data in the grid, see DeleteRows method in GridTableBase. If you would, for example, implement your data structure as a list-like object you could use the row index you get directly to index that list. The deletions you talk about would not be an issue because the grid and your data would always be in sync. http://stackoverflow.com/questions/901704/wxwidget-grid/902083#902083 Comment by Toni Ruža on Wxwidget Grid Toni Ruža 2009-05-25T08:58:28Z 2009-05-25T08:58:28Z By using GridTableBase you effectively bind your custom data structure to a Grid. Your custom data structure can implement all the extra functionality you need. For example, the GetValue and SetValue methods give you the row in the grid and your custom data structure can map those rows to IDs. http://stackoverflow.com/questions/816887/wxpython-a-foldable-panel-widget/817095#817095 Comment by Toni Ruža on wxPython: A foldable panel widget Toni Ruža 2009-05-03T17:10:39Z 2009-05-03T17:10:39Z Oh yeah, and you should reparent the panels in the <b>init</b> of the FWC. I made the changes and updated my example. http://stackoverflow.com/questions/816887/wxpython-a-foldable-panel-widget/817095#817095 Comment by Toni Ruža on wxPython: A foldable panel widget Toni Ruža 2009-05-03T16:55:01Z 2009-05-03T16:55:01Z You can use the example I gave only subclass from wx.Panel instead of wx.Frame and pass the two panels that go in the splitter window as arguments to the <b>init</b> (use it so that those panels and your FWC have the same parent). One more thing on another note, you might find the SetSashGravity method of wx.SplitterWindow useful. http://stackoverflow.com/questions/800849/nice-ide-for-wxpython-or-tkinter-gui-development/801181#801181 Comment by Toni Ruža on Nice IDE for wxPython or Tkinter GUI Development Toni Ruža 2009-04-29T08:29:42Z 2009-04-29T08:29:42Z Well, if one does it right... ;) http://stackoverflow.com/questions/694002/understanding-python-class-instances/694217#694217 Comment by Toni Ruža on Understanding Python Class instances Toni Ruža 2009-03-29T19:47:32Z 2009-03-29T19:47:32Z True, but thats not the use case Jb described (maybe he should clarify) and I don't agree that terms like &quot;strange&quot; or &quot;side effect&quot; are appropriate for describing this solution. BTW, the setting to zero could probably be automated by a getter. http://stackoverflow.com/questions/682923/dynamically-change-the-choices-in-a-wx-combobox/682978#682978 Comment by Toni Ruža on Dynamically change the choices in a wx.ComboBox() Toni Ruža 2009-03-25T20:54:10Z 2009-03-25T20:54:10Z or self.sf.AppendItems(['3', '4']) http://stackoverflow.com/questions/682822/redirecting-function-definitions-in-python/682836#682836 Comment by Toni Ruža on Redirecting function definitions in python Toni Ruža 2009-03-25T20:50:30Z 2009-03-25T20:50:30Z you can override them on the fly, the mistake was that Dan messed with instance methods instead of class methods. http://stackoverflow.com/questions/665942/how-to-write-a-function-that-takes-a-string-and-prints-the-letters-in-decreasing/666123#666123 Comment by Toni Ruža on How to write a function that takes a string and prints the letters in decreasing order of frequency? Toni Ruža 2009-03-21T20:00:00Z 2009-03-21T20:00:00Z To be fair, hyperboreean mentioned the count method first. Personally, I don't like that approach because it iterates through the string for every letter. Although, it helps for making an elegant one liner :) http://stackoverflow.com/questions/640802/writing-to-the-serial-port-in-vista-from-python/641193#641193 Comment by Toni Ruža on Writing to the serial port in Vista from Python Toni Ruža 2009-03-13T09:16:25Z 2009-03-13T09:16:25Z @Robert P: I disagree, this is more appropriate as an answer http://stackoverflow.com/questions/598569/calling-function-defined-in-exe/598582#598582 Comment by Toni Ruža on Calling function defined in exe Toni Ruža 2009-03-01T08:49:23Z 2009-03-01T08:49:23Z The ctypes module can also be used for calling functions from a dll, it's easy, crossplatform and it's in the standard library. http://stackoverflow.com/questions/476142/the-ole-way-of-doing-dragdrop-in-wxpython/479987#479987 Comment by Toni Ruža on The OLE way of doing drag&drop in wxPython Toni Ruža 2009-01-28T09:32:13Z 2009-01-28T09:32:13Z Databases shouldn't be so slow for the operations you described (even when huge amounts of data are in question), maybe you could look in to optimizing your schema.