summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCristiana Voicu <cristiana.voicu@intel.com>2012-10-03 13:06:22 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-10-03 17:29:16 +0100
commita84c466eae7c2616c041faf930163f23834f0685 (patch)
tree1b07b74acdde8fb77cf62f41e8450e11815d3d3d
parent334125a98ecb8a938aee4bc530205ad75099361c (diff)
downloadbitbake-a84c466eae7c2616c041faf930163f23834f0685.tar.gz
hob/settings: alignment and spacing fixes on "Shared state" tab
-alignment and separation on vertical and horizontal axis -change controls width [YOCTO #3188] Signed-off-by: Cristiana Voicu <cristiana.voicu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--lib/bb/ui/crumbs/hig.py72
1 files changed, 43 insertions, 29 deletions
diff --git a/lib/bb/ui/crumbs/hig.py b/lib/bb/ui/crumbs/hig.py
index c7a50ba41..ccd9f39a0 100644
--- a/lib/bb/ui/crumbs/hig.py
+++ b/lib/bb/ui/crumbs/hig.py
@@ -112,17 +112,18 @@ class SettingsUIHelper():
hbox = gtk.HBox(False, 12)
entry = gtk.Entry()
entry.set_text(content)
+ entry.set_size_request(350,30)
if need_button:
- table = gtk.Table(1, 10, True)
+ table = gtk.Table(1, 10, False)
hbox.pack_start(table, expand=True, fill=True)
- table.attach(entry, 0, 9, 0, 1)
+ table.attach(entry, 0, 9, 0, 1, xoptions=gtk.SHRINK)
image = gtk.Image()
image.set_from_stock(gtk.STOCK_OPEN,gtk.ICON_SIZE_BUTTON)
open_button = gtk.Button()
open_button.set_image(image)
open_button.connect("clicked", self.entry_widget_select_path_cb, parent, entry)
- table.attach(open_button, 9, 10, 0, 1)
+ table.attach(open_button, 9, 10, 0, 1, xoptions=gtk.SHRINK)
else:
hbox.pack_start(entry, expand=True, fill=True)
@@ -134,19 +135,29 @@ class SettingsUIHelper():
return hbox, entry
def gen_mirror_entry_widget(self, content, index, match_content=""):
- hbox = gtk.HBox(False, 12)
+ hbox = gtk.HBox(False)
entry = gtk.Entry()
content = content[:-2]
entry.set_text(content)
+ entry.set_size_request(350,30)
+
entry_match = gtk.Entry()
entry_match.set_text(match_content)
+ entry_match.set_size_request(100,30)
- table = gtk.Table(2, 6, True)
+ table = gtk.Table(2, 5, False)
+ table.set_row_spacings(12)
+ table.set_col_spacings(6)
hbox.pack_start(table, expand=True, fill=True)
+
label_configuration = gtk.Label("Configuration")
+ label_configuration.set_alignment(0.0,0.5)
label_mirror_url = gtk.Label("Mirror URL")
+ label_mirror_url.set_alignment(0.0,0.5)
label_match = gtk.Label("Match")
+ label_match.set_alignment(0.0,0.5)
label_replace_with = gtk.Label("Replace with")
+ label_replace_with.set_alignment(0.0,0.5)
combo = gtk.combo_box_new_text()
combo.append_text("Standard")
@@ -156,29 +167,31 @@ class SettingsUIHelper():
else:
combo.set_active(1)
combo.connect("changed", self.on_combo_changed, index)
+ combo.set_size_request(100,30)
delete_button = HobAltButton("Delete")
delete_button.connect("clicked", self.delete_cb, index, entry)
if content == "" and index == 0 and len(self.sstatemirrors_list) == 1:
delete_button.set_sensitive(False)
+ delete_button.set_size_request(100, 30)
entry_match.connect("changed", self.insert_entry_match_cb, index)
entry.connect("changed", self.insert_entry_cb, index, delete_button)
if match_content == "":
- table.attach(label_configuration, 0, 1, 0, 1)
- table.attach(label_mirror_url, 1, 2, 0, 1)
- table.attach(combo, 0, 1, 1, 2)
- table.attach(entry, 1, 5, 1, 2)
- table.attach(delete_button, 5, 6, 1, 2)
+ table.attach(label_configuration, 1, 2, 0, 1, xoptions=gtk.SHRINK|gtk.FILL)
+ table.attach(label_mirror_url, 2, 3, 0, 1, xoptions=gtk.SHRINK|gtk.FILL)
+ table.attach(combo, 1, 2, 1, 2, xoptions=gtk.SHRINK)
+ table.attach(entry, 2, 3, 1, 2, xoptions=gtk.SHRINK)
+ table.attach(delete_button, 3, 4, 1, 2, xoptions=gtk.SHRINK)
else:
- table.attach(label_configuration, 0, 1, 0, 1)
- table.attach(label_match, 1, 2, 0, 1)
- table.attach(label_replace_with, 2, 3, 0, 1)
- table.attach(combo, 0, 1, 1, 2)
- table.attach(entry_match, 1, 2, 1, 2)
- table.attach(entry, 2, 5, 1, 2)
- table.attach(delete_button, 5, 6, 1, 2)
+ table.attach(label_configuration, 1, 2, 0, 1, xoptions=gtk.SHRINK|gtk.FILL)
+ table.attach(label_match, 2, 3, 0, 1, xoptions=gtk.SHRINK|gtk.FILL)
+ table.attach(label_replace_with, 3, 4, 0, 1, xoptions=gtk.SHRINK|gtk.FILL)
+ table.attach(combo, 1, 2, 1, 2, xoptions=gtk.SHRINK)
+ table.attach(entry_match, 2, 3, 1, 2, xoptions=gtk.SHRINK)
+ table.attach(entry, 3, 4, 1, 2, xoptions=gtk.SHRINK)
+ table.attach(delete_button, 4, 5, 1, 2, xoptions=gtk.SHRINK)
hbox.show_all()
return hbox
@@ -521,19 +534,19 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
return advanced_vbox
def create_shared_state_page(self):
- advanced_vbox = gtk.VBox(False, 6)
- advanced_vbox.set_border_width(6)
+ advanced_vbox = gtk.VBox(False)
+ advanced_vbox.set_border_width(12)
- sub_vbox = gtk.VBox(False, 6)
- advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
- content = "<span weight=\"bold\">Shared state directory</span>"
+ sub_vbox = gtk.VBox(False)
+ advanced_vbox.pack_start(sub_vbox, expand=False, fill=False, padding=24)
+ content = "<span>Shared state directory</span>"
tooltip = "Select a folder that caches your prebuilt results"
label = self.gen_label_info_widget(content, tooltip)
sstatedir_widget, self.sstatedir_text = self.gen_entry_widget(self.configuration.sstatedir, self)
sub_vbox.pack_start(label, expand=False, fill=False)
- sub_vbox.pack_start(sstatedir_widget, expand=False, fill=False)
+ sub_vbox.pack_start(sstatedir_widget, expand=False, fill=False, padding=12)
- sub_vbox = gtk.VBox(False, 6)
+ sub_vbox = gtk.VBox(False)
advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
content = "<span weight=\"bold\">Shared state mirrors</span>"
tooltip = "URLs pointing to pre-built mirrors that will speed your build. "
@@ -575,15 +588,16 @@ class SimpleSettingsDialog (CrumbsDialog, SettingsUIHelper):
sstatemirror_widget = self.gen_mirror_entry_widget(mirror[1], index)
else:
sstatemirror_widget = self.gen_mirror_entry_widget(mirror[1], index, mirror[2])
- sub_vbox.pack_start(sstatemirror_widget, expand=False, fill=False)
+ sub_vbox.pack_start(sstatemirror_widget, expand=False, fill=False, padding=9)
index += 1
- sub_vbox = gtk.VBox(False, 6)
- advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
+ table = gtk.Table(1, 1, False)
+ table.set_col_spacings(6)
add_mirror_button = HobAltButton("Add another mirror")
- add_mirror_button.set_size_request(100, -1)
add_mirror_button.connect("clicked", self.add_mirror)
- sub_vbox.pack_start(add_mirror_button, expand=False, fill=False)
+ add_mirror_button.set_size_request(150,30)
+ table.attach(add_mirror_button, 1, 2, 0, 1, xoptions=gtk.SHRINK)
+ advanced_vbox.pack_start(table, expand=False, fill=False, padding=9)
return advanced_vbox