.. 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
.. currentmodule:: wx.py.PySlices
.. highlight:: python
.. _wx.py.PySlices.App:
==========================================================================================================================================
|phoenix_title| **wx.py.PySlices.App**
==========================================================================================================================================
PySlices standalone application.
|
|class_hierarchy| Class Hierarchy
=================================
.. raw:: html

Inheritance diagram for class
App:
|
|super_classes| Known Superclasses
==================================
:class:`wx.core.App`
|
|method_summary| Methods Summary
================================
================================================================================ ================================================================================
:meth:`~wx.py.PySlices.App.__init__` Construct a ``wx.App`` object.
:meth:`~wx.py.PySlices.App.OnInit` OnInit(self) -> bool
================================================================================ ================================================================================
|
|api| Class API
===============
.. class:: App(wx.App)
PySlices standalone application.
.. method:: __init__(self, filename=None)
Construct a ``wx.App`` object.
:param redirect: Should ``sys.stdout`` and ``sys.stderr`` be
redirected? Defaults to False. If ``filename`` is None
then output will be redirected to a window that pops up
as needed. (You can control what kind of window is created
for the output by resetting the class variable
``outputWindowClass`` to a class of your choosing.)
:param filename: The name of a file to redirect output to, if
redirect is True.
:param useBestVisual: Should the app try to use the best
available visual provided by the system (only relevant on
systems that have more than one visual.) This parameter
must be used instead of calling `SetUseBestVisual` later
on because it must be set before the underlying GUI
toolkit is initialized.
:param clearSigInt: Should SIGINT be cleared? This allows the
app to terminate upon a Ctrl-C in the console like other
GUI apps will.
.. note:: You should override OnInit to do application
initialization to ensure that the system, toolkit and
wxWidgets are fully initialized.
.. method:: OnInit(self)
OnInit(self) -> bool