1 /* User interface for charset selection.
3 Copyright (C) 2001 Walery Studennikov <despair@sama.ru>
5 This program is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 /** \file selcodepage.c
21 * \brief Source: user %interface for charset %selection
31 #include "lib/global.h"
36 #include "selcodepage.h"
41 /* Numbers of (file I/O) and (input/display) codepages. -1 if not selected */
42 int source_codepage
= -1;
43 int default_source_codepage
= -1;
44 int display_codepage
= -1;
45 char* autodetect_codeset
= NULL
;
46 gboolean is_autodetect_codeset_enabled
= FALSE
;
51 return (n
<= 9) ? '0' + n
: 'a' + n
- 10;
55 * -2 (SELECT_CHARSET_CANCEL) : Cancel
56 * -1 (SELECT_CHARSET_OTHER_8BIT) : "Other 8 bit" if seldisplay == TRUE
57 * -1 (SELECT_CHARSET_NO_TRANSLATE) : "No translation" if seldisplay == FALSE
58 * >= 0 : charset number
61 select_charset (int center_y
, int center_x
, int current_charset
, gboolean seldisplay
)
67 Listbox
*listbox
= create_listbox_window_centered (center_y
, center_x
,
68 n_codepages
+ 1, ENTRY_LEN
+ 2,
70 "[Codepages Translation]");
73 LISTBOX_APPEND_TEXT (listbox
, '-', _("- < No translation >"),
76 /* insert all the items found */
77 for (i
= 0; i
< n_codepages
; i
++) {
78 char *name
= codepages
[i
].name
;
79 g_snprintf (buffer
, sizeof (buffer
), "%c %s", get_hotkey (i
),
81 LISTBOX_APPEND_TEXT (listbox
, get_hotkey (i
), buffer
, NULL
);
84 g_snprintf (buffer
, sizeof (buffer
), "%c %s",
85 get_hotkey (n_codepages
), _("Other 8 bit"));
86 LISTBOX_APPEND_TEXT (listbox
, get_hotkey (n_codepages
), buffer
,
90 /* Select the default entry */
92 ? ((current_charset
< 0) ? n_codepages
: current_charset
)
93 : (current_charset
+ 1);
95 listbox_select_entry (listbox
->list
, i
);
97 i
= run_listbox (listbox
);
101 return SELECT_CHARSET_CANCEL
;
103 /* some charset has been selected */
105 /* charset list is finished with "Other 8 bit" item */
106 return (i
>= n_codepages
) ? SELECT_CHARSET_OTHER_8BIT
: i
;
108 /* charset list is began with "- < No translation >" item */
116 do_set_codepage (int codepage
)
118 const char *errmsg
= NULL
;
120 source_codepage
= codepage
;
121 errmsg
= init_translation_table (codepage
== SELECT_CHARSET_NO_TRANSLATE
?
122 display_codepage
: source_codepage
,
125 message (D_ERROR
, MSG_ERROR
, "%s", errmsg
);
127 return (errmsg
== NULL
);
130 /* Show menu selecting codepage */
133 do_select_codepage (void)
137 r
= select_charset (-1, -1, default_source_codepage
, FALSE
);
138 if (r
== SELECT_CHARSET_CANCEL
)
141 default_source_codepage
= r
;
142 return do_set_codepage (default_source_codepage
);
145 #endif /* HAVE_CHARSET */