add a button in preferences window for colors in chat windows

This commit is contained in:
Yann Leboulanger 2005-03-07 23:25:43 +00:00
parent 7817ed2651
commit d34db3a91e
2 changed files with 91 additions and 10 deletions

View file

@ -181,11 +181,21 @@ class preferences_window:
self.plugin.send('CONFIG', None, ('GtkGui', self.plugin.config, 'GtkGui'))
self.plugin.roster.draw_roster()
def on_reset_colors_and_fonts_button_clicked(self, widget):
def on_reset_colors_button_clicked(self, widget):
defaults = self.plugin.default_config
self.plugin.config['inmsgcolor'] = defaults['inmsgcolor']
self.plugin.config['outmsgcolor'] = defaults['outmsgcolor']
self.plugin.config['statusmsgcolor'] = defaults['statusmsgcolor']
self.xml.get_widget('incoming_msg_colorbutton').set_color(\
gtk.gdk.color_parse(defaults['inmsgcolor']))
self.xml.get_widget('outgoing_msg_colorbutton').set_color(\
gtk.gdk.color_parse(defaults['outmsgcolor']))
self.xml.get_widget('status_msg_colorbutton').set_color(\
gtk.gdk.color_parse(defaults['statusmsgcolor']))
self.update_text_tags()
def on_reset_colors_and_fonts_button_clicked(self, widget):
defaults = self.plugin.default_config
self.plugin.config['accounttextcolor'] = defaults['accounttextcolor']
self.plugin.config['grouptextcolor'] = defaults['grouptextcolor']
self.plugin.config['usertextcolor'] = defaults['usertextcolor']
@ -195,12 +205,6 @@ class preferences_window:
self.plugin.config['accountfont'] = defaults['accountfont']
self.plugin.config['groupfont'] = defaults['groupfont']
self.plugin.config['userfont'] = defaults['userfont']
self.xml.get_widget('incoming_msg_colorbutton').set_color(\
gtk.gdk.color_parse(defaults['inmsgcolor']))
self.xml.get_widget('outgoing_msg_colorbutton').set_color(\
gtk.gdk.color_parse(defaults['outmsgcolor']))
self.xml.get_widget('status_msg_colorbutton').set_color(\
gtk.gdk.color_parse(defaults['statusmsgcolor']))
self.xml.get_widget('account_text_colorbutton').set_color(\
gtk.gdk.color_parse(defaults['accounttextcolor']))
self.xml.get_widget('group_text_colorbutton').set_color(\
@ -219,7 +223,6 @@ class preferences_window:
defaults['groupfont'])
self.xml.get_widget('user_text_fontbutton').set_font_name(\
defaults['userfont'])
self.update_text_tags()
self.plugin.roster.draw_roster()
def on_use_emoticons_checkbutton_function(self):

View file

@ -3255,8 +3255,8 @@ on the server as a vCard</property>
<widget class="GtkTable" id="table18">
<property name="visible">True</property>
<property name="n_rows">3</property>
<property name="n_columns">2</property>
<property name="homogeneous">True</property>
<property name="n_columns">3</property>
<property name="homogeneous">False</property>
<property name="row_spacing">5</property>
<property name="column_spacing">20</property>
@ -3388,6 +3388,84 @@ on the server as a vCard</property>
<property name="y_options"></property>
</packing>
</child>
<child>
<widget class="GtkButton" id="reset_colors_button">
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="relief">GTK_RELIEF_NONE</property>
<property name="focus_on_click">False</property>
<signal name="clicked" handler="on_reset_colors_button_clicked" last_modification_time="Mon, 07 Mar 2005 23:17:44 GMT"/>
<child>
<widget class="GtkAlignment" id="alignment52">
<property name="visible">True</property>
<property name="xalign">0.5</property>
<property name="yalign">0.5</property>
<property name="xscale">0</property>
<property name="yscale">0</property>
<property name="top_padding">0</property>
<property name="bottom_padding">0</property>
<property name="left_padding">0</property>
<property name="right_padding">0</property>
<child>
<widget class="GtkHBox" id="hbox2936">
<property name="visible">True</property>
<property name="homogeneous">False</property>
<property name="spacing">2</property>
<child>
<widget class="GtkImage" id="image439">
<property name="visible">True</property>
<property name="stock">gtk-revert-to-saved</property>
<property name="icon_size">4</property>
<property name="xalign">0.5</property>
<property name="yalign">0.5</property>
<property name="xpad">0</property>
<property name="ypad">0</property>
</widget>
<packing>
<property name="padding">0</property>
<property name="expand">False</property>
<property name="fill">False</property>
</packing>
</child>
<child>
<widget class="GtkLabel" id="label217">
<property name="visible">True</property>
<property name="label" translatable="yes">Reset to default colors</property>
<property name="use_underline">True</property>
<property name="use_markup">False</property>
<property name="justify">GTK_JUSTIFY_LEFT</property>
<property name="wrap">False</property>
<property name="selectable">False</property>
<property name="xalign">0.5</property>
<property name="yalign">0.5</property>
<property name="xpad">0</property>
<property name="ypad">0</property>
</widget>
<packing>
<property name="padding">0</property>
<property name="expand">False</property>
<property name="fill">False</property>
</packing>
</child>
</widget>
</child>
</widget>
</child>
</widget>
<packing>
<property name="left_attach">2</property>
<property name="right_attach">3</property>
<property name="top_attach">1</property>
<property name="bottom_attach">2</property>
<property name="x_options">fill</property>
<property name="y_options"></property>
</packing>
</child>
</widget>
<packing>
<property name="padding">0</property>