34 lines
601 B
Plaintext
34 lines
601 B
Plaintext
#:kivy 1.0
|
|
#:import ActionScriptLexer pygments.lexers.ActionScriptLexer
|
|
|
|
<Lightningbeam>:
|
|
do_default_tab: False
|
|
TabbedPanelItem:
|
|
text: 'Drawing'
|
|
BoxLayout:
|
|
orientation: "vertical"
|
|
|
|
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: "Painbrush"
|
|
TabbedPanelItem:
|
|
text: 'ActionScript'
|
|
CodeInput:
|
|
multiline: True
|
|
lexer: ActionScriptLexer()
|
|
font_name: 'UbuntuMono-R.ttf' |