From 0a482f179a1f7dc4d1c59a6f3e8cf6042f0bd98e Mon Sep 17 00:00:00 2001 From: Nikos Kouremenos Date: Sat, 3 Sep 2005 12:28:30 +0000 Subject: [PATCH] [FishFace] Now Gajim has comments support for advanced settings --- src/advanced.py | 14 + src/common/config.py | 9 +- src/gtkgui.glade | 1087 ++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 1109 insertions(+), 1 deletion(-) diff --git a/src/advanced.py b/src/advanced.py index 203653f4b..63d84b404 100644 --- a/src/advanced.py +++ b/src/advanced.py @@ -41,6 +41,7 @@ class AdvancedConfigurationWindow: self.xml = gtk.glade.XML(GTKGUI_GLADE, 'advanced_configuration_window', None) self.window = self.xml.get_widget('advanced_configuration_window') self.entry = self.xml.get_widget('advanced_entry') + self.desc_label = self.xml.get_widget('advanced_desc_label') treeview = self.xml.get_widget('advanced_treeview') self.model = gtk.TreeStore(str, str, str) @@ -73,6 +74,9 @@ class AdvancedConfigurationWindow: treeview.set_model(self.modelfilter) + # connect signal for selection change + treeview.get_selection().connect('changed', self.on_advanced_treeview_selection_changed) + self.xml.signal_autoconnect(self) self.window.show_all() self.plugin.windows['advanced_config'] = self @@ -84,6 +88,16 @@ class AdvancedConfigurationWindow: else: cell.set_property('editable', 1) + def on_advanced_treeview_selection_changed(self, treeselection): + iter = treeselection.get_selected() + # Get text from first column in this row + opt = iter[0][iter[1]][0] + desc = gajim.config.get_desc(opt) + if desc: + self.desc_label.set_text(_(desc)) + else: + self.desc_label.set_text(_('(None)')) + def on_advanced_treeview_row_activated(self, treeview, path, column): modelpath = self.modelfilter.convert_path_to_child_path(path) modelrow = self.model[modelpath] diff --git a/src/common/config.py b/src/common/config.py index cfb09b187..2a9e33c6a 100644 --- a/src/common/config.py +++ b/src/common/config.py @@ -25,6 +25,7 @@ _ = i18n._ OPT_TYPE = 0 OPT_VAL = 1 +OPT_DESC = 2 opt_int = [ 'integer', 0 ] opt_str = [ 'string', 0 ] @@ -47,7 +48,7 @@ class Config: 'ignore_unknown_contacts': [ opt_bool, False ], 'showoffline': [ opt_bool, False ], 'autoaway': [ opt_bool, True ], - 'autoawaytime': [ opt_int, 5 ], + 'autoawaytime': [ opt_int, 5, 'Time after which you are displayed as being away.' ], 'autoaway_message': [ opt_str, _('Away as a result of being idle') ], 'autoxa': [ opt_bool, True ], 'autoxatime': [ opt_int, 15 ], @@ -388,6 +389,12 @@ class Config: if not self.__options.has_key(optname): return None return self.__options[optname][OPT_VAL] + + def get_desc(self, optname): + if not self.__options.has_key(optname): + return None + if len(self.__options[optname]) > OPT_DESC: + return self.__options[optname][OPT_DESC] def add_per(self, typename, name): # per_group_of_option if not self.__options_per_key.has_key(typename): diff --git a/src/gtkgui.glade b/src/gtkgui.glade index 9d76fdc3e..0c6b4d07c 100644 --- a/src/gtkgui.glade +++ b/src/gtkgui.glade @@ -19,6 +19,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -323,6 +324,9 @@ False True True + False + False + False @@ -344,6 +348,8 @@ True + False + True 0 @@ -369,6 +375,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -395,6 +402,9 @@ False False True + False + False + False @@ -478,6 +488,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -547,6 +561,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -599,6 +617,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -627,6 +646,10 @@ 0 0 name_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -696,6 +719,10 @@ 0 0 jid_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -721,6 +748,10 @@ 0 0 password_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -746,6 +777,10 @@ 0 0 resource_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -771,6 +806,10 @@ 0 0 priority_spinbutton + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -960,6 +999,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1077,6 +1120,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1099,6 +1146,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1203,6 +1254,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -1235,6 +1290,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1268,6 +1327,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1280,6 +1343,8 @@ True None + False + True 0 @@ -1420,6 +1485,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1461,6 +1530,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1514,6 +1587,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -1546,6 +1623,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1572,6 +1653,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1616,6 +1701,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -1685,6 +1774,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -1706,6 +1796,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1737,6 +1831,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1761,6 +1859,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1785,6 +1887,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1809,6 +1915,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1846,6 +1956,8 @@ True + False + True @@ -1935,6 +2047,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -1950,6 +2066,9 @@ True + False + True + True 1 @@ -2083,6 +2202,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2120,6 +2243,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -2140,6 +2264,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2263,6 +2391,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2334,6 +2466,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2407,6 +2543,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2446,6 +2586,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -2474,6 +2615,10 @@ 0 0 address_comboboxentry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2485,6 +2630,9 @@ True + False + True + True @@ -2538,6 +2686,9 @@ False False True + False + False + False @@ -2615,6 +2766,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2692,6 +2847,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -2712,6 +2868,10 @@ 0.5 0 4 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 4 @@ -2799,6 +2959,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2871,6 +3035,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -2908,6 +3076,7 @@ False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -3115,6 +3284,10 @@ 0 0 iconset_combobox + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3126,6 +3299,8 @@ True + False + True @@ -3182,6 +3357,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3193,6 +3372,8 @@ True + False + True @@ -3243,6 +3424,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -3298,6 +3483,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3423,6 +3612,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3523,6 +3716,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3547,6 +3744,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -3571,6 +3772,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3595,6 +3800,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3731,6 +3940,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3755,6 +3968,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3779,6 +3996,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3903,6 +4124,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3938,6 +4163,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -3994,6 +4223,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -4049,6 +4282,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4211,6 +4448,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4245,6 +4486,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4339,6 +4584,10 @@ 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -4400,6 +4649,10 @@ 0 0 chat_states_combobox + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -4416,6 +4669,8 @@ All chat states Composing only Disabled + False + True @@ -4503,6 +4758,10 @@ Disabled 0 0 soundplayer_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4562,6 +4821,9 @@ Disabled False False True + False + False + False @@ -4641,6 +4903,10 @@ Disabled 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -4696,6 +4962,10 @@ Disabled 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -4784,6 +5054,10 @@ Disabled 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -4808,6 +5082,10 @@ Disabled 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -4967,6 +5245,10 @@ Disabled 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5085,6 +5367,9 @@ Disabled False False True + False + False + False @@ -5199,6 +5484,10 @@ Disabled 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -5254,6 +5543,10 @@ Disabled 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5307,6 +5600,8 @@ Disabled Always use GNOME default applications Always use KDE default applications Custom + False + True @@ -5360,6 +5655,10 @@ Custom 0 0 custom_browser_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5385,6 +5684,10 @@ Custom 0 0 custom_mail_client_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5453,6 +5756,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5503,6 +5810,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -5533,6 +5844,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -5629,6 +5944,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -5744,6 +6063,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -5833,6 +6156,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5862,6 +6189,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -5917,6 +6248,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -5980,6 +6315,7 @@ Custom False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -6003,6 +6339,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -6044,6 +6384,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6069,6 +6413,10 @@ Custom 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6093,6 +6441,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6117,6 +6469,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6141,6 +6497,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6165,6 +6525,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6196,6 +6560,10 @@ Custom 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6217,6 +6585,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6238,6 +6610,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6269,6 +6645,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6316,6 +6696,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6341,6 +6725,10 @@ Custom 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6365,6 +6753,10 @@ Custom 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -6419,6 +6811,10 @@ Custom 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6451,6 +6847,10 @@ Custom 0.5 5 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -6483,6 +6883,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -6512,6 +6916,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6557,6 +6965,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6581,6 +6993,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6605,6 +7021,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6629,6 +7049,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6775,6 +7199,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6799,6 +7227,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6823,6 +7255,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6847,6 +7283,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -6871,6 +7311,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7002,6 +7446,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -7038,6 +7486,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -7070,6 +7522,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -7099,6 +7555,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7123,6 +7583,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7147,6 +7611,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7171,6 +7639,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7195,6 +7667,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7219,6 +7695,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7375,6 +7855,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -7404,6 +7888,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7428,6 +7916,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7452,6 +7944,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7476,6 +7972,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7601,6 +8101,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7625,6 +8129,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7649,6 +8157,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7673,6 +8185,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7697,6 +8213,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7721,6 +8241,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7873,6 +8397,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -7902,6 +8430,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7926,6 +8458,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -7998,6 +8534,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -8133,6 +8673,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -8209,6 +8753,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8280,6 +8828,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8333,6 +8885,7 @@ Custom False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -8405,6 +8958,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8476,6 +9033,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8560,6 +9121,10 @@ Custom 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -8647,6 +9212,7 @@ Custom False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -8702,6 +9268,10 @@ topic 0.5 0 6 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -8848,6 +9418,9 @@ topic False False True + False + False + False @@ -9040,6 +9613,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9126,6 +9703,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9192,6 +9773,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9252,6 +9837,7 @@ topic False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -9368,6 +9954,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9392,6 +9982,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9416,6 +10010,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9440,6 +10038,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9464,6 +10066,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9478,6 +10084,8 @@ topic True + False + True @@ -9574,6 +10182,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9611,6 +10223,7 @@ topic False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -9679,6 +10292,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 5 @@ -9751,6 +10368,7 @@ topic False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -9819,6 +10437,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9844,6 +10466,9 @@ topic False False True + False + False + False @@ -9879,6 +10504,7 @@ topic False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -9935,6 +10561,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -9992,6 +10622,10 @@ topic 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10003,6 +10637,9 @@ topic True + False + True + True @@ -10037,6 +10674,7 @@ topic False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -10130,6 +10768,10 @@ Status message 0.5 0 5 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10501,6 +11143,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10587,6 +11233,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10669,6 +11319,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10730,6 +11384,7 @@ Status message False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True True @@ -10778,6 +11433,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10799,6 +11458,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -10875,6 +11538,9 @@ Status message False False True + False + False + False @@ -10901,6 +11567,7 @@ Status message False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -10991,6 +11658,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11031,6 +11702,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11151,6 +11826,7 @@ Status message True GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_SOUTH_EAST + True @@ -11185,6 +11861,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11239,6 +11919,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11267,6 +11951,7 @@ Status message False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True @@ -11293,6 +11978,9 @@ Status message False False True + False + False + False @@ -11387,6 +12075,7 @@ Status message False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True True @@ -11461,6 +12150,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11519,6 +12212,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11599,6 +12296,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -11630,6 +12331,7 @@ Status message False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -11689,6 +12391,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11787,6 +12493,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -11824,6 +12534,7 @@ Status message False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -11938,6 +12649,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -12035,6 +12750,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12074,6 +12793,7 @@ Status message False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -12105,6 +12825,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12155,6 +12879,9 @@ Status message True False True + False + False + False @@ -12175,6 +12902,70 @@ Status message + + + 6 + True + False + 12 + + + + True + Description: + False + False + GTK_JUSTIFY_LEFT + False + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + + True + (None) + False + False + GTK_JUSTIFY_LEFT + True + False + 0.5 + 0.5 + 0 + 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 + + + 0 + False + False + + + + + 0 + False + True + + + True @@ -12217,6 +13008,7 @@ Status message False GDK_WINDOW_TYPE_HINT_DIALOG GDK_GRAVITY_NORTH_WEST + True False @@ -12308,6 +13100,10 @@ Status message 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12515,6 +13311,7 @@ Status message False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -12552,6 +13349,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12641,6 +13442,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -12673,6 +13478,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -12698,6 +13507,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12750,6 +13563,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12764,6 +13581,9 @@ the Jabber network. True + False + True + True 1 @@ -12789,6 +13609,10 @@ the Jabber network. 0 0 pass_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12859,6 +13683,10 @@ the Jabber network. 0 0 nick_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12902,6 +13730,10 @@ the Jabber network. 0 0 proxyhost_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12927,6 +13759,10 @@ the Jabber network. 0 0 proxyport_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12952,6 +13788,10 @@ the Jabber network. 0 0 proxyuser_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -12977,6 +13817,10 @@ the Jabber network. 0 0 proxypass_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13087,6 +13931,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -13116,6 +13964,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13140,6 +13992,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13177,6 +14033,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13202,6 +14062,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13254,6 +14118,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13268,6 +14136,9 @@ the Jabber network. True + False + True + True 1 @@ -13314,6 +14185,10 @@ the Jabber network. 0 0 register_pass_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13384,6 +14259,10 @@ the Jabber network. 0 0 register_nick_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13408,6 +14287,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13433,6 +14316,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -13476,6 +14363,10 @@ the Jabber network. 0 0 proxyhost_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13501,6 +14392,10 @@ the Jabber network. 0 0 proxyport_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13526,6 +14421,10 @@ the Jabber network. 0 0 proxyuser_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13551,6 +14450,10 @@ the Jabber network. 0 0 proxypass_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13661,6 +14564,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -13702,6 +14609,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13744,6 +14655,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13771,6 +14686,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -13887,6 +14806,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -13926,6 +14849,7 @@ the Jabber network. False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -13963,6 +14887,9 @@ the Jabber network. False False True + False + False + False @@ -14065,6 +14992,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14131,6 +15062,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14155,6 +15090,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14221,6 +15160,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14245,6 +15188,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14346,6 +15293,7 @@ the Jabber network. False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -14383,6 +15331,9 @@ the Jabber network. False False True + False + False + False @@ -14489,6 +15440,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14513,6 +15468,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14528,6 +15487,8 @@ the Jabber network. True HTTP Connect + False + True @@ -14578,6 +15539,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -14635,6 +15600,10 @@ the Jabber network. 0 0 proxyport_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14704,6 +15673,10 @@ the Jabber network. 0 0 proxyhost_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14729,6 +15702,10 @@ the Jabber network. 0 0 proxypass_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14754,6 +15731,10 @@ the Jabber network. 0 0 proxyuser_entry + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -14849,6 +15830,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -14919,6 +15904,7 @@ the Jabber network. False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -14956,6 +15942,9 @@ the Jabber network. False False True + False + False + False @@ -15035,6 +16024,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15059,6 +16052,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15083,6 +16080,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -15170,6 +16171,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 1 @@ -15194,6 +16199,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -15218,6 +16227,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 3 @@ -15413,6 +16426,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 @@ -15950,6 +16967,7 @@ the Jabber network. False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -15980,6 +16998,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16046,6 +17068,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 2 @@ -16091,6 +17117,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16115,6 +17145,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16260,6 +17294,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16332,6 +17370,10 @@ the Jabber network. 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -16527,6 +17569,7 @@ the Jabber network. False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -16563,6 +17606,9 @@ the Jabber network. False False True + False + False + False @@ -16651,6 +17697,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 False @@ -16671,6 +17721,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16694,6 +17748,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16717,6 +17775,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -16740,6 +17802,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 tab @@ -17026,6 +18092,7 @@ Maybe I'll refactor later False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True @@ -17048,6 +18115,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17131,6 +18202,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17313,6 +18388,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 0 @@ -17349,6 +18428,10 @@ Maybe I'll refactor later 0.5 0 0 + PANGO_ELLIPSIZE_NONE + -1 + False + 0 label_item @@ -17493,6 +18576,7 @@ Maybe I'll refactor later False GDK_WINDOW_TYPE_HINT_NORMAL GDK_GRAVITY_NORTH_WEST + True File Transfers Shows a list of file transfers between you and other @@ -17525,6 +18609,9 @@ Maybe I'll refactor later True False False + False + False + False file transfers list A list of active, completed and stopped file transfers