]> Pileus Git - ~andy/gtk/blob - gdk/x11/gdkim-x11.c
[gdkim] Remove unused function
[~andy/gtk] / gdk / x11 / gdkim-x11.c
1 /* GDK - The GIMP Drawing Kit
2  * Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19
20 /*
21  * Modified by the GTK+ Team and others 1997-2000.  See the AUTHORS
22  * file for a list of people on the GTK+ Team.  See the ChangeLog
23  * files for a list of changes.  These files are distributed with
24  * GTK+ at ftp://ftp.gtk.org/pub/gtk/. 
25  */
26
27 #include "config.h"
28
29 #include <locale.h>
30 #include <stdlib.h>
31 #include <string.h>
32
33 #include "gdkx.h"
34 #include "gdk.h"                /* For gdk_flush() */
35 #include "gdkpixmap.h"
36 #include "gdkinternals.h"
37 #include "gdkdisplay-x11.h"
38 #include "gdkalias.h"
39
40
41 /* If this variable is FALSE, it indicates that we should
42  * avoid trying to use multibyte conversion functions and
43  * assume everything is 1-byte per character
44  */
45 static gboolean gdk_use_mb;
46
47 void
48 _gdk_x11_initialize_locale (void)
49 {
50   wchar_t result;
51   gchar *current_locale;
52   static char *last_locale = NULL;
53
54   gdk_use_mb = FALSE;
55
56   current_locale = setlocale (LC_ALL, NULL);
57
58   if (last_locale && strcmp (last_locale, current_locale) == 0)
59     return;
60
61   g_free (last_locale);
62   last_locale = g_strdup (current_locale);
63
64   if (XSupportsLocale ())
65     XSetLocaleModifiers ("");
66
67   if ((strcmp (current_locale, "C")) && (strcmp (current_locale, "POSIX")))
68     {
69       gdk_use_mb = TRUE;
70
71 #ifndef X_LOCALE
72       /* Detect ancient GNU libc, where mb == UTF8. Not useful unless it's
73        * really a UTF8 locale. The below still probably will
74        * screw up on Greek, Cyrillic, etc, encoded as UTF8.
75        */
76       
77       if ((MB_CUR_MAX == 2) &&
78           (mbstowcs (&result, "\xdd\xa5", 1) > 0) &&
79           result == 0x765)
80         {
81           if ((strlen (current_locale) < 4) ||
82               g_ascii_strcasecmp (current_locale + strlen(current_locale) - 4,
83                                   "utf8"))
84             gdk_use_mb = FALSE;
85         }
86 #endif /* X_LOCALE */
87     }
88
89   GDK_NOTE (XIM,
90             g_message ("%s multi-byte string functions.", 
91                        gdk_use_mb ? "Using" : "Not using"));
92   
93   return;
94 }
95
96 gchar*
97 gdk_set_locale (void)
98 {
99   if (!setlocale (LC_ALL,""))
100     g_warning ("locale not supported by C library");
101
102   _gdk_x11_initialize_locale ();
103   
104   return setlocale (LC_ALL, NULL);
105 }
106
107 #define __GDK_IM_X11_C__
108 #include "gdkaliasdef.c"