Tagged Questions
wxWidgets is a cross-platform GUI framework. It is written in C++ and has bindings for Python, Perl, Ruby, and even .Net. It also supports several mobile platforms including Windows Mobile, iPhone SDK and embedded GTK+.
33
votes
10answers
12k views
wxWidgets vs Qt
What is the experience with the frameworks wxWidgets and Qt? Which one to use and why (C++ programming)?
12
votes
13answers
8k views
Is there any 'out-of-the-box' 2D/3D plotting library for C++?
I looked at the different options for plotting functions (or other types of graphs) in an interactive window. I mostly use wxWidgets but I'd be open to any other "interfaces".
Looking at what is ...
11
votes
1answer
351 views
Focus-follows-mouse in wxPython?
I'm developing an application that contains a number of panes. See the screenshot:
The left settings pane is a wx.ScrolledPanel that contains a number of wx.Panels.
The top events pane is a ...
11
votes
8answers
1k views
Gui toolkits, which should I use?
I am writing a fairly large and complex data analysis program and I have reached the point where I think it is about time to build a GUI for the program. So my question is:
Which GUI toolkit should I ...
11
votes
7answers
3k views
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 wxWidgets in prospect of the recent announcement of Qt now being released under LGPL?
Do you ...
11
votes
10answers
4k views
Open source simple C++ with wxWidgets GUI applications
I would like to write a simple GUI application using C++ and wxWidgets. I'm wondering if there are any open source GUI applications using C++ and wxWidgets and tutorials for reference.
Thanks,
10
votes
1answer
229 views
Mac OS X: is it possible to imbue a non-main thread to become “The Main Thread” of a process?
I'm having a GUI/threading-related problem under Mac OS X (10.6.7).
I'm using the wxWidgets framework (ver. 2.9.1), and it rests upon Cocoa in my case. The application design is like this:
thread #1 ...
10
votes
5answers
5k views
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 the macro IMPLEMENT_APP(MyApp) to initialize and enter the application main ...
7
votes
4answers
9k views
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 Qt4 or WxWidgets for GUI functions. I compile with VC++ 2008 Express (VC++ 9.0).
...
7
votes
2answers
789 views
A terminal-like window for wxWidgets?
I'm looking to add an element to my wxWidgets GUI that behaves like a terminal emulator. Not in terms of a shell which executes commands, but just the input-output setup of an application running in ...
7
votes
1answer
1k views
How can you calculate the percentage overlap of two rectangles?
I wrote a drawing function that draws various on-screen sprites. These sprites can only overlap up to a point. If they have to much overlap, they become too obscured. As a result I need to detect when ...
7
votes
7answers
993 views
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 developing on the Linux box with cross platform libraries like WxWidgets (and some care ...
7
votes
1answer
800 views
In erlang: How do I expand wxNotebook in a panel?
(I have tagged this question as Python as well since I understand Python code so examples in Python are also welcome!).
I want to create a simple window in wxWidgets:
I create a main panel which I ...
6
votes
1answer
359 views
How to draw screenshot captured from glReadPixels to wxWidgets dialog/panel
I have an OpenGL window, and a wxWidget dialog. I want to mirror the OpenGL to the dialog. So what I intend to do is:
Capture the screenshot of the opengl
Display it onto the wxwidgets dialog.
...
6
votes
5answers
361 views
As a newbie, where should I go if I want to create a small GUI program?
I'm a newbie with a little experience writing in BASIC, Python and, of all things, a smidgeon of assembler (as part of a videogame ROM hack). I wanted to create small tool for modifying the hex values ...
6
votes
4answers
1k views
Is Perl a good option for writing platform independent desktop applications?
Is Perl a good option for writing (possibly and partially) platform independent desktop applications? I know there are interesting widget libraries like GTK2 Perl and wxWidgets but I'm not familiar ...
6
votes
4answers
2k views
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:\Documents and settings\user\filename.txt
with out traversing the path string ...
6
votes
2answers
2k views
Making a Windows .exe with gui2exe does not work because of missing MSVCP90.dll
I'm trying to compile my python script into a single .exe using gui2exe (which uses py2exe to create a .exe). My program is using wxWidgets and everytime I try to compile it I get the following error ...
5
votes
1answer
77 views
Unable to reach breakpoint in Visual Studio
I am facing a odd behavior of Breakpoints in Visual Studio 2010 Express. Below is the code with breakpoints.
I am able to break at the first breakpoint (Line 159), but stepping after line 160, the ...
5
votes
3answers
98 views
Can I change the status of individual members of a base class to private?
I am using wxWidgets where, if you have ever used it, you will know that there are a lot of public functions in the base class. I recently ran into a situation where I would not want a method ...
5
votes
1answer
90 views
Creating a wxWidgets GUI with multiple stages
There's lots of information about creating different layouts, dialogues, even custom controls. However I've not been able to find out how to create a window that has multiple seperate "stages", like ...
5
votes
2answers
307 views
object oriented design question for gui application
guys, I am programming a GUI for an application, a cd container to insert cd, and currently I am not very clear and I think I need some help to clarify my understanding about object oriented design.
...
5
votes
7answers
567 views
Cross-platform GUI language/toolkit
I am attempting to write a cross-platform GUI application that would be deployed to Windows, Mac OS X, and Linux. My requirements are:
Single code base for all three deployment platforms, without a ...
5
votes
8answers
744 views
Recommend crossplatform C++ UI and networking libraries
Things to take into consideration:
- easy to use
- fast
- use underlying OS as much as feasable (like wxWidgets for UI)
Ones I am leaning towards are wxWidgets for UI and Boost for networking - how ...
5
votes
7answers
961 views
Starting wxWidgets C++ need a gentle nudge
So I've been learning C# for like a year now (I'm 20 years old) and I'm getting pretty confident with it. I've also been meddling with C++ every now and again. For example just recently I've been ...
5
votes
11answers
2k views
What's the C++ GUI building option with the easiest learning curve - VS/Qt/wxWidgets/etc.?
I'm looking to be able to build GUI applications quickly and painlessly as possible. I'm competent (though not expert, and have no formal training) in C++, but have never used a GUI building toolkit ...
5
votes
1answer
3k views
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 with a new one. Is there a better way?
Oerjan Pettersen
#!/usr/bin/python
#20_combobox.py
...
5
votes
5answers
6k views
What is the best real time plotting widget for wxPython?
I would like to show a read time graph with one or two curves an up to 50 samples per second using Python and wxPython.
The widget should support both Win32 and Linux platforms.
Any hints are ...
5
votes
2answers
2k views
Using external GUI libraries to make user interfaces in Autodesk Maya
I develop tools in Autodesk Maya. Many of the tools I build have simple windowed GUIs for the animators and modellers to use. These GUIs often contain what you'd normally expect to see in any basic ...
5
votes
8answers
570 views
New project: I am having troubles picking a language to use
I am starting my first independent for profit venture. I am having a hard time deciding what language to use. I want to write my app in Perl, but I don't think it will be simple enough to compile. If ...
5
votes
4answers
1k views
How can I capture all exceptions from a wxPython application?
I'm writing a little debug app for a bit of kit we're developing and I'd like to roll it out to a few users to see if they can provoke any crashes. Does anyone know a way of effectively wrapping a ...
5
votes
2answers
338 views
wxpython: How do I examine dragged data in OnDragOver?
I'm a bit perplexed by drag and drop in wxPython (but perhaps this questions pertains to drag and drop in other GUI frameworks as well). The frameworks provides a couple of callbacks (OnEnter and ...
4
votes
1answer
122 views
Draw a scaled bitmap using wxhaskell
The imageviewer example shows how to display an image in a ScrolledWindow.
What if I want to display the image in the available space, scaling the bitmap as needed?
My google-fu failed me on this ...
4
votes
1answer
97 views
WxHaskell thinks my strings are 1 character long
Whenever I use a string in WxHaskell, it thinks the string is one character (it only displays the first character). It only happens when using the WxHaskell functions, not functions like putStrLn.
...
4
votes
5answers
360 views
IS there a gui designer for wxwidgets in linux with Eclipse?
I want to build a GUI application using C++ and wxWidgets.
The problem is that I can not find an IDE with GUI (Form Designer) to use. I hope if eclipse has some thing like the QT designer.
any ...
4
votes
3answers
1k views
Choosing between Qt, Gtk+ and wxWidgets
I implemented distributed computing client-server application and now it's time to write client's UI interface.
I am frustrated between Qt, Gtk+ and wxWidgets.
I happened to use all of these libraries ...
4
votes
3answers
176 views
Should the program logic reside inside the gui object class or be external to the class?
I have a question about how to structure code in relation to GUI objects. Suppose I have a dialog that has a list control that has a bunch of names obtained from a database. The user can edit the ...
4
votes
1answer
303 views
Is there any comprehensive wxPython API documentation?
I would like to know if there is any complete API documentation specifically for wxPython, 2.8 to be specific. An offline chm or pdf file, like the wxWidgets documentation, would be best, but it can ...
4
votes
2answers
329 views
Are wxErlang widgets really this lame?
I've been poking around with Erlang's wx module and this tutorial. I haven't used wxwidgets before, so maybe this is just how it's done, but this code seems really terrible to me:
%% create widgets
...
4
votes
1answer
15k views
ld: symbol(s) not found when linking
I am trying to compile "Loch" without any success on my Mac OSX 10.6. I always get some "symbol(s) not found when compiling" error. Anyone an idea what could be the problem?
Thanks a lot
c++ -o loch ...
4
votes
2answers
1k views
Why Does .Hide()ing and .Show()ing Panels in wxPython Result in the Sizer Changing the Layout?
As referenced in my previous question, I am trying to make something slightly wizard-like in function. I have settled on a single frame with a sizer added to it. I build panels for each of the ...
4
votes
2answers
540 views
Event Handlers Not Getting Called? - wxWidgets
I'm working on a program for my C++ programming class, using wxWidgets. I'm having a huge problem in that my event handlers (I assume) are not getting called, because when I click on the button to ...
4
votes
1answer
291 views
Recommended guidelines on moving from wxWidget to QT
I have a project that uses the wxwidget toolkit (wxThread, wxString, wxEvent, wxDateTime, wxLog etc). I am in the process of moving over to QT.
I am a little daunted by the task, and thought its ...
4
votes
2answers
785 views
QT4, GTK+, wxWidgets or IronPython for a native Windows app using Python
I need to build a native windows app using Python (and py2exe, I guess).
Feature requirements are:
Taskbar icon
Alert notifications (next to Taskbar Icon)
Chromeless window (ideally a pretty, ...
4
votes
2answers
332 views
If window spans multiple monitors, I can't draw to it
If I have a window that spans both monitors on a multimonitor system, I can't seem to erase (paint black) the entire window. Instead, only the primary window is drawn black. The secondary remains the ...
4
votes
3answers
976 views
Drawing SVG images in wxWidgets
I need to be able to draw SVG images (with the ability to scale, and rotate the images by 90,180 and 270 degrees).
I also want the ability of instead of rendering the images to a bitmap (e.g. for ...
4
votes
7answers
2k views
Switching from wxWidgets to QT for porting to Mac?
We are selling an image processing application (about 120k lines of code) developed with wxWidgets. We planned everything to be as most cross platform as possible in case the porting from Windows to ...
4
votes
1answer
1k views
wxPython: Items in BoxSizer don't expand horizontally, only vertically
I have several buttons in various sizers and they expand in the way that I want them to. However, when I add the parent to a new wx.BoxSizer that is used to add a border around all the elements in the ...
4
votes
7answers
4k views
wxWindows vs. Gtk for Cross Platform GUI Programming
I've been looking at making a cross-platform GUI application, and I'm wondering whether I should use wxWindow or GTk? I'll be coding in C++, so the quality of the documentation surrounding its C++ ...
4
votes
4answers
1k views
Load Excel data into Linux / wxWidgets C++ application?
I'm using wxWidgets to write cross-plafrom applications. In one of applications I need to be able to load data from Microsoft Excel (.xls) files, but I need this to work on Linux as well, so I assume ...