Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/util/About.py~
diff options
context:
space:
mode:
Diffstat (limited to 'util/About.py~')
-rw-r--r--util/About.py~28
1 files changed, 28 insertions, 0 deletions
diff --git a/util/About.py~ b/util/About.py~
new file mode 100644
index 0000000..78d47b8
--- /dev/null
+++ b/util/About.py~
@@ -0,0 +1,28 @@
+#!/usr/bin/env python
+
+import gtk
+
+class About:
+
+
+ def show(self):
+ #base this on a message dialog
+ dialog = gtk.MessageDialog(
+ None,
+ gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT,
+ gtk.MESSAGE_QUESTION,
+ gtk.BUTTONS_OK,
+ None)
+ dialog.set_markup("<b><big>Mateton</big></b>\n\nDepartamento de Ingenieria - rodripf\nFundacion Teleton - 2011")
+
+ dialog.show_all()
+ #go go go
+ dialog.run()
+ dialog.destroy()
+
+
+
+if __name__ == '__main__':
+ d = About()
+ print d.show()
+ gtk.main() \ No newline at end of file