Files
harbour-core/harbour/contrib/hbqt/QButtonGroup.cpp
Pritpal Bedi 1e543152e8 2009-07-19 13:56 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/generator/hbqtgen.prg
  * contrib/hbqt/generator/qt45.qtp
  * contrib/hbqt/hbqt.h
  * contrib/hbqt/Makefile_gen

  + contrib/hbqt/qth/QButtonGroup.qth
  + contrib/hbqt/qth/QIODevice.qth
  + contrib/hbqt/qth/QProcess.qth

  + contrib/hbqt/QButtonGroup.cpp
  + contrib/hbqt/QIODevice.cpp
  + contrib/hbqt/QProcess.cpp
  + contrib/hbqt/TQButtonGroup.prg
  + contrib/hbqt/TQIODevice.prg
  + contrib/hbqt/TQProcess.prg

    + Added new classes.
2009-07-19 20:59:25 +00:00

185 lines
5.0 KiB
C++

/*
* $Id$
*/
/*
* 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
/*----------------------------------------------------------------------*/
/*
* Constructed[ 10/11 [ 90.91% ] ]
*
* *** Unconvered Prototypes ***
* -----------------------------
*
* QList<QAbstractButton *> buttons () const
*/
#include <QtGui/QButtonGroup>
/*
* QButtonGroup ( QObject * parent = 0 )
* ~QButtonGroup ()
*/
HB_FUNC( QT_QBUTTONGROUP )
{
if( hb_pcount() == 1 && HB_ISPOINTER( 1 ) )
{
hb_retptr( ( QButtonGroup* ) new QButtonGroup( hbqt_par_QObject( 1 ) ) );
}
else
{
hb_retptr( ( QButtonGroup* ) new QButtonGroup() );
}
}
/*
* DESTRUCTOR
*/
HB_FUNC( QT_QBUTTONGROUP_DESTROY )
{
hbqt_par_QButtonGroup( 1 )->~QButtonGroup();
}
/*
* void addButton ( QAbstractButton * button )
*/
HB_FUNC( QT_QBUTTONGROUP_ADDBUTTON )
{
hbqt_par_QButtonGroup( 1 )->addButton( hbqt_par_QAbstractButton( 2 ) );
}
/*
* void addButton ( QAbstractButton * button, int id )
*/
HB_FUNC( QT_QBUTTONGROUP_ADDBUTTON_1 )
{
hbqt_par_QButtonGroup( 1 )->addButton( hbqt_par_QAbstractButton( 2 ), hb_parni( 3 ) );
}
/*
* QAbstractButton * button ( int id ) const
*/
HB_FUNC( QT_QBUTTONGROUP_BUTTON )
{
hb_retptr( ( QAbstractButton* ) hbqt_par_QButtonGroup( 1 )->button( hb_parni( 2 ) ) );
}
/*
* QAbstractButton * checkedButton () const
*/
HB_FUNC( QT_QBUTTONGROUP_CHECKEDBUTTON )
{
hb_retptr( ( QAbstractButton* ) hbqt_par_QButtonGroup( 1 )->checkedButton() );
}
/*
* int checkedId () const
*/
HB_FUNC( QT_QBUTTONGROUP_CHECKEDID )
{
hb_retni( hbqt_par_QButtonGroup( 1 )->checkedId() );
}
/*
* bool exclusive () const
*/
HB_FUNC( QT_QBUTTONGROUP_EXCLUSIVE )
{
hb_retl( hbqt_par_QButtonGroup( 1 )->exclusive() );
}
/*
* int id ( QAbstractButton * button ) const
*/
HB_FUNC( QT_QBUTTONGROUP_ID )
{
hb_retni( hbqt_par_QButtonGroup( 1 )->id( hbqt_par_QAbstractButton( 2 ) ) );
}
/*
* void removeButton ( QAbstractButton * button )
*/
HB_FUNC( QT_QBUTTONGROUP_REMOVEBUTTON )
{
hbqt_par_QButtonGroup( 1 )->removeButton( hbqt_par_QAbstractButton( 2 ) );
}
/*
* void setExclusive ( bool )
*/
HB_FUNC( QT_QBUTTONGROUP_SETEXCLUSIVE )
{
hbqt_par_QButtonGroup( 1 )->setExclusive( hb_parl( 2 ) );
}
/*
* void setId ( QAbstractButton * button, int id )
*/
HB_FUNC( QT_QBUTTONGROUP_SETID )
{
hbqt_par_QButtonGroup( 1 )->setId( hbqt_par_QAbstractButton( 2 ), hb_parni( 3 ) );
}
/*----------------------------------------------------------------------*/
#endif /* #if QT_VERSION >= 0x040500 */
/*----------------------------------------------------------------------*/