Bases: object
fake fd to be registered as a reader with the twisted reactor. Curses classes needing input should extend this
Bases: deluge.ui.console.screen.CursesStdIO
Add a line to the screen. This will be showed between the two bars. The text can be formatted with color using the following format:
“{!fg, bg, attributes, ...!}”
See: http://docs.python.org/library/curses.html#constants for attributes.
Alternatively, it can use some built-in scheme for coloring. See colors.py for built-in schemes.
“{!scheme!}”
Examples:
“{!blue, black, bold!}My Text is {!white, black!}cool” “{!info!}I am some info text!” “{!error!}Uh oh!”
| Parameters: |
|
|---|
Adds a string to the desired :param:row.
| Parameter: | row – int, the row number to write the string |
|---|