From 75789d1dc5dc617ad98bf959582ad609bdbb313d Mon Sep 17 00:00:00 2001 From: Antonio Gallo Date: Wed, 23 Mar 2011 00:45:46 +0000 Subject: added License.txt, copyright.txt and readme.txt to the h-client package --- h-client/hclient.py | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) (limited to 'h-client/hclient.py') 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() -- cgit v1.2.3