diff options
author | Gabriel Millaire <millaire.gabriel@gmail.com> | 2009-06-11 09:43:19 +0800 |
---|---|---|
committer | Gabriel Millaire <millaire.gabriel@gmail.com> | 2009-07-10 23:31:27 +0800 |
commit | 29cbf3a2b4c6c2a73b04d4e369a4ffc35a5dcfb2 (patch) | |
tree | 2b40e608271fea9648ae5b296d08771774179ddd /src/empathy-main-window.ui | |
parent | 589c90fbf211b4d9c43bec975462d4075ed6dd3d (diff) | |
download | gsoc2013-empathy-29cbf3a2b4c6c2a73b04d4e369a4ffc35a5dcfb2.tar gsoc2013-empathy-29cbf3a2b4c6c2a73b04d4e369a4ffc35a5dcfb2.tar.gz gsoc2013-empathy-29cbf3a2b4c6c2a73b04d4e369a4ffc35a5dcfb2.tar.bz2 gsoc2013-empathy-29cbf3a2b4c6c2a73b04d4e369a4ffc35a5dcfb2.tar.lz gsoc2013-empathy-29cbf3a2b4c6c2a73b04d4e369a4ffc35a5dcfb2.tar.xz gsoc2013-empathy-29cbf3a2b4c6c2a73b04d4e369a4ffc35a5dcfb2.tar.zst gsoc2013-empathy-29cbf3a2b4c6c2a73b04d4e369a4ffc35a5dcfb2.zip |
Work in progress : move preferences to View menu
Moving Sort by name / by status and Show Avatars / Compact contact list preferences to View menu : Sort by name / Sort by status and Normal Size / Normal Without Icons / Compact Size
Diffstat (limited to 'src/empathy-main-window.ui')
-rw-r--r-- | src/empathy-main-window.ui | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/empathy-main-window.ui b/src/empathy-main-window.ui index f914979f6..d6fcb1e51 100644 --- a/src/empathy-main-window.ui +++ b/src/empathy-main-window.ui @@ -99,6 +99,56 @@ </object> </child> <child> + <object class="GtkRadioAction" id="view_sort_by_name"> + <property name="name">view_sort_by_name</property> + <property name="visible">True</property> + <property name="label" translatable="yes">Sort by _Name</property> + <property name="draw_as_radio">True</property> + <property name="value">1</property> + <property name="current-value">1</property> + </object> + </child> + <child> + <object class="GtkRadioAction" id="view_sort_by_status"> + <property name="name">view_sort_by_status</property> + <property name="visible">True</property> + <property name="label" translatable="yes">Sort by _Status</property> + <property name="draw_as_radio">True</property> + <property name="group">view_sort_by_name</property> + <property name="value">0</property> + </object> + </child> + <child> + <object class="GtkRadioAction" id="view_normal_size"> + <property name="name">view_normal_size</property> + <property name="visible">True</property> + <property name="label" translatable="yes">N_ormal Size</property> + <property name="draw_as_radio">True</property> + <property name="value">0</property> + <property name="current-value">0</property> + </object> + </child> + <child> + <object class="GtkRadioAction" id="view_normal_without_icons"> + <property name="name">view_normal_without_icons</property> + <property name="visible">True</property> + <property name="label" translatable="yes">Normal Size _Without Icons</property> + <property name="draw_as_radio">True</property> + <property name="group">view_normal_size</property> + <property name="value">1</property> + </object> + </child> + <child> + <object class="GtkRadioAction" id="view_compact_size"> + <property name="name">view_compact_size</property> + <property name="visible">True</property> + <property name="label" translatable="yes">_Compact Size</property> + <property name="draw_as_radio">True</property> + <property name="group">view_normal_size</property> + <property name="value">2</property> + </object> + </child> + <child> <object class="GtkAction" id="room"> <property name="name">room</property> <property name="label" translatable="yes">_Room</property> @@ -172,6 +222,13 @@ <menu action="view"> <menuitem action="view_show_offline"/> <separator/> + <menuitem action="view_sort_by_name"/> + <menuitem action="view_sort_by_status"/> + <separator/> + <menuitem action="view_normal_size"/> + <menuitem action="view_normal_without_icons"/> + <menuitem action="view_compact_size"/> + <separator/> <menuitem action="view_history"/> <menuitem action="view_show_ft_manager"/> <menuitem action="view_show_map"/> |