Search found 421 matches

by Utensil
Fri Feb 22, 2008 5:26 pm
Forum: General Forum Issues
Topic: Could I translate posts in this forum into my language?
Replies: 37
Views: 20415

The Chinese descriptive text: 这是wxWidgets论坛的中文版本。在这里,您可以用您的母语汉语讨论上面任一子论坛所涉及的所有关于wxWidgets的话题。欢迎大家参与到对有价值的帖子的中英互译工作中来! I modified Jorg's version a little. I combined his 2nd and 3rd sentences to my 2nd sentence and added a 3rd sentence, saying: Welcome join us in the translation work of valuable post...
by Utensil
Wed Feb 20, 2008 3:07 pm
Forum: General Forum Issues
Topic: Could I translate posts in this forum into my language?
Replies: 37
Views: 20415

Is there any indication which languages are needed? I can choose some but rather have a solid base for the most needed languages. The NEED is something that little i can't say, my point can't represent the general need by Chinese or other forum members...That's the difficult part...And that's why I...
by Utensil
Wed Feb 20, 2008 2:20 pm
Forum: C++ Development
Topic: wxStyledTextCtrl and Ctrl-Enter
Replies: 2
Views: 923

Hi! Ctrl-Enter has been processed by wxWidgets for navigation between controls, before this event reaches your function See http://www.wxwidgets.org/manuals/stable/wx_wxtextctrl.html#wxtextctrl : wxTE_PROCESS_TAB The control will receive wxEVT_CHAR events for TAB pressed - normally, TAB is used for ...
by Utensil
Tue Feb 19, 2008 2:25 pm
Forum: C++ Development
Topic: isn't wxSize in pixels?
Replies: 4
Views: 1405

Hi! What you have observed is really weird, because wxSize doesn't use a different measure unity from pixels, according to the following paragraph in http://www.wxwidgets.org/manuals/stable/wx_wxwindow.html#wxwindowgetsize : This gets the size of the entire window in pixels, including title bar, bor...
by Utensil
Mon Feb 18, 2008 10:13 am
Forum: C++ Development
Topic: problem of using wxGLCanvas to draw a cube
Replies: 6
Views: 1413

Another problem in your code is about the float point literal, I found it when I copied your code into my OnPaint function and compile: you wirte: 1.0 f (WRONG) instead of: 1.0f (RIGHT) This mistake is everywhere in your code. And extraly a ".0.5f" which has one redundant decimal point. Wh...
by Utensil
Mon Feb 18, 2008 5:49 am
Forum: General Forum Issues
Topic: A bug about BBCode and some trivial suggestions
Replies: 0
Views: 1488

A bug about BBCode and some trivial suggestions

Hi wxMods, it seems that I've come across a bug, it's one-hundred-percent repeatable: Using the tag with a url that has a space witin might make the whole post invisible, e.g. http://www.wxwidgets.org/manuals/stable/wx_wxglcanvas.html#wxglcanvasconstr . I found this because I accidentally entered a ...
by Utensil
Mon Feb 18, 2008 3:24 am
Forum: C++ Development
Topic: problem of using wxGLCanvas to draw a cube
Replies: 6
Views: 1413

Hi! Glad to see someone from China too! In your source, I found something weird: 1) You never create a TestGLCanvas in the constructor of MyFrame, though you said you did in your post. 2) You didn't pass attribList to wxGLCanvas, in that case, all you would got is just a flash when you attempted to ...
by Utensil
Mon Feb 18, 2008 2:34 am
Forum: General Forum Issues
Topic: Could I translate posts in this forum into my language?
Replies: 37
Views: 20415

Sorry for keeping this question unclosed, but since I don't sense a conlusive answer or decision, I don't know how to "Accept".....Are the new forums we discussed already in progress or in schedule? I'm a little confused...

Regards,

Utensil Candel
by Utensil
Mon Feb 18, 2008 1:44 am
Forum: C++ Development
Topic: Applying Skins
Replies: 1
Views: 780

wxSkin developed by upCase( http://forums.wxwidgets.org/profile.php?mode=viewprofile&u=21 ) might be exactly what you need. See first preview http://forums.wxwidgets.org/viewtopic.php?t=10392&highlight=wxskin wxSkin - release 0.9 alpha http://forums.wxwidgets.org/viewtopic.php?t=11064&hi...
by Utensil
Mon Feb 18, 2008 12:55 am
Forum: Compiler / Linking / IDE Related
Topic: Compiling wxWidgets on Vista with MinGW + MSYS
Replies: 4
Views: 1031

Thanks for both rameau2 and NinjaNL...

I'll try them later and come back to share the progress.

Regards,

Utensil Candel
by Utensil
Sun Feb 17, 2008 3:18 pm
Forum: Compiler / Linking / IDE Related
Topic: Link Error using wxWidgets compiled as a static library
Replies: 2
Views: 1240

Thank you for responding...

In the file build/msw/config.gcc, SHARE has already been set to 0. I tried both explicitly use SHARE=0 and implicitly...
by Utensil
Sun Feb 17, 2008 2:36 am
Forum: Compiler / Linking / IDE Related
Topic: Compiling wxWidgets on Vista with MinGW + MSYS
Replies: 4
Views: 1031

Hi! So glad to see someone strugling with Vista too. :) As for me, compiling with gcc under Vista always bring me endless rediculars complaining, some are solveable, some are not. Either Vista can't manage its path well or MinGW can't work with Vista's path...I performed a search in this site, there...
by Utensil
Sun Feb 17, 2008 1:33 am
Forum: C++ Development
Topic: Draw on "hidden" wxDC
Replies: 3
Views: 1158

In the second paragraph of http://www.wxwidgets.org/manuals/stable/wx_wxdc.html#wxdc : Notice that wxDC is an abstract base class and can't be created directly, please use wxPaintDC, wxClientDC, wxWindowDC, wxScreenDC, wxMemoryDC or wxPrinterDC. That's why your wxDC can't work and your wxClientDC wo...
by Utensil
Sat Feb 16, 2008 2:41 pm
Forum: C++ Development
Topic: A question about sizers and text
Replies: 7
Views: 1520

wxStaticText wasn't designed for that purpose, just like that you won't have a scalable bitmap in wxStaticBitmap. When you use wxEXPAND or set proportion to 1, wxStaticText did expand itself to be as big as possible. You can observed that the other controls will have less room. But the expanding of ...
by Utensil
Fri Feb 15, 2008 4:50 am
Forum: C++ Development
Topic: A question about sizers and text
Replies: 7
Views: 1520

Hi!

It's not so clear in your post that how you've tried to reach your purpose. Post some code snippet related might make it easier for us to help you.

Regards,

Utensil Candel