Files
harbour-core/harbour/contrib/hbqt/qtcore/QSettings.cpp
Pritpal Bedi 0a890614e5 2010-04-16 07:28 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/qtcore/*.cpp
  * contrib/hbqt/qtgui/*.cpp
  * contrib/hbqt/qtnetwork/*.cpp
    * Regenerated Code. Details in next commit.
2010-04-16 14:46:00 +00:00

609 lines
18 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 Format { NativeFormat, IniFormat, InvalidFormat }
* enum Scope { UserScope, SystemScope }
* enum Status { NoError, AccessError, FormatError }
*/
#include <QtCore/QPointer>
#include <QtCore/QSettings>
#include <QtCore/QStringList>
/*
* QSettings ( const QString & organization, const QString & application = QString(), QObject * parent = 0 )
* QSettings ( Scope scope, const QString & organization, const QString & application = QString(), QObject * parent = * 0 )
* QSettings ( Format format, Scope scope, const QString & organization, const QString & application = QString(), * QObject * parent = 0 )
* QSettings ( const QString & fileName, Format format, QObject * parent = 0 )
* QSettings ( QObject * parent = 0 )
* ~QSettings ()
*/
typedef struct
{
QPointer< QSettings > ph;
bool bNew;
QT_G_FUNC_PTR func;
} QGC_POINTER_QSettings;
QT_G_FUNC( hbqt_gcRelease_QSettings )
{
QSettings * ph = NULL ;
QGC_POINTER_QSettings * p = ( QGC_POINTER_QSettings * ) Cargo;
if( p && p->bNew && p->ph )
{
ph = p->ph;
if( ph )
{
const QMetaObject * m = ( ph )->metaObject();
if( ( QString ) m->className() != ( QString ) "QObject" )
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p %p YES_rel_QSettings /.\\ ", (void*) ph, (void*) p->ph ) );
delete ( p->ph );
HB_TRACE( HB_TR_DEBUG, ( "ph=%p %p YES_rel_QSettings \\./ ", (void*) ph, (void*) p->ph ) );
p->ph = NULL;
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p NO__rel_QSettings ", ph ) );
p->ph = NULL;
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p DEL_rel_QSettings : Object already deleted!", ph ) );
p->ph = NULL;
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p PTR_rel_QSettings : Object not created with new=true", ph ) );
p->ph = NULL;
}
}
void * hbqt_gcAllocate_QSettings( void * pObj, bool bNew )
{
QGC_POINTER_QSettings * p = ( QGC_POINTER_QSettings * ) hb_gcAllocate( sizeof( QGC_POINTER_QSettings ), hbqt_gcFuncs() );
new( & p->ph ) QPointer< QSettings >( ( QSettings * ) pObj );
p->bNew = bNew;
p->func = hbqt_gcRelease_QSettings;
if( bNew )
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p _new_QSettings under p->pq", pObj ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p NOT_new_QSettings", pObj ) );
}
return p;
}
HB_FUNC( QT_QSETTINGS )
{
QSettings * pObj = NULL;
if( hb_pcount() >= 2 && HB_ISCHAR( 1 ) && HB_ISCHAR( 2 ) )
{
pObj = new QSettings( hbqt_par_QString( 1 ), hbqt_par_QString( 2 ), 0 ) ;
}
else if( hb_pcount() >= 2 && HB_ISCHAR( 1 ) && HB_ISNUM( 2 ) )
{
pObj = new QSettings( hbqt_par_QString( 1 ), ( QSettings::Format ) hb_parni( 2 ) ) ;
}
else
{
pObj = new QSettings() ;
}
hb_retptrGC( hbqt_gcAllocate_QSettings( ( void * ) pObj, true ) );
}
/*
* QStringList allKeys () const
*/
HB_FUNC( QT_QSETTINGS_ALLKEYS )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QStringList( new QStringList( ( p )->allKeys() ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_ALLKEYS FP=hb_retptrGC( hbqt_gcAllocate_QStringList( new QStringList( ( p )->allKeys() ), true ) ); p is NULL" ) );
}
}
/*
* QString applicationName () const
*/
HB_FUNC( QT_QSETTINGS_APPLICATIONNAME )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retc( ( p )->applicationName().toAscii().data() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_APPLICATIONNAME FP=hb_retc( ( p )->applicationName().toAscii().data() ); p is NULL" ) );
}
}
/*
* void beginGroup ( const QString & prefix )
*/
HB_FUNC( QT_QSETTINGS_BEGINGROUP )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->beginGroup( QSettings::tr( hb_parc( 2 ) ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_BEGINGROUP FP=( p )->beginGroup( QSettings::tr( hb_parc( 2 ) ) ); p is NULL" ) );
}
}
/*
* int beginReadArray ( const QString & prefix )
*/
HB_FUNC( QT_QSETTINGS_BEGINREADARRAY )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retni( ( p )->beginReadArray( QSettings::tr( hb_parc( 2 ) ) ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_BEGINREADARRAY FP=hb_retni( ( p )->beginReadArray( QSettings::tr( hb_parc( 2 ) ) ) ); p is NULL" ) );
}
}
/*
* void beginWriteArray ( const QString & prefix, int size = -1 )
*/
HB_FUNC( QT_QSETTINGS_BEGINWRITEARRAY )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->beginWriteArray( QSettings::tr( hb_parc( 2 ) ), ( HB_ISNUM( 3 ) ? hb_parni( 3 ) : -1 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_BEGINWRITEARRAY FP=( p )->beginWriteArray( QSettings::tr( hb_parc( 2 ) ), ( HB_ISNUM( 3 ) ? hb_parni( 3 ) : -1 ) ); p is NULL" ) );
}
}
/*
* QStringList childGroups () const
*/
HB_FUNC( QT_QSETTINGS_CHILDGROUPS )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QStringList( new QStringList( ( p )->childGroups() ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_CHILDGROUPS FP=hb_retptrGC( hbqt_gcAllocate_QStringList( new QStringList( ( p )->childGroups() ), true ) ); p is NULL" ) );
}
}
/*
* QStringList childKeys () const
*/
HB_FUNC( QT_QSETTINGS_CHILDKEYS )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QStringList( new QStringList( ( p )->childKeys() ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_CHILDKEYS FP=hb_retptrGC( hbqt_gcAllocate_QStringList( new QStringList( ( p )->childKeys() ), true ) ); p is NULL" ) );
}
}
/*
* void clear ()
*/
HB_FUNC( QT_QSETTINGS_CLEAR )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->clear();
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_CLEAR FP=( p )->clear(); p is NULL" ) );
}
}
/*
* bool contains ( const QString & key ) const
*/
HB_FUNC( QT_QSETTINGS_CONTAINS )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retl( ( p )->contains( QSettings::tr( hb_parc( 2 ) ) ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_CONTAINS FP=hb_retl( ( p )->contains( QSettings::tr( hb_parc( 2 ) ) ) ); p is NULL" ) );
}
}
/*
* void endArray ()
*/
HB_FUNC( QT_QSETTINGS_ENDARRAY )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->endArray();
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_ENDARRAY FP=( p )->endArray(); p is NULL" ) );
}
}
/*
* void endGroup ()
*/
HB_FUNC( QT_QSETTINGS_ENDGROUP )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->endGroup();
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_ENDGROUP FP=( p )->endGroup(); p is NULL" ) );
}
}
/*
* bool fallbacksEnabled () const
*/
HB_FUNC( QT_QSETTINGS_FALLBACKSENABLED )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retl( ( p )->fallbacksEnabled() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_FALLBACKSENABLED FP=hb_retl( ( p )->fallbacksEnabled() ); p is NULL" ) );
}
}
/*
* QString fileName () const
*/
HB_FUNC( QT_QSETTINGS_FILENAME )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retc( ( p )->fileName().toAscii().data() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_FILENAME FP=hb_retc( ( p )->fileName().toAscii().data() ); p is NULL" ) );
}
}
/*
* Format format () const
*/
HB_FUNC( QT_QSETTINGS_FORMAT )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retni( ( QSettings::Format ) ( p )->format() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_FORMAT FP=hb_retni( ( QSettings::Format ) ( p )->format() ); p is NULL" ) );
}
}
/*
* QString group () const
*/
HB_FUNC( QT_QSETTINGS_GROUP )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retc( ( p )->group().toAscii().data() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_GROUP FP=hb_retc( ( p )->group().toAscii().data() ); p is NULL" ) );
}
}
/*
* QTextCodec * iniCodec () const
*/
HB_FUNC( QT_QSETTINGS_INICODEC )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QTextCodec( ( p )->iniCodec(), false ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_INICODEC FP=hb_retptrGC( hbqt_gcAllocate_QTextCodec( ( p )->iniCodec(), false ) ); p is NULL" ) );
}
}
/*
* bool isWritable () const
*/
HB_FUNC( QT_QSETTINGS_ISWRITABLE )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retl( ( p )->isWritable() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_ISWRITABLE FP=hb_retl( ( p )->isWritable() ); p is NULL" ) );
}
}
/*
* QString organizationName () const
*/
HB_FUNC( QT_QSETTINGS_ORGANIZATIONNAME )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retc( ( p )->organizationName().toAscii().data() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_ORGANIZATIONNAME FP=hb_retc( ( p )->organizationName().toAscii().data() ); p is NULL" ) );
}
}
/*
* void remove ( const QString & key )
*/
HB_FUNC( QT_QSETTINGS_REMOVE )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->remove( QSettings::tr( hb_parc( 2 ) ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_REMOVE FP=( p )->remove( QSettings::tr( hb_parc( 2 ) ) ); p is NULL" ) );
}
}
/*
* Scope scope () const
*/
HB_FUNC( QT_QSETTINGS_SCOPE )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retni( ( QSettings::Scope ) ( p )->scope() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SCOPE FP=hb_retni( ( QSettings::Scope ) ( p )->scope() ); p is NULL" ) );
}
}
/*
* void setArrayIndex ( int i )
*/
HB_FUNC( QT_QSETTINGS_SETARRAYINDEX )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->setArrayIndex( hb_parni( 2 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SETARRAYINDEX FP=( p )->setArrayIndex( hb_parni( 2 ) ); p is NULL" ) );
}
}
/*
* void setFallbacksEnabled ( bool b )
*/
HB_FUNC( QT_QSETTINGS_SETFALLBACKSENABLED )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->setFallbacksEnabled( hb_parl( 2 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SETFALLBACKSENABLED FP=( p )->setFallbacksEnabled( hb_parl( 2 ) ); p is NULL" ) );
}
}
/*
* void setIniCodec ( QTextCodec * codec )
*/
HB_FUNC( QT_QSETTINGS_SETINICODEC )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->setIniCodec( hbqt_par_QTextCodec( 2 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SETINICODEC FP=( p )->setIniCodec( hbqt_par_QTextCodec( 2 ) ); p is NULL" ) );
}
}
/*
* void setIniCodec ( const char * codecName )
*/
HB_FUNC( QT_QSETTINGS_SETINICODEC_1 )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->setIniCodec( hbqt_par_char( 2 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SETINICODEC_1 FP=( p )->setIniCodec( hbqt_par_char( 2 ) ); p is NULL" ) );
}
}
/*
* void setValue ( const QString & key, const QVariant & value )
*/
HB_FUNC( QT_QSETTINGS_SETVALUE )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->setValue( QSettings::tr( hb_parc( 2 ) ), *hbqt_par_QVariant( 3 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SETVALUE FP=( p )->setValue( QSettings::tr( hb_parc( 2 ) ), *hbqt_par_QVariant( 3 ) ); p is NULL" ) );
}
}
/*
* Status status () const
*/
HB_FUNC( QT_QSETTINGS_STATUS )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retni( ( QSettings::Status ) ( p )->status() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_STATUS FP=hb_retni( ( QSettings::Status ) ( p )->status() ); p is NULL" ) );
}
}
/*
* void sync ()
*/
HB_FUNC( QT_QSETTINGS_SYNC )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->sync();
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SYNC FP=( p )->sync(); p is NULL" ) );
}
}
/*
* QVariant value ( const QString & key, const QVariant & defaultValue = QVariant() ) const
*/
HB_FUNC( QT_QSETTINGS_VALUE )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QVariant( new QVariant( ( p )->value( QSettings::tr( hb_parc( 2 ) ), ( HB_ISPOINTER( 3 ) ? *hbqt_par_QVariant( 3 ) : QVariant() ) ) ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_VALUE FP=hb_retptrGC( hbqt_gcAllocate_QVariant( new QVariant( ( p )->value( QSettings::tr( hb_parc( 2 ) ), ( HB_ISPOINTER( 3 ) ? *hbqt_par_QVariant( 3 ) : QVariant() ) ) ), true ) ); p is NULL" ) );
}
}
/*
* Format defaultFormat ()
*/
HB_FUNC( QT_QSETTINGS_DEFAULTFORMAT )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
hb_retni( ( QSettings::Format ) ( p )->defaultFormat() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_DEFAULTFORMAT FP=hb_retni( ( QSettings::Format ) ( p )->defaultFormat() ); p is NULL" ) );
}
}
/*
* void setDefaultFormat ( Format format )
*/
HB_FUNC( QT_QSETTINGS_SETDEFAULTFORMAT )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->setDefaultFormat( ( QSettings::Format ) hb_parni( 2 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SETDEFAULTFORMAT FP=( p )->setDefaultFormat( ( QSettings::Format ) hb_parni( 2 ) ); p is NULL" ) );
}
}
/*
* void setPath ( Format format, Scope scope, const QString & path )
*/
HB_FUNC( QT_QSETTINGS_SETPATH )
{
QSettings * p = hbqt_par_QSettings( 1 );
if( p )
( p )->setPath( ( QSettings::Format ) hb_parni( 2 ), ( QSettings::Scope ) hb_parni( 3 ), QSettings::tr( hb_parc( 4 ) ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QSETTINGS_SETPATH FP=( p )->setPath( ( QSettings::Format ) hb_parni( 2 ), ( QSettings::Scope ) hb_parni( 3 ), QSettings::tr( hb_parc( 4 ) ) ); p is NULL" ) );
}
}
/*----------------------------------------------------------------------*/
#endif /* #if QT_VERSION >= 0x040500 */
/*----------------------------------------------------------------------*/