[nicfit] tabs_position (this needs UI option for .9) tabs_always_show tabs_border tabs_close_button are now configurable. USERS: you can have tabs in the bottom now if you like that :$

This commit is contained in:
Nikos Kouremenos 2005-08-28 14:40:06 +00:00
parent a9b5ed980f
commit 215be2bb5c
2 changed files with 31 additions and 3 deletions

View File

@ -48,8 +48,7 @@ class Chat:
self.window = self.xml.get_widget(widget_name)
self.widget_name = widget_name
self.notebook = self.xml.get_widget('chat_notebook')
self.notebook.remove_page(0)
self.plugin = plugin
self.account = account
self.change_cursor = None
@ -73,6 +72,25 @@ class Chat:
# we check that on opening new windows
self.always_compact_view = gajim.config.get('always_compact_view')
# notebook customizations
self.notebook = self.xml.get_widget('chat_notebook')
self.notebook.remove_page(0)
pref_pos = gajim.config.get('tabs_position')
if pref_pos != 'top':
if pref_pos == 'bottom':
nb_pos = gtk.POS_BOTTOM
elif pref_pos == 'left':
nb_pos = gtk.POS_LEFT
elif pref_pos == 'right':
nb_pos = gtk.POS_RIGHT
else:
nb_pos = gtk.POS_TOP
else:
nb_pos = gtk.POS_TOP
self.notebook.set_tab_pos(nb_pos)
self.notebook.set_show_tabs(gajim.config.get('tabs_always_show'))
self.notebook.set_show_border(gajim.config.get('tabs_border'))
def update_font(self):
font = pango.FontDescription(gajim.config.get('conversation_font'))
for jid in self.tagIn:
@ -152,8 +170,13 @@ class Chat:
hb = self.notebook.get_tab_label(child).get_children()[0]
if self.widget_name == 'tabbed_chat_window':
nickname = hb.get_children()[1]
close_button = hb.get_children()[2]
elif self.widget_name == 'groupchat_window':
nickname = hb.get_children()[0]
close_button = hb.get_children()[1]
if not gajim.config.get('tab_close_button'):
close_button.hide()
#FIXME: when gtk2.4 is OOOOLD do it via glade2.10+
if gtk.pygtk_version >= (2, 6, 0) and gtk.gtk_version >= (2, 6, 0):
@ -405,7 +428,7 @@ class Chat:
del self.tagStatus[jid]
if len(self.xmls) == 1: # we now have only one tab
self.notebook.set_show_tabs(False)
self.notebook.set_show_tabs(self.notebook.get_show_tabs())
self.show_title()
def bring_scroll_to_end(self, textview, diff_y = 0):

View File

@ -140,6 +140,11 @@ class Config:
'last_send_dir': [opt_str, ''],
'last_emoticons_dir': [opt_str, ''],
'last_sounds_dir': [opt_str, ''],
#FIXME: add combobox in prefs for this in .9
'tabs_position': [opt_str, 'top'], # top, bottom, left, right
'tabs_always_show': [opt_bool, False], # show tab if one tab?
'tabs_border': [opt_bool, False], # border if one tab?
'tabs_close_button': [opt_bool, True], # close button in tab?
}
__options_per_key = {