Search found 99 matches

by baka_bai
Sat Dec 15, 2007 4:47 am
Forum: Compiler / Linking / IDE Related
Topic: Transfering code from Dev-C++ environment to Xcode
Replies: 8
Views: 2232

(1) for your wxChar problems use wxT("") or _T("") (2) Make sure you are including wx/wx.h and wx/string.h if not using precompiled libraries. This one is from not being able to find a definition of the wxString class, you may have just forgot the include directives for that file...
by baka_bai
Fri Dec 14, 2007 9:45 pm
Forum: C++ Development
Topic: wxComboBox within wxListCtrl
Replies: 2
Views: 1217

Auria wrote:Maybe what you're looking for looks like that : http://wxpropgrid.sourceforge.net/cgi-bin/index ?
Yes that is pretty much what I was looking to do.
Thank you Auria.
by baka_bai
Fri Dec 14, 2007 6:49 am
Forum: wxDev-C++
Topic: Timezone problem - reposted from general development
Replies: 6
Views: 1949

I had a similar problem to this though it wasn't because of wxWidgets. It would happen when booting between operating systems on my laptop. Both OS had the same timezone settings but one would always have an accelerated time, for lack of a better phraze, then the other. Ended up having something to ...
by baka_bai
Fri Dec 14, 2007 6:15 am
Forum: C++ Development
Topic: Button
Replies: 9
Views: 2942

Some thing like shown in these images... Attention to where the name is displayed. The third state is an editable box which doesn't change back to a button until enter has been hit. -= Edit =- One way I could think of making this is by creating a wxButton and a wxStaticText control at the same posit...
by baka_bai
Fri Dec 14, 2007 6:01 am
Forum: C++ Development
Topic: Can catch EVT_KEY_DOWN but not EVT_CHAR
Replies: 2
Views: 1844

just out of curiousity but are you using something like below to return which keys are pressed in your SDLPanel::OnKey() function? long keycode = event.GetKeyCode(); If you haven't already looked, in the wxWidgets source packages there is a sample source code directory, look for the keyboard sample.
by baka_bai
Fri Dec 14, 2007 5:51 am
Forum: C++ Development
Topic: Button
Replies: 9
Views: 2942

himajachowdary.lingam wrote:i want the button as it never apperead..
Then that would be the show() & hide() functions mentioned.
The only other way I can think of making it disappear is by destroying it, but I don't think that's what you want.
by baka_bai
Fri Dec 14, 2007 5:31 am
Forum: C++ Development
Topic: Button
Replies: 9
Views: 2942

if I understand you correctly you want a transparent where the only portion of the button that is visible is the text? Or do you want the button completely invisible as in that it appears as if it was never there? If your talking about Transparency you may want to test to see if the system supports ...
by baka_bai
Fri Dec 14, 2007 4:27 am
Forum: wxDev-C++
Topic: How to detect memory leaks
Replies: 3
Views: 1415

Vijay wrote:Thanks for the reply.
I am using wxDev-C++ with windows XP. I need some tools which supports windows
ddd does work on windows.
by baka_bai
Fri Dec 14, 2007 2:52 am
Forum: C++ Development
Topic: wxComboBox within wxListCtrl
Replies: 2
Views: 1217

wxComboBox within wxListCtrl

I am trying to make a control for my project that is similar to the events/properties editor that is seen in MS Visual Studio and I am trying to find out how a wxComboBox can be added to wxListCtrl item column.

Does anyone have any ideas on how this maybe accomplished?
by baka_bai
Wed Dec 12, 2007 2:07 am
Forum: C++ Development
Topic: wxCollapsiblePane default position?
Replies: 0
Views: 679

wxCollapsiblePane default position?

For some reason in wxGTK the default position of wxCollapsiblePane is set to the frames 0,0 location even when it is assigned a child panel as a parent. I also run into the problem that when my topPanel wxPanel has a minimum size setting the sash of wxSplitterWindow disappears and the bottomPanel ru...
by baka_bai
Mon Dec 03, 2007 6:59 pm
Forum: C++ Development
Topic: wxCollapsiblePane distorts gui
Replies: 0
Views: 722

wxCollapsiblePane distorts gui

When I expand my wxCollapsiblePane it does this to the GUI, note white border where gnome window style should be. http://img80.imageshack.us/img80/9342/screenshot1ra8.th.png And when I collapse it back it does this, note white strip across screen: http://img80.imageshack.us/img80/8801/screenshot2np5...
by baka_bai
Mon Dec 03, 2007 5:33 pm
Forum: C++ Development
Topic: anachronistic old-style base class initializer?
Replies: 2
Views: 3082

Thanks... that was a major oversight on my part. :lol:
but I guess thats what I get when coding until 3 in the morning.
by baka_bai
Mon Dec 03, 2007 6:42 am
Forum: C++ Development
Topic: anachronistic old-style base class initializer?
Replies: 2
Views: 3082

anachronistic old-style base class initializer?

I have just started developing on linux and I ran into this problem here... I have never ran into this in the past on windows when compiling my wxApps. Does anyone know what is causing this and/or what a possible solution to it is? gcc version is 4.1.2 wxGTK 2.8.6 Full compile output make mainframe....
by baka_bai
Wed Nov 14, 2007 6:00 pm
Forum: wxDev-C++
Topic: wxDevCpp 6.10.2 compiling wxWidgets-2.8.6 make error
Replies: 6
Views: 2646

Here is what I got from the log files
if not exist ..\..\lib\gcc_lib mkdir ..\..\lib\gcc_lib
/usr/bin/sh: -c: line 2: syntax error: unexpected end of file
mingw32-make: *** [..\..\lib\gcc_lib] Error 258
as for the opengl setting in the setup header yes I did.
by baka_bai
Sun Nov 11, 2007 9:10 pm
Forum: wxDev-C++
Topic: wxDevCpp 6.10.2 compiling wxWidgets-2.8.6 make error
Replies: 6
Views: 2646

No, still refuses to compile and still gives the same message as before.