User Toni Ruža - Stack Overflowmost recent 30 from stackoverflow.com2009-11-30T01:27:55Zhttp://stackoverflow.com/feeds/user/6267http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1450639/wx-staticbitmap-or-wx-dc-which-is-better-to-use-for-constantly-changing-images/1450677#14506770Answer by Toni Ruža for wx.StaticBitmap or wx.DC: Which is better to use for constantly changing images?Toni Ruža2009-09-20T09:48:31Z2009-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#14158150Answer by Toni Ruža for How to create hover effect on StaticBitmap in wxpython?Toni Ruža2009-09-12T18:44:06Z2009-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#13516901Answer by Toni Ruža for How to make custom buttons in wx?Toni Ruža2009-08-29T15:19:49Z2009-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#13234580Answer by Toni Ruža for Getting Wing IDE to stop catching the exceptions that wxPython catchesToni Ruža2009-08-24T16:40:33Z2009-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#12659883Answer by Toni Ruža for Changing height of an object in wxPythonToni Ruža2009-08-12T12:49:26Z2009-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#12657451Answer by Toni Ruža for System standard sound in PythonToni Ruža2009-08-12T12:01:39Z2009-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#12420200Answer by Toni Ruža for Specifying relative path in py2exeToni Ruža2009-08-06T23:12:51Z2009-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#12317081Answer by Toni Ruža for How do you force refresh of a wx.Panel?Toni Ruža2009-08-05T07:41:06Z2009-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#12298230Answer by Toni Ruža for Opening a wx.Frame in Python via a new threadToni Ruža2009-08-04T20:40:48Z2009-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#12247731Answer by Toni Ruža for What's the state-of-the-art in Python programming in Windows?Toni Ruža2009-08-03T21:43:24Z2009-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 & 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#12048393Answer by Toni Ruža for Getting total/free RAM from within pythonToni Ruža2009-07-30T06:43:20Z2009-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-wxframe2Why is wxGridSizer much slower to initialize on a wxDialog then on a wxFrame?Toni Ruža2009-07-29T04:36:47Z2009-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#12048861Answer by Toni Ruža for Why is wxGridSizer much slower to initialize on a wxDialog then on a wxFrame?Toni Ruža2009-07-30T06:58:31Z2009-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#11852261Answer by Toni Ruža for Creating child frames of main frame in wxPython.Toni Ruža2009-07-26T18:37:56Z2009-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#11814332Answer by Toni Ruža for dynamic plotting in wxpythonToni Ruža2009-07-25T07:01:02Z2009-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#10078451Answer by Toni Ruža for wxProgressDialog like behaviour for a wxDialogToni Ruža2009-06-17T15:37:32Z2009-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#9966450Answer by Toni Ruža for py2exe windows service problemToni Ruža2009-06-15T15:07:59Z2009-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#9628620Answer by Toni Ruža for Instance methods called in a separate thread than the instantiation threadToni Ruža2009-06-07T21:23:13Z2009-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#9020832Answer by Toni Ruža for Wxwidget GridToni Ruža2009-05-23T18:05:19Z2009-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#8190263Answer by Toni Ruža for WxPython: Cross-Platform Way to Conform Ok/Cancel Button OrderToni Ruža2009-05-04T06:48:22Z2009-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#8170951Answer by Toni Ruža for wxPython: A foldable panel widgetToni Ruža2009-05-03T13:47:19Z2009-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#8011811Answer by Toni Ruža for Nice IDE for wxPython or Tkinter GUI DevelopmentToni Ruža2009-04-29T06:52:14Z2009-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#7833860Answer by Toni Ruža for wxPython: Using EVT_IDLEToni Ruža2009-04-23T20:27:04Z2009-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):
# <- 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#7805161Answer by Toni Ruža for smtplib and gmail - python script problemsToni Ruža2009-04-23T06:33:55Z2009-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#7321170Answer by Toni Ruža for Showing data in a GUI where the data comes from an outside sourceToni Ruža2009-04-08T22:21:50Z2009-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#7228781Answer by Toni Ruža for How can I get the width of a wx.ListCtrl and its column name?Toni Ruža2009-04-06T19:43:54Z2009-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#7042651Answer by Toni Ruža for Most efficient way of loading formatted binary files in PythonToni Ruža2009-04-01T06:12:57Z2009-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#6942170Answer by Toni Ruža for Understanding Python Class instancesToni Ruža2009-03-29T06:36:33Z2009-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#6923883Answer by Toni Ruža for Is it bad form to call a classmethod as a method from an instance?Toni Ruža2009-03-28T07:35:40Z2009-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#6836124Answer by Toni Ruža for how to put a function and arguments into python queue?Toni Ruža2009-03-25T21:46:45Z2009-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#1450677Comment by Toni Ruža on wx.StaticBitmap or wx.DC: Which is better to use for constantly changing images?Toni Ruža2009-09-20T19:17:56Z2009-09-20T19:17:56ZLook again <a href="http://docs.wxwidgets.org/stable/wx_wxstaticbitmap.html#wxstaticbitmapsetbitmap" rel="nofollow">docs.wxwidgets.org/stable/…</a>http://stackoverflow.com/questions/1006598/wxprogressdialog-like-behaviour-for-a-wxdialog/1007845#1007845Comment by Toni Ruža on wxProgressDialog like behaviour for a wxDialogToni Ruža2009-06-18T06:06:11Z2009-06-18T06:06:11ZWhen 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 "loading..." 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#1007845Comment by Toni Ruža on wxProgressDialog like behaviour for a wxDialogToni Ruža2009-06-17T17:45:28Z2009-06-17T17:45:28ZIt 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 "xxx" when it's shown?http://stackoverflow.com/questions/901704/wxwidget-grid/902083#902083Comment by Toni Ruža on Wxwidget GridToni Ruža2009-05-30T06:14:34Z2009-05-30T06:14:34ZYou 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#902083Comment by Toni Ruža on Wxwidget GridToni Ruža2009-05-25T08:58:28Z2009-05-25T08:58:28ZBy 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#817095Comment by Toni Ruža on wxPython: A foldable panel widgetToni Ruža2009-05-03T17:10:39Z2009-05-03T17:10:39ZOh 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#817095Comment by Toni Ruža on wxPython: A foldable panel widgetToni Ruža2009-05-03T16:55:01Z2009-05-03T16:55:01ZYou 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#801181Comment by Toni Ruža on Nice IDE for wxPython or Tkinter GUI DevelopmentToni Ruža2009-04-29T08:29:42Z2009-04-29T08:29:42ZWell, if one does it right... ;)http://stackoverflow.com/questions/694002/understanding-python-class-instances/694217#694217Comment by Toni Ruža on Understanding Python Class instancesToni Ruža2009-03-29T19:47:32Z2009-03-29T19:47:32ZTrue, but thats not the use case Jb described (maybe he should clarify) and I don't agree that terms like "strange" or "side effect" 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#682978Comment by Toni Ruža on Dynamically change the choices in a wx.ComboBox()Toni Ruža2009-03-25T20:54:10Z2009-03-25T20:54:10Zor self.sf.AppendItems(['3', '4'])http://stackoverflow.com/questions/682822/redirecting-function-definitions-in-python/682836#682836Comment by Toni Ruža on Redirecting function definitions in pythonToni Ruža2009-03-25T20:50:30Z2009-03-25T20:50:30Zyou 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#666123Comment 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ža2009-03-21T20:00:00Z2009-03-21T20:00:00ZTo 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#641193Comment by Toni Ruža on Writing to the serial port in Vista from PythonToni Ruža2009-03-13T09:16:25Z2009-03-13T09:16:25Z@Robert P: I disagree, this is more appropriate as an answerhttp://stackoverflow.com/questions/598569/calling-function-defined-in-exe/598582#598582Comment by Toni Ruža on Calling function defined in exeToni Ruža2009-03-01T08:49:23Z2009-03-01T08:49:23ZThe 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#479987Comment by Toni Ruža on The OLE way of doing drag&drop in wxPythonToni Ruža2009-01-28T09:32:13Z2009-01-28T09:32:13ZDatabases 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.