Ticker(...) -> new Ticker component.
A pygame based component that displays incoming text as a ticker.
Keyword arguments (all optional): - text_height -- Font size in points (default=39) - line_spacing -- (default=text_height/7) - background_colour -- (r,g,b) background colour of the ticker (default=(128,48,128)) - text_colour -- (r,g,b) colour of text (default=(232,232,48)) - outline_colour -- (r,g,b) colour of the outline border (default=background_colour) - outline_width -- pixels width of the border (default=1) - position -- (x,y) pixels location of the top left corner - render_left -- pixels distance of left of text from left edge (default=1) - render_top -- pixels distance of top of text from top edge (default=1) - render_right -- pixels width of ticker (default=399) - render_bottom -- pixels height of ticker (default=299)
NOTE: render_left and render_top currently behave incorrectly if not set to 1
Warning! You should be using the inbox/outbox interface, not these methods (except construction). This documentation is designed as a roadmap as to their functionalilty for maintainers and new component developers. |