TTkWidget๐ŸŒถ๏ธ

class TTkWidget(parent: Self = None, x: int = 0, y: int = 0, width: int = 0, height: int = 0, pos: tuple = None, size: tuple = None, maxSize: tuple = None, maxWidth: int = 65536, maxHeight: int = 65536, minSize: tuple = None, minWidth: int = 0, minHeight: int = 0, name: str = None, visible: bool = True, enabled: bool = True, toolTip: TTkString = '', style: dict = None, addStyle: dict = None, **kwargs)[source]๐ŸŒถ๏ธ

Bases: TMouseEvents, TKeyEvents, TDragEvents

Widget sizes:

Terminal area (i.e. XTerm) = TTk
โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”
โ”‚                                         โ”‚
โ”‚    TTkWidget     width                  โ”‚
โ”‚ (x,y)โ”Œโ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”        โ”‚
โ”‚      โ”‚                         โ”‚        โ”‚
โ”‚      โ”‚                         โ”‚ height โ”‚
โ”‚      โ”‚                         โ”‚        โ”‚
โ”‚      โ”‚                         โ”‚        โ”‚
โ”‚      โ”‚                         โ”‚        โ”‚
โ”‚      โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜        โ”‚
โ””โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”€โ”˜

The TTkWidget class is the base class of all user interface objects

Parameters:
  • name (str, optional) โ€“ the name of the widget, defaults to โ€œโ€

  • parent (TTkWidget, optional) โ€“ the parent widget, defaults to None

  • x (int, optional) โ€“ the x position, defaults to 0

  • y (int, optional) โ€“ the y position, defaults to 0

  • pos ((int,int), optional) โ€“ the [x,y] position (override the previously defined x, y), defaults to (x,y)

  • width (int, optional) โ€“ the width of the widget, defaults to 0

  • height (int, optional) โ€“ the height of the widget, defaults to 0

  • size ((int,int), optional) โ€“ the size [width, height] of the widget (override the previously defined sizes), defaults to (width,height)

  • maxWidth (int, optional) โ€“ the maxWidth of the widget, defaults to 0x10000

  • maxHeight (int, optional) โ€“ the maxHeight of the widget, defaults to 0x10000

  • maxSize ((int,int), optional) โ€“ the max [width,height] of the widget, optional, defaults to (maxWidth,maxHeight)

  • minWidth (int, optional) โ€“ the minWidth of the widget, defaults to 0

  • minHeight (int, optional) โ€“ the minHeight of the widget, defaults to 0

  • minSize ((int,int), optional) โ€“ the minSize [width,height] of the widget, optional, defaults to (minWidth,minHeight)

  • toolTip (TTkString, optional) โ€“ This property holds the widgetโ€™s tooltip, defaults to โ€˜โ€™

  • style (dict, optional) โ€“ this field hold the custom style to be used by this widget

  • addStyle (dict, optional) โ€“ this field is required to override/merge the new style on top of the current one, useful if only few params need to be changed

  • visible (bool, optional) โ€“ the visibility, optional, defaults to True

  • enabled (bool, optional) โ€“ the ability to handle input events, optional, defaults to True

TMouseEventsโ€™s inherited init params:

Initialize self. See help(type(self)) for accurate signature.

TDragEventsโ€™s inherited init params:

Initialize self. See help(type(self)) for accurate signature.

Style๐ŸŒถ๏ธ

classStyle = {
            'default':     {'color': TTkColor.RST,           'borderColor': TTkColor.RST},
            'disabled':    {'color': TTkColor.fg('#888888'), 'borderColor': TTkColor.fg('#888888')},
            # 'hover':       {'color': TTkColor.fg('#00FF00')+TTkColor.bg('#0077FF')},
            # 'checked':     {'color': TTkColor.fg('#00FF00')+TTkColor.bg('#00FFFF')},
            # 'clicked':     {'color': TTkColor.fg('#FFFF00')},
            # 'focus':       {'color': TTkColor.fg('#FFFF88')},
        }

Signals๐ŸŒถ๏ธ

closed

This signal is emitted whenever the widget is closed

currentStyleChanged

This signal is emitted whenever the widget stye change

focusChanged

