phoenix_title wx.MiniFrame

A miniframe is a frame with a small title bar.

It is suitable for floating toolbars that must not take up too much screen area.

An example of mini frame can be seen in the Dialogs Sample using the “Mini frame” command of the “Generic dialogs” submenu.

^^

styles Window Styles

This class supports the following styles:

  • wx.ICONIZE: Display the frame iconized (minimized) (Windows only).

  • wx.CAPTION: Puts a caption on the frame.

  • wx.MINIMIZE: Identical to wx.ICONIZE.

  • wx.MINIMIZE_BOX: Displays a minimize box on the frame (Windows and Motif only).

  • wx.MAXIMIZE: Displays the frame maximized (Windows only).

  • wx.MAXIMIZE_BOX: Displays a maximize box on the frame (Windows and Motif only).

  • wx.CLOSE_BOX: Displays a close box on the frame.

  • wx.STAY_ON_TOP: Stay on top of other windows (Windows only).

  • wx.SYSTEM_MENU: Displays a system menu (Windows and Motif only).

  • wx.RESIZE_BORDER: Displays a resizable border around the window. ^^

Note

This class has miniframe functionality under Windows and GTK, i.e. the presence of mini frame will not be noted in the task bar and focus behaviour is different. On other platforms, it behaves like a normal frame.


class_hierarchy Class Hierarchy

Inheritance diagram for class MiniFrame:

appearance Control Appearance


wxMSW

wxMSW

wxMAC

wxMAC

wxGTK

wxGTK


method_summary Methods Summary

__init__

Default constructor.

Create

Used in two-step frame construction.

GetClassDefaultAttributes


api Class API

class wx.MiniFrame(Frame)

Possible constructors:

MiniFrame()

MiniFrame(parent, id=ID_ANY, title="", pos=DefaultPosition,
          size=DefaultSize, style=CAPTION|RESIZE_BORDER, name=FrameNameStr)

A miniframe is a frame with a small title bar.


Methods

__init__(self, *args, **kw)

overload Overloaded Implementations:



__init__ (self)

Default constructor.



__init__ (self, parent, id=ID_ANY, title=””, pos=DefaultPosition, size=DefaultSize, style=CAPTION|RESIZE_BORDER, name=FrameNameStr)

Constructor, creating the window.

Parameters
  • parent (wx.Window) – The window parent. This may be None. If it is not None, the frame will always be displayed on top of the parent window on Windows.

  • id (wx.WindowID) – The window identifier. It may take a value of -1 to indicate a default value.

  • title (string) – The caption to be displayed on the frame’s title bar.

  • pos (wx.Point) – The window position. The value DefaultPosition indicates a default position, chosen by either the windowing system or wxWidgets, depending on platform.

  • size (wx.Size) – The window size. The value DefaultSize indicates a default size, chosen by either the windowing system or wxWidgets, depending on platform.

  • style (long) – The window style. See wx.MiniFrame.

  • name (string) – The name of the window. This parameter is used to associate a name with the item, allowing the application user to set Motif resource values for individual windows.

Note

The frame behaves like a normal frame on non-Windows platforms.

See also

Create





Create(self, parent, id=ID_ANY, title="", pos=DefaultPosition, size=DefaultSize, style=CAPTION|RESIZE_BORDER, name=FrameNameStr)

Used in two-step frame construction.

See wx.MiniFrame for further details.

Parameters
  • parent (wx.Window) –

  • id (wx.WindowID) –

  • title (string) –

  • pos (wx.Point) –

  • size (wx.Size) –

  • style (long) –

  • name (string) –

Return type

bool



static GetClassDefaultAttributes(variant=WINDOW_VARIANT_NORMAL)
Parameters

variant (WindowVariant) –

Return type

wx.VisualAttributes