************ wx.LogWindow ************ Inheritance diagram for `wx.LogWindow`: | .. inheritance-diagram:: wx.LogWindow | Description =========== This class represents a background log window: to be precise, it collects all log messages in the log frame which it manages but also passes them on to the log target which was active at the moment of its creation. This allows, for example, to show all the log messages in a frame but still continue to process them normally by showing the standard log dialog. .. seealso:: `wx.LogTextCtrl `_ Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `GetFrame <#GetFrame>`_ * `GetOldLog <#GetOldLog>`_ * `IsPassingMessages <#IsPassingMessages>`_ * `PassMessages <#PassMessages>`_ * `Show <#Show>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `Frame <#Frame>`_ * `OldLog <#OldLog>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(pParent, szTitle, bShow=True, bPassToOld=True) Creates the log frame window and starts collecting the messages in it. **Parameters:** * `pParent` (`wx.Frame `_): The parent window for the log frame, may be ``None``. * `szTitle` (string): The title for the log frame. * `bShow` (bool): ``True`` to show the frame initially (default), otherwise `Show <#Show>`_ must be called later. * `bPassToOld` (bool): ``True`` to process the log messages normally in addition to logging them in the log frame (default), ``False`` to only log them in the log frame. | **Returns:** `wx.LogWindow `_ -------- .. method:: GetFrame() Returns the associated log frame window. This may be used to position or resize it but use `Show <#Show>`_ to show or hide it. | **Returns:** `wx.Frame `_ -------- .. method:: GetOldLog() `No docstrings available for this method.` -------- .. method:: IsPassingMessages() `No docstrings available for this method.` -------- .. method:: PassMessages(bDoPass) | **Parameters:** * `bDoPass` (bool) -------- .. method:: Show(show=True) Shows or hides the frame. **Parameters:** * `show` (bool) -------- Properties ^^^^^^^^^^ .. attribute:: Frame See `GetFrame <#GetFrame>`_ .. attribute:: OldLog See `GetOldLog <#GetOldLog>`_