Search found 203 matches

by eco
Mon Feb 13, 2006 5:14 pm
Forum: C++ Development
Topic: wxVScrolledWindow resize problem?
Replies: 4
Views: 2057

Yep. You can fix this by applying the wxVScrolledWindow parts of this patch to the version of wxWidgets you are using.
by eco
Mon Feb 13, 2006 8:31 am
Forum: C++ Development
Topic: Auto Scroll
Replies: 4
Views: 1291

wxVScrolledWindow actually has problems with children layed out using a sizer. I've address these problems in a patch but it hasn't been applied yet. You should be able to query the actual windows about their size. Something like parent_window->GetChildren(), parent_window->GetSizer->GetItem() (not ...
by eco
Fri Feb 10, 2006 6:01 pm
Forum: C++ Development
Topic: Auto Scroll
Replies: 4
Views: 1291

I'm not quite sure what you mean by "I want the window to scroll automatically to adjust all the panels. Currently the bottom panels are not visible." Could you expand on that? If you mean that the wxVScrolledWindow isn't using the correct sizes, make sure your overload of OnGetLineHeight(...
by eco
Wed Feb 08, 2006 10:37 pm
Forum: C++ Development
Topic: Maybe it's a strange question
Replies: 14
Views: 3736

Use wxEvtHandler::Connect to connect dynamically created controls to event handlers (wxChoice and all windows/controls derive from wxEvtHandler).
by eco
Tue Feb 07, 2006 6:11 pm
Forum: C++ Development
Topic: PNG:s compiled into the binaries as resource possible?
Replies: 18
Views: 9082

Actually no. I originally wrote this over a year ago (long before that appeared in the wiki). It is, in fact, based on Bart Trzynadlowski's bin2c program (who--I'm sure--wasn't the first person to write a binary-to-C converter) but adapted for use in a wxWidgets app (by me). The orginal idea to conv...
by eco
Fri Feb 03, 2006 9:05 pm
Forum: C++ Development
Topic: Portable Network Graphics in menu items
Replies: 9
Views: 2182

I believe on versions of Windows before XP (98, 2000, etc.) if the alpha channel isn't 0x00 or 0xFF (on or off) for every "pixel" of the alpha channel it does this. Basically, you have to use your alpha channel as an alpha mask. If anyone knows any way around this I'd love to hear it as we...
by eco
Fri Jan 27, 2006 5:45 pm
Forum: C++ Development
Topic: wximage->rescale->print => poor quality
Replies: 3
Views: 1447

wxImage's scaling functions are very simplistic. When shrinking, it just leaves a few rows/columns of pixels out. Growing just duplicates. ImageMagick would be a very good choice. It features a large variety of image resizing algorithms and I'm sure it produces good results. I haven't done it but I'...
by eco
Thu Jan 26, 2006 12:47 am
Forum: C++ Development
Topic: wxTaskBarIcon, window|frame-less application
Replies: 5
Views: 1701

I'm not sure what the error is but you will probably need to call [your wxApp derived class]::SetExitOnFrameDelete(false); By default, wxWidgets ends the application when there are no top level windows/frames remaining. If you never create one, the program will end immediately.
by eco
Thu Jan 26, 2006 12:21 am
Forum: C++ Development
Topic: "0" + '.' == control name ?
Replies: 6
Views: 1911

Yeah, it's a pointer thing. I suspect it's taking the pointer location of the string literal "0", adding the numerical value of '.' which makes the pointer point to some other string literal (since, unless I'm mistaken, they are stored in the same approximate location in executable files a...
by eco
Wed Jan 04, 2006 3:33 am
Forum: C++ Development
Topic: "Pure virtual function call" from wxSocketClient::
Replies: 19
Views: 3876

Although I don't have an answer for your question, sethjackson is correct. Destroy will free the memory. The extra stuff Destroy does is primarily delaying the actual deletion of the object until the object isn't referred to in pending messages. You don't want to be getting repaint events on a dialo...
by eco
Sun Jan 01, 2006 2:19 am
Forum: C++ Development
Topic: Support of the GIMP RGBA C-Source image dump file
Replies: 7
Views: 3542

Thanks for solving my laziness :). I'll update the original post.
by eco
Fri Dec 30, 2005 8:58 pm
Forum: C++ Development
Topic: Support of the GIMP RGBA C-Source image dump file
Replies: 7
Views: 3542

I use this method in my app (probably 30 images or so). Works great. XRC is another option. Another advantage of this over using the GIMP C-source option (ignoring whether it is even possible to use GIMP C-source) is you still have compressed data. Uncompressed image data can get unwieldy very quick...
by eco
Thu Dec 29, 2005 10:03 pm
Forum: C++ Development
Topic: The problem about compiling?
Replies: 1
Views: 748

You'll have to be way more specific than that if you want to get any help. Most importantly, what platform (Win32, *nix, OSX, etc.) are you on and what compiler are you using (Microsoft, gcc, etc.)?
by eco
Wed Dec 21, 2005 5:22 am
Forum: C++ Development
Topic: wxGrid problem expected class name before '{'
Replies: 2
Views: 854

Are you forgetting to include <wx/grid.h> somewhere before that line?
by eco
Thu Nov 24, 2005 8:41 pm
Forum: C++ Development
Topic: Bug in wxDateTime?
Replies: 9
Views: 2720

It's based on your locale settings so perhaps your locale isn't an A.M./P.M. locale for whatever reason.