Search found 30 matches
- Fri Apr 18, 2008 11:47 pm
- Forum: C++ Development
- Topic: Problem adding tooltips (in linux)
- Replies: 10
- Views: 1808
Well. I've just done a dumb test creating a sample app from the C::B wizards and adding some controls to the frame (using wxFormBuider)... and all tooltips have been shown without problems, including checkboxes :shock: I can't understand why they aren't showed for the two apps I run before posting m...
- Fri Apr 18, 2008 10:55 pm
- Forum: C++ Development
- Topic: Problem adding tooltips (in linux)
- Replies: 10
- Views: 1808
Well I'm sure it is probably something I'm doing wrong or a setting I'm missing in codeblocks. :lol: As far as I know tooltips work fine in linux as an app I use from time to time in linux that is written in gtk does have tooltips. I'm using lots of tooltips for my controls (always with the wxT("ti...
- Thu Apr 17, 2008 3:27 pm
- Forum: Platform Related Issues
- Topic: Opengl - Rendering Problem
- Replies: 9
- Views: 1363
server glx version string: 1.4 Mesa 7.0 Mesa drivers offer OpenGL support for your platform, but their performance are really poor compared to the propietary drivers for almost all graphics cards. For instance, in my openSUSE box the performance ratio is about 8:1 for 3D hardware accelerated graphi...
- Tue Apr 15, 2008 11:30 am
- Forum: wxDev-C++
- Topic: Refresh/Repaint problem
- Replies: 4
- Views: 1165
Hello, I'm not sure if this could work, but... what about defining a wxTimer object for your main frame and then overriding his Notify() member redrawing the window with an specified ms interval? I suppose that this should keep your controls updated even if you're moving or resizing your window. Reg...
- Mon Apr 14, 2008 7:53 am
- Forum: C++ Development
- Topic: using connect with a template class
- Replies: 4
- Views: 946
I suppose you are "connecting" events inside the constructor of your template class (it's the better place, imho). So that, you should use the button's object name, and it seems to me that you're using another object (the parent panel, maybe?). For instance: your_button->Connect( wxEVT_COMMAND_BUTTO...
- Fri Apr 11, 2008 10:23 am
- Forum: Open Discussion
- Topic: Newbie: moving wxDev-C++
- Replies: 4
- Views: 1634
wxDev-C++ is just an IDE, and you have more alternatives out there. So that, you should ask your self about C/C++ programming, and if this language (and the wxWidgets toolkit) covers your needs. IMHO, it is not a replacement for VB, but a new a more complete world of possibilities for your apps :) R...
- Wed Apr 09, 2008 8:18 pm
- Forum: C++ Development
- Topic: Porting, windows to linux
- Replies: 18
- Views: 2710
- Tue Apr 08, 2008 10:28 am
- Forum: Compiler / Linking / IDE Related
- Topic: Missing Libraries
- Replies: 2
- Views: 582
As far as I know, the executable package you have downloaded and installed is only the source code for wxMSW. You need to compile it and build your own libraries, depending on the compiler you want to use. You'll find a lot of documentation on how to do this, and you could also download packages wit...
- Tue Apr 08, 2008 10:20 am
- Forum: Compiler / Linking / IDE Related
- Topic: wxMenuToolBar problem
- Replies: 1
- Views: 615
- Tue Apr 08, 2008 9:47 am
- Forum: C++ Development
- Topic: wxGrid redim and other question
- Replies: 5
- Views: 646
- Tue Apr 08, 2008 8:41 am
- Forum: C++ Development
- Topic: Sometimes I get event, sometimes not.
- Replies: 2
- Views: 572
- Sun Apr 06, 2008 5:39 pm
- Forum: C++ Development
- Topic: RAD tool advice
- Replies: 13
- Views: 2904
Hello, ignac. As always, this question simply requires that you spend some time trying all the tools you have discovered, and then, after some weeks, use the one that makes you feel more comfortable and covers better your needs. I'm absoulutely convinced that gnu-gcc (as compiler) + Code::Blocks (as...
- Mon May 14, 2007 10:09 pm
- Forum: Compiler / Linking / IDE Related
- Topic: best ide integration
- Replies: 12
- Views: 2734
(..) My selection is the Code::Blocks IDE, wxFormBuilder for building GUI and MinGW as a windows compiled I totally agree with your comments. If you love open-source tools, and need some cross-plattform developing (or not), then Code::Blocks (as IDE), wxFormBuilder (as GUI Builder) are the perfect ...
- Mon May 14, 2007 9:48 pm
- Forum: Compiler / Linking / IDE Related
- Topic: minimal test
- Replies: 11
- Views: 1495
Re: minimal test
(..) as i start the project ,I select dll , unicode,and debug I've understood that if you are selecting those parameters in the C::B wizard, then it's supposed that you have built your wxWidgets libraries using SHARED=1, UNICODE=1, MONOLITHIC=0 and BUILD=debug. Isn't it? But instead of rebulding yo...
- Wed May 02, 2007 8:06 pm
- Forum: C++ Development
- Topic: Scientific numbers
- Replies: 3
- Views: 669
Re: Scientific numbers
(..) How do I output a value of say (..) In spite of being off-topic in this forum, for arbitrary precission floating point numbers, you could consider the nice GMP , the GNU Multiple Precision arithmetic library, or apfloat library (a C++ high performance arbitrary precision arithmetic package, as...