Tue, 27 May 2003 03:38:52 +0000
[gaim-migrate @ 5937]
This is:
-AIM over OSCAR use Christian's new, kick ass
gaim_notify_email stuff for new mail notification. This
should be good, but it's kind of a pain to test. Let me
know if you have any problems
-Minor fix to the translation README
-2 minor changes to the doxygen of 2 major header files
(this means you'll have to recompile a lot of files :-) )
-If your global proxy setting is "No Proxy" and your global
proxy host is empty, but $http_proxy is set to something,
gaim used to switch your global proxy setting to "HTTP." It
no longer does this. This makes more sense to me. If you
disagree, please let me know--this is open to debate, and
what not. Also, the use of environmental proxy settings
will be changed a bit in the next day or two
| 5530 | 1 | /** |
| 2 | * @file gtkprefs.h GTK+ Preferences | |
| 3 | * @ingroup gtkui | |
| 4 | * | |
| 5 | * gaim | |
| 6 | * | |
| 7 | * Copyright (C) 1998-2002, Mark Spencer <markster@marko.net> | |
| 8 | * | |
| 9 | * This program is free software; you can redistribute it and/or modify | |
| 10 | * it under the terms of the GNU General Public License as published by | |
| 11 | * the Free Software Foundation; either version 2 of the License, or | |
| 12 | * (at your option) any later version. | |
| 13 | * | |
| 14 | * This program is distributed in the hope that it will be useful, | |
| 15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 17 | * GNU General Public License for more details. | |
| 18 | * | |
| 19 | * You should have received a copy of the GNU General Public License | |
| 20 | * along with this program; if not, write to the Free Software | |
| 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 22 | * | |
| 23 | */ | |
| 24 | #ifndef _GAIM_GTK_PREFS_H_ | |
| 25 | #define _GAIM_GTK_PREFS_H_ | |
| 26 | ||
| 27 | /* XXX These should go. */ | |
| 28 | extern GtkListStore *prefs_away_store; | |
| 29 | extern GtkWidget *prefs_away_menu; | |
| 30 | extern GtkWidget *pref_fg_picture; | |
| 31 | extern GtkWidget *pref_bg_picture; | |
| 32 | ||
| 33 | /** | |
| 34 | * Initializes all UI-specific preferences. | |
| 35 | */ | |
| 36 | void gaim_gtk_prefs_init(void); | |
| 37 | ||
| 38 | /** | |
| 39 | * Shows the preferences dialog. | |
| 40 | */ | |
| 41 | void gaim_gtk_prefs_show(void); | |
| 42 | ||
| 43 | /** | |
| 44 | * Sets the default away message. | |
| 45 | * | |
| 46 | * @todo This should be moved or renamed or something? | |
| 47 | */ | |
| 48 | void set_default_away(GtkWidget *, gpointer); | |
| 49 | ||
| 50 | /** | |
| 51 | * Initializes the default away menu. | |
| 52 | * | |
| 53 | * @todo This should be moved or renamed or something? | |
| 54 | */ | |
| 55 | void default_away_menu_init(GtkWidget *); | |
| 56 | ||
| 57 | void apply_font_dlg(GtkWidget *, GtkWidget *); | |
| 58 | void apply_color_dlg(GtkWidget *, gpointer); | |
| 59 | void destroy_colorsel(GtkWidget *, gpointer); | |
| 60 | ||
| 61 | #endif /* _GAIM_GTK_PREFS_H_ */ |