Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/Key.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/Key.py')
-rw-r--r--src/Key.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Key.py b/src/Key.py
new file mode 100644
index 0000000..2ed1ce0
--- /dev/null
+++ b/src/Key.py
@@ -0,0 +1,11 @@
+import pygtk
+pygtk.require('2.0')
+import gtk
+
+class Key(gtk.Widget):
+ def __init__(self, text, rectangle):
+ self.text = text
+ self.specs = rectangle
+
+
+ \ No newline at end of file