Search found 189 matches

by cecilio
Sat Oct 31, 2009 8:29 am
Forum: Component Writing
Topic: Custom wxStaticBox
Replies: 4
Views: 3680

Thanks for your reply. I don't mind that the control doesn't have a native look. As I'm going to paint it, I already assumed it. I also considered your suggested approach. In fact, before my first post I was looking at the wiki and read the example you mention. I also did a search in the forum and f...
by cecilio
Fri Oct 30, 2009 4:21 pm
Forum: Component Writing
Topic: Custom wxStaticBox
Replies: 4
Views: 3680

Custom wxStaticBox

I would like to modify wxStaticBox to draw the box in a different way and add a couple of custom methods to deal with colours. So my first idea was to derive a new class from wxStaticBox and to override the OnPaint() method or equivalent one. But I found two problems: 1. the wxStaticBox interface is...
by cecilio
Sat Aug 15, 2009 6:06 pm
Forum: Open Discussion
Topic: Mouse icons editor
Replies: 0
Views: 1263

Mouse icons editor

Any one could recommend me a good open software mouse cursor icons editor? It should be able to export the cursor at least for windows and linux.

Thanks in advance
by cecilio
Tue May 05, 2009 6:17 am
Forum: General Development
Topic: RTTI: How to create an instance dynamically?
Replies: 1
Views: 1041

Problem found! I coded IMPLEMENT_CLASS instead of IMPLEMENT_DYNAMIC_CLASS :oops:

Now works perfectly!
by cecilio
Mon May 04, 2009 3:58 pm
Forum: General Development
Topic: RTTI: How to create an instance dynamically?
Replies: 1
Views: 1041

RTTI: How to create an instance dynamically?

I'm trying to dynamically create an instance of a class (lmToolPage). This class derives from wxPanel. In the class declaration I have included macro: DECLARE_DYNAMIC_CLASS(lmToolPage) And in the implementation: IMPLEMENT_CLASS(lmToolPage, wxPanel) I have defined a default constructor: lmToolPage::l...
by cecilio
Tue Feb 24, 2009 6:07 pm
Forum: General Development
Topic: How to organise third party packages?
Replies: 2
Views: 1199

Auria, thank you for your tips.

I liked very much the first one: to add to wxComponents directly to the source tree, instead of building libraries. So i decided to test it ... and it really saves a lot of effort!. Thanks very much.

Regards,
by cecilio
Sun Feb 22, 2009 3:35 pm
Forum: General Development
Topic: How to organise third party packages?
Replies: 2
Views: 1199

How to organise third party packages?

Hi All I'm starting to have organisational problems for using wxCode and third-party components with wxWidgets and my app. So I would appreciate very much your ideas about the correct way of dealing with third party components and libraries. In my app. I use both wxCode components and third party pa...
by cecilio
Thu Feb 05, 2009 2:35 pm
Forum: C++ Development
Topic: wxHtmlWindow displays raw html!
Replies: 2
Views: 811

Thanks Auria, I thought about it but, where and how to check and fix this? User reports the following settings for his/her computer: Charset encoding: Windows-1252 System locale name: English_United Kingdom. 1252 Canonical locale name: en And html file to display is utf-8. I understand than XP SP3 d...
by cecilio
Wed Feb 04, 2009 9:07 pm
Forum: Open Discussion
Topic: Unknown widget. Any one idenytifies it?
Replies: 1
Views: 1808

Problem solved. I asked the user and this is the answer I got: "The image at the bottom left is just the edge of a "sticky note" which I moved to the bottom of the screen in order to get it out of the way when I took the screenshot. The arrow bottom right is a just a programme that en...
by cecilio
Wed Feb 04, 2009 8:48 pm
Forum: Open Discussion
Topic: Unknown widget. Any one idenytifies it?
Replies: 1
Views: 1808

Unknown widget. Any one idenytifies it?

A user sent me an image to report a problem. The user says it is running Windows XP SP3. I noticed in the image a couple of things I do not understand (I attach the image with these two items marked in red): One is an odd widget, with an arrow, at bottom right corner. Do you know what is it? The oth...
by cecilio
Wed Feb 04, 2009 3:46 pm
Forum: C++ Development
Topic: wxHtmlWindow displays raw html!
Replies: 2
Views: 811

wxHtmlWindow displays raw html!

One of the users of my application has reported me this very astonishing problem. Insted of rendering the page, wxHtmlWindow shows the html code! (see attached picture). It is the first time I see this and I have no idea about the possible origin. It works ok on thousand of computers but not on that...
by cecilio
Sat Nov 15, 2008 7:34 pm
Forum: Platform Related Issues
Topic: Problem installing wxWidgets in Ubuntu
Replies: 5
Views: 1709

Thank you. I will now continue my fight with the machine ;-)

best regards,
by cecilio
Sat Nov 15, 2008 3:24 pm
Forum: Platform Related Issues
Topic: Problem installing wxWidgets in Ubuntu
Replies: 5
Views: 1709

Hi David, Thank you very much for the information. I thought that 'make install' among other things, would configure all. But without executing it, when I type 'wx-config' I get an error: cecilio@pp1:~/wxWidgets/wxGTK-2.8.9/build-debug$ wx-config El programa «wx-config» puede encontrarse en los sigu...
by cecilio
Sat Nov 15, 2008 11:47 am
Forum: Platform Related Issues
Topic: Problem installing wxWidgets in Ubuntu
Replies: 5
Views: 1709

Problem installing wxWidgets in Ubuntu

I'm trying to install wxWidgets (2.8.9) in a new PC. I installed Ubuntu 8.04, then I installed the necessary tools for development: $ sudo apt-get install build-essential subversion $ sudo apt-get install automake1.9 autoconf libtool $ sudo apt-get install libgtk2.0-dev libxmu-dev libxxf86vm-dev And...
by cecilio
Sat Oct 11, 2008 3:15 pm
Forum: Compiler / Linking / IDE Related
Topic: Problem with streams
Replies: 0
Views: 574

Problem with streams

When compiling my app. I get the following error: error: a matching function not found for ‘lmScoreDocument::SaveObject(wxOutputStream&)’ note: candidates are: virtual std::ostream& wxDocument::SaveObject(std::ostream&) note: lmScoreDocument derives from wxDocument. The offending method ...