Changes

Jump to: navigation, search

Accessibility

375 bytes added, 10:36, 20 October 2011
Into Glade
* Gtk label
''A [http://developer.gnome.org/gtk/2.24/GtkLabel.html GtkLabel]'' '''with mnemonic support''' will automaticaly generates generate accessibility keys on next linked ''[http://developer.gnome.org/gtk/2.24/GtkEntry.html GtkEntry]'' and ''UndoableEntry'' fields. Remember that Gramps also uses custom widgets like ''StyledTextEditor'' and ''ValidatableMaskedEntry'', which do not always provide relation with a ''GtkLabel''. In this case, we need to set a relation.
* Toggle buttons and Icons on toolbar
* a label for other widget should use mnemonic_widget() or a relation
 
<object class="GtkLabel" id="label2">
<property name="visible">True</property>
<property name="xalign">0</property>
<property name="label" translatable="yes">La_bel:</property>
<property name="use_underline">True</property>
<property name="justify">center</property>
<property name="mnemonic_widget">related_label_entry_name</property>
</object>
<object class="GtkButton" id="button1">
<property name="draw_indicator">True</property>
</object>
 
'''''TODO''''' need to look further for mnemonic_widget() and focus.
===Into python===

Navigation menu