Files
harbour-core/harbour/contrib/hbqt/qtgui/qth/QAbstractProxyModel.qth
Pritpal Bedi fef080b8a0 2012-05-13 00:19 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/hbqt/qtcore/qth/*.qth
  * contrib/hbqt/qtgui/qth/*.qth
  * contrib/hbqt/qtnetwork/qth/*.qth
    ! Copyright year bump.
    + Formatting.
    - Long coptyright notice to short one.
2012-05-13 07:29:44 +00:00

51 lines
1.1 KiB
Plaintext

/*
* $Id$
*/
/*
* Harbour Qt wrapper generator control file
*
* Copyright 2009-2012 Pritpal Bedi <bedipritpal@hotmail.com>
* www - http://www.harbour-project.org
*
* See COPYING for licensing terms.
*/
<CLASS>
Inherit = QAbstractItemModel
Type = Core
New =
Constructor = No
</CLASS>
<CODE>
#include <QtGui/QAbstractProxyModel>
#include <QtGui/QItemSelection>
/* QAbstractProxyModel ( QObject * parent = 0 )
* ~QAbstractProxyModel ()
*/
HB_FUNC( QT_QABSTRACTPROXYMODEL )
{
// __HB_RETPTRGC__( new QAbstractProxyModel() );
}
</CODE>
<ENUMS>
</ENUMS>
<PROTOS>
virtual QModelIndex mapFromSource ( const QModelIndex & sourceIndex ) const = 0
virtual QItemSelection mapSelectionFromSource ( const QItemSelection & sourceSelection ) const
virtual QItemSelection mapSelectionToSource ( const QItemSelection & proxySelection ) const
virtual QModelIndex mapToSource ( const QModelIndex & proxyIndex ) const = 0
virtual void setSourceModel ( QAbstractItemModel * sourceModel )
QAbstractItemModel * sourceModel () const
</PROTOS>
<SLOTS>
</SLOTS>
<SIGNALS>
</SIGNALS>