Search found 89 matches

by Infinity_77
Sat May 23, 2009 2:43 pm
Forum: C++ Development
Topic: I need documentation about wxTreeListCtrl
Replies: 5
Views: 11599

protocol wrote:This was the second Google search result: http://wxcode.sourceforge.net/component ... rence.html
Thank you for that, I thought there was no docs anywhere... We really should include that in wxPython.

Andrea.
by Infinity_77
Sat May 23, 2009 2:30 pm
Forum: C++ Development
Topic: I need documentation about wxTreeListCtrl
Replies: 5
Views: 11599

Re: I need documentation about wxTreeListCtrl

Hi, I am using wxPython 2.8.10.1. I am using wx.gizmos.TreeListCtrl. But the documentation of this class has *ONLY ONE* statement: Proxy of C++ TreeListCtrl class . No method documentation, no argument documentation, no constant documentation, nothing. I try to find something like wxTreeListCtrl in ...
by Infinity_77
Fri Apr 24, 2009 10:28 am
Forum: General Development
Topic: wxPyton pointers or what?
Replies: 3
Views: 6331

Hi, In any case you should not have to type the asterisk yourself. I wrote lots of apps in wxPython, and you can simply pass objects by reference. Like dc.drawLine(coords) C++ is (globally) building on top of C, so yes * means pointer. None of the above answers actually apply to wxPython. "*&qu...
by Infinity_77
Mon Apr 20, 2009 8:36 am
Forum: Component Writing
Topic: wx.aui: resize pane
Replies: 4
Views: 12522

Your version behaves quite different from the original. No it does not. It's not the behaviour, it's just the look and feel. Why don't you accept size as tuple? This is Python, not C++. You have the option to pass a wx.Size or a pair of x, y, i.e.: MinSize(wx.Size(200, 100)) MinSize(200, 100) Pytho...
by Infinity_77
Mon Apr 20, 2009 8:08 am
Forum: Component Writing
Topic: wx.aui: resize pane
Replies: 4
Views: 12522

Re: wx.aui: resize pane

Hi, I have a pane with dynamic content. Each time I change the content I want the pane resized to fit all elements. I do following: 1. Get size of the pane;'s main sizer 2. pane.MinSize(x,y) 3. pane.MaxSize(x,y) The MinSize is working. But MaxSize - does not. The pane size remains bigger than the si...
by Infinity_77
Thu Apr 16, 2009 8:12 am
Forum: C++ Development
Topic: Why wxBufferedPaintDC doesn't work ?
Replies: 11
Views: 28470

Hi, Thank you for your advise. I am using wxPython with wxWidgets 2.8.9.2 and i found that there is no such function of "SetDoubleBuffered". Of course there is. Try this: import wx help(wx.Window.SetDoubleBuffered) I once tried to set the DOUBLE_BUFFER variable to True before anything is d...
by Infinity_77
Wed Apr 15, 2009 8:41 pm
Forum: C++ Development
Topic: wxSpinCtrl and Focus
Replies: 3
Views: 16039

Re: wxSpinCtrl and Focus

Hi, Hi friends, is there a way to find out wether a wxSpinCtrl object is focused or not. I know, there is the FokusEvent raised when the control is fokused. But does a way exist to write the code like this: wxSpinCtrl *m_pSpinCtrl = new wxSpinCtrl(...); .... m_pSpinCtrl->IsFocused(); Best regards Or...
by Infinity_77
Wed Apr 08, 2009 9:39 am
Forum: C++ Development
Topic: Difference between max size, best size and min size ?
Replies: 3
Views: 16362

Re: Difference between max size, best size and min size ?

Hi, Hi all, Reading about sizers ... a windows seems to have a min size, best size and max size. Min and max size seem to be pretty obvious, what's exactly is the point of the best size? My guess would be that, if there's plenty of room available, then don't make it bigger than the best size. In whi...
by Infinity_77
Sat Apr 04, 2009 11:49 am
Forum: C++ Development
Topic: wxAuiTabArt: examples ?
Replies: 3
Views: 6757

Re: wxAuiTabArt: examples ?

Hi, Hi, I'd like to customize the tab look of a wxAuiNotebook, changing for example that tab background and foreground color, or using a bitmap. I could not find any code example, can you help ? Thanks. There are some examples I wrote as part of my library in wxPython (AGW), in the wxPython SVN trun...
by Infinity_77
Wed Mar 25, 2009 10:01 am
Forum: Announcements and Discoveries
Topic: wxAUI Improvements
Replies: 74
Views: 1197808

Hi jjn, NinjaNL and All, I was wondering if you had an answer for a small problem I am facing. Basically, it is related to automatic notebooks vs developer-created notebooks (i.e., explicitely created as wxAuiNotebook and then added as panes to the AuiManager). The behaviour of the 2 notebooks is fa...
by Infinity_77
Wed Mar 18, 2009 6:55 pm
Forum: Announcements and Discoveries
Topic: wxAUI Improvements
Replies: 74
Views: 1197808

Hi jjn & All, It is a feature added in 2.8.10. You can see the following to implement it. http://trac.wxwidgets.org/changeset/57885 Thank you for the info, I got it working without too much effort... 2) Once you float a pane, this pane lives in a AuiFloatingFrame which has its own manager: howev...
by Infinity_77
Tue Mar 17, 2009 2:57 pm
Forum: Announcements and Discoveries
Topic: wxAUI Improvements
Replies: 74
Views: 1197808

Hi jjn, NinjaNL and All, I have translated the whole wxAUI to wxPython, including all the modifications made by jjn and NinjaNL. It's working quite well, but I have few questions for you as it looks like you know much better than I do the internals of wxAUI: 1) The official wxAUI has the AUI_MGR_LIV...
by Infinity_77
Fri Feb 06, 2009 11:06 pm
Forum: Announcements and Discoveries
Topic: wxAUI Improvements
Replies: 74
Views: 1197808

Why aren't these patches part of the official trunk? Of everything here, I'm most suprised by jjn, who while he's linked to the specific tracker issues he's fixed, he didn't actually post the patches into the tracker for each of the issues. Most of these patches would have already been applied if t...
by Infinity_77
Tue Jan 13, 2009 3:55 pm
Forum: Open Discussion
Topic: WxWidgets For Python 3.0?
Replies: 3
Views: 7693

Re: WxWidgets For Python 3.0?

Hi, I am a total newbie to wxWidgets, Python, etc. I have a number of years experience programming, just not with this "stuff." So, please forgive me if my question is basic and\or illogical. I just downloaded Python 3.0 and am looking for a dev environment. Q: Does WxWidgets support Pytho...
by Infinity_77
Mon Sep 15, 2008 4:02 pm
Forum: The Code Dump
Topic: wxFlatMenu & wxFlatMenuBar
Replies: 117
Views: 840429

Hi Eran,

have you had any chance to take a look at this issue? I debugged my code back and forth but I am just hitting a wall... perhaps FlatMenu needs its creator's attention in order to be fixed :D

Andrea.