Files
harbour-core/harbour/contrib/hbqt/qtgui/QWizardPage.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

390 lines
12 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
/*----------------------------------------------------------------------*/
#include <QtCore/QPointer>
#include <QtGui/QWizardPage>
/* QWizardPage ( QWidget * parent = 0 )
*/
typedef struct
{
QPointer< QWizardPage > ph;
bool bNew;
QT_G_FUNC_PTR func;
} QGC_POINTER_QWizardPage;
QT_G_FUNC( hbqt_gcRelease_QWizardPage )
{
QWizardPage * ph = NULL ;
QGC_POINTER_QWizardPage * p = ( QGC_POINTER_QWizardPage * ) 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_QWizardPage /.\\ ", (void*) ph, (void*) p->ph ) );
delete ( p->ph );
HB_TRACE( HB_TR_DEBUG, ( "ph=%p %p YES_rel_QWizardPage \\./ ", (void*) ph, (void*) p->ph ) );
p->ph = NULL;
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p NO__rel_QWizardPage ", ph ) );
p->ph = NULL;
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p DEL_rel_QWizardPage : Object already deleted!", ph ) );
p->ph = NULL;
}
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p PTR_rel_QWizardPage : Object not created with new=true", ph ) );
p->ph = NULL;
}
}
void * hbqt_gcAllocate_QWizardPage( void * pObj, bool bNew )
{
QGC_POINTER_QWizardPage * p = ( QGC_POINTER_QWizardPage * ) hb_gcAllocate( sizeof( QGC_POINTER_QWizardPage ), hbqt_gcFuncs() );
new( & p->ph ) QPointer< QWizardPage >( ( QWizardPage * ) pObj );
p->bNew = bNew;
p->func = hbqt_gcRelease_QWizardPage;
if( bNew )
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p _new_QWizardPage under p->pq", pObj ) );
}
else
{
HB_TRACE( HB_TR_DEBUG, ( "ph=%p NOT_new_QWizardPage", pObj ) );
}
return p;
}
HB_FUNC( QT_QWIZARDPAGE )
{
QWizardPage * pObj = NULL;
pObj = new QWizardPage() ;
hb_retptrGC( hbqt_gcAllocate_QWizardPage( ( void * ) pObj, true ) );
}
/*
* QString buttonText ( QWizard::WizardButton which ) const
*/
HB_FUNC( QT_QWIZARDPAGE_BUTTONTEXT )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retc( ( p )->buttonText( ( QWizard::WizardButton ) hb_parni( 2 ) ).toAscii().data() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_BUTTONTEXT FP=hb_retc( ( p )->buttonText( ( QWizard::WizardButton ) hb_parni( 2 ) ).toAscii().data() ); p is NULL" ) );
}
}
/*
* virtual void cleanupPage ()
*/
HB_FUNC( QT_QWIZARDPAGE_CLEANUPPAGE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
( p )->cleanupPage();
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_CLEANUPPAGE FP=( p )->cleanupPage(); p is NULL" ) );
}
}
/*
* virtual void initializePage ()
*/
HB_FUNC( QT_QWIZARDPAGE_INITIALIZEPAGE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
( p )->initializePage();
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_INITIALIZEPAGE FP=( p )->initializePage(); p is NULL" ) );
}
}
/*
* bool isCommitPage () const
*/
HB_FUNC( QT_QWIZARDPAGE_ISCOMMITPAGE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retl( ( p )->isCommitPage() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_ISCOMMITPAGE FP=hb_retl( ( p )->isCommitPage() ); p is NULL" ) );
}
}
/*
* virtual bool isComplete () const
*/
HB_FUNC( QT_QWIZARDPAGE_ISCOMPLETE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retl( ( p )->isComplete() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_ISCOMPLETE FP=hb_retl( ( p )->isComplete() ); p is NULL" ) );
}
}
/*
* bool isFinalPage () const
*/
HB_FUNC( QT_QWIZARDPAGE_ISFINALPAGE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retl( ( p )->isFinalPage() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_ISFINALPAGE FP=hb_retl( ( p )->isFinalPage() ); p is NULL" ) );
}
}
/*
* virtual int nextId () const
*/
HB_FUNC( QT_QWIZARDPAGE_NEXTID )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retni( ( p )->nextId() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_NEXTID FP=hb_retni( ( p )->nextId() ); p is NULL" ) );
}
}
/*
* QPixmap pixmap ( QWizard::WizardPixmap which ) const
*/
HB_FUNC( QT_QWIZARDPAGE_PIXMAP )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retptrGC( hbqt_gcAllocate_QPixmap( new QPixmap( ( p )->pixmap( ( QWizard::WizardPixmap ) hb_parni( 2 ) ) ), true ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_PIXMAP FP=hb_retptrGC( hbqt_gcAllocate_QPixmap( new QPixmap( ( p )->pixmap( ( QWizard::WizardPixmap ) hb_parni( 2 ) ) ), true ) ); p is NULL" ) );
}
}
/*
* void setButtonText ( QWizard::WizardButton which, const QString & text )
*/
HB_FUNC( QT_QWIZARDPAGE_SETBUTTONTEXT )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
( p )->setButtonText( ( QWizard::WizardButton ) hb_parni( 2 ), QWizardPage::tr( hb_parc( 3 ) ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_SETBUTTONTEXT FP=( p )->setButtonText( ( QWizard::WizardButton ) hb_parni( 2 ), QWizardPage::tr( hb_parc( 3 ) ) ); p is NULL" ) );
}
}
/*
* void setCommitPage ( bool commitPage )
*/
HB_FUNC( QT_QWIZARDPAGE_SETCOMMITPAGE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
( p )->setCommitPage( hb_parl( 2 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_SETCOMMITPAGE FP=( p )->setCommitPage( hb_parl( 2 ) ); p is NULL" ) );
}
}
/*
* void setFinalPage ( bool finalPage )
*/
HB_FUNC( QT_QWIZARDPAGE_SETFINALPAGE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
( p )->setFinalPage( hb_parl( 2 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_SETFINALPAGE FP=( p )->setFinalPage( hb_parl( 2 ) ); p is NULL" ) );
}
}
/*
* void setPixmap ( QWizard::WizardPixmap which, const QPixmap & pixmap )
*/
HB_FUNC( QT_QWIZARDPAGE_SETPIXMAP )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
( p )->setPixmap( ( QWizard::WizardPixmap ) hb_parni( 2 ), *hbqt_par_QPixmap( 3 ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_SETPIXMAP FP=( p )->setPixmap( ( QWizard::WizardPixmap ) hb_parni( 2 ), *hbqt_par_QPixmap( 3 ) ); p is NULL" ) );
}
}
/*
* void setSubTitle ( const QString & subTitle )
*/
HB_FUNC( QT_QWIZARDPAGE_SETSUBTITLE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
( p )->setSubTitle( QWizardPage::tr( hb_parc( 2 ) ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_SETSUBTITLE FP=( p )->setSubTitle( QWizardPage::tr( hb_parc( 2 ) ) ); p is NULL" ) );
}
}
/*
* void setTitle ( const QString & title )
*/
HB_FUNC( QT_QWIZARDPAGE_SETTITLE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
( p )->setTitle( QWizardPage::tr( hb_parc( 2 ) ) );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_SETTITLE FP=( p )->setTitle( QWizardPage::tr( hb_parc( 2 ) ) ); p is NULL" ) );
}
}
/*
* QString subTitle () const
*/
HB_FUNC( QT_QWIZARDPAGE_SUBTITLE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retc( ( p )->subTitle().toAscii().data() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_SUBTITLE FP=hb_retc( ( p )->subTitle().toAscii().data() ); p is NULL" ) );
}
}
/*
* QString title () const
*/
HB_FUNC( QT_QWIZARDPAGE_TITLE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retc( ( p )->title().toAscii().data() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_TITLE FP=hb_retc( ( p )->title().toAscii().data() ); p is NULL" ) );
}
}
/*
* virtual bool validatePage ()
*/
HB_FUNC( QT_QWIZARDPAGE_VALIDATEPAGE )
{
QWizardPage * p = hbqt_par_QWizardPage( 1 );
if( p )
hb_retl( ( p )->validatePage() );
else
{
HB_TRACE( HB_TR_DEBUG, ( "............................... F=QT_QWIZARDPAGE_VALIDATEPAGE FP=hb_retl( ( p )->validatePage() ); p is NULL" ) );
}
}
/*----------------------------------------------------------------------*/
#endif /* #if QT_VERSION >= 0x040500 */
/*----------------------------------------------------------------------*/