Jam/status_bar.py

51 lines
1.5 KiB
Python
Raw Normal View History

from kivy.uix.label import Label
from kivy.graphics import Color,Rectangle
from kivy.utils import escape_markup
class Status_bar(Label):
def __init__(self,app,**kwargs):
# app is used to share information between widgets
self.app=app
2021-10-16 06:46:06 +00:00
# width of a character
self.char_width=9
# unformatted text
self.raw_text=""
# a one-time message that shows up over the bar
self.message=""
# init Label
super(Status_bar,self).__init__(**kwargs)
2021-10-16 06:46:06 +00:00
self.draw()
def draw(self):
# if message is not empty, draw message instead
if self.message!="":
self.text=self.message[:min(len(self.message),int(self.width/self.char_width))]
self.message=""
return
2021-10-18 22:57:35 +00:00
# list openfile
2021-10-16 23:14:22 +00:00
if self.app.openfile!="":
self.raw_text=self.app.openfile
else:
self.raw_text="[no file]"
2021-10-18 22:57:35 +00:00
# readonly
if self.app.readonly:
self.raw_text+=" [RO]"
2021-12-20 22:14:27 +00:00
# coordinates of selected cross
if len(self.app.painter.selected)>0:
# number of spaces to align right (use 13 characters to print position)
spaces=int(self.width/self.char_width)-len(self.raw_text)-13
if spaces>0:
self.raw_text+=" "*spaces+"({:05.2f},{:05.2f})\n".format(self.app.painter.selected[0].squares[0].pos.x,self.app.painter.selected[0].squares[0].pos.y)
2021-10-16 06:46:06 +00:00
# do not wrap
self.text=self.raw_text[:min(len(self.raw_text),int(self.width/self.char_width))]