Search found 7 matches

by dgwsoft
Thu Oct 21, 2010 1:29 pm
Forum: C++ Development
Topic: Some observations on 2.9.1
Replies: 4
Views: 1220

update

Gareth, You can Post shot of it! there is wxFont . Check it out! The problem described was with wxSMALL_FONT. Attached are before (2.8 ) and after (2.9) screenshots. Note especially the horrible 'R' in Results! Thanks for the tip about wxFont, this is what I did to get back my old look and feel for...
by dgwsoft
Fri Oct 15, 2010 7:28 pm
Forum: C++ Development
Topic: Some observations on 2.9.1
Replies: 4
Views: 1220

Try just calling Layout on the sizer and/or the frame/panel. Regarding font, can you define "horrible"? Thanks, Auria. Calling Layout() on the top level panel works a treat (I have not had to call Layout() before - is this new?) The new font is not one I have seen before. It is very round...
by dgwsoft
Fri Oct 15, 2010 4:24 pm
Forum: C++ Development
Topic: Some observations on 2.9.1
Replies: 4
Views: 1220

Some observations on 2.9.1

I just built 2.9.1 from source, mainly because I wanted to use wxComboBox::Popup(). Here are some observations. I would be grateful if anyone can tell me if they are 'features', changes with simple work arounds, or if I should be reporting them as bugs? I have a smallish GUI previously compiled and ...
by dgwsoft
Fri Oct 15, 2010 2:28 pm
Forum: C++ Development
Topic: capture key events in wxGrid
Replies: 3
Views: 1566

dgwsoft wrote:Thanks, Jim I will give that a try on the next iteration (ie next week), and report back.

cheers
update: I gave up trying to translate keys as typed, and instead do the translations on the EVT_GRID_CELL_CHANGE event.

I haven't tried the suggested solutions.

It really shouldn't be that difficult.
by dgwsoft
Wed Aug 11, 2010 11:18 am
Forum: C++ Development
Topic: capture key events in wxGrid
Replies: 3
Views: 1566

Thanks, Jim I will give that a try on the next iteration (ie next week), and report back.

cheers
by dgwsoft
Mon Aug 09, 2010 5:49 pm
Forum: C++ Development
Topic: capture key events in wxGrid
Replies: 3
Views: 1566

capture key events in wxGrid

I want to translate some keystrokes to different symbols when the user enters text within wxGrid. Here is what I have tried: a) Derive from wxGrid and set an event handler for EVT_CHAR. This picks up events when the wxGrid has the focus but not when the editor in one of the cells has it. b) Derive f...
by dgwsoft
Mon Aug 09, 2010 1:55 pm
Forum: wxCode
Topic: WxGrid::SetGridCursor() problem
Replies: 0
Views: 1426

WxGrid::SetGridCursor() problem

I am running wxWidgets 2.8.10, gtk2-unicode-release-2.8, on a Centos Linux system. What I want to achieve is that when the user finishes editing a cell in a WxGrid (by pressing ENTER) I control which cell is selected next, and put it in edit mode. I can get this behaviour to kind-of work from a EVT_...