This signal is emitted whenever the focus status change i.e. with the setFocus() or clearFocus() methods.

sizeChanged

This signal is emitted whenever the widget size change

Slots๐ŸŒถ๏ธ

close()

Close (Destroy/Remove) the widget

hide()

hide the widget

lowerWidget()

Lower the Widget below its relatives

raiseWidget([raiseParent])

Raise the Widget above its relatives

setDisabled([disabled])

This property holds whether the widget is disnabled

setEnabled([enabled])

This property holds whether the widget is enabled

setFocus()

Focus the widget

setVisible(visible)

Set the visibility status of this widget

show()

show the widget

update([repaint, updateLayout, updateParent])

Notify the drawing routine that the widget changed and needs to draw its new content.

Members๐ŸŒถ๏ธ

closed: pyTTkSignal๐ŸŒถ๏ธ

This signal is emitted whenever the widget is closed

Parameters:

widget (TTkWidget) โ€“ the widget closed (=self)

currentStyleChanged: pyTTkSignal๐ŸŒถ๏ธ

This signal is emitted whenever the widget stye change

Parameters:

style (dict) โ€“ the new style applied

focusChanged: pyTTkSignal๐ŸŒถ๏ธ

This signal is emitted whenever the focus status change i.e. with the setFocus() or clearFocus() methods

Parameters:

status (bool) โ€“ the curent focus status

sizeChanged: pyTTkSignal๐ŸŒถ๏ธ

This signal is emitted whenever the widget size change

Parameters:
  • width (int) โ€“ the new widget width

  • height (int) โ€“ the new widget height

Methods๐ŸŒถ๏ธ

clearFocus() โ†’ None[source]๐ŸŒถ๏ธ

Remove the Focus state of this widget

close() โ†’ None[source]๐ŸŒถ๏ธ

Close (Destroy/Remove) the widget

currentStyle() โ†’ dict[source]๐ŸŒถ๏ธ
disableWidgetCursor(disable: bool = True) โ†’ None[source]๐ŸŒถ๏ธ
enableWidgetCursor(enable: bool = True) โ†’ None[source]๐ŸŒถ๏ธ
focusInEvent() โ†’ None[source]๐ŸŒถ๏ธ
focusOutEvent() โ†’ None[source]๐ŸŒถ๏ธ
focusPolicy() โ†’ FocusPolicy[source]๐ŸŒถ๏ธ
geometry() โ†’ tuple[int, int, int, int][source]๐ŸŒถ๏ธ
getCanvas() โ†’ TTkCanvas[source]๐ŸŒถ๏ธ
getPixmap() โ†’ TTkCanvas[source]๐ŸŒถ๏ธ

Convenience function which return a pixmap representing the current widget status

Returns:

TTkCanvas

getWidgetByName(name: str)[source]๐ŸŒถ๏ธ
hasFocus() โ†’ bool[source]๐ŸŒถ๏ธ

This property holds the focus status of this widget

Returns:

bool

height() โ†’ int[source]๐ŸŒถ๏ธ
hide() โ†’ None[source]๐ŸŒถ๏ธ

hide the widget

isEnabled() โ†’ bool[source]๐ŸŒถ๏ธ

This property holds whether the widget is enabled

use setEnabled() or setDisabled() to change this property

Returns:

bool

isEntered() โ†’ bool[source]๐ŸŒถ๏ธ
isVisible() โ†’ bool[source]๐ŸŒถ๏ธ

Retrieve the visibility status of this widget

Returns:

bool

isVisibleAndParent() โ†’ bool[source]๐ŸŒถ๏ธ
lowerWidget() โ†’ None[source]๐ŸŒถ๏ธ

Lower the Widget below its relatives

maxDimension(orientation: Direction) โ†’ int[source]๐ŸŒถ๏ธ
maximumHeight() โ†’ int[source]๐ŸŒถ๏ธ
maximumSize() โ†’ tuple[int, int][source]๐ŸŒถ๏ธ
maximumWidth() โ†’ int[source]๐ŸŒถ๏ธ
mergeStyle(style) โ†’ None[source]๐ŸŒถ๏ธ
minDimension(orientation: Direction) โ†’ int[source]๐ŸŒถ๏ธ
minimumHeight() โ†’ int[source]๐ŸŒถ๏ธ
minimumSize() โ†’ tuple[int, int][source]๐ŸŒถ๏ธ
minimumWidth() โ†’ int[source]๐ŸŒถ๏ธ
mouseEvent(evt: TTkMouseEvent) โ†’ bool[source]๐ŸŒถ๏ธ

