Top "Wxwidgets" questions

wxWidgets is a cross-platform GUI framework.

Dynamically change the choices in a wx.ComboBox()

I didn't find a better way to change the different choices in a wx.ComboBox() than swap the old ComboBox …

python wxpython wxwidgets
expand file names that have environment variables in their path

What's the best way to expand ${MyPath}/filename.txt to /home/user/filename.txt or %MyPath%/filename.txt to c:\…

c++ wxwidgets boost-filesystem
OpenCV with other GUI (like Qt or WxWidgets) on Win32 VC++

I want to use OpenCV's image processing functions, but not the OpenCV GUI. I'm using OpenCV 2.0. I will use either …

qt image-processing opencv wxwidgets
Detected memory leaks

In my wxWidgets application, while running in debug mode i got this message in Output of Visual Studio 2010. The application …

c++ visual-studio-2010 memory-leaks wxwidgets
Qt being now released under LGPL, would you recommend it over wxWidgets?

I am quite a heavy user of wxWidgets, partly because of licensing reasons. How do you see the future of …

python qt wxpython wxwidgets
wxWidgets: How to initialize wxApp without using macros and without entering the main application loop?

We need to write unit tests for a wxWidgets application using Google Test Framework. The problem is that wxWidgets uses …

c++ unit-testing wxwidgets googletest
Developing Windows applications on Linux?

My primary OS is Linux, but now I'm forced to write some C++ applications for Windows. I was thinking about …

windows linux installation cross-platform wxwidgets
(C++) MessageBox for Linux like in MS Windows

I need to implement a simple graphical message box for a Linux (SDL) application similar to the Windows MessageBox in …

c++ linux wxwidgets x11 messagebox
c++ how to get "one digit exponent" with printf

Is there a way to print in scientific notation less than 3 places for exponent part of number? The 6.1 formatting doesn't …

c++ wxwidgets
How to change wx.Panel background color on MouseOver?

this code: import wx app = None class Plugin(wx.Panel): def __init__(self, parent, *args, **kwargs): wx.Panel.__init__(self, …

python wxpython panel wxwidgets