phoenix_title wx.aui.AuiMDIChildFrame


class_hierarchy Class Hierarchy

Inheritance diagram for class AuiMDIChildFrame:

method_summary Methods Summary

__init__

Activate

Create

CreateStatusBar

CreateToolBar

Destroy

Destroys the window safely.

GetClassDefaultAttributes

GetIcon

GetIcons

GetMDIParentFrame

GetMenuBar

GetStatusBar

GetTitle

GetToolBar

Iconize

IsFullScreen

IsIconized

IsMaximized

IsTopLevel

Returns True if the given window is a top-level one.

Maximize

Restore

SetIcon

SetIcons

SetMDIParentFrame

SetMenuBar

SetStatusText

SetStatusWidths

SetTitle

Show

Shows or hides the window.

ShowFullScreen


property_summary Properties Summary

Icon

See GetIcon and SetIcon

Icons

See GetIcons and SetIcons

MDIParentFrame

See GetMDIParentFrame and SetMDIParentFrame

MenuBar

See GetMenuBar and SetMenuBar

StatusBar

See GetStatusBar

Title

See GetTitle and SetTitle

ToolBar

See GetToolBar


api Class API

class wx.aui.AuiMDIChildFrame(Panel)

Possible constructors:

AuiMDIChildFrame()

AuiMDIChildFrame(parent, winid=ID_ANY, title="", pos=DefaultPosition,
                 size=DefaultSize, style=DEFAULT_FRAME_STYLE, name=FrameNameStr)
__init__(self, *args, **kw)

overload Overloaded Implementations:



__init__ (self)



__init__ (self, parent, winid=ID_ANY, title=””, pos=DefaultPosition, size=DefaultSize, style=DEFAULT_FRAME_STYLE, name=FrameNameStr)

Parameters



Activate(self)
Create(self, parent, winid=ID_ANY, title='', pos=DefaultPosition, size=DefaultSize, style=DEFAULT_FRAME_STYLE, name=FrameNameStr)
Parameters
Return type

bool

CreateStatusBar(self, number=1, style=1, winid=1, name='')
Parameters
  • number (int) –

  • style (long) –

  • winid (wx.WindowID) –

  • name (string) –

Return type

StatusBar

CreateToolBar(self, style, winid, name)
Parameters
  • style (long) –

  • winid (wx.WindowID) –

  • name (string) –

Return type

ToolBar

Destroy(self)

Destroys the window safely.

Use this function instead of the delete operator, since different window classes can be destroyed differently. Frames and dialogs are not destroyed immediately when this function is called

Return type

bool

Returns

True if the window has either been successfully deleted, or it has been added to the list of windows pending real deletion.

static GetClassDefaultAttributes(variant=WINDOW_VARIANT_NORMAL)
Parameters

variant (WindowVariant) –

Return type

VisualAttributes

GetIcon(self)
Return type

Icon

GetIcons(self)
Return type

IconBundle

GetMDIParentFrame(self)
Return type

wx.aui.AuiMDIParentFrame

GetMenuBar(self)
Return type

MenuBar

GetStatusBar(self)
Return type

StatusBar

GetTitle(self)
Return type

string

GetToolBar(self)
Return type

ToolBar

Iconize(self, iconize=True)
Parameters

iconize (bool) –

IsFullScreen(self)
Return type

bool

IsIconized(self)
Return type

bool

IsMaximized(self)
Return type

bool

IsTopLevel(self)

Returns True if the given window is a top-level one.

Currently all frames and dialogs are considered to be top-level windows (even if they have a parent window).

Return type

bool

Maximize(self, maximize=True)
Parameters

maximize (bool) –

Restore(self)
SetIcon(self, icon)
Parameters

icon (wx.Icon) –

SetIcons(self, icons)
Parameters

icons (wx.IconBundle) –

SetMDIParentFrame(self, parent)
Parameters

parent (wx.aui.AuiMDIParentFrame) –

SetMenuBar(self, menuBar)
Parameters

menuBar (wx.MenuBar) –

SetStatusText(self, text, number=0)
Parameters
  • text (string) –

  • number (int) –

SetStatusWidths(self, widths)
Parameters

widths (list of integers) –

SetTitle(self, title)
Parameters

title (string) –

Show(self, show=True)

Shows or hides the window.

You may need to call Raise for a top level window if you want to bring it to top, although this is not needed if Show is called immediately after the frame creation.

Notice that the default state of newly created top level windows is hidden (to allow you to create their contents without flicker) unlike for all the other, not derived from wx.TopLevelWindow, windows that are by default created in the shown state.

Parameters

show (bool) – If True displays the window. Otherwise, hides it.

Return type

bool

Returns

True if the window has been shown or hidden or False if nothing was done because it already was in the requested state.

See also

IsShown , Hide , wx.RadioBox.Show , wx.ShowEvent.

ShowFullScreen(self, show, style)
Parameters
  • show (bool) –

  • style (long) –

Return type

bool

Icon

See GetIcon and SetIcon

Icons

See GetIcons and SetIcons

MDIParentFrame

See GetMDIParentFrame and SetMDIParentFrame

MenuBar

See GetMenuBar and SetMenuBar

StatusBar

See GetStatusBar

Title

See GetTitle and SetTitle

ToolBar

See GetToolBar