aboutsummaryrefslogtreecommitdiff
path: root/h-client/hclient.py
diff options
context:
space:
mode:
authorAntonio Gallo <tonicucoz@gmail.com>2011-03-23 00:45:46 +0000
committerAntonio Gallo <tonicucoz@gmail.com>2011-03-23 00:45:46 +0000
commit75789d1dc5dc617ad98bf959582ad609bdbb313d (patch)
tree75ffd65cebcd3e618b83cabe23dfd3c87b452eed /h-client/hclient.py
parent18ba19ee1061b8591b221aea09c8c58a8a2a8f63 (diff)
added License.txt, copyright.txt and readme.txt to the h-client package
Diffstat (limited to 'h-client/hclient.py')
-rw-r--r--h-client/hclient.py16
1 files changed, 10 insertions, 6 deletions
diff --git a/h-client/hclient.py b/h-client/hclient.py
index 522e500..7fdd318 100644
--- a/h-client/hclient.py
+++ b/h-client/hclient.py
@@ -146,11 +146,14 @@ class hclient:
#start the left vertical box
self.leftWindow = gtk.VBox(False, 0)
- self.leftWindow.set_border_width(5)
- #self.lframe = gtk.Frame("Your devices")
-
+ #self.leftWindow.set_border_width(5)
+ self.lframe = gtk.Frame()
+ self.lframe.set_border_width(5)
+
- self.centerWindow.pack_start(self.leftWindow, True, True, 0)
+ self.centerWindow.pack_start(self.lframe, True, True, 0)
+
+ self.lframe.add(self.leftWindow)
#self.centerWindow.pack_start(self.rframe, True, True, 5)
#self.leftWindow.pack_start(gtk.Label("Your hardware:"), False, True, 5)
@@ -179,7 +182,7 @@ class hclient:
self.tree.append_column(languages)
self.tree.set_model(self.treestore)
- self.leftWindow.pack_start(self.tree, False, True, 5)
+ self.leftWindow.pack_start(self.tree, False, True, 0)
self.leftWindow.show_all()
@@ -306,6 +309,7 @@ class hclient:
self.descriptionText = textview = gtk.TextView()
self.descriptionText.set_wrap_mode(gtk.WRAP_CHAR)
+
sw.add(self.descriptionText)
sw.show()
sw.show_all()
@@ -330,7 +334,7 @@ class hclient:
#self.rframe.set_border_width(30)
self.centerWindow.show()
- #self.lframe.show()
+ self.lframe.show()
#self.rframe.show()
self.rightTable.show()
self.leftWindow.show()