Lightningbeam/lightningbeam.kv

38 lines
638 B
Plaintext

#:kivy 1.0
#:import ActionScriptLexer pygments.lexers.ActionScriptLexer
<KivyCanvas>:
<LightningbeamPanel>:
do_default_tab: False
TabbedPanelItem:
text: 'Drawing'
BoxLayout:
orientation: "vertical"
KivyCanvas:
TabbedPanelItem:
text: 'Tools'
GridLayout:
cols: 5
Button:
text: "Select"
Button:
text: "Lasso"
Button:
text: "Resize"
Button:
text: "Text"
Button:
text: "Rectangle"
Button:
text: "Ellipse"
Button:
text: "Paintbrush"
TabbedPanelItem:
text: 'ActionScript'
CodeInput:
multiline: True
lexer: ActionScriptLexer()
font_name: 'UbuntuMono-R.ttf'