Search found 89 matches

by Infinity_77
Tue May 15, 2007 9:19 pm
Forum: C++ Development
Topic: Changing the appearance of statictext or Bitmap
Replies: 7
Views: 4194

I think, wxBitmapButton is not enough. If I use it, there are still the borders of the Button. For example, if I like to have a circle as a button, I have drawn the circle as a png file. The user should only be possible to click on the circle, nowhere else to activate the event. It looks like in th...
by Infinity_77
Tue May 15, 2007 8:54 pm
Forum: C++ Development
Topic: 3D button
Replies: 4
Views: 1366

for example, a round button.. I am using normal wxWidgets.. I don't know if a rounded button implementation exists in wxWidgets, but you can always switch to wxPython: http://xoomer.alice.it/infinity77/eng/freeware.html#shapedbutton :-D :-D Anyway, it's not that complicated to build your own button...
by Infinity_77
Tue May 15, 2007 8:42 pm
Forum: General Development
Topic: disable without actually disabling
Replies: 8
Views: 5206

[quote="ianar
by Infinity_77
Fri May 11, 2007 10:22 am
Forum: C++ Development
Topic: WxPaintDC event as member of class?
Replies: 13
Views: 3631

Im calling the drawing function from within a wxTimer class, which is why I can't use the wxPaintDC event. What can i do? Should I call the ClientDC from within an OnPaint event too to have it redraw? When I call it from within there in addition to calling it normally, it doesn't do anyhting at all...
by Infinity_77
Thu May 03, 2007 9:25 am
Forum: wxCode
Topic: wx.lib.customtreectrl wnd=panel bug?
Replies: 6
Views: 2491

I can't get a CustomTreeCtrl node using a panel with child elements using a BoxSizer to display correctly. What happens is that the panel draws as a 16x16 grey grid and no child elements draw on the panel. This has very little to do with wxWidgets, as CustomTreeCtrl is a pure Python control. I am t...
by Infinity_77
Tue Apr 17, 2007 8:32 am
Forum: C++ Development
Topic: ModernDockArt for wxAUI?
Replies: 3
Views: 1405

Hi tierra, thank you for your answer. Actually, the patch was on the wxAUI forum, initially implemented by astigsen and modified by vexator: http://www.kirix.com/community/forums/viewtopic.php?t=77 And then Joel added the correct buttons states and fixed few bugs that appeared in the aforementioned ...
by Infinity_77
Mon Apr 16, 2007 8:04 pm
Forum: C++ Development
Topic: ModernDockArt for wxAUI?
Replies: 3
Views: 1405

ModernDockArt for wxAUI?

Hi All, sorry for my extreme ignorance in C++, I am just an amateur wxPython coder. I remember seeing an implementation of ModernDockArt (that used wxUxTheme) made by astigsen and modified by Joel, but I am unable to find it again on the web. I was interested in the final version from Joel as it see...
by Infinity_77
Sun Apr 08, 2007 8:44 pm
Forum: C++ Development
Topic: wxMenuItem bitmaps do not display
Replies: 2
Views: 1943

Hi Jimmy, bmp = wx.Image("images\\new24.bmp", wx.BITMAP_TYPE_BMP).ConvertToBitmap() You don't need to use wx.Image and then ConvertToBitmap. Just use wx.Bitmap() as you do it in wxWidgets. self.fileNewItem = fileMenu.Append(-1, "New ...", "Create new image") self.fileNe...
by Infinity_77
Tue Mar 20, 2007 8:10 pm
Forum: Component Writing
Topic: WxNotebook
Replies: 4
Views: 2288

self.YourComponent = new YourComponent(YourCompent's comma separated parameter list);
It's curious to see this mix between Python (when you use "self") and wxWidgets :D

Andrea.
by Infinity_77
Mon Feb 26, 2007 11:29 am
Forum: C++ Development
Topic: Four-split window
Replies: 6
Views: 2685

So, to put it short: No, there is no easier method (such as wx4SplitterWindow) and you might like to consider sizers and wxAUI (advanced user interface). I'll get on this as I get other stuff before this. Just curious. Anyways, I think I'll check out wxSizerPane and wxAUI as I get to set up edit wi...
by Infinity_77
Thu Feb 01, 2007 10:49 am
Forum: C++ Development
Topic: Generic Ruler
Replies: 2
Views: 2050

Is there a generic horozontal and vertical ruler available or a window that has a generic rulers on the sides? I've searched for one, but have been unsuccessful. I don't know about wxWidgets, but there surely is one for wxPython: http://xoomer.alice.it/infinity77/eng/freeware.html#rulerctrl :lol:
by Infinity_77
Fri Jan 26, 2007 2:15 pm
Forum: C++ Development
Topic: Code bloat in 2.80 ?
Replies: 6
Views: 2745

Maybe got to do with me using the wxmsw projects in the pre 2.8 versions, where in the 2.80 I couldn't find anything like this anymore and had to use base/core libs which added roughly 300kB to my dll files (which is extreme, considering I use the same precompiler settings where possible). But yeah...
by Infinity_77
Tue Jan 09, 2007 8:53 pm
Forum: C++ Development
Topic: DragScroller in C++
Replies: 3
Views: 1931

Hi Jorgen, No I don't think so. I really envy the wxPython guys for such great controls. I gues it is all so much simpler to write extra classes in wxPython, because you have a low threshold of distributing / using and making it cross platform. One of the great things about being able to "insta...
by Infinity_77
Sat Nov 11, 2006 10:26 pm
Forum: C++ Development
Topic: effective and fast picture thumbnail loading
Replies: 1
Views: 1083

Hi Mixeh,

the only solution that I know of is ThumbnailCtrl, in the wxVillaLib library:

http://wxvillalib.sourceforge.net/

You may want to look at ThumbnailCtrl in that library.

HTH.

Andrea.
by Infinity_77
Fri Nov 10, 2006 10:02 pm
Forum: C++ Development
Topic: wxScrolledWindow headache...
Replies: 0
Views: 883

wxScrolledWindow headache...

Hello NG, First of all, I apologize to be so ignorant in wxWidgets things. I am looking at the source code of wxScrolledWindow in the *generic* implementation. This window intercepts char events, obviously. Let's suppose I hit the page down char on my keyboard, and this is what the code actually doe...