"""Search token editor Part of the tagit module. A copy of the license is provided with the project. Author: Matthias Baumgartner, 2022 """ # kivy imports from kivy.lang import Builder import kivy.properties as kp # inner-module imports from .simple_input import SimpleInput # exports __all__ = ('TokenEdit', ) ## code ## # Load kv Builder.load_string(''' #:import AutoTextInput tagit.dialogues : text: '' ok_on_enter: True cancel_on_defocus: True ''') # classes class TokenEdit(SimpleInput): """Search token editor """ # TODO: Currently this is no different than SimpleInput. # It should be extend to specify the type and getting help # with editing ranges and alternative selection. pass ## EOF ##