what is the value of wx_DEFAULT_FRAME_STYLE?

I'm sure this is an easy one, but I can't seem to find the answer anywhere -- it's not even included in the index at <http://www.wxpython.org/docs/api/indices.html >, nor is it explained on the page for wx.Frame.

Exactly what combination of attributes are equivalent to wx_DEFAULT_FRAME_STYLE?

And, where in the docs should I have looked to find this out?

Thanks,
- Joe

Defined as wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER | wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX | wxCLIP_CHILDREN.

(You can find it in the standard documentation, that can be downloaded at the page http://www.wxpython.org/download.php)

···

2008/10/26 Joe Strout joe@strout.net

I’m sure this is an easy one, but I can’t seem to find the answer anywhere – it’s not even included in the index at <http://www.wxpython.org/docs/api/indices.html>, nor is it explained on the page for wx.Frame.

Exactly what combination of attributes are equivalent to wx_DEFAULT_FRAME_STYLE?

And, where in the docs should I have looked to find this out?

Thanks,

  • Joe

wxpython-users mailing list

wxpython-users@lists.wxwidgets.org

http://lists.wxwidgets.org/mailman/listinfo/wxpython-users

Defined as wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER | wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX | wxCLIP_CHILDREN.

Thanks very much!

(You can find it in the standard documentation, that can be downloaded at the page Redirecting...)

Is this different from the online documentation at <wxPython API Documentation — wxPython Phoenix 4.2.2 documentation >? If so, why? If not, then where exactly would I find this, as I searched it every way I could think of and came up empty-handed?

Thanks,
- Joe

···

On Oct 25, 2008, at 11:21 PM, raffaello wrote:

Joe Strout wrote:

Is this different from the online documentation at <http://www.wxpython.org/docs/api>?
If so, why? If not, then where exactly would I find this, as I
searched it every way I could think of and came up empty-handed?

Yes, it is different: you can download it at the link http://www.wxpython.org/download.php, and it is rather awkward to use because it was written mainly for C++ but, IMHO, indispensable.

The definition of wxDEFAULT_FRAME_STYLE is in the entry wxFrame.

wx.Python, like Python, is a great tool, but they both suffer from the disease of all open code: poor documentation, and full of gaps, because anybody may add to it but to codify is sexier than to document. Therefore this forum and mainly Robin ought to be sanctified :slight_smile:

···

2008/10/26 Joe Strout joe@strout.net

On Oct 25, 2008, at 11:21 PM, raffaello wrote:

Defined as wxMINIMIZE_BOX | wxMAXIMIZE_BOX | wxRESIZE_BORDER | wxSYSTEM_MENU | wxCAPTION | wxCLOSE_BOX | wxCLIP_CHILDREN.

Thanks very much!

(You can find it in the standard documentation, that can be downloaded at the page http://www.wxpython.org/download.php)

Is this different from the online documentation at <http://www.wxpython.org/docs/api>? If so, why? If not, then where exactly would I find this, as I searched it every way I could think of and came up empty-handed?

Thanks,

  • Joe

wxpython-users mailing list

wxpython-users@lists.wxwidgets.org

http://lists.wxwidgets.org/mailman/listinfo/wxpython-users

raffaello wrote:

Joe Strout wrote:
/Is this different from the online documentation at <wxPython API Documentation — wxPython Phoenix 4.2.2 documentation? If so, why? If not, then where exactly would I find this, as I searched it every way I could think of and came up empty-handed?

/
Yes, it is different: you can download it at the link Redirecting..., and it is rather awkward to use because it was written mainly for C++ but, IMHO, indispensable.
The definition of wxDEFAULT_FRAME_STYLE is in the entry wxFrame.

You can also browse it online at wxWidgets: Documentation

···

--
Robin Dunn
Software Craftsman
http://wxPython.org Java give you jitters? Relax with wxPython!