wxwidgets

Ensuring column visibility in wxListCtrl

I want wxListCtrl in report mode and I want to lock one or more columns such that when you scroll left and right those columns remain visible at all times. For example: | name | field1 | field2 | field3 |....| When scrolled to the left I want it to be like: | name | field3 | field 4 | ... | I can't find a way to get this function...

Using templated custom wxEvent with wxEvtHandler::Bind

In the following code I do the following: I create a new template wxCommandEvent class that holds some payload specified by the template. I then subclass a wxStringPayloadEvent class. Finally I create an example app that simply issues a wxStringPayloadEvent and then the event handler gets triggered and displays the payload in a message...

DialogBlocks on Windows: MSVCR80D.dll is missing

I build wxWidgets application with DialogBlocks on Windows 7 with VS2005 installed. Build is successful, but executable doesn't run giving the message: "The program can't start because MSVCR80D.dll is missing from your computer". The same code built in Visual Studio is OK. Build log: ----------------------- Configuration: VC++ Debug --...

wxWidgets 2.9 custom events

I appear to have followed this example (found under "Defining Your Own Event Class"), and my code compiles and runs without error, but I'm not catching the event anywhere. The code: class MyCustomEvent : public wxEvent { //... stuff here }; wxDEFINE_EVENT(MY_CUSTOM_EVENT_1,MyCustomEvent); and later I bind the event: Bind(MY_CUSTOM_E...

Integrating wxwidgets in visual studio 2008

I want to make window-base application in c++, I have listen about wxwidgets. Can any one tell me how can I use wxwidgets library in my application, any link or tutorial which give me direction. ...

wxDialog with the wxMenuBar

I have tons of existing code using wxWidgets. The main window is wxDialog. Now I have to add a wxMenuBar to that dialog. But, in order to do it, the window should be derived from wxFrame. Is it possible to add a wxMenuBar to the wxDialog? If not, is it possible to convert existing code in a way that main window is derived from wxFrame i...

how to implement GUI window or a frame for bash shell with wxwidget or wxpython

HI, guys. I want to develop a window or frame for the bash shell program. Even after trials with the code of the link given by Bryan (thank you so much!!), it still does not work. Basically, I use the code sample put by Anurag Uniyal. However, I have to deal with several processes (so one window for one subprocess call). I do not know ...

Does wxwidgets use rosetta in Mac?

Hi, While deciding for a cross platform language for a desktop application I want to do, I came across "wxwidgets" for C++. After testing a demo application in Mac 10.6.4 I noticed the application needed "Rosetta" to run. My concern is: Will I always need "Rosetta" for a C++ application with wxwidgets to run on a Mac? Note: Latest new...