⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 combining.cpp

📁 Trolltech公司发布的图形界面操作系统。可在qt-embedded-2.3.10平台上编译为嵌入式图形界面操作系统。
💻 CPP
字号:
/************************************************************************ Copyright (C) 2000-2005 Trolltech AS.  All rights reserved.**** This file is part of the Qtopia Environment.** ** 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.** ** A copy of the GNU GPL license version 2 is included in this package as ** LICENSE.GPL.**** 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.**** In addition, as a special exception Trolltech gives permission to link** the code of this program with Qtopia applications copyrighted, developed** and distributed by Trolltech under the terms of the Qtopia Personal Use** License Agreement. You must comply with the GNU General Public License** in all respects for all of the code used other than the applications** licensed under the Qtopia Personal Use License Agreement. If you modify** this file, you may extend this exception to your version of the file,** but you are not obligated to do so. If you do not wish to do so, delete** this exception statement from your version.** ** See http://www.trolltech.com/gpl/ for GPL licensing information.**** Contact info@trolltech.com if any conditions of this licensing are** not clear to you.************************************************************************/#include <qfile.h>#include <qtl.h>#include <math.h>#include <limits.h>#include <qdatastream.h>#include "combining.h"// set of chararaters that can be combined againststatic unsigned int combiningSymbols[] = { '\\', '/', '^', '~', '\"', 'o' };// other set of characters that can be combined against// struct is//  char//  combiningSymbols[i] == unicode symbol for...// definately should be made extensible....// make configurable out of etc file?:static unsigned int combiningChars[][7] = {    //     \       /       ^       ~       "    { 'A', 0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5 },    { 'O', 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x0000 },    { 'U', 0x00D9, 0x00DA, 0x00DB, 0x0000, 0x00DC, 0x0000 },    { 'E', 0x00C8, 0x00C9, 0x00CA, 0x0000, 0x00CB, 0x0000 },    { 'I', 0x00CC, 0x00CD, 0x00CE, 0x0000, 0x00CF, 0x0000 },    { 'a', 0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5 },    { 'e', 0x00E8, 0x00E9, 0x00EA, 0x0000, 0x00EB, 0x0000 },    { 'i', 0x00EC, 0x00ED, 0x00EE, 0x0000, 0x00EF, 0x0000 },    { 'n', 0x0000, 0x0000, 0x0000, 0x00F1, 0x0000, 0x0000 },    { 'o', 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x0000 },    { 'u', 0x00F9, 0x00FA, 0x00FB, 0x0000, 0x00FC, 0x0000 },    { 'y', 0x0000, 0x00FD, 0x0000, 0x0000, 0x00FF, 0x0000 },    { 0, 0, 0, 0, 0, 0, 0 }};QIMPenCombining::QIMPenCombining(){}QIMPenCombining::QIMPenCombining( const QString &fn )    : QIMPenCharSet( fn ){}/*  For each character in \a cs (that isn't marked as deleted)  and is n, y, or a vowel, add to it a combination of each  combining character.  so a turns into áâä, etc.  can work with any chars that are added to top of this file*/void QIMPenCombining::addCombined( QIMPenCharSet *cs ){    unsigned int count = cs->count();    // input set characters    QIMPenCharIterator it( cs->characters() );    for ( ; it.current() && count; ++it, --count ) {	QIMPenChar *pc = it.current();	if ( pc->testFlag( QIMPenChar::Deleted ) )	    continue;	int charIdx = findCombining( pc->character() );	if ( charIdx < 0 )	    continue;	for ( int i = 0; i < 6; i++ ) {	    if ( combiningChars[charIdx][i+1] ) {		// this craracters		QIMPenCharIterator cit( characters() );		for ( ; cit.current(); ++cit ) {		    QIMPenChar *accentPc = cit.current();		    if ( accentPc->character() == combiningSymbols[i] ) {			QIMPenChar *combined = combine( pc, accentPc );			combined->setCharacter( combiningChars[charIdx][i+1] );			cs->addChar( combined );		    }		}	    }	}    }}int QIMPenCombining::findCombining( unsigned int ch ) const{    int i = 0;    while ( combiningChars[i][0] ) {	if ( combiningChars[i][0] == ch )	    return i;	i++;    }    return -1;}QIMPenChar *QIMPenCombining::combine( QIMPenChar *base, QIMPenChar *accent ){    QRect brect = base->boundingRect();    QRect arect = accent->boundingRect();    int offset;    if ( accent->testFlag( QIMPenChar::CombineRight ) )	offset = brect.left() - arect.left() + brect.width() + 2;    else	offset = brect.left() - arect.left() + (brect.width() - arect.width())/2;    QIMPenChar *combined = 0;    if ( base->character() == 'i' ) {	// Hack to remove the dot from i's when combining.	if ( base->penStrokes().count() > 1 ) {	    combined = new QIMPenChar;	    QIMPenStrokeIterator it( base->penStrokes() );	    for ( unsigned int i = 0; i < base->penStrokes().count()-1; ++it, i++ ) {		QIMPenStroke st( *(it.current()) );		combined->addStroke( &st );	    }	    combined->setFlag( QIMPenChar::System );	}    }    if ( !combined )	combined = new QIMPenChar( *base );    QIMPenStrokeIterator it( accent->penStrokes() );    for ( ; it.current(); ++it ) {	QIMPenStroke *st = new QIMPenStroke( *(it.current()) );	st->setStartingPoint( st->startingPoint() + QPoint(offset, 0 ));	combined->addStroke( st );	delete st;    }    return combined;}QIMPenChar *QIMPenCombining::penChar( int type ){    // lookup    QIMPenCharIterator it( characters() );    for ( ; it.current(); ++it ) {	QIMPenChar *pc = it.current();	if ( pc->character() == combiningSymbols[type] )	    return pc;    }    return 0;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -