Search code examples
pythonwxpythonwxwidgets

How to make buddy list with wxPython


I can't find anything for buddy list. I tree with ListCtrl but it did not. How to i can make buddy list like Pidgin? :enter image description here


Solution

  • To provide exactly such appearance you would need to write a custom control yourself. This is not exceedingly difficult but is, of course, more work than just using a pre-made one. So if you can settle on something similar but not exactly the same, you could find using wxDataViewCtrl simpler. You would still have to define your own custom http://docs.wxwidgets.org/trunk/classwx_data_view_ctrl.html for the middle column however.