Files
harbour-core/harbour/contrib/hbqt/qtgui/QMessageBox.cpp
2009-10-22 17:31:51 +00:00

439 lines
13 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 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 "hbapi.h"
#include "../hbqt.h"
/*----------------------------------------------------------------------*/
#if QT_VERSION >= 0x040500
/*----------------------------------------------------------------------*/
/*
* enum ButtonRole { InvalidRole, AcceptRole, RejectRole, DestructiveRole, ..., ResetRole }
* enum Icon { NoIcon, Question, Information, Warning, Critical }
* enum StandardButton { Ok, Open, Save, Cancel, ..., ButtonMask }
* flags StandardButtons
*/
/*
* Constructed[ 38/39 [ 97.44% ] ]
*
* *** Unconvered Prototypes ***
* -----------------------------
*
* QList<QAbstractButton *> buttons () const
*/
#include <QtCore/QPointer>
#include <QtGui/QMessageBox>
/*
* QMessageBox ( QWidget * parent = 0 )
* QMessageBox ( Icon icon, const QString & title, const QString & text, StandardButtons buttons = NoButton, QWidget * parent = 0, Qt::WindowFlags f = Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint )
* ~QMessageBox ()
*/
QT_G_FUNC( release_QMessageBox )
{
#if defined(__debug__)
hb_snprintf( str, sizeof(str), "release_QMessageBox" ); OutputDebugString( str );
#endif
void * ph = ( void * ) Cargo;
if( ph )
{
const QMetaObject * m = ( ( QObject * ) ph )->metaObject();
if( ( QString ) m->className() != ( QString ) "QObject" )
{
delete ( ( QMessageBox * ) ph );
ph = NULL;
}
else
{
#if defined(__debug__)
hb_snprintf( str, sizeof(str), " Object Name Missing: QMessageBox" ); OutputDebugString( str );
#endif
}
}
}
HB_FUNC( QT_QMESSAGEBOX )
{
QGC_POINTER * p = ( QGC_POINTER * ) hb_gcAlloc( sizeof( QGC_POINTER ), Q_release );
QPointer< QMessageBox > pObj = NULL;
pObj = ( QMessageBox* ) new QMessageBox() ;
p->ph = pObj;
p->func = release_QMessageBox;
hb_retptrGC( p );
}
/*
* void addButton ( QAbstractButton * button, ButtonRole role )
*/
HB_FUNC( QT_QMESSAGEBOX_ADDBUTTON )
{
hbqt_par_QMessageBox( 1 )->addButton( hbqt_par_QAbstractButton( 2 ), ( QMessageBox::ButtonRole ) hb_parni( 3 ) );
}
/*
* QPushButton * addButton ( const QString & text, ButtonRole role )
*/
HB_FUNC( QT_QMESSAGEBOX_ADDBUTTON_1 )
{
hb_retptr( ( QPushButton* ) hbqt_par_QMessageBox( 1 )->addButton( hbqt_par_QString( 2 ), ( QMessageBox::ButtonRole ) hb_parni( 3 ) ) );
}
/*
* QPushButton * addButton ( StandardButton button )
*/
HB_FUNC( QT_QMESSAGEBOX_ADDBUTTON_2 )
{
hb_retptr( ( QPushButton* ) hbqt_par_QMessageBox( 1 )->addButton( ( QMessageBox::StandardButton ) hb_parni( 2 ) ) );
}
/*
* QAbstractButton * button ( StandardButton which ) const
*/
HB_FUNC( QT_QMESSAGEBOX_BUTTON )
{
hb_retptr( ( QAbstractButton* ) hbqt_par_QMessageBox( 1 )->button( ( QMessageBox::StandardButton ) hb_parni( 2 ) ) );
}
/*
* ButtonRole buttonRole ( QAbstractButton * button ) const
*/
HB_FUNC( QT_QMESSAGEBOX_BUTTONROLE )
{
hb_retni( ( QMessageBox::ButtonRole ) hbqt_par_QMessageBox( 1 )->buttonRole( hbqt_par_QAbstractButton( 2 ) ) );
}
/*
* QAbstractButton * clickedButton () const
*/
HB_FUNC( QT_QMESSAGEBOX_CLICKEDBUTTON )
{
hb_retptr( ( QAbstractButton* ) hbqt_par_QMessageBox( 1 )->clickedButton() );
}
/*
* QPushButton * defaultButton () const
*/
HB_FUNC( QT_QMESSAGEBOX_DEFAULTBUTTON )
{
hb_retptr( ( QPushButton* ) hbqt_par_QMessageBox( 1 )->defaultButton() );
}
/*
* QString detailedText () const
*/
HB_FUNC( QT_QMESSAGEBOX_DETAILEDTEXT )
{
hb_retc( hbqt_par_QMessageBox( 1 )->detailedText().toAscii().data() );
}
/*
* QAbstractButton * escapeButton () const
*/
HB_FUNC( QT_QMESSAGEBOX_ESCAPEBUTTON )
{
hb_retptr( ( QAbstractButton* ) hbqt_par_QMessageBox( 1 )->escapeButton() );
}
/*
* Icon icon () const
*/
HB_FUNC( QT_QMESSAGEBOX_ICON )
{
hb_retni( ( QMessageBox::Icon ) hbqt_par_QMessageBox( 1 )->icon() );
}
/*
* QPixmap iconPixmap () const
*/
HB_FUNC( QT_QMESSAGEBOX_ICONPIXMAP )
{
hb_retptrGC( hbqt_ptrTOgcpointer( new QPixmap( hbqt_par_QMessageBox( 1 )->iconPixmap() ), release_QPixmap ) );
}
/*
* QString informativeText () const
*/
HB_FUNC( QT_QMESSAGEBOX_INFORMATIVETEXT )
{
hb_retc( hbqt_par_QMessageBox( 1 )->informativeText().toAscii().data() );
}
/*
* void open ( QObject * receiver, const char * member )
*/
HB_FUNC( QT_QMESSAGEBOX_OPEN )
{
hbqt_par_QMessageBox( 1 )->open( hbqt_par_QObject( 2 ), hbqt_par_char( 3 ) );
}
/*
* void removeButton ( QAbstractButton * button )
*/
HB_FUNC( QT_QMESSAGEBOX_REMOVEBUTTON )
{
hbqt_par_QMessageBox( 1 )->removeButton( hbqt_par_QAbstractButton( 2 ) );
}
/*
* void setDefaultButton ( QPushButton * button )
*/
HB_FUNC( QT_QMESSAGEBOX_SETDEFAULTBUTTON )
{
hbqt_par_QMessageBox( 1 )->setDefaultButton( hbqt_par_QPushButton( 2 ) );
}
/*
* void setDefaultButton ( StandardButton button )
*/
HB_FUNC( QT_QMESSAGEBOX_SETDEFAULTBUTTON_1 )
{
hbqt_par_QMessageBox( 1 )->setDefaultButton( ( QMessageBox::StandardButton ) hb_parni( 2 ) );
}
/*
* void setDetailedText ( const QString & text )
*/
HB_FUNC( QT_QMESSAGEBOX_SETDETAILEDTEXT )
{
hbqt_par_QMessageBox( 1 )->setDetailedText( hbqt_par_QString( 2 ) );
}
/*
* void setEscapeButton ( QAbstractButton * button )
*/
HB_FUNC( QT_QMESSAGEBOX_SETESCAPEBUTTON )
{
hbqt_par_QMessageBox( 1 )->setEscapeButton( hbqt_par_QAbstractButton( 2 ) );
}
/*
* void setEscapeButton ( StandardButton button )
*/
HB_FUNC( QT_QMESSAGEBOX_SETESCAPEBUTTON_1 )
{
hbqt_par_QMessageBox( 1 )->setEscapeButton( ( QMessageBox::StandardButton ) hb_parni( 2 ) );
}
/*
* void setIcon ( Icon )
*/
HB_FUNC( QT_QMESSAGEBOX_SETICON )
{
hbqt_par_QMessageBox( 1 )->setIcon( ( QMessageBox::Icon ) hb_parni( 2 ) );
}
/*
* void setIconPixmap ( const QPixmap & pixmap )
*/
HB_FUNC( QT_QMESSAGEBOX_SETICONPIXMAP )
{
hbqt_par_QMessageBox( 1 )->setIconPixmap( *hbqt_par_QPixmap( 2 ) );
}
/*
* void setInformativeText ( const QString & text )
*/
HB_FUNC( QT_QMESSAGEBOX_SETINFORMATIVETEXT )
{
hbqt_par_QMessageBox( 1 )->setInformativeText( hbqt_par_QString( 2 ) );
}
/*
* void setStandardButtons ( StandardButtons buttons )
*/
HB_FUNC( QT_QMESSAGEBOX_SETSTANDARDBUTTONS )
{
hbqt_par_QMessageBox( 1 )->setStandardButtons( ( QMessageBox::StandardButtons ) hb_parni( 2 ) );
}
/*
* void setText ( const QString & text )
*/
HB_FUNC( QT_QMESSAGEBOX_SETTEXT )
{
hbqt_par_QMessageBox( 1 )->setText( hbqt_par_QString( 2 ) );
}
/*
* void setTextFormat ( Qt::TextFormat format )
*/
HB_FUNC( QT_QMESSAGEBOX_SETTEXTFORMAT )
{
hbqt_par_QMessageBox( 1 )->setTextFormat( ( Qt::TextFormat ) hb_parni( 2 ) );
}
/*
* void setWindowModality ( Qt::WindowModality windowModality )
*/
HB_FUNC( QT_QMESSAGEBOX_SETWINDOWMODALITY )
{
hbqt_par_QMessageBox( 1 )->setWindowModality( ( Qt::WindowModality ) hb_parni( 2 ) );
}
/*
* void setWindowTitle ( const QString & title )
*/
HB_FUNC( QT_QMESSAGEBOX_SETWINDOWTITLE )
{
hbqt_par_QMessageBox( 1 )->setWindowTitle( hbqt_par_QString( 2 ) );
}
/*
* StandardButton standardButton ( QAbstractButton * button ) const
*/
HB_FUNC( QT_QMESSAGEBOX_STANDARDBUTTON )
{
hb_retni( ( QMessageBox::StandardButton ) hbqt_par_QMessageBox( 1 )->standardButton( hbqt_par_QAbstractButton( 2 ) ) );
}
/*
* StandardButtons standardButtons () const
*/
HB_FUNC( QT_QMESSAGEBOX_STANDARDBUTTONS )
{
hb_retni( ( QMessageBox::StandardButtons ) hbqt_par_QMessageBox( 1 )->standardButtons() );
}
/*
* QString text () const
*/
HB_FUNC( QT_QMESSAGEBOX_TEXT )
{
hb_retc( hbqt_par_QMessageBox( 1 )->text().toAscii().data() );
}
/*
* Qt::TextFormat textFormat () const
*/
HB_FUNC( QT_QMESSAGEBOX_TEXTFORMAT )
{
hb_retni( ( Qt::TextFormat ) hbqt_par_QMessageBox( 1 )->textFormat() );
}
/*
* void about ( QWidget * parent, const QString & title, const QString & text )
*/
HB_FUNC( QT_QMESSAGEBOX_ABOUT )
{
hbqt_par_QMessageBox( 1 )->about( hbqt_par_QWidget( 2 ), hbqt_par_QString( 3 ), hbqt_par_QString( 4 ) );
}
/*
* void aboutQt ( QWidget * parent, const QString & title = QString() )
*/
HB_FUNC( QT_QMESSAGEBOX_ABOUTQT )
{
hbqt_par_QMessageBox( 1 )->aboutQt( hbqt_par_QWidget( 2 ), hbqt_par_QString( 3 ) );
}
/*
* StandardButton critical ( QWidget * parent, const QString & title, const QString & text, StandardButtons buttons = Ok, StandardButton defaultButton = NoButton )
*/
HB_FUNC( QT_QMESSAGEBOX_CRITICAL )
{
hb_retni( ( QMessageBox::StandardButton ) hbqt_par_QMessageBox( 1 )->critical( hbqt_par_QWidget( 2 ), hbqt_par_QString( 3 ), hbqt_par_QString( 4 ), ( HB_ISNUM( 5 ) ? ( QMessageBox::StandardButtons ) hb_parni( 5 ) : ( QMessageBox::StandardButtons ) QMessageBox::Ok ), ( HB_ISNUM( 6 ) ? ( QMessageBox::StandardButton ) hb_parni( 6 ) : ( QMessageBox::StandardButton ) QMessageBox::NoButton ) ) );
}
/*
* StandardButton information ( QWidget * parent, const QString & title, const QString & text, StandardButtons buttons = Ok, StandardButton defaultButton = NoButton )
*/
HB_FUNC( QT_QMESSAGEBOX_INFORMATION )
{
hb_retni( ( QMessageBox::StandardButton ) hbqt_par_QMessageBox( 1 )->information( hbqt_par_QWidget( 2 ), hbqt_par_QString( 3 ), hbqt_par_QString( 4 ), ( HB_ISNUM( 5 ) ? ( QMessageBox::StandardButtons ) hb_parni( 5 ) : ( QMessageBox::StandardButtons ) QMessageBox::Ok ), ( HB_ISNUM( 6 ) ? ( QMessageBox::StandardButton ) hb_parni( 6 ) : ( QMessageBox::StandardButton ) QMessageBox::NoButton ) ) );
}
/*
* StandardButton question ( QWidget * parent, const QString & title, const QString & text, StandardButtons buttons = Ok, StandardButton defaultButton = NoButton )
*/
HB_FUNC( QT_QMESSAGEBOX_QUESTION )
{
hb_retni( ( QMessageBox::StandardButton ) hbqt_par_QMessageBox( 1 )->question( hbqt_par_QWidget( 2 ), hbqt_par_QString( 3 ), hbqt_par_QString( 4 ), ( HB_ISNUM( 5 ) ? ( QMessageBox::StandardButtons ) hb_parni( 5 ) : ( QMessageBox::StandardButtons ) QMessageBox::Ok ), ( HB_ISNUM( 6 ) ? ( QMessageBox::StandardButton ) hb_parni( 6 ) : ( QMessageBox::StandardButton ) QMessageBox::NoButton ) ) );
}
/*
* StandardButton warning ( QWidget * parent, const QString & title, const QString & text, StandardButtons buttons = Ok, StandardButton defaultButton = NoButton )
*/
HB_FUNC( QT_QMESSAGEBOX_WARNING )
{
hb_retni( ( QMessageBox::StandardButton ) hbqt_par_QMessageBox( 1 )->warning( hbqt_par_QWidget( 2 ), hbqt_par_QString( 3 ), hbqt_par_QString( 4 ), ( HB_ISNUM( 5 ) ? ( QMessageBox::StandardButtons ) hb_parni( 5 ) : ( QMessageBox::StandardButtons ) QMessageBox::Ok ), ( HB_ISNUM( 6 ) ? ( QMessageBox::StandardButton ) hb_parni( 6 ) : ( QMessageBox::StandardButton ) QMessageBox::NoButton ) ) );
}
/*
* int exec ()
*/
HB_FUNC( QT_QMESSAGEBOX_EXEC )
{
hb_retni( hbqt_par_QMessageBox( 1 )->exec() );
}
/*----------------------------------------------------------------------*/
#endif /* #if QT_VERSION >= 0x040500 */
/*----------------------------------------------------------------------*/