TUI Windows In Python (Debugging with GDB)
Previous: Registers In Python, Up: Python API [Contents][Index]
23.3.2.35 Implementing new TUI windows
New TUI (see TUI) windows can be implemented in Python.
- Function: gdb.register_window_type (name, factory)
Because TUI windows are created and destroyed depending on the layout the user chooses, new window types are implemented by registering a factory function with GDB.
nameis the name of the new window. It’s an error to try to replace one of the built-in windows, but other window types can be replaced.functionis a factory function that is called to create the TUI window. This is called with a single argument of typegdb.TuiWindow, described below. It should return an object that implements the TUI window protocol, also described below.
As mentioned above, when a factory function is called, it is passed an object of type gdb.TuiWindow. This object has these methods and attributes:
- Function: TuiWindow.is_valid ()
This method returns
Truewhen this window is valid. When the user changes the TUI layout, windows no longer visible in the new layout will be destroyed. At this point, thegdb.TuiWindowwill no longer be valid, and methods (and attributes) other thanis_validwill throw an exception.When the TUI is disabled using
tui disable(see tui disable) the window is hidden rather than destroyed, butis_validwill still returnFalseand other methods (and attributes) will still throw an exception.
- Variable
- TuiWindow.width
- This attribute holds the width of the window. It is not writable.
- Variable
- TuiWindow.height
- This attribute holds the height of the window. It is not writable.
- Variable
- TuiWindow.title
- This attribute holds the window’s title, a string. This is normally displayed above the window. This attribute can be modified.
- Function
- TuiWindow.erase ()
- Remove all the contents of the window.
- Function: TuiWindow.write (string [, full_window])
Write
stringto the window.stringcan contain ANSI terminal escape styling sequences; GDB will translate these as appropriate for the terminal.If the
full_windowparameter isTrue, thenstringcontains the full contents of the window. This is similar to callingerasebeforewrite, but avoids the flickering.
The factory function that you supply should return an object conforming to the TUI window protocol. These are the method that can be called on this object, which is referred to below as the “window object”. The methods documented below are optional; if the object does not implement one of these methods, GDB will not attempt to call it. Additional new methods may be added to the window protocol in the future. GDB guarantees that they will begin with a lower-case letter, so you can start implementation methods with upper-case letters or underscore to avoid any future conflicts.
- Function: Window.close ()
When the TUI window is closed, the
gdb.TuiWindowobject will be put into an invalid state. At this time, GDB will callclosemethod on the window object.After this method is called, GDB will discard any references it holds on this window object, and will no longer call methods on this object.
- Function: Window.render ()
In some situations, a TUI window can change size. For example, this can happen if the user resizes the terminal, or changes the layout. When this happens, GDB will call the
rendermethod on the window object.If your window is intended to update in response to changes in the inferior, you will probably also want to register event listeners and send output to the
gdb.TuiWindow.
- Function
- Window.hscroll (num)
- This is a request to scroll the window horizontally.
numis the amount by which to scroll, with negative numbers meaning to scroll right. In the TUI model, it is the viewport that moves, not the contents. A positive argument should cause the viewport to move right, and so the content should appear to move to the left.
- Function
- Window.vscroll (num)
- This is a request to scroll the window vertically.
numis the amount by which to scroll, with negative numbers meaning to scroll backward. In the TUI model, it is the viewport that moves, not the contents. A positive argument should cause the viewport to move down, and so the content should appear to move up.
- Function
- Window.click (x, y, button)
- This is called on a mouse click in this window.
xandyare the mouse coordinates inside the window (0-based), andbuttonspecifies which mouse button was used, whose values can be 1 (left), 2 (middle), or 3 (right).
Previous: Registers In Python, Up: Python API [Contents][Index]