wxPython更改鼠标光标以通知长时间运行的操作

时间:2011-10-27 15:14:12

标签: python wxpython mouse-cursor

我正在构建一个在远程网站上搜索内容的Python程序。 有时操作需要很多秒钟,我相信用户不会注意到状态栏消息“正在搜索操作”。 因此,我想更改鼠标光标以突出显示程序仍在等待结果。

这是我正在使用的方法:

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)

我在最后一行之前尝试了两种不同的方法:

  • wx.BeginBusyCursor()
  • self.m_frame.SetCursor(wx.StockCursor(wx.CURSOR_WAIT))

他们都没有工作。

我在GNU / Linux下使用KDE。这在Gnome下也不起作用

任何提示?谢谢

1 个答案:

答案 0 :(得分:6)

我问过wxPython的制造商Robin Dunn,看起来这应该有效,但事实并非如此。但是,如果你调用面板的SetCursor(),它会工作,或者我告诉你。以下是您可以尝试的示例:

import wx

########################################################################
class MyForm(wx.Frame):

    #----------------------------------------------------------------------
    def __init__(self):
        wx.Frame.__init__(self, None, wx.ID_ANY, "Tutorial")

        # Add a self.panel so it looks the correct on all platforms
        self.panel = wx.Panel(self, wx.ID_ANY)

        btn = wx.Button(self.panel, label="Change Cursor")
        btn.Bind(wx.EVT_BUTTON, self.changeCursor)
        sizer = wx.BoxSizer(wx.HORIZONTAL)
        sizer.Add(btn)
        self.panel.SetSizer(sizer)

    #----------------------------------------------------------------------
    def changeCursor(self, event):
        """"""
        myCursor= wx.StockCursor(wx.CURSOR_WAIT)
        self.panel.SetCursor(myCursor)


#----------------------------------------------------------------------
# Run the program
if __name__ == "__main__":
    app = wx.PySimpleApp()
    frame = MyForm().Show()
    app.MainLoop()