Caution

Don Not touch this!

move(x: int, y: int) โ†’ None[source]๐ŸŒถ๏ธ

Move the widget

Parameters:
  • x (int) โ€“ the horizontal position

  • y (int) โ€“ the vertical position

moveEvent(x: int, y: int) โ†’ None[source]๐ŸŒถ๏ธ

Convenience function, Event Callback triggered after a successful move

Note

Override this method to handle this event

Parameters:
  • x (int) โ€“ the new horizontal position

  • y (int) โ€“ the new vertical position

name() โ†’ str[source]๐ŸŒถ๏ธ
paintChildCanvas() โ†’ None[source]๐ŸŒถ๏ธ
paintEvent(canvas: TTkCanvas) โ†’ None[source]๐ŸŒถ๏ธ

Paint Event callback, this need to be overridden in the widget.

Note

Override this method to handle this event

Parameters:

canvas (TTkCanvas) โ€“ the canvas where the content need to be drawn

parentWidget()[source]๐ŸŒถ๏ธ
pasteEvent(txt: str) โ†’ None[source]๐ŸŒถ๏ธ

Callback triggered when a paste event is forwarded to this widget.

Note

Reimplement this function to handle this event

Parameters:

txt (str) โ€“ the paste object

pos() โ†’ tuple[int, int][source]๐ŸŒถ๏ธ
raiseWidget(raiseParent: bool = True) โ†’ None[source]๐ŸŒถ๏ธ

Raise the Widget above its relatives

resize(width: int, height: int) โ†’ None[source]๐ŸŒถ๏ธ

Resize the widget

Parameters:
  • width (int) โ€“ the new width

  • height (int) โ€“ the new height

resizeEvent(width: int, height: int) โ†’ None[source]๐ŸŒถ๏ธ

Convenience function, Event Callback triggered after a successful resize

Note

Override this method to handle this event

Parameters:
  • width (int) โ€“ the new width

  • height (int) โ€“ the new height

setCurrentStyle(style) โ†’ dict[source]๐ŸŒถ๏ธ
setDefaultSize(arg, width: int, height: int) โ†’ None[source]๐ŸŒถ๏ธ
setDisabled(disabled: bool = True) โ†’ None[source]๐ŸŒถ๏ธ

This property holds whether the widget is disnabled

This is a convenience function wrapped around setEnabled() where (not disabled) is used

Parameters:

disabled (bool) โ€“ the disabled status, defaults to True

setEnabled(enabled: bool = True) โ†’ None[source]๐ŸŒถ๏ธ

This property holds whether the widget is enabled

In general an enabled widget handles keyboard and mouse events; a disabled widget does not.

Some widgets display themselves differently when they are disabled. For example a button might draw its label grayed out. If your widget needs to know when it becomes enabled or disabled.

Disabling a widget implicitly disables all its children. Enabling respectively enables all child widgets unless they have been explicitly disabled.

By default, this property is true.

Parameters:

enabled (bool) โ€“ the enabled status, defaults to True

setFocus() โ†’ None[source]๐ŸŒถ๏ธ

Focus the widget

setFocusPolicy(policy: FocusPolicy) โ†’ None[source]๐ŸŒถ๏ธ

This property holds the way the widget accepts keyboard focus

The policy is TTkK.FocusPolicy.TabFocus if the widget accepts keyboard focus by tabbing, TTkK.FocusPolicy.ClickFocus if the widget accepts focus by clicking, TTkK.FocusPolicy.StrongFocus if it accepts both, and TTkK.FocusPolicy.NoFocus (the default) if it does not accept focus at all.

You must enable keyboard focus for a widget if it processes keyboard events. This is normally done from the widgetโ€™s constructor. For instance, the TTkLineEdit constructor calls setFocusPolicy() with TTkK.FocusPolicy.StrongFocus.

