if is posible "cut" the menu of the menu bars, right clicks, etc...
and stay on one tool window for example in the IDLE of the python. or
any idea to put it in a window handmade(sources)?
What do you mean by 'cut'? Are you referring to a separator? If so,
try something like this:
file = wx.Menu()
file.Append(-1, '&New')
file.Append(-1, '&Open')
file.AppendSeparator() # Maybe this is what you're looking for...
file.Append(-1, '&Save')
···
On Fri, Jan 14, 2011 at 7:36 AM, iozk_Live <iozk117@gmail.com> wrote:
if is posible "cut" the menu of the menu bars, right clicks, etc...
and stay on one tool window for example in the IDLE of the python. or
any idea to put it in a window handmade(sources)?--
To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com
or visit http://groups.google.com/group/wxPython-users?hl=en
no i refer is that the menu can be placed in a window for example in
the python IDLE and in the softimage xsi that have a "Dashed
line" (with a litle scissors)in the top of the menu list that do which
can be showed in a window separately like this
···
On 18 ene, 12:15, jeprox script <j3p...@gmail.com> wrote:
What do you mean by 'cut'? Are you referring to a separator? If so,
try something like this:file = wx.Menu()
file.Append(-1, '&New')
file.Append(-1, '&Open')
file.AppendSeparator() # Maybe this is what you're looking for...
file.Append(-1, '&Save')On Fri, Jan 14, 2011 at 7:36 AM, iozk_Live <iozk...@gmail.com> wrote:
> if is posible "cut" the menu of the menu bars, right clicks, etc...
> and stay on one tool window for example in the IDLE of the python. or
> any idea to put it in a window handmade(sources)?> --
> To unsubscribe, send email to wxPython-users+unsubscribe@googlegroups.com
> or visithttp://groups.google.com/group/wxPython-users?hl=en
Not for all platforms. Native menus on Windows and Mac do not have that feature. You can do it on wxGTK if you use the wx.MENU_TEAROFF style.
···
On 1/23/11 5:22 PM, iozk_Live wrote:
On 18 ene, 12:15, jeprox script<j3p...@gmail.com> wrote:
What do you mean by 'cut'? Are you referring to a separator? If so,
try something like this:file = wx.Menu()
file.Append(-1, '&New')
file.Append(-1, '&Open')
file.AppendSeparator() # Maybe this is what you're looking for...
file.Append(-1, '&Save')On Fri, Jan 14, 2011 at 7:36 AM, iozk_Live<iozk...@gmail.com> wrote:
if is posible "cut" the menu of the menu bars, right clicks, etc...
and stay on one tool window for example in the IDLE of the python. or
any idea to put it in a window handmade(sources)?no i refer is that the menu can be placed in a window for example in
the python IDLE and in the softimage xsi that have a "Dashed
line" (with a litle scissors)in the top of the menu list that do which
can be showed in a window separately like thishttp://i254.photobucket.com/albums/hh93/iozk/menu.png?t=1295832117
--
Robin Dunn
Software Craftsman