import tichy.gui as gui from tichy.menu import Menu from tichy.list import List from tichy.style import Style, Font, Frame class Style2(Style): name = "black style" @classmethod def code(cls): return { 'background' : None, 'font' : Font(Style2.path('font.ttf'), 24), gui.Edit : {'background' : Frame(gui.Image(Style2.path('edit_frame.png')))}, gui.Button : {'background' : Frame(gui.Image(Style2.path('button_frame.png')))}, gui.ApplicationFrame.Bar : { 'background' : Frame(gui.Image(Style2.path('bar_frame.png'))), 'children-style' : { 'background': None, gui.ApplicationFrame.Bar.BackButton : {'background' : Frame(gui.Image(Style2.path('button_frame.png')))}, } }, gui.ApplicationFrame.Content : {'background' : Frame(gui.Image(Style2.path('content_frame.png')))}, 'pressed-style' : {'background' : Frame(gui.Image(Style2.path('button_pressed_frame.png')))}, 'selected-style' : {'background' : Frame(gui.Image(Style2.path('button_pressed_frame.png')))}, Menu : { 'children-style' : { gui.Button : {'background' : Frame(gui.Image(Style2.path('menu_button_frame.png')))}, } }, List : { 'children-style' : { gui.Button : {'background' : Frame(gui.Image(Style2.path('list_button_frame.png')))}, } }, gui.ScrollableSlide : {'background' : Frame(gui.Image(Style2.path('button_frame.png')))}, }