comparison src/gtkprefs.c @ 5872:059d95c67cda

[gaim-migrate @ 6304] The legendary Header File Cleanup! Files now only include what they need. This should reduce the number of files that must recompile when a header file changes. It's a lot nicer. Trust me on it. I also added a couple new header files. I hope I didn't break TOO much! committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Sat, 14 Jun 2003 23:21:02 +0000
parents 44d381ad19a9
children 90d0849abd3c
comparison
equal deleted inserted replaced
5871:508adf90fbb9 5872:059d95c67cda
19 * You should have received a copy of the GNU General Public License 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 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 21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 * 22 *
23 */ 23 */
24 24 #include "internal.h"
25 #ifdef HAVE_CONFIG_H 25
26 #include <config.h> 26 #include "debug.h"
27 #endif 27 #include "notify.h"
28 #include <string.h> 28 #include "prefs.h"
29 #include <sys/time.h> 29 #include "proxy.h"
30 30 #include "prpl.h"
31 #include <sys/types.h> 31 #include "sound.h"
32 #include <sys/stat.h> 32 #include "util.h"
33 33
34 #include <unistd.h> 34 #include "gtkblist.h"
35 #include <stdio.h> 35 #include "gtkconv.h"
36 #include <stdlib.h> 36 #include "gtkdebug.h"
37 #include <stdarg.h>
38 #include <ctype.h>
39 #include <gtk/gtk.h>
40 #include "gtkimhtml.h" 37 #include "gtkimhtml.h"
41 #include "gaim.h"
42 #include "gtkblist.h"
43 #include "gtkdebug.h"
44 #include "gtkplugin.h" 38 #include "gtkplugin.h"
45 #include "gtkprefs.h" 39 #include "gtkprefs.h"
46 #include "prpl.h"
47 #include "prefs.h"
48 #include "proxy.h"
49 #include "sound.h"
50 #include "gtksound.h" 40 #include "gtksound.h"
51 #include "notify.h" 41 #include "gtkutils.h"
52 42 #include "stock.h"
53 #ifdef _WIN32 43
54 #include "win32dep.h" 44 #include "ui.h"
55 #endif 45
46 /* XXX for grab_url */
47 #include "gaim.h"
56 48
57 #define PROXYHOST 0 49 #define PROXYHOST 0
58 #define PROXYPORT 1 50 #define PROXYPORT 1
59 #define PROXYTYPE 2 51 #define PROXYTYPE 2
60 #define PROXYUSER 3 52 #define PROXYUSER 3