Search found 7 matches

by jimmygyuma
Tue Apr 10, 2007 7:42 pm
Forum: C++ Development
Topic: Event handler not being called
Replies: 1
Views: 516

Problem solved: Change EVT_NOTEBOOK_PAGE_CHANGED to EVT_LISBOOK_PAGE_CHANGED Change OnPageChanged(wxNotebookEvent to OnPageChanged(wxListbookEvent Look either one of these up is the docs and you'll get squat. Is this a convention, if there's a wxWidgetXYX, there's an EVT_WIDGETXYZ_ and a wxWidgetXYZ...
by jimmygyuma
Tue Apr 10, 2007 5:08 pm
Forum: C++ Development
Topic: Event handler not being called
Replies: 1
Views: 516

Event handler not being called

I have a wxListbook which is the main element in my app. Each page displays an image and the list part displays thumbs of the images. It is working as advertised but my page change handler is not being called. I admit I have next to no experience with this type of event handling, with tables and ids...
by jimmygyuma
Mon Apr 09, 2007 2:25 pm
Forum: C++ Development
Topic: wxMenuItem bitmaps do not display
Replies: 2
Views: 1632

Thanks, Andrea
It worked in both cases. However in wxPython, I had to change every item on the menu, else the first one done the short way would not display.

Thanks again, Jimmy :D
by jimmygyuma
Sun Apr 08, 2007 6:44 pm
Forum: C++ Development
Topic: wxMenuItem bitmaps do not display
Replies: 2
Views: 1632

wxMenuItem bitmaps do not display

I first ran into this problem with wxPython. There the first menu itam with a bitmap does not display, although all subsequent items do. At first I thought it was the first item in a menu, but no, it is the first item with a bitmap. All bitmaps are loading and are valid. If you change the order the ...
by jimmygyuma
Sun Apr 01, 2007 7:38 pm
Forum: wxDev-C++
Topic: Compiler doesn't recognize variables
Replies: 3
Views: 1157

Good Grief! As many times as I've done that should have seen it right off.
Sorry and thanks.

I would gladly 'select accept/assist' if I could figure out how to do it.
by jimmygyuma
Sat Mar 31, 2007 5:30 pm
Forum: wxDev-C++
Topic: Compiler doesn't recognize variables
Replies: 3
Views: 1157

Compiler doesn't recognize variables

In the wxDev-generated header: wxPanel *WxPanel1; My code in the .cpp file: wxSize size = WxPanel1->GetSize(); D:\wxDev\Project1Frm.cpp In function 'void button1OnClick(wxCopmmandEvent&)' D:\wxDecv\Project1Frm.cpp 'WxPanel1' undeclared(first use this function) < ... > D:\wxDev\Project1Frm.cpp [W...
by jimmygyuma
Fri Mar 30, 2007 11:58 pm
Forum: General Development
Topic: Qt WidgetStack, Java CardLayout
Replies: 14
Views: 7222

Qt WidgetStack, Java CardLayout

Question: Does wxWidgets have a widget analogous to Qt's WidgetStack or Java's CardLayout? Essentially I'm looking for a notebook without tabs that can only be changed programmatically...