blob: 5c666c38f376aab5c5779fb7183ca6b7773e4036 [file] [log] [blame]
Georg Brandl6634bf22008-05-20 07:13:37 +00001:mod:`ScrolledText` --- Scrolled Text Widget
2============================================
Georg Brandl8ec7f652007-08-15 14:28:01 +00003
4.. module:: ScrolledText
5 :platform: Tk
6 :synopsis: Text widget with a vertical scroll bar.
7.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
8
9
Georg Brandl6634bf22008-05-20 07:13:37 +000010The :mod:`ScrolledText` module provides a class of the same name which
Georg Brandl8ec7f652007-08-15 14:28:01 +000011implements a basic text widget which has a vertical scroll bar configured to do
12the "right thing." Using the :class:`ScrolledText` class is a lot easier than
13setting up a text widget and scroll bar directly. The constructor is the same
Georg Brandl6634bf22008-05-20 07:13:37 +000014as that of the :class:`Tkinter.Text` class.
Georg Brandl8ec7f652007-08-15 14:28:01 +000015
Georg Brandl5a42ca62008-05-20 07:20:12 +000016.. note::
17
18 :mod:`ScrolledText` has been renamed to :mod:`tkinter.scrolledtext` in Python
19 3.0. The :term:`2to3` tool will automatically adapt imports when converting
20 your sources to 3.0.
21
Georg Brandl8ec7f652007-08-15 14:28:01 +000022The text widget and scrollbar are packed together in a :class:`Frame`, and the
23methods of the :class:`Grid` and :class:`Pack` geometry managers are acquired
24from the :class:`Frame` object. This allows the :class:`ScrolledText` widget to
25be used directly to achieve most normal geometry management behavior.
26
27Should more specific control be necessary, the following attributes are
28available:
29
30
31.. attribute:: ScrolledText.frame
32
33 The frame which surrounds the text and scroll bar widgets.
34
35
36.. attribute:: ScrolledText.vbar
37
38 The scroll bar widget.