iblrig.gui.tab_log.TabLog

Inheritance diagram of TabLog

class iblrig.gui.tab_log.TabLog[source]
__init__(*args, **kwargs)[source]
appendText(text, color='White')[source]

Append text to the log.

Parameters:
  • text (str) – The text to append.

  • color (str, optional) – The color of the text. Should be a valid color name recognized by QtGui.QColorConstants. Defaults to ‘White’.

Parameters:
clear()[source]

Clear the log.

copyToClipboard()[source]

Copy the log contents to the clipboard as a markdown code-block.

setFontSize(fontSize)[source]

Set the font size of the log-widget’s contents.

Parameters:

fontSize (int) – Font size of the log-widget’s contents in points.

Parameters:

fontSize (int)

setLogColor(colorName)[source]

Set the foreground color of characters in the log widget.

Parameters:

colorName (str, optional) – The name of the color to set. Default is ‘White’. Should be a valid color name recognized by QtGui.QColorConstants. If the provided color name is not found, it defaults to QtGui.QColorConstants.White.

Parameters:

colorName (str)