view liboctave/wrappers/uniconv-wrappers.h @ 32023:bce1850f8104

gui: Use iconv/gnulib to load editor content from files in any encoding. * bootstrap.conf: Add module "uniconv/u16-conv-from-enc". * liboctave/wrappers/uniconv-wrappers.c, liboctave/wrappers/uniconv-wrappers.h (octave_u16_conv_from_encoding, octave_u16_conv_from_encoding_strict): Add wrappers for gnulib function. * liboctave/util/oct-string.cc, liboctave/util/oct-string.h (octave::string::u16_to_encoding): Add new function. * libgui/src/m-editor/file-editor-tab.h: Remove header that is no longer needed. * libgui/src/m-editor/file-editor-tab.cc (octave::file_editor_tab::load_file): Use iconv/gnulib functions to load file editor content from file in any encoding. The interpreter needs to be able to read these files using the iconv/gnulib functions anyway. And Qt6 can only convert from UTF-8, UTF-16, UTF-32 or the system locale encoding.
author Markus Mützel <markus.muetzel@gmx.de>
date Sat, 15 Apr 2023 20:51:50 +0200
parents da2954782945
children 2e484f9f1f18
line wrap: on
line source

////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2017-2023 The Octave Project Developers
//
// See the file COPYRIGHT.md in the top-level directory of this
// distribution or <https://octave.org/copyright/>.
//
// This file is part of Octave.
//
// Octave 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 3 of the License, or
// (at your option) any later version.
//
// Octave 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 Octave; see the file COPYING.  If not, see
// <https://www.gnu.org/licenses/>.
//
////////////////////////////////////////////////////////////////////////

#if ! defined (octave_uniconv_wrappers_h)
#define octave_uniconv_wrappers_h 1

#if defined (__cplusplus)
#  include <cstddef>
#  include <cstdint>
#else
#  include <stddef.h>
#  include <stdint.h>
#endif

#if defined __cplusplus
extern "C" {
#endif

// Since we omit arguments we don't care about in Octave, these aren't
// named with the _wrapper suffix.

extern OCTAVE_API uint8_t *
octave_u8_conv_from_encoding (const char *fromcode, const char *src,
                              size_t srclen, size_t *lengthp);

extern OCTAVE_API char *
octave_u8_conv_to_encoding (const char *tocode, const uint8_t *src,
                            size_t srclen, size_t *lengthp);

extern OCTAVE_API char *
octave_u8_conv_to_encoding_strict (const char *tocode, const uint8_t *src,
                                   size_t srclen, size_t *lengthp);

extern OCTAVE_API uint16_t *
octave_u16_conv_from_encoding (const char *fromcode, const char *src,
                               size_t srclen, size_t *lengthp);

extern OCTAVE_API uint16_t *
octave_u16_conv_from_encoding_strict (const char *fromcode, const char *src,
                                      size_t srclen, size_t *lengthp);

extern OCTAVE_API char *
octave_u16_conv_to_encoding (const char *tocode, const uint16_t *src,
                             size_t srclen, size_t *lengthp);

extern OCTAVE_API char *
octave_u16_conv_to_encoding_strict (const char *tocode, const uint16_t *src,
                                    size_t srclen, size_t *lengthp);

extern OCTAVE_API char *
octave_u32_conv_to_encoding_strict (const char *tocode, const uint32_t *src,
                                    size_t srclen, size_t *lengthp);

extern OCTAVE_API uint8_t *
octave_u8_conv_from_encoding_offsets
  (const char *fromcode, const char *src, size_t srclen,
   size_t *offsets, size_t *lengthp);

extern OCTAVE_API char *
octave_u8_conv_to_encoding_offsets
  (const char *tocode, const uint8_t *src, size_t srclen,
   size_t *offsets, size_t *lengthp);

extern OCTAVE_API char * u8_from_wchar (const wchar_t *wc);

extern OCTAVE_API wchar_t * u8_to_wchar (const char *u8_char);

#if defined __cplusplus
}
#endif

#endif