************ wx.MiniFrame ************ Inheritance diagram for `wx.MiniFrame`: | .. inheritance-diagram:: wx.MiniFrame | Description =========== 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. .. seealso:: `wx.MDIParentFrame `_, `wx.MDIChildFrame `_, `wx.Frame `_, `wx.Dialog `_ Derived From ^^^^^^^^^^^^^ * `wx.Frame `_ * `wx.Window `_ * `wx.EvtHandler `_ * `wx.Object `_ Window Styles ^^^^^^^^^^^^^ ================================================== ================================================== Window Style Description ================================================== ================================================== ``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.TINY_CAPTION_HORIZ`` This style is obsolete and not used any longer. ``wx.TINY_CAPTION_VERT`` This style is obsolete and not used any longer. ``wx.RESIZE_BORDER`` Displays a resizeable border around the window. ================================================== ================================================== Remarks ^^^^^^^ 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. Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(parent, id=-1, title="", pos=wx.DefaultPosition, size=wx.DefaultSize, style=wx.DEFAULT_MINIFRAME_STYLE, name=wx.FrameNameStr) Constructor. **Parameters:** * `parent` (`wx.Window `_) * `id` (int) * `title` (string) * `pos` (`wx.Point `_) * `size` (`wx.Size `_) * `style` (long) * `name` (string) | **Returns:** `wx.MiniFrame `_