Files
harbour-core/harbour/contrib/hbqt/qtcore/QChar.cpp
Pritpal Bedi d291ccc0c8 2010-05-27 00:45 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/hbqscintilla/qth/HBQsciScintilla.qth
  * contrib/hbqt/hbqscintilla/qth/QsciAbstractAPIs.qth
  * contrib/hbqt/hbqscintilla/qth/QsciAPIs.qth
  * contrib/hbqt/hbqscintilla/qth/QsciCommand.qth
  * contrib/hbqt/hbqscintilla/qth/QsciCommandSet.qth
  * contrib/hbqt/hbqscintilla/qth/QsciDocument.qth
  * contrib/hbqt/hbqscintilla/qth/QsciLexer.qth
  * contrib/hbqt/hbqscintilla/qth/QsciLexerCPP.qth
  * contrib/hbqt/hbqscintilla/qth/QsciLexerFlagship.qth
  * contrib/hbqt/hbqscintilla/qth/QsciScintilla.qth
  * contrib/hbqt/hbqscintilla/qth/QsciStyle.qth
  * contrib/hbqt/hbqscintilla/qth/QsciStyledText.qth

  * contrib/hbqt/hbqscintilla/QSci*.cpp

  + contrib/hbqt/hbqscintilla/hbqt_local.h
    + Localized: hbqt_par_Qsci*()

  * contrib/hbqt/doc/en/class_qchar.txt
  * contrib/hbqt/doc/en/class_qthread.txt
  * contrib/hbqt/qtcore/QChar.cpp
  * contrib/hbqt/qtcore/QThread.cpp
  * contrib/hbqt/qtcore/TQChar.prg
  * contrib/hbqt/qtcore/TQThread.prg
  * contrib/hbqt/qth/QThread.qth
    ! Regenerated.

  * contrib/hbqt/hbqt.h
    - Removed: hbqt_par_Qsci*()
2010-05-27 07:51:42 +00:00

617 lines
16 KiB
C++

