.. wxPython Phoenix documentation This file was generated by Phoenix's sphinx generator and associated tools, do not edit by hand. Copyright: (c) 2011-2020 by Total Control Software License: wxWindows License .. include:: headings.inc .. _wx.PreviewFrame: ========================================================================================================================================== |phoenix_title| **wx.PreviewFrame** ========================================================================================================================================== This class provides the default method of managing the print preview interface. Member functions may be overridden to replace functionality, or the class may be used without derivation. .. seealso:: :ref:`wx.PreviewCanvas`, :ref:`wx.PreviewControlBar`, :ref:`wx.PrintPreview` | |class_hierarchy| Class Hierarchy ================================= .. raw:: html <div id="toggleBlock" onclick="return toggleVisibility(this)" class="closed" style="cursor:pointer;"> <img id="toggleBlock-trigger" src="_static/images/closed.png"/> Inheritance diagram for class <strong>PreviewFrame</strong>: </div> <div id="toggleBlock-summary" style="display:block;"></div> <div id="toggleBlock-content" style="display:none;"> <p class="graphviz"> <center><img src="_static/images/inheritance/wx.PreviewFrame_inheritance.svg" alt="Inheritance diagram of PreviewFrame" usemap="#dummy" class="inheritance"/></center> <script type="text/javascript">toggleVisibilityOnLoad(document.getElementById('toggleBlock'))</script> <map id="dummy" name="dummy"> <area shape="rect" id="node1" href="wx.PreviewFrame.html" title="This class provides the default method of managing the print preview interface." alt="" coords="43,466,200,495"/> <area shape="rect" id="node2" href="wx.Frame.html" title="A frame is a window whose size and position can (usually) be changed by the user." alt="" coords="72,389,171,418"/> <area shape="rect" id="node3" href="wx.TopLevelWindow.html" title="wx.TopLevelWindow is a common base class for wx.Dialog and wx.Frame." alt="" coords="34,313,209,341"/> <area shape="rect" id="node4" href="wx.NonOwnedWindow.html" title="Common base class for all non-child windows." alt="" coords="26,236,217,265"/> <area shape="rect" id="node5" href="wx.Window.html" title="wx.Window is the base class for all windows and represents any visible object on screen." alt="" coords="66,159,177,188"/> <area shape="rect" id="node6" href="wx.EvtHandler.html" title="A class that can handle events from the windowing system." alt="" coords="55,82,188,111"/> <area shape="rect" id="node7" href="wx.Object.html" title="This is the root class of many of the wxWidgets classes." alt="" coords="5,5,104,34"/> <area shape="rect" id="node8" href="wx.Trackable.html" title="Add-on base class for a trackable object." alt="" coords="128,5,251,34"/> </map> </p> </div> | |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~wx.PreviewFrame.__init__` Constructor. :meth:`~wx.PreviewFrame.CreateCanvas` Creates a :ref:`wx.PreviewCanvas`. :meth:`~wx.PreviewFrame.CreateControlBar` Creates a :ref:`wx.PreviewControlBar`. :meth:`~wx.PreviewFrame.GetClassDefaultAttributes` :meth:`~wx.PreviewFrame.Initialize` Initializes the frame elements and prepares for showing it. :meth:`~wx.PreviewFrame.InitializeWithModality` Initializes the frame elements and prepares for showing it with the given modality kind. :meth:`~wx.PreviewFrame.OnCloseWindow` Enables any disabled frames in the application, and deletes the print preview object, implicitly deleting any printout objects associated with the print preview object. ================================================================================ ================================================================================ | |api| Class API =============== .. class:: wx.PreviewFrame(Frame) **Possible constructors**:: PreviewFrame(preview : PrintPreview, parent : Window, title: str="PrintPreview", pos: Point=DefaultPosition, size: Size=DefaultSize, style: int=DEFAULT_FRAME_STYLE, name: str=FrameNameStr) -> None This class provides the default method of managing the print preview interface. .. method:: __init__(self, preview : PrintPreview, parent : Window, title: str="PrintPreview", pos: Point=DefaultPosition, size: Size=DefaultSize, style: int=DEFAULT_FRAME_STYLE, name: str=FrameNameStr) Constructor. Pass a print preview object plus other normal frame arguments. The print preview object will be destroyed by the frame when it closes. Note that `size` typically should `not` be specified explicitly to let the frame use its default size, adapted to its contents. :param `preview`: :type `preview`: wx.PrintPreview :param `parent`: :type `parent`: wx.Window :param `title`: :type `title`: string :param `pos`: :type `pos`: wx.Point :param `size`: :type `size`: wx.Size :param `style`: :type `style`: long :param `name`: :type `name`: string :rtype: `None` .. method:: CreateCanvas(self) Creates a :ref:`wx.PreviewCanvas`. Override this function to allow a user-defined preview canvas object to be created. :rtype: `None` .. method:: CreateControlBar(self) Creates a :ref:`wx.PreviewControlBar`. Override this function to allow a user-defined preview control bar object to be created. :rtype: `None` .. staticmethod:: GetClassDefaultAttributes(variant: WindowVariant=WINDOW_VARIANT_NORMAL) :param `variant`: :type `variant`: wx.WindowVariant :rtype: :ref:`wx.VisualAttributes` .. method:: Initialize(self) Initializes the frame elements and prepares for showing it. Calling this method is equivalent to calling :meth:`InitializeWithModality` with PreviewFrame_AppModal argument, please see its documentation for more details. Please notice that this function is virtual mostly for backwards compatibility only, there is no real need to override it as it's never called by wxWidgets itself. :rtype: `None` .. method:: InitializeWithModality(self, kind : PreviewFrameModalityKind) Initializes the frame elements and prepares for showing it with the given modality kind. This method creates the frame elements by calling :meth:`CreateCanvas` and :meth:`CreateControlBar` methods (which may be overridden to customize them) and prepares to show the frame according to the value of `kind` parameter: - If it is PreviewFrame_AppModal, all the other application windows will be disabled when this frame is shown. This is the same behaviour as that of simple `wx.Initialize` . - If it is PreviewFrame_WindowModal, only the parent window of the preview frame will be disabled when it is shown. - And if it is PreviewFrame_NonModal, no windows at all will be disabled while the preview is shown. Notice that this function (or `wx.Initialize` ) must be called by the application prior to showing the frame but you still must call ``Show(true)`` to actually show it afterwards. :param `kind`: The modality kind of preview frame. :type `kind`: wx.PreviewFrameModalityKind :rtype: `None` .. versionadded:: 2.9.2 .. method:: OnCloseWindow(self, event : CloseEvent) Enables any disabled frames in the application, and deletes the print preview object, implicitly deleting any printout objects associated with the print preview object. :param `event`: :type `event`: wx.CloseEvent :rtype: `None`