Search found 117 matches

by entell
Thu May 08, 2008 12:52 am
Forum: C++ Development
Topic: widget data mapping
Replies: 11
Views: 17111

wxDataViewCtrl appears to be what I am looking for, but it looks like it is still a while away.
by entell
Fri Apr 25, 2008 2:59 am
Forum: C++ Development
Topic: widget data mapping
Replies: 11
Views: 17111

wxWidgets certainly has something like this, virtual list controls. Just create a wxListCtrl with the wxLC_VIRTUAL flag and then you can hook it up with a huge amount of data virtually. Changed made to your data behind the scenes is reflected in the control. It looks like wxListCtrl is the exceptio...
by entell
Thu Apr 24, 2008 6:41 pm
Forum: C++ Development
Topic: widget data mapping
Replies: 11
Views: 17111

is this what you are looking for? Not quite. Validators are specifically for transfering data between variables and dialogs. What I am looking for is transferring data between data sources and widgets in general. I think what I am looking for is called "data binding" in the Microsoft univ...
by entell
Thu Apr 24, 2008 6:00 pm
Forum: C++ Development
Topic: widget data mapping
Replies: 11
Views: 17111

widget data mapping

Does wxWidgets have a way to map data directly to widgets? Qt has the QDataWidgetMapper class for this. See the link below for details:

http://doc.trolltech.com/qq/qq21-datawidgetmapper.html
by entell
Wed Apr 09, 2008 12:18 pm
Forum: wx.NET
Topic: Help: A wxDialog Dll Error
Replies: 16
Views: 37699

Any more progress with this issue?
by entell
Fri Oct 26, 2007 2:18 am
Forum: C++ Development
Topic: wxWindowDisabler lets events through after deletion
Replies: 3
Views: 1570

I decided to use wxProgressDialog instead.
by entell
Thu Oct 25, 2007 12:35 pm
Forum: C++ Development
Topic: wxWindowDisabler lets events through after deletion
Replies: 3
Views: 1570

Re: wxWindowDisabler lets events through after deletion

The reason is most obvious. In the first sample all pending events are processed AFTER the handler is finished and disableAll is deleted. tan, I'll give that a try. I need to yield anyway to let the GUI redraw itself. Is there a way to just flush all pending events before deleting wxWindowDisabler?...
by entell
Thu Oct 25, 2007 3:43 am
Forum: C++ Development
Topic: wxWindowDisabler lets events through after deletion
Replies: 3
Views: 1570

wxWindowDisabler lets events through after deletion

wxWindowDisabler successfully disables all the widgets in my app, but as soon as it is deleted, if there are any pending events (like mouse clicks), they get executed. I hear this is not supposed to happen, but it does. I checked with the samples, and same thing happens there. Try running samples/di...
by entell
Mon Oct 01, 2007 6:12 pm
Forum: C++ Development
Topic: wxAUI pinbutton
Replies: 2
Views: 1312

I don't know if this is the right place for suggestions, but the following would be nice to have: 1) A way to fold each pane. Unlike the way the pin button is supposed to work (fold to the display area, hide the caption and tuck it "to the left" onto a toolbar type column), this would tuck...
by entell
Mon Oct 01, 2007 1:52 am
Forum: C++ Development
Topic: wxAUI pinbutton
Replies: 2
Views: 1312

wxAUI pinbutton

The pinbutton is supposed to "fold away" the pane, not float it, no?
by entell
Tue Aug 14, 2007 2:00 pm
Forum: C++ Development
Topic: mixing wxMSW and wxUniversal
Replies: 0
Views: 674

mixing wxMSW and wxUniversal

I am under the impression that I need to pick one or the other. I develop for MS-Win primarily so I use wxMSW stuff, but I am wondering how hard it would be to pull in wxUniversal stuff if I wanted to use non-native controls? Can the two be used simultaneously? I am kinda guessing "no, not out ...
by entell
Mon Jul 16, 2007 3:21 am
Forum: C++ Development
Topic: Selection Colour in wxListCtrl
Replies: 8
Views: 3634

It appears that if I hook into EVT_KILL_FOCUS (first derive a new class from wxListCtrl) and handle it without calling event.Skip(), then the selected item does not change its background color to gray...
by entell
Mon Jul 16, 2007 3:00 am
Forum: C++ Development
Topic: wxwidget linking and DLLs
Replies: 5
Views: 1626

T-Rex,

What is the current status of this issue? There is nothing more in the other thread either. Did you ever make it back to this issue?
by entell
Mon Jul 16, 2007 2:58 am
Forum: C++ Development
Topic: Selection Colour in wxListCtrl
Replies: 8
Views: 3634

Is there any other way to change these colors other than using SetSysColors() which changes the colors for the entire GUI (not just a specific widget)?
by entell
Sun Jul 15, 2007 6:38 am
Forum: C++ Development
Topic: Button with dropdown menu
Replies: 5
Views: 2756

I believe I can do what I want to do with either wxPopupTransientWindow or wxMenu.