Package style :: Module transparent_gfs
[hide private]
[frames] | no frames]

Source Code for Module style.transparent_gfs

 1  #    callirhoe - high quality calendar rendering 
 2  #    Copyright (C) 2012 George M. Tzoumas 
 3   
 4  #    This program is free software: you can redistribute it and/or modify 
 5  #    it under the terms of the GNU General Public License as published by 
 6  #    the Free Software Foundation, either version 3 of the License, or 
 7  #    (at your option) any later version. 
 8  # 
 9  #    This program is distributed in the hope that it will be useful, 
10  #    but WITHOUT ANY WARRANTY; without even the implied warranty of 
11  #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
12  #    GNU General Public License for more details. 
13  # 
14  #    You should have received a copy of the GNU General Public License 
15  #    along with this program.  If not, see http://www.gnu.org/licenses/ 
16   
17  # --- style.transparent_gfs --- 
18   
19  """module defining Greek Font Society fonts for transparent style""" 
20   
21  import transparent as base 
22   
23  # day of week 
24 -class dow(base.dow):
25 font = "GFS Neohellenic"
26 27 # day of month
28 -class dom(base.dom):
29 font = "GFS Bodoni" 30 header_font = footer_font = "GFS Elpis"
31
32 -class dom_weekend(base.dom_weekend):
33 font = "GFS Bodoni" 34 header_font = footer_font = "GFS Elpis"
35
36 -class dom_holiday(base.dom_holiday):
37 font = ("GFS Bodoni",) 38 header_font = footer_font = "GFS Elpis"
39
40 -class dom_weekend_holiday(base.dom_weekend_holiday):
41 font = "GFS Bodoni" 42 header_font = footer_font = "GFS Elpis"
43
44 -class dom_multi(base.dom_multi):
45 font = ("GFS Bodoni",) 46 header_font = footer_font = "GFS Elpis"
47
48 -class dom_weekend_multi(base.dom_weekend_multi):
49 font = "GFS Bodoni" 50 header_font = footer_font = "GFS Elpis"
51
52 -class month(base.month):
53 font = ("GFS Artemisia", 0, 1)
54