If the widget has a focus proxy, then the focus policy will be propagated to it.

Parameters:

policy (TTkK.FocusPolicy) โ€“ the focus policy

setGeometry(x: int, y: int, width: int, height: int)[source]๐ŸŒถ๏ธ

Resize and move the widget

Parameters:
  • x (int) โ€“ the horizontal position

  • y (int) โ€“ the vertical position

  • width (int) โ€“ the new width

  • height (int) โ€“ the new height

setMaximumHeight(maxh: int)[source]๐ŸŒถ๏ธ
setMaximumSize(maxw: int, maxh: int)[source]๐ŸŒถ๏ธ
setMaximumWidth(maxw: int)[source]๐ŸŒถ๏ธ
setMinimumHeight(minh: int)[source]๐ŸŒถ๏ธ
setMinimumSize(minw: int, minh: int)[source]๐ŸŒถ๏ธ
setMinimumWidth(minw: int)[source]๐ŸŒถ๏ธ
setName(name: str) โ†’ None[source]๐ŸŒถ๏ธ

Set the name of this Instance

Parameters:

name (str) โ€“ the name to be set

setParent(parent) โ†’ None[source]๐ŸŒถ๏ธ
setStyle(style=None) โ†’ None[source]๐ŸŒถ๏ธ
setToolTip(toolTip: TTkString) โ†’ None[source]๐ŸŒถ๏ธ
setVisible(visible: bool) โ†’ None[source]๐ŸŒถ๏ธ

Set the visibility status of this widget

Parameters:

visible (bool:) โ€“ status

setWidgetCursor(pos=None, type=None) โ†’ None[source]๐ŸŒถ๏ธ
show() โ†’ None[source]๐ŸŒถ๏ธ

show the widget

size() โ†’ tuple[int, int][source]๐ŸŒถ๏ธ
style() โ†’ dict[source]๐ŸŒถ๏ธ
toolTip() โ†’ TTkString[source]๐ŸŒถ๏ธ
update(repaint: bool = True, updateLayout: bool = False, updateParent: bool = False) โ†’ None[source]๐ŸŒถ๏ธ

Notify the drawing routine that the widget changed and needs to draw its new content.

It is important to call this method anytime a canvas update is required after a a status update.

Once update() is called, the paintEvent() is executed during the next screen refresh.

i.e.

class NewLabel(TTkWidget):
    def __init__(self,**kwargs) -> None:
        self.text = ""
        super().__init__(**kwargs)

    def setText(self, text:str) -> None:
        self.text = text
        # Notify the runtime that un update
        # is required will trigger the paintEvent
        # at the next screen (terminal) refresh
        self.update()

    def paintEvent(self, canvas:TTkCanvas) -> None:
        canvas.drawText(pos=(0,0), text=self.text)
widgetItem() โ†’ TTkWidgetItem[source]๐ŸŒถ๏ธ
width() โ†’ int[source]๐ŸŒถ๏ธ
x() โ†’ int[source]๐ŸŒถ๏ธ
y() โ†’ int[source]๐ŸŒถ๏ธ

Methods Inherited from: TMouseEvents

enterEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse enter events for the widget.

leaveEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse leave events for the widget.

mouseDoubleClickEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse click events for the widget.

mouseDragEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse drag events for the widget.

mouseMoveEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse move events for the widget.

mousePressEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse press events for the widget.

mouseReleaseEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse release events for the widget.

mouseTapEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse click events for the widget.

wheelEvent(evt)

This event handler, can be reimplemented in a subclass to receive mouse wheel events for the widget.

Methods Inherited from: TKeyEvents

keyEvent(evt)

This event handler, can be reimplemented in a subclass to receive key events for the widget.

Methods Inherited from: TDragEvents

dragEnterEvent(evt)

This event handler, can be reimplemented in a subclass to receive drag events for the widget.

dragLeaveEvent(evt)

This event handler, can be reimplemented in a subclass to receive drag events for the widget.

dragMoveEvent(evt)

This event handler, can be reimplemented in a subclass to receive drag events for the widget.

dropEvent(evt)

This event handler, can be reimplemented in a subclass to receive drag events for the widget.

TTkWidget Attributes๐ŸŒถ๏ธ

classStyle