.. 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.HScrolledWindow: ========================================================================================================================================== |phoenix_title| **wx.HScrolledWindow** ========================================================================================================================================== In the name of this class, "H" stands for "horizontal" because it can be used for scrolling columns of variable widths. It is not necessary to know the widths of all columns in advance – only those which are shown on the screen need to be measured. In any case, this is a generalization of :ref:`wx.Scrolled` which can be only used when all columns have the same widths. It lacks some other :ref:`wx.Scrolled` features however, notably it can't scroll specific pixel sizes of the window or its exact client area size. To use this class, you need to derive from it and implement the :meth:`~wx.VarHScrollHelper.OnGetColumnWidth` pure virtual method. You also must call :meth:`~wx.VarHScrollHelper.SetColumnCount` to let the base class know how many columns it should display, but from that moment on the scrolling is handled entirely by :ref:`wx.HScrolledWindow`. You only need to draw the visible part of contents in your ``OnPaint()`` method as usual. You should use :meth:`~wx.VarHScrollHelper.GetVisibleColumnsBegin` and :meth:`~wx.VarHScrollHelper.GetVisibleColumnsEnd` to select the lines to display. Note that the device context origin is not shifted so the first visible column always appears at the point (0, 0) in physical as well as logical coordinates. .. seealso:: :ref:`wx.HVScrolledWindow`, :ref:`wx.VScrolledWindow` | |class_hierarchy| Class Hierarchy ================================= .. raw:: html
Inheritance diagram for class HScrolledWindow:
| |method_summary| Methods Summary ================================ ================================================================================ ================================================================================ :meth:`~wx.HScrolledWindow.__init__` Default constructor, you must call :meth:`~HScrolledWindow.Create` later. :meth:`~wx.HScrolledWindow.Create` Same as the non-default constructor, but returns a status code: ``True`` if ok, ``False`` if the window couldn't be created. :meth:`~wx.HScrolledWindow.GetClassDefaultAttributes` ================================================================================ ================================================================================ | |api| Class API =============== .. class:: wx.HScrolledWindow(Panel, VarHScrollHelper) **Possible constructors**:: HScrolledWindow() HScrolledWindow(parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=0, name=PanelNameStr) In the name of this class, "H" stands for "horizontal" because it can be used for scrolling columns of variable widths. .. method:: __init__(self, *args, **kw) |overload| Overloaded Implementations: :html:`

` **__init__** `(self)` Default constructor, you must call :meth:`Create` later. :html:`

` **__init__** `(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=0, name=PanelNameStr)` This is the normal constructor, no need to call :meth:`Create` after using this constructor. :param `parent`: The parent window, must not be ``None``. :type `parent`: wx.Window :param `id`: The identifier of this window, ``wx.ID_ANY`` by default. :type `id`: wx.WindowID :param `pos`: The initial window position. :type `pos`: wx.Point :param `size`: The initial window size. :type `size`: wx.Size :param `style`: The window style. There are no special style bits defined for this class. :type `style`: long :param `name`: The name for this window; usually not used. :type `name`: string .. note:: ``HSCROLL`` is always automatically added to the style, there is no need to specify it explicitly. :html:`

` .. method:: Create(self, parent, id=ID_ANY, pos=DefaultPosition, size=DefaultSize, style=0, name=PanelNameStr) Same as the non-default constructor, but returns a status code: ``True`` if ok, ``False`` if the window couldn't be created. Just as with the constructor, the ``HSCROLL`` style is always used, there is no need to specify it explicitly. :param `parent`: :type `parent`: wx.Window :param `id`: :type `id`: wx.WindowID :param `pos`: :type `pos`: wx.Point :param `size`: :type `size`: wx.Size :param `style`: :type `style`: long :param `name`: :type `name`: string :rtype: `bool` .. staticmethod:: GetClassDefaultAttributes(variant=WINDOW_VARIANT_NORMAL) :param `variant`: :type `variant`: wx.WindowVariant :rtype: :ref:`wx.VisualAttributes`