1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422
|
.. _full_screen_applications:
Building full screen applications
=================================
`prompt_toolkit` can be used to create complex full screen terminal
applications. Typically, an application consists of a layout (to describe the
graphical part) and a set of key bindings.
The sections below describe the components required for full screen
applications (or custom, non full screen applications), and how to assemble
them together.
Before going through this page, it could be helpful to go through :ref:`asking
for input <asking_for_input>` (prompts) first. Many things that apply to an
input prompt, like styling, key bindings and so on, also apply to full screen
applications.
.. note::
Also remember that the ``examples`` directory of the prompt_toolkit
repository contains plenty of examples. Each example is supposed to explain
one idea. So, this as well should help you get started.
Don't hesitate to open a GitHub issue if you feel that a certain example is
missing.
A simple application
--------------------
Every prompt_toolkit application is an instance of an
:class:`~prompt_toolkit.application.Application` object. The simplest full
screen example would look like this:
.. code:: python
from prompt_toolkit import Application
app = Application(full_screen=True)
app.run()
This will display a dummy application that says "No layout specified. Press
ENTER to quit.".
.. note::
If we wouldn't set the ``full_screen`` option, the application would
not run in the alternate screen buffer, and only consume the least
amount of space required for the layout.
An application consists of several components. The most important are:
- I/O objects: the input and output device.
- The layout: this defines the graphical structure of the application. For
instance, a text box on the left side, and a button on the right side.
You can also think of the layout as a collection of 'widgets'.
- A style: this defines what colors and underline/bold/italic styles are used
everywhere.
- A set of key bindings.
We will discuss all of these in more detail below.
I/O objects
-----------
Every :class:`~prompt_toolkit.application.Application` instance requires an I/O
object for input and output:
- An :class:`~prompt_toolkit.input.Input` instance, which is an abstraction
of the input stream (stdin).
- An :class:`~prompt_toolkit.output.Output` instance, which is an
abstraction of the output stream, and is called by the renderer.
Both are optional and normally not needed to pass explicitly. Usually, the
default works fine.
There is a third I/O object which is also required by the application, but not
passed inside. This is the event loop, an
:class:`~prompt_toolkit.eventloop` instance. This is basically a
while-true loop that waits for user input, and when it receives something (like
a key press), it will send that to the the appropriate handler, like for
instance, a key binding.
When :func:`~prompt_toolkit.application.Application.run()` is called, the event
loop will run until the application is done. An application will quit when
:func:`~prompt_toolkit.application.Application.exit()` is called.
The layout
----------
A layered layout architecture
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
There are several ways to create a prompt_toolkit layout, depending on how
customizable you want things to be. In fact, there are several layers of
abstraction.
- The most low-level way of creating a layout is by combining
:class:`~prompt_toolkit.layout.Container` and
:class:`~prompt_toolkit.layout.UIControl` objects.
Examples of :class:`~prompt_toolkit.layout.Container` objects are
:class:`~prompt_toolkit.layout.VSplit` (vertical split),
:class:`~prompt_toolkit.layout.HSplit` (horizontal split) and
:class:`~prompt_toolkit.layout.FloatContainer`. These containers arrange the
layout and can split it in multiple regions. Each container can recursively
contain multiple other containers. They can be combined in any way to define
the "shape" of the layout.
The :class:`~prompt_toolkit.layout.Window` object is a special kind of
container that can contain a :class:`~prompt_toolkit.layout.UIControl`
object. The :class:`~prompt_toolkit.layout.UIControl` object is responsible
for the generation of the actual content. The
:class:`~prompt_toolkit.layout.Window` object acts as an adaptor between the
:class:`~prompt_toolkit.layout.UIControl` and other containers, but it's also
responsible for the scrolling and line wrapping of the content.
Examples of :class:`~prompt_toolkit.layout.UIControl` objects are
:class:`~prompt_toolkit.layout.BufferControl` for showing the content of an
editable/scrollable buffer, and
:class:`~prompt_toolkit.layout.FormattedTextControl` for displaying
(:ref:`formatted <formatted_text>`) text.
Normally, it is never needed to create new
:class:`~prompt_toolkit.layout.UIControl` or
:class:`~prompt_toolkit.layout.Container` classes, but instead you would
create the layout by composing instances of the existing built-ins.
- A higher level abstraction of building a layout is by using "widgets". A
widget is a reusable layout component that can contain multiple containers
and controls. Widgets have a ``__pt_container__`` function, which returns
the root container for this widget. Prompt_toolkit contains a couple of
widgets like :class:`~prompt_toolkit.widgets.TextArea`,
:class:`~prompt_toolkit.widgets.Button`,
:class:`~prompt_toolkit.widgets.Frame`,
:class:`~prompt_toolkit.widgets.VerticalLine` and so on.
- The highest level abstractions can be found in the ``shortcuts`` module.
There we don't have to think about the layout, controls and containers at
all. This is the simplest way to use prompt_toolkit, but is only meant for
specific use cases, like a prompt or a simple dialog window.
Containers and controls
^^^^^^^^^^^^^^^^^^^^^^^
The biggest difference between containers and controls is that containers
arrange the layout by splitting the screen in many regions, while controls are
responsible for generating the actual content.
.. note::
Under the hood, the difference is:
- containers use *absolute coordinates*, and paint on a
:class:`~prompt_toolkit.layout.screen.Screen` instance.
- user controls create a :class:`~prompt_toolkit.layout.controls.UIContent`
instance. This is a collection of lines that represent the actual
content. A :class:`~prompt_toolkit.layout.controls.UIControl` is not aware
of the screen.
+---------------------------------------------+------------------------------------------------------+
| Abstract base class | Examples |
+=============================================+======================================================+
| :class:`~prompt_toolkit.layout.Container` | :class:`~prompt_toolkit.layout.HSplit` |
| | :class:`~prompt_toolkit.layout.VSplit` |
| | :class:`~prompt_toolkit.layout.FloatContainer` |
| | :class:`~prompt_toolkit.layout.Window` |
| | :class:`~prompt_toolkit.layout.ScrollablePane` |
+---------------------------------------------+------------------------------------------------------+
| :class:`~prompt_toolkit.layout.UIControl` | :class:`~prompt_toolkit.layout.BufferControl` |
| | :class:`~prompt_toolkit.layout.FormattedTextControl` |
+---------------------------------------------+------------------------------------------------------+
The :class:`~prompt_toolkit.layout.Window` class itself is
particular: it is a :class:`~prompt_toolkit.layout.Container` that
can contain a :class:`~prompt_toolkit.layout.UIControl`. Thus, it's the adaptor
between the two. The :class:`~prompt_toolkit.layout.Window` class also takes
care of scrolling the content and wrapping the lines if needed.
Finally, there is the :class:`~prompt_toolkit.layout.Layout` class which wraps
the whole layout. This is responsible for keeping track of which window has the
focus.
Here is an example of a layout that displays the content of the default buffer
on the left, and displays ``"Hello world"`` on the right. In between it shows a
vertical line:
.. code:: python
from prompt_toolkit import Application
from prompt_toolkit.buffer import Buffer
from prompt_toolkit.layout.containers import VSplit, Window
from prompt_toolkit.layout.controls import BufferControl, FormattedTextControl
from prompt_toolkit.layout.layout import Layout
buffer1 = Buffer() # Editable buffer.
root_container = VSplit([
# One window that holds the BufferControl with the default buffer on
# the left.
Window(content=BufferControl(buffer=buffer1)),
# A vertical line in the middle. We explicitly specify the width, to
# make sure that the layout engine will not try to divide the whole
# width by three for all these windows. The window will simply fill its
# content by repeating this character.
Window(width=1, char='|'),
# Display the text 'Hello world' on the right.
Window(content=FormattedTextControl(text='Hello world')),
])
layout = Layout(root_container)
app = Application(layout=layout, full_screen=True)
app.run() # You won't be able to Exit this app
Notice that if you execute this right now, there is no way to quit this
application yet. This is something we explain in the next section below.
More complex layouts can be achieved by nesting multiple
:class:`~prompt_toolkit.layout.VSplit`,
:class:`~prompt_toolkit.layout.HSplit` and
:class:`~prompt_toolkit.layout.FloatContainer` objects.
If you want to make some part of the layout only visible when a certain
condition is satisfied, use a
:class:`~prompt_toolkit.layout.ConditionalContainer`.
Finally, there is :class:`~prompt_toolkit.layout.ScrollablePane`, a container
class that can be used to create long forms or nested layouts that are
scrollable as a whole.
Focusing windows
^^^^^^^^^^^^^^^^^
Focusing something can be done by calling the
:meth:`~prompt_toolkit.layout.Layout.focus` method. This method is very
flexible and accepts a :class:`~prompt_toolkit.layout.Window`, a
:class:`~prompt_toolkit.buffer.Buffer`, a
:class:`~prompt_toolkit.layout.controls.UIControl` and more.
In the following example, we use :func:`~prompt_toolkit.application.get_app`
for getting the active application.
.. code:: python
from prompt_toolkit.application import get_app
# This window was created earlier.
w = Window()
# ...
# Now focus it.
get_app().layout.focus(w)
Changing the focus is something which is typically done in a key binding, so
read on to see how to define key bindings.
Key bindings
------------
In order to react to user actions, we need to create a
:class:`~prompt_toolkit.key_binding.KeyBindings` object and pass
that to our :class:`~prompt_toolkit.application.Application`.
There are two kinds of key bindings:
- Global key bindings, which are always active.
- Key bindings that belong to a certain
:class:`~prompt_toolkit.layout.controls.UIControl` and are only active when
this control is focused. Both
:class:`~prompt_toolkit.layout.BufferControl`
:class:`~prompt_toolkit.layout.FormattedTextControl` take a ``key_bindings``
argument.
Global key bindings
^^^^^^^^^^^^^^^^^^^
Key bindings can be passed to the application as follows:
.. code:: python
from prompt_toolkit import Application
from prompt_toolkit.key_binding import KeyBindings
kb = KeyBindings()
app = Application(key_bindings=kb)
app.run()
To register a new keyboard shortcut, we can use the
:meth:`~prompt_toolkit.key_binding.KeyBindings.add` method as a decorator of
the key handler:
.. code:: python
from prompt_toolkit import Application
from prompt_toolkit.key_binding import KeyBindings
kb = KeyBindings()
@kb.add('c-q')
def exit_(event):
"""
Pressing Ctrl-Q will exit the user interface.
Setting a return value means: quit the event loop that drives the user
interface and return this value from the `Application.run()` call.
"""
event.app.exit()
app = Application(key_bindings=kb, full_screen=True)
app.run()
The callback function is named ``exit_`` for clarity, but it could have been
named ``_`` (underscore) as well, because we won't refer to this name.
:ref:`Read more about key bindings ...<key_bindings>`
Modal containers
^^^^^^^^^^^^^^^^
The following container objects take a ``modal`` argument
:class:`~prompt_toolkit.layout.VSplit`,
:class:`~prompt_toolkit.layout.HSplit`, and
:class:`~prompt_toolkit.layout.FloatContainer`.
Setting ``modal=True`` makes what is called a **modal** container. Normally, a
child container would inherit its parent key bindings. This does not apply to
**modal** containers.
Consider a **modal** container (e.g. :class:`~prompt_toolkit.layout.VSplit`)
is child of another container, its parent. Any key bindings from the parent
are not taken into account if the **modal** container (child) has the focus.
This is useful in a complex layout, where many controls have their own key
bindings, but you only want to enable the key bindings for a certain region of
the layout.
The global key bindings are always active.
More about the Window class
---------------------------
As said earlier, a :class:`~prompt_toolkit.layout.Window` is a
:class:`~prompt_toolkit.layout.Container` that wraps a
:class:`~prompt_toolkit.layout.UIControl`, like a
:class:`~prompt_toolkit.layout.BufferControl` or
:class:`~prompt_toolkit.layout.FormattedTextControl`.
.. note::
Basically, windows are the leaves in the tree structure that represent the UI.
A :class:`~prompt_toolkit.layout.Window` provides a "view" on the
:class:`~prompt_toolkit.layout.UIControl`, which provides lines of content. The
window is in the first place responsible for the line wrapping and scrolling of
the content, but there are much more options.
- Adding left or right margins. These are used for displaying scroll bars or
line numbers.
- There are the `cursorline` and `cursorcolumn` options. These allow
highlighting the line or column of the cursor position.
- Alignment of the content. The content can be left aligned, right aligned or
centered.
- Finally, the background can be filled with a default character.
More about buffers and `BufferControl`
--------------------------------------
Input processors
^^^^^^^^^^^^^^^^
A :class:`~prompt_toolkit.layout.processors.Processor` is used to postprocess
the content of a :class:`~prompt_toolkit.layout.BufferControl` before it's
displayed. It can for instance highlight matching brackets or change the
visualization of tabs and so on.
A :class:`~prompt_toolkit.layout.processors.Processor` operates on individual
lines. Basically, it takes a (formatted) line and produces a new (formatted)
line.
Some built-in processors:
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| Processor | Usage: |
+============================================================================+===========================================================+
| :class:`~prompt_toolkit.layout.processors.HighlightSearchProcessor` | Highlight the current search results. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.HighlightSelectionProcessor` | Highlight the selection. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.PasswordProcessor` | Display input as asterisks. (``*`` characters). |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.BracketsMismatchProcessor` | Highlight open/close mismatches for brackets. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.BeforeInput` | Insert some text before. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.AfterInput` | Insert some text after. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.AppendAutoSuggestion` | Append auto suggestion text. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.ShowLeadingWhiteSpaceProcessor` | Visualize leading whitespace. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.ShowTrailingWhiteSpaceProcessor` | Visualize trailing whitespace. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
| :class:`~prompt_toolkit.layout.processors.TabsProcessor` | Visualize tabs as `n` spaces, or some symbols. |
+----------------------------------------------------------------------------+-----------------------------------------------------------+
A :class:`~prompt_toolkit.layout.BufferControl` takes only one processor as
input, but it is possible to "merge" multiple processors into one with the
:func:`~prompt_toolkit.layout.processors.merge_processors` function.
|