Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/infopanel.py
diff options
context:
space:
mode:
authorAndrés Ambrois <andresambrois@gmail.com>2008-08-15 06:28:37 (GMT)
committer Andrés Ambrois <andresambrois@gmail.com>2008-08-15 06:28:37 (GMT)
commit551625bebfa97c7cdefe4376885d0fa66fc8da03 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /infopanel.py
parentcd2f5ca75127e1a583f34c493b119d73466537bc (diff)
*** Cleaned master branch *** old code moved to arch/old_master
Diffstat (limited to 'infopanel.py')
-rwxr-xr-xinfopanel.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/infopanel.py b/infopanel.py
deleted file mode 100755
index 783c111..0000000
--- a/infopanel.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import gtk
-import pango
-from sugar.graphics import style
-
-class InfoPanel(gtk.VBox):
- def __init__(self):
- gtk.VBox.__init__(self)
- self.status_label = gtk.Label('Status')
- self.pack_start(self.status_label, True, True, 10)
- self.score_label = gtk.Label('Score')
- self.pack_start(self.score_label, True, True, 10)
- self.show_all()
-
- def show(self, text):
- self.status_label.set_text(text)
-
- def show_score(self, text):
- self.score_label.set_text(text)
-
-