Jam/main.py

41 lines
976 B
Python
Raw Normal View History

2021-09-28 01:20:22 +00:00
from kivy.app import App
from kivy.uix.widget import Widget
from kivy.uix.boxlayout import BoxLayout
2021-09-28 01:20:22 +00:00
from kivy.config import Config
2021-09-28 19:23:06 +00:00
from cross import Cross,Cross_painter
from status_bar import Status_bar
2021-10-02 21:38:26 +00:00
from command_prompt import Command_prompt
2021-09-28 19:23:06 +00:00
2021-09-28 01:20:22 +00:00
# App class
class Jam_app(App):
# name of .kv file for main interface
kv_file="jam.kv"
2021-09-28 01:20:22 +00:00
def build(self):
layout=BoxLayout(orientation="vertical")
2021-10-02 21:38:26 +00:00
2021-10-16 20:19:22 +00:00
# the file open for editing
self.openfile=""
# painter
self.painter=Cross_painter(self)
2021-10-16 20:19:22 +00:00
# status bar
self.status_bar=Status_bar(self)
2021-10-16 20:19:22 +00:00
# command prompt
2021-10-02 21:38:26 +00:00
self.command_prompt=Command_prompt(self)
layout.add_widget(self.painter)
layout.add_widget(self.status_bar)
2021-10-02 21:38:26 +00:00
layout.add_widget(self.command_prompt)
return layout
2021-09-28 01:20:22 +00:00
# disable red circles on right click
Config.set('input', 'mouse', 'mouse,disable_multitouch')
# run
if __name__ == '__main__':
Jam_app().run()