[ocrfeeder] widgetPresenter: Improve the a11y of the OCR engine settings' dialog
- From: Joaquim Manuel Pereira Rocha <jrocha src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [ocrfeeder] widgetPresenter: Improve the a11y of the OCR engine settings' dialog
- Date: Thu, 1 Jul 2010 07:20:26 +0000 (UTC)
commit 2c0862f13492ece767a392246ab7b64984a4098e
Author: Joaquim Rocha <jrocha igalia com>
Date: Wed Jun 30 16:21:16 2010 +0200
widgetPresenter: Improve the a11y of the OCR engine settings' dialog
Make the dialog more GNOME HIG compliant;
Set the labels as mnemonics for the respective entries.
studio/widgetPresenter.py | 41 +++++++++++++++++++++++++++++------------
1 files changed, 29 insertions(+), 12 deletions(-)
---
diff --git a/studio/widgetPresenter.py b/studio/widgetPresenter.py
index 272b804..a2db5d1 100644
--- a/studio/widgetPresenter.py
+++ b/studio/widgetPresenter.py
@@ -1357,18 +1357,30 @@ class OcrSettingsDialog(gtk.Dialog):
failure_string = self.engine.failure_string
engine_path = self.engine.engine_path
arguments = self.engine.arguments
- table = gtk.Table(5, 2)
+ box = gtk.VBox(True, 0)
+ size_group = gtk.SizeGroup(gtk.SIZE_GROUP_HORIZONTAL)
self.name_entry = gtk.Entry()
- self.__packSettingInFrame(table, 0, _('Name'), self.name_entry, name, _('Engine name'))
+ self.__packSettingInFrame(box, size_group, _('_Name:'),
+ self.name_entry, name, _('Engine name'))
self.image_format_entry = gtk.Entry()
- self.__packSettingInFrame(table, 1, _('Image format'), self.image_format_entry, image_format, _('The required image format'))
+ self.__packSettingInFrame(box, size_group, _('_Image format:'),
+ self.image_format_entry, image_format,
+ _('The required image format'))
self.failure_string_entry = gtk.Entry()
- self.__packSettingInFrame(table, 2, _('Failure string'), self.failure_string_entry, failure_string, _('The failure string or character that this engine uses'))
+ self.__packSettingInFrame(box, size_group, _('_Failure string:'),
+ self.failure_string_entry, failure_string,
+ _('The failure string or character that '
+ 'this engine uses'))
self.engine_path_entry = gtk.Entry()
- self.__packSettingInFrame(table, 3, _('Engine Path'), self.engine_path_entry, engine_path, _('The path to the engine program'))
+ self.__packSettingInFrame(box, size_group, _('Engine _path:'),
+ self.engine_path_entry, engine_path,
+ _('The path to the engine program'))
self.arguments_entry = gtk.Entry()
- self.__packSettingInFrame(table, 4, _('Engine arguments'), self.arguments_entry, arguments, _('Arguments: use $IMAGE for image and $FILE if it writes to a file'))
- return table
+ self.__packSettingInFrame(box, size_group, _('Engine _arguments:'),
+ self.arguments_entry, arguments,
+ _('Arguments: use $IMAGE for image '
+ 'and $FILE if it writes to a file'))
+ return box
def setEngine(self):
try:
@@ -1387,16 +1399,21 @@ class OcrSettingsDialog(gtk.Dialog):
print sys.exc_info()
return False
- def __packSettingInFrame(self, table, position, entry_name, entry, entry_text, aditional_info = None):
+ def __packSettingInFrame(self, box, size_group, entry_name, entry,
+ entry_text, aditional_info = None):
label = gtk.Label(entry_name)
- label_alignment = gtk.Alignment()
+ label.set_use_underline(True)
+ label.set_mnemonic_widget(entry)
+ label_alignment = gtk.Alignment(0, 0.5, 0, 1)
label_alignment.add(label)
+ size_group.add_widget(label_alignment)
entry.set_text(entry_text)
- table.attach(label_alignment, 0, 1, position, position + 1)
- table.attach(entry, 1, 2, position, position + 1)
if aditional_info:
entry.set_tooltip_text(aditional_info)
- label.set_tooltip_text(aditional_info)
+ row = gtk.HBox(False, 12)
+ row.pack_start(label_alignment, False, False, 0)
+ row.add(entry)
+ box.add(row)
class CustomAboutDialog(gtk.AboutDialog):
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]