tttt

Python3 tkinter text plugin - easily save and load multiple font styles


Keywords
tkinter, text, font, style, bold, underline, italic, color
License
BSD-3-Clause
Install
pip install tttt==0.1.3

Documentation

coloring pencils!

tttt - tims tkinter text tags

Save and load tags for the tkinter text widget using open office format xml

Features

  • Super easy to use api, All the commands you will need are below!
  • Automatically indent buttons on selection
  • Bold, Italic, Underline, Overstrike, Fonts, Sizes
  • Behavour of adding and removing tags is modeled on libre office

Installation

pip3 install tttt

Usage

There is a demo picture avaliable

from tttt import XmlManager

tag_manager = XmlManager(text)

bind these to your callback buttons or hotkeys

tag_manager.change_style('bold')
tag_manager.change_style('italic')
tag_manager.change_style('solid')                       # underline
tag_manager.change_style(('family',value))
tag_manager.change_style(('size',value))
tag_manager.change_style(('foreground', value))
tag_manager.change_style(('background', value))

Saving and loading

tag_manager.load(data)
xml_data = tag_manager.save()

Configuring Buttons For Indenting

tag_manager.button_references = {'bold':bold,
                                'italic':italic,
                                'underline':underline,
                                'family':family_font_menu.var,
                                'overstrike':overstrike,
                                'foreground':foreground,
                                'background':background,
                                'size':size_menu.var
                                }