2019-03-07 21:28:11 +01:00
|
|
|
from DesignEntity import DesignEntity
|
|
|
|
from PIL import ImageDraw
|
|
|
|
from TextDesign import TextDesign
|
|
|
|
|
|
|
|
numberbox_ypos = 0.15
|
|
|
|
numberbox_height = 1 - 2 * numberbox_ypos
|
|
|
|
number_height = numberbox_height * 0.83
|
2019-03-07 21:31:54 +01:00
|
|
|
month_height = numberbox_height / 4
|
2019-03-07 21:28:11 +01:00
|
|
|
monthbox_xpadding = 0.013
|
|
|
|
monthbox_width = 1 - numberbox_ypos - monthbox_xpadding
|
2019-03-07 21:31:54 +01:00
|
|
|
weekday_height = numberbox_height * 0.22
|
2019-03-07 21:28:11 +01:00
|
|
|
weekday_ypadding = 0.02
|
|
|
|
|
|
|
|
numberbox_font_color = "white"
|
|
|
|
numberbox_background_color = "red"
|
2019-03-07 21:44:10 +01:00
|
|
|
general_text_color = "black"
|
|
|
|
background_color = "white"
|
2019-03-07 21:28:11 +01:00
|
|
|
|
|
|
|
class DayHeaderDesign (DesignEntity):
|
|
|
|
"""Detailed and big view of a given date."""
|
|
|
|
def __init__ (self, size, date):
|
|
|
|
super(DayHeaderDesign, self).__init__(size)
|
2019-03-07 21:44:10 +01:00
|
|
|
self.__init_image__(color=background_color)
|
2019-03-07 21:28:11 +01:00
|
|
|
self.date = date
|
|
|
|
|
2019-03-09 15:22:49 +01:00
|
|
|
def add_weather (self, weather):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def add_calendar (self, calendar):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def add_rssfeed (self, rss):
|
|
|
|
pass
|
|
|
|
|
2019-03-07 21:28:11 +01:00
|
|
|
def __finish_image__ (self):
|
|
|
|
self.__draw_number_square__()
|
|
|
|
self.__draw_month__()
|
|
|
|
self.__draw_weekday__()
|
|
|
|
|
|
|
|
def __draw_weekday__ (self):
|
|
|
|
font_size = int(weekday_height * self.size[1])
|
|
|
|
padding = int(weekday_ypadding * self.size[1])
|
|
|
|
box_ypos = int((numberbox_ypos) * self.size[1]) + padding
|
|
|
|
box_xpos = int(numberbox_ypos * self.size[1])
|
|
|
|
box_height = int((1 - numberbox_ypos - numberbox_height) * self.size[1])
|
|
|
|
box_pos = (box_xpos, box_ypos)
|
|
|
|
box_size = (int(numberbox_height * self.size[1]), box_height)
|
|
|
|
|
|
|
|
week_day_name = self.date.strftime("%A")
|
|
|
|
week_day = TextDesign(box_size, text=week_day_name, background_color=numberbox_background_color, color=numberbox_font_color, fontsize=font_size, horizontalalignment="center")
|
|
|
|
week_day.pos = box_pos
|
|
|
|
self.draw_design(week_day)
|
|
|
|
|
|
|
|
def __draw_month__ (self):
|
|
|
|
font_size = int(month_height * self.size[1])
|
|
|
|
padding = int(monthbox_xpadding * self.size[0])
|
|
|
|
box_ypos = int(numberbox_ypos * self.size[1])
|
|
|
|
box_height = int(numberbox_height * self.size[1])
|
|
|
|
box_pos = (box_ypos + box_height + padding, box_ypos)
|
|
|
|
box_size = (int(monthbox_width * self.size[0]), box_height)
|
|
|
|
|
|
|
|
month_name = self.date.strftime("%B")
|
2019-03-07 21:44:10 +01:00
|
|
|
month = TextDesign(box_size, text=month_name, fontsize=font_size, color=general_text_color, background_color=background_color)
|
2019-03-07 21:28:11 +01:00
|
|
|
month.pos = box_pos
|
|
|
|
self.draw_design(month)
|
|
|
|
|
|
|
|
def __draw_number_square__ (self):
|
|
|
|
box_ypos = int(numberbox_ypos * self.size[1])
|
|
|
|
box_height = int(numberbox_height * self.size[1])
|
|
|
|
box_topleft = (box_ypos,box_ypos)
|
|
|
|
box_bottomright = (box_topleft[0] + box_height, box_topleft[1] + box_height)
|
|
|
|
ImageDraw.Draw(self.__image__).rectangle([ box_topleft, box_bottomright ], fill=numberbox_background_color)
|
|
|
|
|
|
|
|
font_size = int(number_height * self.size[1])
|
|
|
|
box_size = (box_height, box_height)
|
2019-03-07 21:44:10 +01:00
|
|
|
day_text = self.__get_day_text__()
|
|
|
|
number = TextDesign(box_size, text=day_text, background_color=numberbox_background_color, color=numberbox_font_color, fontsize=font_size, horizontalalignment="center", verticalalignment="center")
|
2019-03-07 21:28:11 +01:00
|
|
|
number.pos = box_topleft
|
|
|
|
self.draw_design(number)
|
|
|
|
|
|
|
|
def __abs_co__ (self, coordinates):
|
2019-03-07 21:44:10 +01:00
|
|
|
return (int(coordinates[0] * self.size[0]),int(coordinates[1] * self.size[1]))
|
|
|
|
|
|
|
|
def __get_day_text__ (self):
|
|
|
|
if self.date.strftime("%d-%m") is "14-03": #PI-Day
|
|
|
|
return "π"
|
|
|
|
return str(self.date.day)
|