Search found 6 matches

by daggmano
Thu May 26, 2005 10:01 pm
Forum: C++ Development
Topic: Multiple Selection in wxGrid
Replies: 2
Views: 1288

I'd already found that - you can set selection modes directly through SetSelectionMode(wxGrid::wxGridSelectionModes selmode), but selmode can only be a choice of wxGridSelectCells, wxGridSelectRows or wxGridSelectColumns. I've sort of worked around the problem by firing a function (when an item is s...
by daggmano
Mon May 23, 2005 5:01 am
Forum: C++ Development
Topic: Multiple Selection in wxGrid
Replies: 2
Views: 1288

Multiple Selection in wxGrid

How can I disable the multiple selection of a wxGrid control? I tried Vetoing the EVT_GRID_CMD_RANGE_SELECT event, but was still able to multiple select by click-dragging the mouse. Do I need to handle mouse events fro the wxGrid and (eg) Veto move commands when the mouse button is down? I would hav...
by daggmano
Mon May 09, 2005 4:07 am
Forum: Compiler / Linking / IDE Related
Topic: How to use precompiled headers with MinGW?
Replies: 23
Views: 59213

Lestat wrote:I can write small FAQ on this topic. If someone find this necessary.
Please do - the one thing that bugs me about MinGW under Windows compared to GCC under Linux is the long compile time. If this can be reduced, life would be much easier...
by daggmano
Thu May 05, 2005 3:51 am
Forum: C++ Development
Topic: GetClientSize()
Replies: 4
Views: 1810

Actually, I just looked at it all again. GetVirtualSize() works the same as GetClientSize() (at least in this case), so I'm no closer to getting the solution to the problem. Strange that Linux and Windows seem to operate differently here.
by daggmano
Tue May 03, 2005 11:34 pm
Forum: C++ Development
Topic: GetClientSize()
Replies: 4
Views: 1810

OK, that seems to have solved the problem when manually resizing, but not when normalising after being maximised. Thanks for the tip, anyway.
by daggmano
Tue May 03, 2005 11:02 pm
Forum: C++ Development
Topic: GetClientSize()
Replies: 4
Views: 1810

GetClientSize()

I'm working on a program that uses splitters to, well, split up a main area into 4 blocks (each with a custom frame). When the application is resized, the vertical splitter should remain in the centre of the window, while the two horizontal splitters (one per side of the vertical splitter) should be...