Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/SubActivity.py
diff options
context:
space:
mode:
authorJames <olpc@localhost.localdomain>2007-02-26 07:59:00 (GMT)
committer James <olpc@localhost.localdomain>2007-02-26 07:59:00 (GMT)
commitb91bd03107f5c8fd1eff166e18e888a1c6d3f1a9 (patch)
tree5c81997f09c73519674b25cdc6fd58478c05356b /SubActivity.py
parent7e9d820bfdcb9cc627efe22a3f984ebaea47cd41 (diff)
m
Diffstat (limited to 'SubActivity.py')
-rw-r--r--SubActivity.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/SubActivity.py b/SubActivity.py
new file mode 100644
index 0000000..a3b1f7a
--- /dev/null
+++ b/SubActivity.py
@@ -0,0 +1,20 @@
+import pygtk
+pygtk.require( '2.0' )
+import gtk
+
+class SubActivity(gtk.EventBox):
+
+ def __init__(self, set_mode):
+ gtk.EventBox.__init__(self)
+ self.set_mode = set_mode
+
+ def onDestroy(self):
+ pass
+ def onKeyPress(self, widget, data):
+ pass
+ def onKeyRelease(self, widget, data):
+ pass
+ def onActivate(self):
+ pass
+ def onDeactivate(self):
+ pass