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
|
|
|
|
2010-01-20 18:11:52 +03:00
|
|
|
#include "lib/global.h"
|
2010-11-12 11:03:57 +03:00
|
|
|
#include "lib/widget.h"
|
2010-11-18 11:31:09 +03:00
|
|
|
#include "lib/charsets.h"
|
2010-11-10 22:45:56 +03:00
|
|
|
|
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
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** global variables ****************************************************************************/
|
2001-05-31 05:27:20 +04:00
|
|
|
|
|
|
|
/* Numbers of (file I/O) and (input/display) codepages. -1 if not selected */
|
|
|
|
int source_codepage = -1;
|
2010-02-05 14:02:47 +03:00
|
|
|
int default_source_codepage = -1;
|
2001-05-31 05:27:20 +04:00
|
|
|
int display_codepage = -1;
|
2010-11-10 14:09:42 +03:00
|
|
|
char *autodetect_codeset = NULL;
|
2010-02-05 14:02:47 +03:00
|
|
|
gboolean is_autodetect_codeset_enabled = FALSE;
|
2001-05-31 05:27:20 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/*** file scope macro definitions ****************************************************************/
|
|
|
|
|
|
|
|
#define ENTRY_LEN 30
|
|
|
|
|
|
|
|
/*** file scope type declarations ****************************************************************/
|
|
|
|
|
|
|
|
/*** file scope variables ************************************************************************/
|
|
|
|
|
|
|
|
/*** file scope functions ************************************************************************/
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/*** public functions ****************************************************************************/
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
2009-06-14 19:05:57 +04:00
|
|
|
/* Return value:
|
|
|
|
* -2 (SELECT_CHARSET_CANCEL) : Cancel
|
|
|
|
* -1 (SELECT_CHARSET_OTHER_8BIT) : "Other 8 bit" if seldisplay == TRUE
|
|
|
|
* -1 (SELECT_CHARSET_NO_TRANSLATE) : "No translation" if seldisplay == FALSE
|
|
|
|
* >= 0 : charset number
|
|
|
|
*/
|
2002-10-07 10:17:13 +04:00
|
|
|
int
|
2009-10-14 13:27:41 +04:00
|
|
|
select_charset (int center_y, int center_x, int current_charset, gboolean seldisplay)
|
2001-05-31 05:27:20 +04:00
|
|
|
{
|
2010-10-21 11:34:27 +04:00
|
|
|
size_t i;
|
|
|
|
int listbox_result;
|
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-10-14 13:27:41 +04:00
|
|
|
Listbox *listbox = create_listbox_window_centered (center_y, center_x,
|
2010-11-10 14:09:42 +03:00
|
|
|
codepages->len + 1, ENTRY_LEN + 2,
|
|
|
|
_("Choose codepage"),
|
|
|
|
"[Codepages Translation]");
|
2001-05-31 05:27:20 +04:00
|
|
|
|
|
|
|
if (!seldisplay)
|
2010-11-10 14:09:42 +03:00
|
|
|
LISTBOX_APPEND_TEXT (listbox, '-', _("- < No translation >"), NULL);
|
2001-05-31 05:27:20 +04:00
|
|
|
|
|
|
|
/* insert all the items found */
|
2010-11-10 14:09:42 +03:00
|
|
|
for (i = 0; i < codepages->len; i++)
|
|
|
|
{
|
|
|
|
const char *name = ((codepage_desc *) g_ptr_array_index (codepages, i))->name;
|
|
|
|
g_snprintf (buffer, sizeof (buffer), "%c %s", get_hotkey (i), name);
|
|
|
|
LISTBOX_APPEND_TEXT (listbox, get_hotkey (i), buffer, NULL);
|
2001-05-31 05:27:20 +04:00
|
|
|
}
|
2010-11-10 14:09:42 +03:00
|
|
|
if (seldisplay)
|
|
|
|
{
|
2010-09-16 13:39:29 +04:00
|
|
|
unsigned char hotkey = get_hotkey (codepages->len);
|
2010-11-10 14:09:42 +03:00
|
|
|
g_snprintf (buffer, sizeof (buffer), "%c %s", hotkey, _("Other 8 bit"));
|
|
|
|
LISTBOX_APPEND_TEXT (listbox, hotkey, 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)
|
2010-11-10 14:09:42 +03:00
|
|
|
? ((current_charset < 0) ? codepages->len : (size_t) current_charset)
|
|
|
|
: ((size_t) current_charset + 1);
|
2001-05-31 05:27:20 +04:00
|
|
|
|
2009-12-28 19:10:42 +03:00
|
|
|
listbox_select_entry (listbox->list, i);
|
2001-05-31 05:27:20 +04:00
|
|
|
|
2010-10-21 11:34:27 +04:00
|
|
|
listbox_result = run_listbox (listbox);
|
2001-05-31 05:27:20 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (listbox_result < 0)
|
|
|
|
{
|
|
|
|
/* Cancel dialog */
|
|
|
|
return SELECT_CHARSET_CANCEL;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* some charset has been selected */
|
|
|
|
if (seldisplay)
|
|
|
|
{
|
|
|
|
/* charset list is finished with "Other 8 bit" item */
|
|
|
|
return (listbox_result >= (int) codepages->len)
|
|
|
|
? SELECT_CHARSET_OTHER_8BIT : listbox_result;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* charset list is began with "- < No translation >" item */
|
|
|
|
return (listbox_result - 1);
|
|
|
|
}
|
2009-06-14 19:05:57 +04:00
|
|
|
}
|
2001-05-31 05:27:20 +04:00
|
|
|
}
|
2001-06-06 02:28:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
|
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Set codepage */
|
2009-06-14 19:05:57 +04:00
|
|
|
gboolean
|
2010-02-05 14:02:47 +03:00
|
|
|
do_set_codepage (int codepage)
|
2001-06-06 02:28:11 +04:00
|
|
|
{
|
2010-03-31 14:02:45 +04:00
|
|
|
char *errmsg;
|
|
|
|
gboolean ret;
|
2009-06-14 19:05:57 +04:00
|
|
|
|
2010-02-05 14:02:47 +03:00
|
|
|
source_codepage = codepage;
|
|
|
|
errmsg = init_translation_table (codepage == SELECT_CHARSET_NO_TRANSLATE ?
|
2010-11-10 14:09:42 +03:00
|
|
|
display_codepage : source_codepage, display_codepage);
|
2010-03-31 14:02:45 +04:00
|
|
|
ret = errmsg == NULL;
|
2009-06-14 19:05:57 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
if (!ret)
|
|
|
|
{
|
|
|
|
message (D_ERROR, MSG_ERROR, "%s", errmsg);
|
|
|
|
g_free (errmsg);
|
2010-03-31 14:02:45 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
2001-06-11 16:11:06 +04:00
|
|
|
}
|
2001-06-06 02:28:11 +04:00
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
/** Show menu selecting codepage */
|
2010-02-05 14:02:47 +03:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
do_select_codepage (void)
|
|
|
|
{
|
|
|
|
int r;
|
|
|
|
|
|
|
|
r = select_charset (-1, -1, default_source_codepage, FALSE);
|
|
|
|
if (r == SELECT_CHARSET_CANCEL)
|
2010-11-10 14:09:42 +03:00
|
|
|
return FALSE;
|
2010-02-05 14:02:47 +03:00
|
|
|
|
|
|
|
default_source_codepage = r;
|
|
|
|
return do_set_codepage (default_source_codepage);
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:09:42 +03:00
|
|
|
/* --------------------------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
#endif /* HAVE_CHARSET */
|