Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEduardo Silva <edsiper@gmail.com>2007-11-13 13:44:46 (GMT)
committer Eduardo Silva <edsiper@gmail.com>2007-11-13 13:44:46 (GMT)
commit8ec8a70dbafcd6b42be34c8d11cfce10638594f7 (patch)
treefc17c431441ae3013c1150ac66eee311ba68c287
parent4b1c3cc5901e0e612c1d784b8c52656fa76fd15b (diff)
Add gtk-test.py
-rw-r--r--gtk-test.py38
1 files changed, 38 insertions, 0 deletions
diff --git a/gtk-test.py b/gtk-test.py
new file mode 100644
index 0000000..2c40d4c
--- /dev/null
+++ b/gtk-test.py
@@ -0,0 +1,38 @@
+# Copyright (C) 2007, Eduardo Silva <edsiper@gmail.com>
+#
+# This library is free software; you can redistribute it and/or
+# modify it under the terms of the GNU Lesser General Public
+# License as published by the Free Software Foundation; either
+# version 2 of the License, or (at your option) any later version.
+#
+# This library is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+# Lesser General Public License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with this library; if not, write to the
+# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
+# Boston, MA 02111-1307, USA.
+
+import os
+import gtk
+import purk
+
+class XoIRC(gtk.Window):
+ def __init__(self):
+ gtk.Window.__init__(self)
+ self.set_title('XoIRC')
+ self.set_size_request(800, 450)
+
+ client = purk.Client()
+ client.add_channel('#olpc-help')
+ client.join_server('irc.freenode.net')
+ client.show()
+ widget = client.get_widget()
+ self.add(widget)
+ self.show_all()
+
+if __name__ == "__main__":
+ init = XoIRC()
+ gtk.main()