Well, thanks for the pointers, but I am still looking
for something more like a list of available classes and
their associated methods and attributes. Does such a
thing exist. Say I am using a wxPanel widget, what
methods are available for retrieving the selected
value, appending values to the list, etc.
--vicki
In wxPython the term "frame" means a top-level window,
and you
probably mean a wxPanel when you say frame. In any
case, have you
tried the following resources:
http://tinyurl.com/9oqq (wiki: Getting Started 7.1.1
layout)
http://wiki.wxpython.org/index.cgi/How_20to_20Learn_20wxPython
···
http://wiki.wxpython.org/index.cgi/RecipesControls
and, of course, the wxPython demo app?
Regards,
=====
Donnal Walter
Arkansas Children's Hospital
---------------------------------------------------------------------
To unsubscribe, e-mail:
wxPython-users-unsubscribe@lists.wxwindows.org
For additional commands, e-mail:
wxPython-users-help@lists.wxwindows.org
If you're on Win32, look for the "wxWindows Reference" in the wxPython installation group. This is the C++ reference, with a few notes for wxPython added. Also available online here:
http://www.lpthe.jussieu.fr/~zeitlin/wxWindows/docs/wxwin.htm
HTH,
Mike
vicki@stanfield.net wrote:
···
Well, thanks for the pointers, but I am still looking
for something more like a list of available classes and
their associated methods and attributes. Does such a
thing exist. Say I am using a wxPanel widget, what
methods are available for retrieving the selected
value, appending values to the list, etc.
--vicki
In wxPython the term "frame" means a top-level window,
and you
probably mean a wxPanel when you say frame. In any
case, have you
tried the following resources:
http://tinyurl.com/9oqq (wiki: Getting Started 7.1.1
layout)
http://wiki.wxpython.org/index.cgi/How_20to_20Learn_20wxPython
http://wiki.wxpython.org/index.cgi/RecipesControls
and, of course, the wxPython demo app?
Regards,
=====
Donnal Walter
Arkansas Children's Hospital
---------------------------------------------------------------------
To unsubscribe, e-mail:
wxPython-users-unsubscribe@lists.wxwindows.org
For additional commands, e-mail:
wxPython-users-help@lists.wxwindows.org
---------------------------------------------------------------------
To unsubscribe, e-mail: wxPython-users-unsubscribe@lists.wxwindows.org
For additional commands, e-mail: wxPython-users-help@lists.wxwindows.org
--
_______________________________________
Mike C. Fletcher
Designer, VR Plumber, Coder
http://members.rogers.com/mcfletch/
vicki@stanfield.net wrote:
Well, thanks for the pointers, but I am still looking
for something more like a list of available classes and
their associated methods and attributes. Does such a
thing exist. Say I am using a wxPanel widget, what
methods are available for retrieving the selected
value, appending values to the list, etc.
--vicki
Umm, how about the documentation? (included in the distribution, or at
http://www.wxpython.org/onlinedocs.php). At present, the documentation is really for the underlying C++ wxWindows library, but it does include some notes on how to translate to Python/wxPython, and the wiki has more:
http://wiki.wxpython.org/index.cgi/C_2b_2bGuideForwxPythoneers
Incidentally, a wxPanel is only a container of other widgets, so the concepts of selected value, appending values to a list, etc. don't really apply.
As far as the specific class you are looking for when you talk about putting a frame inside another frame, it might be a wxPanel (as previously suggested), or it might be a wxBoxSizer used to do nested layouts of widgets.
David