aboutsummaryrefslogtreecommitdiffstats
path: root/python/example.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/example.py')
-rwxr-xr-xpython/example.py32
1 files changed, 0 insertions, 32 deletions
diff --git a/python/example.py b/python/example.py
deleted file mode 100755
index 38a04978e..000000000
--- a/python/example.py
+++ /dev/null
@@ -1,32 +0,0 @@
-#!/usr/bin/env python
-
-import gtk
-import empathy
-import empathygtk
-
-class HelloWorld:
-
- def destroy(self, widget, data=None):
- print "destroy signal occurred"
- gtk.main_quit()
-
- def __init__(self):
- self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
- self.window.connect("destroy", self.destroy)
-
- manager = empathy.ContactManager()
- store = empathygtk.ContactListStore(manager)
- features = empathygtk.ContactListFeatureFlags(empathygtk.CONTACT_LIST_FEATURE_NONE)
- view = empathygtk.ContactListView(store, 0, features)
-
- self.window.add (view)
- view.show()
- self.window.show()
-
- def main(self):
- gtk.main()
-
-if __name__ == "__main__":
- hello = HelloWorld()
- hello.main()
-