Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/sugar
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@localhost.localdomain>2007-07-10 17:35:18 (GMT)
committer Marco Pesenti Gritti <marco@localhost.localdomain>2007-07-10 17:35:18 (GMT)
commit1daa532625b2b553d98adeb195208b572e0eeab3 (patch)
tree1069b9c22f60d6065f24bb40306adcae7ef5da5a /sugar
parent61a080a6938ff6098e1bca1aa4e48cab9f17de51 (diff)
Fix font size on the XO
Diffstat (limited to 'sugar')
-rw-r--r--sugar/graphics/style.py12
1 files changed, 10 insertions, 2 deletions
diff --git a/sugar/graphics/style.py b/sugar/graphics/style.py
index fedbc9e..1306caa 100644
--- a/sugar/graphics/style.py
+++ b/sugar/graphics/style.py
@@ -18,6 +18,10 @@
import gtk
import pango
+def _get_screen_dpi():
+ xft_dpi = gtk.settings_get_default().get_property('gtk-xft-dpi')
+ return float(xft_dpi / 1024)
+
def _compute_zoom_factor():
return gtk.gdk.screen_width() / 1200.0
@@ -43,17 +47,21 @@ class Font(object):
def get_pango_desc(self):
return pango.FontDescription(self._desc)
+_XO_DPI = 200.0
+
_FOCUS_LINE_WIDTH = 2
_TAB_CURVATURE = 1
ZOOM_FACTOR = _compute_zoom_factor()
-FONT_SIZE = _zoom(7 * 200 / 72.0)
+FONT_SIZE = _zoom(7 * _XO_DPI / _get_screen_dpi())
FONT_NORMAL = Font('Bitstream Vera Sans %d' % FONT_SIZE)
FONT_BOLD = Font('Bitstream Vera Sans bold %d' % FONT_SIZE)
+FONT_NORMAL_H = _compute_font_height(FONT_NORMAL)
+FONT_BOLD_H = _compute_font_height(FONT_BOLD)
TOOLBOX_SEPARATOR_HEIGHT = _zoom(9)
TOOLBOX_HORIZONTAL_PADDING = _zoom(75)
-TOOLBOX_TAB_VBORDER = int((_zoom(36) - FONT_SIZE - _FOCUS_LINE_WIDTH) / 2)
+TOOLBOX_TAB_VBORDER = int((_zoom(36) - FONT_NORMAL_H - _FOCUS_LINE_WIDTH) / 2)
TOOLBOX_TAB_HBORDER = _zoom(15) - _FOCUS_LINE_WIDTH - _TAB_CURVATURE
TOOLBOX_TAB_LABEL_WIDTH = _zoom(150 - 15 * 2)