From 6cd341ad693ceb1edcb2e6c45ad45f9dd2bed558 Mon Sep 17 00:00:00 2001
From: Yann Leboulanger <asterix@lagaule.org>
Date: Wed, 11 Aug 2010 09:18:15 +0200
Subject: [PATCH] show required field in a dataform with an *

---
 src/dataforms_widget.py | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/src/dataforms_widget.py b/src/dataforms_widget.py
index f80a266248..ce70125637 100644
--- a/src/dataforms_widget.py
+++ b/src/dataforms_widget.py
@@ -555,8 +555,13 @@ class SingleForm(gtk.Table, object):
                 widget.set_sensitive(readwrite)
                 widget = decorate_with_tooltip(widget, field)
                 self.attach(widget, 1, 2, linecounter, linecounter+1,
-                        yoptions=gtk.FILL)
-            widget.show_all()
+                        yoptions=gtk.FILL)	
+            
+            if field.required:
+                label = gtk.Label('*')
+                label.set_tooltip_text(_('This field is required'))
+                self.attach(label, 2, 3, linecounter, linecounter+1, xoptions=0,
+                    yoptions=0)
 
             linecounter+=1
         if self.get_property('visible'):
-- 
GitLab