2002-08-27 09:27:11 +04:00
|
|
|
/* User interface for charset selection.
|
|
|
|
|
|
|
|
Copyright (C) 2001 Walery Studennikov <despair@sama.ru>
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
2005-05-27 07:35:10 +04:00
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2002-08-27 09:27:11 +04:00
|
|
|
*/
|
|
|
|
|
2009-02-05 21:28:18 +03:00
|
|
|
/** \file selcodepage.c
|
2009-02-06 17:46:15 +03:00
|
|
|
* \brief Source: user %interface for charset %selection
|
2009-02-05 21:28:18 +03:00
|
|
|
*/
|
|
|
|
|
2001-06-01 03:56:27 +04:00
|
|
|
#include <config.h>
|
|
|
|
|
2001-05-31 05:27:20 +04:00
|
|
|
#ifdef HAVE_CHARSET
|
2005-02-08 12:04:03 +03:00
|
|
|
|
2001-05-31 05:27:20 +04:00
|
|
|
#include <stdio.h>
|
2005-02-08 12:04:03 +03:00
|
|
|
#include <stdlib.h>
|
2001-09-07 21:52:19 +04:00
|
|
|
|
|
|
|
#include "global.h"
|
2001-06-06 02:28:11 +04:00
|
|
|
#include "dialog.h"
|
2001-05-31 05:27:20 +04:00
|
|
|
#include "widget.h"
|
|
|
|
#include "wtools.h"
|
|
|
|
#include "charsets.h"
|
2001-07-31 09:54:39 +04:00
|
|
|
#include "selcodepage.h"
|
2001-06-06 02:28:11 +04:00
|
|
|
#include "main.h"
|
2001-05-31 05:27:20 +04:00
|
|
|
|
|
|
|
#define ENTRY_LEN 35
|
|
|
|
|
|
|
|
/* Numbers of (file I/O) and (input/display) codepages. -1 if not selected */
|
|
|
|
int source_codepage = -1;
|
|
|
|
int display_codepage = -1;
|
|
|
|
|
2002-10-07 10:17:13 +04:00
|
|
|
static unsigned char
|
|
|
|
get_hotkey (int n)
|
2001-05-31 05:27:20 +04:00
|
|
|
{
|
|
|
|
return (n <= 9) ? '0' + n : 'a' + n - 10;
|
|
|
|
}
|
|
|
|
|
2002-10-07 10:17:13 +04:00
|
|
|
int
|
2009-04-21 12:48:13 +04:00
|
|
|
select_charset (int delta_x, int delta_y, int current_charset, int seldisplay)
|
2001-05-31 05:27:20 +04:00
|
|
|
{
|
|
|
|
int i, menu_lines = n_codepages + 1;
|
2002-08-27 17:23:29 +04:00
|
|
|
char buffer[255];
|
2002-10-07 10:17:13 +04:00
|
|
|
|
2001-05-31 05:27:20 +04:00
|
|
|
/* Create listbox */
|
2009-04-21 12:48:13 +04:00
|
|
|
Listbox *listbox = create_listbox_window_delta (delta_x, delta_y,
|
|
|
|
ENTRY_LEN + 2, menu_lines,
|
2002-10-07 10:17:13 +04:00
|
|
|
_(" Choose input codepage "),
|
|
|
|
"[Codepages Translation]");
|
2001-05-31 05:27:20 +04:00
|
|
|
|
|
|
|
if (!seldisplay)
|
2002-10-07 10:17:13 +04:00
|
|
|
LISTBOX_APPEND_TEXT (listbox, '-', _("- < No translation >"),
|
|
|
|
NULL);
|
2001-05-31 05:27:20 +04:00
|
|
|
|
|
|
|
/* insert all the items found */
|
|
|
|
for (i = 0; i < n_codepages; i++) {
|
2002-08-27 17:23:29 +04:00
|
|
|
char *name = codepages[i].name;
|
2009-02-06 01:49:00 +03:00
|
|
|
g_snprintf (buffer, sizeof (buffer), "%c %s", get_hotkey (i),
|
2002-10-07 10:17:13 +04:00
|
|
|
name);
|
|
|
|
LISTBOX_APPEND_TEXT (listbox, get_hotkey (i), buffer, NULL);
|
2001-05-31 05:27:20 +04:00
|
|
|
}
|
|
|
|
if (seldisplay) {
|
2009-02-06 01:49:00 +03:00
|
|
|
g_snprintf (buffer, sizeof (buffer), "%c %s",
|
2002-10-07 10:17:13 +04:00
|
|
|
get_hotkey (n_codepages), _("Other 8 bit"));
|
|
|
|
LISTBOX_APPEND_TEXT (listbox, get_hotkey (n_codepages), buffer,
|
|
|
|
NULL);
|
2001-05-31 05:27:20 +04:00
|
|
|
}
|
2002-10-07 10:17:13 +04:00
|
|
|
|
2001-05-31 05:27:20 +04:00
|
|
|
/* Select the default entry */
|
|
|
|
i = (seldisplay)
|
2002-10-07 10:17:13 +04:00
|
|
|
? ((current_charset < 0) ? n_codepages : current_charset)
|
|
|
|
: (current_charset + 1);
|
2001-05-31 05:27:20 +04:00
|
|
|
|
2002-10-07 10:17:13 +04:00
|
|
|
listbox_select_by_number (listbox->list, i);
|
2001-05-31 05:27:20 +04:00
|
|
|
|
2002-10-07 10:17:13 +04:00
|
|
|
i = run_listbox (listbox);
|
2001-05-31 05:27:20 +04:00
|
|
|
|
2002-10-07 10:17:13 +04:00
|
|
|
return (seldisplay) ? ((i >= n_codepages) ? -1 : i)
|
|
|
|
: (i - 1);
|
2001-05-31 05:27:20 +04:00
|
|
|
}
|
2001-06-06 02:28:11 +04:00
|
|
|
|
|
|
|
/* Helper functions for codepages support */
|
|
|
|
|
|
|
|
|
2002-10-07 10:17:13 +04:00
|
|
|
int
|
|
|
|
do_select_codepage (void)
|
2001-06-06 02:28:11 +04:00
|
|
|
{
|
2004-09-01 21:46:53 +04:00
|
|
|
const char *errmsg;
|
2009-04-09 11:57:40 +04:00
|
|
|
int r;
|
2001-06-08 02:36:45 +04:00
|
|
|
|
2009-04-21 12:48:13 +04:00
|
|
|
r = select_charset (0, 0, source_codepage, 0);
|
2009-04-09 11:57:40 +04:00
|
|
|
if ( r > 0 )
|
|
|
|
source_codepage = r;
|
|
|
|
|
|
|
|
errmsg = init_translation_table (source_codepage, display_codepage);
|
|
|
|
if (errmsg) {
|
|
|
|
message (D_ERROR, MSG_ERROR, "%s", errmsg);
|
|
|
|
return -1;
|
2001-06-06 02:28:11 +04:00
|
|
|
}
|
|
|
|
return 0;
|
2001-06-11 16:11:06 +04:00
|
|
|
}
|
2001-06-06 02:28:11 +04:00
|
|
|
|
2002-10-07 10:17:13 +04:00
|
|
|
#endif /* HAVE_CHARSET */
|