I am building a Python program that searches things on a remote website. Sometimes the operation takes many seconds and I believe that the user will not notice the status bar message "Search Operation in progress". Therefore, I would like to change the mouse cursor to highlight that the program is still waiting for a result.
This is the method I am using:
def OnButtonSearchClick( self, event ):
"""
If there is text in the search text, launch a SearchOperation.
"""
searched_value = self.m_search_text.GetValue()
if not searched_value:
return
# clean eventual previous results
self.EnableButtons(False)
self.CleanSearchResults()
operations.SearchOperation(self.m_frame, searched_value)
I tried two different approaches, both before the last line:
- wx.BeginBusyCursor()
- self.m_frame.SetCursor(wx.StockCursor(wx.CURSOR_WAIT))
None of them are working.
I am using KDE under GNU/Linux. This does not work under Gnome, too
Any hints? Thank you
self.m_frame?) It could differ by platform, but the wx.Window you set the cursor for generally has to have focus, and the mouse pointer has to be over it for the set cursor to appear. – robots.jpg Oct 27 '11 at 16:18