/*
* $Id$
*/
/* -------------------------------------------------------------------- */
/* WARNING: Automatically generated source file. DO NOT EDIT! */
/* Instead, edit corresponding .qth file, */
/* or the generator tool itself, and run regenarate. */
/* -------------------------------------------------------------------- */
/*
* Harbour Project source code:
* QT wrapper main header
*
* Copyright 2009-2010 Pritpal Bedi <pritpal@vouchcac.com>
*
* Copyright 2009 Marcos Antonio Gambeta <marcosgambeta at gmail dot com>
* www - http://www.harbour-project.org
*
* 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, 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 software; see the file COPYING. If not, write to
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
*
* As a special exception, the Harbour Project gives permission for
* additional uses of the text contained in its release of Harbour.
*
* The exception is that, if you link the Harbour libraries with other
* files to produce an executable, this does not by itself cause the
* resulting executable to be covered by the GNU General Public License.
* Your use of that executable is in no way restricted on account of
* linking the Harbour library code into it.
*
* This exception does not however invalidate any other reasons why
* the executable file might be covered by the GNU General Public License.
*
* This exception applies only to the code released by the Harbour
* Project under the name Harbour. If you copy code from other
* Harbour Project or Free Software Foundation releases into a copy of
* Harbour, as the General Public License permits, the exception does
* not apply to the code that you add in this way. To avoid misleading
* anyone as to the status of such modified files, you must delete
* this exception notice from them.
*
* If you write modifications of your own for Harbour, it is your choice
* whether to permit this exception to apply to your modifications.
* If you do not wish that, delete this exception notice.
*
*/
/*----------------------------------------------------------------------*/
#include "../hbqt.h"
/*----------------------------------------------------------------------*/
#if QT_VERSION >= 0x040500
/*----------------------------------------------------------------------*/
/*
* enum Category { Mark_NonSpacing, Mark_SpacingCombining, Mark_Enclosing, Number_DecimalDigit, ..., NoCategory }
* enum Decomposition { NoDecomposition, Canonical, Circle, Compat, ..., Wide }
* enum Direction { DirAL, DirAN, DirB, DirBN, ..., DirWS }
* enum Joining { Center, Dual, OtherJoining, Right }
* enum SpecialCharacter { Null, Nbsp, ReplacementCharacter, ObjectReplacementCharacter, ..., LineSeparator }
* enum UnicodeVersion { Unicode_1_1, Unicode_2_0, Unicode_2_1_2, Unicode_3_0, ..., Unicode_Unassigned }
*/
/*
* Constructed[ 33/35 [ 94.29% ] ]
*
* *** Unconvered Prototypes ***
* -----------------------------
*
* uchar cell () const
* uchar row () const
*/
#include <QtCore/QPointer>
#include <QtCore/QChar>
/*
* QChar ()
* QChar ( char ch )
* QChar ( uchar ch )
* QChar ( QLatin1Char ch )
* QChar ( uchar cell, uchar row )
* QChar ( ushort code )
* QChar ( short code )
* QChar ( uint code )
* QChar ( int code )
* QChar ( SpecialCharacter ch )
*/
typedef struct
{
QChar * ph;
bool bNew;
QT_G_FUNC_PTR func;
} QGC_POINTER_QChar;
QT_G_FUNC( hbqt_gcRelease_QChar )
{
HB_SYMBOL_UNUSED( Cargo );
QGC_POINTER * p = ( QGC_POINTER * ) Cargo;
if( p && p->bNew )
{
p->ph = NULL;
}
}
void * hbqt_gcAllocate_QChar( void * pObj, bool bNew )
{
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAllocate( sizeof( QGC_POINTER ), hbqt_gcFuncs() );
p->ph = ( QChar * ) pObj;
p->bNew = bNew;
p->func = hbqt_gcRelease_QChar;
if( bNew )
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p _new_QChar", pObj ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p NOT_new_QChar", pObj ) );
}
return p;
}
HB_FUNC( QT_QCHAR )
{
QChar * pObj = NULL;
pObj = new QChar() ;
hb_retptrGC( hbqt_gcAllocate_QChar( ( void * ) pObj, true ) );
}
/*
* Category category () const
*/
HB_FUNC( QT_QCHAR_CATEGORY )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( QChar::Category ) ( p )->category() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_CATEGORY FP=hb_retni( ( QChar::Category ) ( p )->category() ); p is NULL" ) );
}
}
/*
* unsigned char combiningClass () const
*/
HB_FUNC( QT_QCHAR_COMBININGCLASS )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( p )->combiningClass() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_COMBININGCLASS FP=hb_retni( ( p )->combiningClass() ); p is NULL" ) );
}
}
/*
* QString decomposition () const
*/
HB_FUNC( QT_QCHAR_DECOMPOSITION )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retc( ( p )->decomposition().toAscii().data() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_DECOMPOSITION FP=hb_retc( ( p )->decomposition().toAscii().data() ); p is NULL" ) );
}
}
/*
* Decomposition decompositionTag () const
*/
HB_FUNC( QT_QCHAR_DECOMPOSITIONTAG )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( QChar::Decomposition ) ( p )->decompositionTag() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_DECOMPOSITIONTAG FP=hb_retni( ( QChar::Decomposition ) ( p )->decompositionTag() ); p is NULL" ) );
}
}
/*
* int digitValue () const
*/
HB_FUNC( QT_QCHAR_DIGITVALUE )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( p )->digitValue() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_DIGITVALUE FP=hb_retni( ( p )->digitValue() ); p is NULL" ) );
}
}
/*
* Direction direction () const
*/
HB_FUNC( QT_QCHAR_DIRECTION )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( QChar::Direction ) ( p )->direction() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_DIRECTION FP=hb_retni( ( QChar::Direction ) ( p )->direction() ); p is NULL" ) );
}
}
/*
* bool hasMirrored () const
*/
HB_FUNC( QT_QCHAR_HASMIRRORED )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->hasMirrored() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_HASMIRRORED FP=hb_retl( ( p )->hasMirrored() ); p is NULL" ) );
}
}
/*
* bool isDigit () const
*/
HB_FUNC( QT_QCHAR_ISDIGIT )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isDigit() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISDIGIT FP=hb_retl( ( p )->isDigit() ); p is NULL" ) );
}
}
/*
* bool isHighSurrogate () const
*/
HB_FUNC( QT_QCHAR_ISHIGHSURROGATE )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isHighSurrogate() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISHIGHSURROGATE FP=hb_retl( ( p )->isHighSurrogate() ); p is NULL" ) );
}
}
/*
* bool isLetter () const
*/
HB_FUNC( QT_QCHAR_ISLETTER )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isLetter() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISLETTER FP=hb_retl( ( p )->isLetter() ); p is NULL" ) );
}
}
/*
* bool isLetterOrNumber () const
*/
HB_FUNC( QT_QCHAR_ISLETTERORNUMBER )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isLetterOrNumber() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISLETTERORNUMBER FP=hb_retl( ( p )->isLetterOrNumber() ); p is NULL" ) );
}
}
/*
* bool isLowSurrogate () const
*/
HB_FUNC( QT_QCHAR_ISLOWSURROGATE )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isLowSurrogate() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISLOWSURROGATE FP=hb_retl( ( p )->isLowSurrogate() ); p is NULL" ) );
}
}
/*
* bool isLower () const
*/
HB_FUNC( QT_QCHAR_ISLOWER )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isLower() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISLOWER FP=hb_retl( ( p )->isLower() ); p is NULL" ) );
}
}
/*
* bool isMark () const
*/
HB_FUNC( QT_QCHAR_ISMARK )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isMark() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISMARK FP=hb_retl( ( p )->isMark() ); p is NULL" ) );
}
}
/*
* bool isNull () const
*/
HB_FUNC( QT_QCHAR_ISNULL )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isNull() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISNULL FP=hb_retl( ( p )->isNull() ); p is NULL" ) );
}
}
/*
* bool isNumber () const
*/
HB_FUNC( QT_QCHAR_ISNUMBER )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isNumber() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISNUMBER FP=hb_retl( ( p )->isNumber() ); p is NULL" ) );
}
}
/*
* bool isPrint () const
*/
HB_FUNC( QT_QCHAR_ISPRINT )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isPrint() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISPRINT FP=hb_retl( ( p )->isPrint() ); p is NULL" ) );
}
}
/*
* bool isPunct () const
*/
HB_FUNC( QT_QCHAR_ISPUNCT )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isPunct() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISPUNCT FP=hb_retl( ( p )->isPunct() ); p is NULL" ) );
}
}
/*
* bool isSpace () const
*/
HB_FUNC( QT_QCHAR_ISSPACE )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isSpace() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISSPACE FP=hb_retl( ( p )->isSpace() ); p is NULL" ) );
}
}
/*
* bool isSymbol () const
*/
HB_FUNC( QT_QCHAR_ISSYMBOL )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isSymbol() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISSYMBOL FP=hb_retl( ( p )->isSymbol() ); p is NULL" ) );
}
}
/*
* bool isTitleCase () const
*/
HB_FUNC( QT_QCHAR_ISTITLECASE )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isTitleCase() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISTITLECASE FP=hb_retl( ( p )->isTitleCase() ); p is NULL" ) );
}
}
/*
* bool isUpper () const
*/
HB_FUNC( QT_QCHAR_ISUPPER )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retl( ( p )->isUpper() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_ISUPPER FP=hb_retl( ( p )->isUpper() ); p is NULL" ) );
}
}
/*
* Joining joining () const
*/
HB_FUNC( QT_QCHAR_JOINING )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( QChar::Joining ) ( p )->joining() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_JOINING FP=hb_retni( ( QChar::Joining ) ( p )->joining() ); p is NULL" ) );
}
}
/*
* QChar mirroredChar () const
*/
HB_FUNC( QT_QCHAR_MIRROREDCHAR )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->mirroredChar() ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_MIRROREDCHAR FP=hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->mirroredChar() ), true ) ); p is NULL" ) );
}
}
/*
* char toAscii () const
*/
HB_FUNC( QT_QCHAR_TOASCII )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( p )->toAscii() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_TOASCII FP=hb_retni( ( p )->toAscii() ); p is NULL" ) );
}
}
/*
* QChar toCaseFolded () const
*/
HB_FUNC( QT_QCHAR_TOCASEFOLDED )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->toCaseFolded() ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_TOCASEFOLDED FP=hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->toCaseFolded() ), true ) ); p is NULL" ) );
}
}
/*
* char toLatin1 () const
*/
HB_FUNC( QT_QCHAR_TOLATIN1 )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( p )->toLatin1() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_TOLATIN1 FP=hb_retni( ( p )->toLatin1() ); p is NULL" ) );
}
}
/*
* QChar toLower () const
*/
HB_FUNC( QT_QCHAR_TOLOWER )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->toLower() ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_TOLOWER FP=hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->toLower() ), true ) ); p is NULL" ) );
}
}
/*
* QChar toTitleCase () const
*/
HB_FUNC( QT_QCHAR_TOTITLECASE )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->toTitleCase() ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_TOTITLECASE FP=hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->toTitleCase() ), true ) ); p is NULL" ) );
}
}
/*
* QChar toUpper () const
*/
HB_FUNC( QT_QCHAR_TOUPPER )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->toUpper() ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_TOUPPER FP=hb_retptrGC( hbqt_gcAllocate_QChar( new QChar( ( p )->toUpper() ), true ) ); p is NULL" ) );
}
}
/*
* ushort & unicode ()
*/
HB_FUNC( QT_QCHAR_UNICODE )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( p )->unicode() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_UNICODE FP=hb_retni( ( p )->unicode() ); p is NULL" ) );
}
}
/*
* ushort unicode () const
*/
HB_FUNC( QT_QCHAR_UNICODE_1 )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( p )->unicode() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_UNICODE_1 FP=hb_retni( ( p )->unicode() ); p is NULL" ) );
}
}
/*
* UnicodeVersion unicodeVersion () const
*/
HB_FUNC( QT_QCHAR_UNICODEVERSION )
{
QChar * p = hbqt_par_QChar( 1 );
if( p )
hb_retni( ( QChar::UnicodeVersion ) ( p )->unicodeVersion() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QCHAR_UNICODEVERSION FP=hb_retni( ( QChar::UnicodeVersion ) ( p )->unicodeVersion() ); p is NULL" ) );
}
}
/*----------------------------------------------------------------------*/
#endif /* #if QT_VERSION >= 0x040500 */
/*----------------------------------------------------------------------*/