Make hud's menu-area text configurable

By default the hud positions a little box on top-left corner of each
table. Make the text in this box user-modifiable without touching the
source.

Most likely useful for active users and those who play with smaller
tables. On shrunk table the default box may cover some of the players'
cards.
This commit is contained in:
Mika Bostrom
2009-10-03 21:05:41 +03:00
parent 7eb368f221
commit 18cc51ba7a
2 changed files with 28 additions and 1 deletions
+2 -1
View File
@@ -82,6 +82,7 @@ class Hud:
(font, font_size) = config.get_default_font(self.table.site)
self.colors = config.get_default_colors(self.table.site)
self.hud_ui = config.get_hud_ui_parameters()
self.backgroundcolor = gtk.gdk.color_parse(self.colors['hudbgcolor'])
self.foregroundcolor = gtk.gdk.color_parse(self.colors['hudfgcolor'])
@@ -116,7 +117,7 @@ class Hud:
win.set_opacity(self.colors["hudopacity"])
eventbox = gtk.EventBox()
label = gtk.Label("FPDB Menu - Right click\nLeft-Drag to Move")
label = gtk.Label(self.hud_ui['label'])
win.add(eventbox)
eventbox.add(label)