[bitbake-devel] [PATCH 3/3] hoberror.py : new class in handling hob errors

Andrei Dinu andrei.adrianx.dinu at intel.com
Mon Apr 15 10:38:15 UTC 2013


When an error is present in starting hob, it is
displayed in an dialog, forcing you to close hob.

Signed-off-by: Andrei Dinu <andrei.adrianx.dinu at intel.com>
---
 bitbake/lib/bb/ui/crumbs/hig/hoberror.py |   87 ++++++++++++++++++++++++++++++
 1 file changed, 87 insertions(+)
 create mode 100644 bitbake/lib/bb/ui/crumbs/hig/hoberror.py

diff --git a/bitbake/lib/bb/ui/crumbs/hig/hoberror.py b/bitbake/lib/bb/ui/crumbs/hig/hoberror.py
new file mode 100644
index 0000000..b15f9e5
--- /dev/null
+++ b/bitbake/lib/bb/ui/crumbs/hig/hoberror.py
@@ -0,0 +1,87 @@
+#
+# BitBake Graphical GTK User Interface
+#
+# Copyright (C) 2011-2013   Intel Corporation
+#
+# Authored by Andrei Dinu <andrei.adrianx.dinu at intel.com>
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License version 2 as
+# published by the Free Software Foundation.
+#
+# This program 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 General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License along
+# with this program; if not, write to the Free Software Foundation, Inc.,
+# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+import pygtk
+import gtk
+import sys
+import os
+from bb.ui.crumbs.hig.crumbsdialog import CrumbsDialog
+from bb.ui.crumbs.hig.settingsuihelper import SettingsUIHelper
+from bb.ui.crumbs.hig.crumbsmessagedialog import CrumbsMessageDialog
+from bb.ui.crumbs.hig.layerselectiondialog import LayerSelectionDialog
+
+class HobError():
+
+    def __init__(self,message):
+
+        self.message = message
+
+        self.create_visual_elements()
+
+    def run(self):
+        
+        self.dialog.run()
+
+    def create_visual_elements(self):
+
+        icon_dir = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(__file__))), ("icons/"))
+        icon_file = os.path.join(icon_dir, ('indicators/denied.png'))
+
+        self.dialog = gtk.Dialog("Hob - Image creator",
+                   None,
+                   gtk.DIALOG_MODAL | gtk.DIALOG_DESTROY_WITH_PARENT)
+
+        self.dialog.set_size_request(600,400)       
+        self.dialog.set_resizable(True)
+
+        table = gtk.Table(3,1,False)
+        table.set_row_spacings(0)
+        table.set_col_spacings(0)
+
+        image = gtk.Image()
+        image.set_from_file(icon_file)
+        image.set_property("xalign",0)
+
+        label_short = gtk.Label()
+        label_short.set_line_wrap(False)
+        label_short.set_markup("<span size='19000'>" + 'Hob found an error' + "</span>")
+        label_short.set_property("xalign", 0)
+
+        info_label = gtk.Label()
+        info_label.set_line_wrap(True)
+        info_label.set_selectable(True)
+        info_label.set_markup(self.message)
+        info_label.set_property("xalign",0)
+                
+        close_button = gtk.Button("Close Hob")
+        close_button.connect("clicked", lambda w:sys.exit())
+      
+        table.attach(image, 0,1,0,1, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.EXPAND,xpadding=20,ypadding=20)
+        table.attach(label_short, 0,1,0,1, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.SHRINK,xpadding=80,ypadding=20)
+        table.attach(info_label, 0,1,1,2, xoptions=gtk.FILL|gtk.EXPAND, yoptions=gtk.EXPAND,xpadding=80,ypadding=0)
+
+        alignment = gtk.Alignment()
+        alignment.add(close_button)
+        table.attach(alignment, 0,1,2,3, xoptions=gtk.EXPAND|gtk.FILL, yoptions=gtk.EXPAND,xpadding=75,ypadding=30)
+        
+        self.dialog.vbox.pack_start(table, expand=False, fill=False)
+        self.dialog.vbox.show_all()
+   
+        self.dialog.connect("delete-event", gtk.main_quit) 
-- 
1.7.9.5





More information about the bitbake-devel mailing list