Files
libreoffice/svx/source/dialog/txencbox.cxx
Vladimir Glazounov 4ce1f84b00 INTEGRATION: CWS dba08 (1.6.106); FILE MERGED
2003/06/19 16:50:16 er 1.6.106.1: #110342# FillFromDbTextEncodingMap: don't use loop counter as encoding value ... and detect resource string not present
2003-06-25 10:01:42 +00:00

327 lines
11 KiB
C++

/*************************************************************************
*
* $RCSfile: txencbox.cxx,v $
*
* $Revision: 1.7 $
*
* last change: $Author: vg $ $Date: 2003-06-25 11:01:42 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
*
* - GNU Lesser General Public License Version 2.1
* - Sun Industry Standards Source License Version 1.1
*
* Sun Microsystems Inc., October, 2000
*
* GNU Lesser General Public License Version 2.1
* =============================================
* Copyright 2000 by Sun Microsystems, Inc.
* 901 San Antonio Road, Palo Alto, CA 94303, USA
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License version 2.1, as published by the Free Software Foundation.
*
* This library 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
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
* MA 02111-1307 USA
*
*
* Sun Industry Standards Source License Version 1.1
* =================================================
* The contents of this file are subject to the Sun Industry Standards
* Source License Version 1.1 (the "License"); You may not use this file
* except in compliance with the License. You may obtain a copy of the
* License at http://www.openoffice.org/license.html.
*
* Software provided under this License is provided on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
* WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
* MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
* See the License for the specific provisions governing your rights and
* obligations concerning the Software.
*
* The Initial Developer of the Original Code is: Sun Microsystems, Inc.
*
* Copyright: 2000 by Sun Microsystems, Inc.
*
* All Rights Reserved.
*
* Contributor(s): _______________________________________
*
*
************************************************************************/
// include ---------------------------------------------------------------
#pragma hdrstop
#include "txencbox.hxx"
#include "txenctab.hxx"
#include "dialogs.hrc"
#ifndef SVX_DBCHARSETHELPER_HXX
#include "dbcharsethelper.hxx"
#endif
#ifndef _SV_SVAPP_HXX
#include <vcl/svapp.hxx>
#endif
#ifndef _RTL_TENCINFO_H
#include <rtl/tencinfo.h>
#endif
#ifndef _RTL_LOCALE_H_
#include <rtl/locale.h>
#endif
#ifndef _OSL_NLSUPPORT_H_
#include <osl/nlsupport.h>
#endif
//========================================================================
// class SvxTextEncodingBox
//========================================================================
SvxTextEncodingBox::SvxTextEncodingBox( Window* pParent, const ResId& rResId )
:
ListBox( pParent, rResId )
{
m_pEncTable = new SvxTextEncodingTable;
}
//------------------------------------------------------------------------
SvxTextEncodingBox::~SvxTextEncodingBox()
{
delete m_pEncTable;
}
//------------------------------------------------------------------------
USHORT SvxTextEncodingBox::EncodingToPos_Impl( rtl_TextEncoding nEnc ) const
{
USHORT nCount = GetEntryCount();
for ( USHORT i=0; i<nCount; i++ )
{
if ( nEnc == rtl_TextEncoding( (ULONG)GetEntryData(i) ) )
return i;
}
return LISTBOX_ENTRY_NOTFOUND;
}
//------------------------------------------------------------------------
void SvxTextEncodingBox::FillFromTextEncodingTable(
sal_Bool bExcludeImportSubsets, sal_uInt32 nExcludeInfoFlags,
sal_uInt32 nButIncludeInfoFlags )
{
rtl_TextEncodingInfo aInfo;
aInfo.StructSize = sizeof(rtl_TextEncodingInfo);
USHORT nCount = m_pEncTable->Count();
for ( USHORT j=0; j<nCount; j++ )
{
BOOL bInsert = TRUE;
rtl_TextEncoding nEnc = rtl_TextEncoding( m_pEncTable->GetValue( j ) );
if ( nExcludeInfoFlags )
{
if ( !rtl_getTextEncodingInfo( nEnc, &aInfo ) )
bInsert = FALSE;
else
{
if ( (aInfo.Flags & nExcludeInfoFlags) == 0 )
{
if ( (nExcludeInfoFlags & RTL_TEXTENCODING_INFO_UNICODE) &&
((nEnc == RTL_TEXTENCODING_UCS2) ||
nEnc == RTL_TEXTENCODING_UCS4) )
bInsert = FALSE; // InfoFlags don't work for Unicode :-(
}
else if ( (aInfo.Flags & nButIncludeInfoFlags) == 0 )
bInsert = FALSE;
}
}
if ( bInsert )
{
if ( bExcludeImportSubsets )
{
switch ( nEnc )
{
// subsets of RTL_TEXTENCODING_GB_18030
case RTL_TEXTENCODING_GB_2312 :
case RTL_TEXTENCODING_GBK :
case RTL_TEXTENCODING_MS_936 :
bInsert = FALSE;
break;
}
}
if ( bInsert )
InsertTextEncoding( nEnc, m_pEncTable->GetString( j ) );
}
}
}
//------------------------------------------------------------------------
void SvxTextEncodingBox::FillFromDbTextEncodingMap(
sal_Bool bExcludeImportSubsets, sal_uInt32 nExcludeInfoFlags,
sal_uInt32 nButIncludeInfoFlags )
{
rtl_TextEncodingInfo aInfo;
aInfo.StructSize = sizeof(rtl_TextEncodingInfo);
svxform::ODataAccessCharsetHelper aCSH;
::std::vector< rtl_TextEncoding > aEncs;
sal_Int32 nCount = aCSH.getSupportedTextEncodings( aEncs );
for ( USHORT j=0; j<nCount; j++ )
{
BOOL bInsert = TRUE;
rtl_TextEncoding nEnc = rtl_TextEncoding( aEncs[j] );
if ( nExcludeInfoFlags )
{
if ( !rtl_getTextEncodingInfo( nEnc, &aInfo ) )
bInsert = FALSE;
else
{
if ( (aInfo.Flags & nExcludeInfoFlags) == 0 )
{
if ( (nExcludeInfoFlags & RTL_TEXTENCODING_INFO_UNICODE) &&
((nEnc == RTL_TEXTENCODING_UCS2) ||
nEnc == RTL_TEXTENCODING_UCS4) )
bInsert = FALSE; // InfoFlags don't work for Unicode :-(
}
else if ( (aInfo.Flags & nButIncludeInfoFlags) == 0 )
bInsert = FALSE;
}
}
if ( bInsert )
{
if ( bExcludeImportSubsets )
{
switch ( nEnc )
{
// subsets of RTL_TEXTENCODING_GB_18030
case RTL_TEXTENCODING_GB_2312 :
case RTL_TEXTENCODING_GBK :
case RTL_TEXTENCODING_MS_936 :
bInsert = FALSE;
break;
}
}
// CharsetMap offers a RTL_TEXTENCODING_DONTKNOW for internal use,
// makes no sense here and would result in an empty string as list
// entry.
if ( bInsert && nEnc != RTL_TEXTENCODING_DONTKNOW )
InsertTextEncoding( nEnc );
}
}
}
//------------------------------------------------------------------------
// static
rtl_TextEncoding SvxTextEncodingBox::GetBestMimeEncoding()
{
const sal_Char* pCharSet = rtl_getBestMimeCharsetFromTextEncoding(
gsl_getSystemTextEncoding() );
if ( !pCharSet )
{
// If the system locale is unknown to us, e.g. LC_ALL=xx, match the UI
// language if possible.
::com::sun::star::lang::Locale aLocale(
Application::GetSettings().GetUILocale() );
rtl_Locale * pLocale = rtl_locale_register( aLocale.Language.getStr(),
aLocale.Country.getStr(), aLocale.Variant.getStr() );
rtl_TextEncoding nEnc = osl_getTextEncodingFromLocale( pLocale );
pCharSet = rtl_getBestMimeCharsetFromTextEncoding( nEnc );
}
rtl_TextEncoding nRet;
if ( pCharSet )
nRet = rtl_getTextEncodingFromMimeCharset( pCharSet );
else
nRet = RTL_TEXTENCODING_UTF8;
return nRet;
}
//------------------------------------------------------------------------
void SvxTextEncodingBox::FillWithMimeAndSelectBest()
{
FillFromTextEncodingTable( sal_False, 0xffffffff, RTL_TEXTENCODING_INFO_MIME );
rtl_TextEncoding nEnc = GetBestMimeEncoding();
SelectTextEncoding( nEnc );
}
//------------------------------------------------------------------------
void SvxTextEncodingBox::InsertTextEncoding( const rtl_TextEncoding nEnc,
const String& rEntry, USHORT nPos )
{
USHORT nAt = InsertEntry( rEntry, nPos );
SetEntryData( nAt, (void*)(ULONG)nEnc );
}
//------------------------------------------------------------------------
void SvxTextEncodingBox::InsertTextEncoding( const rtl_TextEncoding nEnc, USHORT nPos )
{
const String& rEntry = m_pEncTable->GetTextString( nEnc );
if ( rEntry.Len() )
InsertTextEncoding( nEnc, rEntry, nPos );
else
{
#ifdef DBG_UTIL
ByteString aMsg( "SvxTextEncodingBox::InsertTextEncoding: no resource string for text encoding: " );
aMsg += ByteString::CreateFromInt32( nEnc );
DBG_ERRORFILE( aMsg.GetBuffer() );
#endif
}
}
//------------------------------------------------------------------------
void SvxTextEncodingBox::RemoveTextEncoding( const rtl_TextEncoding nEnc )
{
USHORT nAt = EncodingToPos_Impl( nEnc );
if ( nAt != LISTBOX_ENTRY_NOTFOUND )
RemoveEntry( nAt );
}
//------------------------------------------------------------------------
rtl_TextEncoding SvxTextEncodingBox::GetSelectTextEncoding() const
{
USHORT nPos = GetSelectEntryPos();
if ( nPos != LISTBOX_ENTRY_NOTFOUND )
return rtl_TextEncoding( (ULONG)GetEntryData(nPos) );
else
return RTL_TEXTENCODING_DONTKNOW;
}
//------------------------------------------------------------------------
void SvxTextEncodingBox::SelectTextEncoding( const rtl_TextEncoding nEnc, BOOL bSelect )
{
USHORT nAt = EncodingToPos_Impl( nEnc );
if ( nAt != LISTBOX_ENTRY_NOTFOUND )
SelectEntryPos( nAt, bSelect );
}
//------------------------------------------------------------------------
BOOL SvxTextEncodingBox::IsTextEncodingSelected( const rtl_TextEncoding nEnc ) const
{
USHORT nAt = EncodingToPos_Impl( nEnc );
if ( nAt != LISTBOX_ENTRY_NOTFOUND )
return IsEntryPosSelected( nAt );
else
return FALSE;
}