* Commit 2, last follows.

This commit is contained in:
Pritpal Bedi
2009-12-17 11:00:00 +00:00
parent 5ac744025d
commit 2c7865eb4e
211 changed files with 1185 additions and 1185 deletions

View File

@@ -102,7 +102,7 @@ CREATE CLASS QAbstractButton INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QAbstractButton:new( pParent )
::pPtr := Qt_QAbstractButton( pParent )
::pPtr := Qt_QAbstractButton( hbqt_ptr( pParent ) )
RETURN Self
@@ -184,7 +184,7 @@ METHOD QAbstractButton:setIcon( cIcon )
METHOD QAbstractButton:setShortcut( pKey )
RETURN Qt_QAbstractButton_setShortcut( ::pPtr, pKey )
RETURN Qt_QAbstractButton_setShortcut( ::pPtr, hbqt_ptr( pKey ) )
METHOD QAbstractButton:setText( cText )
@@ -212,7 +212,7 @@ METHOD QAbstractButton:setChecked( lBool )
METHOD QAbstractButton:setIconSize( pSize )
RETURN Qt_QAbstractButton_setIconSize( ::pPtr, pSize )
RETURN Qt_QAbstractButton_setIconSize( ::pPtr, hbqt_ptr( pSize ) )
METHOD QAbstractButton:toggle()

View File

@@ -83,7 +83,7 @@ CREATE CLASS QAbstractItemDelegate INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QAbstractItemDelegate:new( pParent )
::pPtr := Qt_QAbstractItemDelegate( pParent )
::pPtr := Qt_QAbstractItemDelegate( hbqt_ptr( pParent ) )
RETURN Self
@@ -97,29 +97,29 @@ METHOD QAbstractItemDelegate:configure( xObject )
METHOD QAbstractItemDelegate:createEditor( pParent, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_createEditor( ::pPtr, pParent, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_createEditor( ::pPtr, hbqt_ptr( pParent ), hbqt_ptr( pOption ), hbqt_ptr( pIndex ) )
METHOD QAbstractItemDelegate:editorEvent( pEvent, pModel, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_editorEvent( ::pPtr, pEvent, pModel, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_editorEvent( ::pPtr, hbqt_ptr( pEvent ), hbqt_ptr( pModel ), hbqt_ptr( pOption ), hbqt_ptr( pIndex ) )
METHOD QAbstractItemDelegate:paint( pPainter, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_paint( ::pPtr, pPainter, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_paint( ::pPtr, hbqt_ptr( pPainter ), hbqt_ptr( pOption ), hbqt_ptr( pIndex ) )
METHOD QAbstractItemDelegate:setEditorData( pEditor, pIndex )
RETURN Qt_QAbstractItemDelegate_setEditorData( ::pPtr, pEditor, pIndex )
RETURN Qt_QAbstractItemDelegate_setEditorData( ::pPtr, hbqt_ptr( pEditor ), hbqt_ptr( pIndex ) )
METHOD QAbstractItemDelegate:setModelData( pEditor, pModel, pIndex )
RETURN Qt_QAbstractItemDelegate_setModelData( ::pPtr, pEditor, pModel, pIndex )
RETURN Qt_QAbstractItemDelegate_setModelData( ::pPtr, hbqt_ptr( pEditor ), hbqt_ptr( pModel ), hbqt_ptr( pIndex ) )
METHOD QAbstractItemDelegate:sizeHint( pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_sizeHint( ::pPtr, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_sizeHint( ::pPtr, hbqt_ptr( pOption ), hbqt_ptr( pIndex ) )
METHOD QAbstractItemDelegate:updateEditorGeometry( pEditor, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_updateEditorGeometry( ::pPtr, pEditor, pOption, pIndex )
RETURN Qt_QAbstractItemDelegate_updateEditorGeometry( ::pPtr, hbqt_ptr( pEditor ), hbqt_ptr( pOption ), hbqt_ptr( pIndex ) )

View File

@@ -139,7 +139,7 @@ CREATE CLASS QAbstractItemView INHERIT QAbstractScrollArea
/*----------------------------------------------------------------------*/
METHOD QAbstractItemView:new( pParent )
::pPtr := Qt_QAbstractItemView( pParent )
::pPtr := Qt_QAbstractItemView( hbqt_ptr( pParent ) )
RETURN Self
@@ -161,7 +161,7 @@ METHOD QAbstractItemView:autoScrollMargin()
METHOD QAbstractItemView:closePersistentEditor( pIndex )
RETURN Qt_QAbstractItemView_closePersistentEditor( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_closePersistentEditor( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:currentIndex()
@@ -197,11 +197,11 @@ METHOD QAbstractItemView:iconSize()
METHOD QAbstractItemView:indexAt( pPoint )
RETURN Qt_QAbstractItemView_indexAt( ::pPtr, pPoint )
RETURN Qt_QAbstractItemView_indexAt( ::pPtr, hbqt_ptr( pPoint ) )
METHOD QAbstractItemView:indexWidget( pIndex )
RETURN Qt_QAbstractItemView_indexWidget( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_indexWidget( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:itemDelegate()
@@ -209,7 +209,7 @@ METHOD QAbstractItemView:itemDelegate()
METHOD QAbstractItemView:itemDelegate_1( pIndex )
RETURN Qt_QAbstractItemView_itemDelegate_1( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_itemDelegate_1( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:itemDelegateForColumn( nColumn )
@@ -229,7 +229,7 @@ METHOD QAbstractItemView:model()
METHOD QAbstractItemView:openPersistentEditor( pIndex )
RETURN Qt_QAbstractItemView_openPersistentEditor( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_openPersistentEditor( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:rootIndex()
@@ -237,7 +237,7 @@ METHOD QAbstractItemView:rootIndex()
METHOD QAbstractItemView:scrollTo( pIndex, nHint )
RETURN Qt_QAbstractItemView_scrollTo( ::pPtr, pIndex, nHint )
RETURN Qt_QAbstractItemView_scrollTo( ::pPtr, hbqt_ptr( pIndex ), nHint )
METHOD QAbstractItemView:selectionBehavior()
@@ -289,27 +289,27 @@ METHOD QAbstractItemView:setHorizontalScrollMode( nMode )
METHOD QAbstractItemView:setIconSize( pSize )
RETURN Qt_QAbstractItemView_setIconSize( ::pPtr, pSize )
RETURN Qt_QAbstractItemView_setIconSize( ::pPtr, hbqt_ptr( pSize ) )
METHOD QAbstractItemView:setIndexWidget( pIndex, pWidget )
RETURN Qt_QAbstractItemView_setIndexWidget( ::pPtr, pIndex, pWidget )
RETURN Qt_QAbstractItemView_setIndexWidget( ::pPtr, hbqt_ptr( pIndex ), hbqt_ptr( pWidget ) )
METHOD QAbstractItemView:setItemDelegate( pDelegate )
RETURN Qt_QAbstractItemView_setItemDelegate( ::pPtr, pDelegate )
RETURN Qt_QAbstractItemView_setItemDelegate( ::pPtr, hbqt_ptr( pDelegate ) )
METHOD QAbstractItemView:setItemDelegateForColumn( nColumn, pDelegate )
RETURN Qt_QAbstractItemView_setItemDelegateForColumn( ::pPtr, nColumn, pDelegate )
RETURN Qt_QAbstractItemView_setItemDelegateForColumn( ::pPtr, nColumn, hbqt_ptr( pDelegate ) )
METHOD QAbstractItemView:setItemDelegateForRow( nRow, pDelegate )
RETURN Qt_QAbstractItemView_setItemDelegateForRow( ::pPtr, nRow, pDelegate )
RETURN Qt_QAbstractItemView_setItemDelegateForRow( ::pPtr, nRow, hbqt_ptr( pDelegate ) )
METHOD QAbstractItemView:setModel( pModel )
RETURN Qt_QAbstractItemView_setModel( ::pPtr, pModel )
RETURN Qt_QAbstractItemView_setModel( ::pPtr, hbqt_ptr( pModel ) )
METHOD QAbstractItemView:setSelectionBehavior( nBehavior )
@@ -321,7 +321,7 @@ METHOD QAbstractItemView:setSelectionMode( nMode )
METHOD QAbstractItemView:setSelectionModel( pSelectionModel )
RETURN Qt_QAbstractItemView_setSelectionModel( ::pPtr, pSelectionModel )
RETURN Qt_QAbstractItemView_setSelectionModel( ::pPtr, hbqt_ptr( pSelectionModel ) )
METHOD QAbstractItemView:setTabKeyNavigation( lEnable )
@@ -345,7 +345,7 @@ METHOD QAbstractItemView:sizeHintForColumn( nColumn )
METHOD QAbstractItemView:sizeHintForIndex( pIndex )
RETURN Qt_QAbstractItemView_sizeHintForIndex( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_sizeHintForIndex( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:sizeHintForRow( nRow )
@@ -365,7 +365,7 @@ METHOD QAbstractItemView:verticalScrollMode()
METHOD QAbstractItemView:visualRect( pIndex )
RETURN Qt_QAbstractItemView_visualRect( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_visualRect( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:clearSelection()
@@ -373,7 +373,7 @@ METHOD QAbstractItemView:clearSelection()
METHOD QAbstractItemView:edit( pIndex )
RETURN Qt_QAbstractItemView_edit( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_edit( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:reset()
@@ -393,13 +393,13 @@ METHOD QAbstractItemView:selectAll()
METHOD QAbstractItemView:setCurrentIndex( pIndex )
RETURN Qt_QAbstractItemView_setCurrentIndex( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_setCurrentIndex( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:setRootIndex( pIndex )
RETURN Qt_QAbstractItemView_setRootIndex( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_setRootIndex( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QAbstractItemView:update( pIndex )
RETURN Qt_QAbstractItemView_update( ::pPtr, pIndex )
RETURN Qt_QAbstractItemView_update( ::pPtr, hbqt_ptr( pIndex ) )

View File

@@ -86,7 +86,7 @@ CREATE CLASS QAbstractPrintDialog INHERIT QDialog
/*----------------------------------------------------------------------*/
METHOD QAbstractPrintDialog:new( pParent )
::pPtr := Qt_QAbstractPrintDialog( pParent )
::pPtr := Qt_QAbstractPrintDialog( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -82,7 +82,7 @@ CREATE CLASS QAbstractProxyModel INHERIT QAbstractItemModel
/*----------------------------------------------------------------------*/
METHOD QAbstractProxyModel:new( pParent )
::pPtr := Qt_QAbstractProxyModel( pParent )
::pPtr := Qt_QAbstractProxyModel( hbqt_ptr( pParent ) )
RETURN Self
@@ -96,23 +96,23 @@ METHOD QAbstractProxyModel:configure( xObject )
METHOD QAbstractProxyModel:mapFromSource( pSourceIndex )
RETURN Qt_QAbstractProxyModel_mapFromSource( ::pPtr, pSourceIndex )
RETURN Qt_QAbstractProxyModel_mapFromSource( ::pPtr, hbqt_ptr( pSourceIndex ) )
METHOD QAbstractProxyModel:mapSelectionFromSource( pSourceSelection )
RETURN Qt_QAbstractProxyModel_mapSelectionFromSource( ::pPtr, pSourceSelection )
RETURN Qt_QAbstractProxyModel_mapSelectionFromSource( ::pPtr, hbqt_ptr( pSourceSelection ) )
METHOD QAbstractProxyModel:mapSelectionToSource( pProxySelection )
RETURN Qt_QAbstractProxyModel_mapSelectionToSource( ::pPtr, pProxySelection )
RETURN Qt_QAbstractProxyModel_mapSelectionToSource( ::pPtr, hbqt_ptr( pProxySelection ) )
METHOD QAbstractProxyModel:mapToSource( pProxyIndex )
RETURN Qt_QAbstractProxyModel_mapToSource( ::pPtr, pProxyIndex )
RETURN Qt_QAbstractProxyModel_mapToSource( ::pPtr, hbqt_ptr( pProxyIndex ) )
METHOD QAbstractProxyModel:setSourceModel( pSourceModel )
RETURN Qt_QAbstractProxyModel_setSourceModel( ::pPtr, pSourceModel )
RETURN Qt_QAbstractProxyModel_setSourceModel( ::pPtr, hbqt_ptr( pSourceModel ) )
METHOD QAbstractProxyModel:sourceModel()

View File

@@ -90,7 +90,7 @@ CREATE CLASS QAbstractScrollArea INHERIT QFrame
/*----------------------------------------------------------------------*/
METHOD QAbstractScrollArea:new( pParent )
::pPtr := Qt_QAbstractScrollArea( pParent )
::pPtr := Qt_QAbstractScrollArea( hbqt_ptr( pParent ) )
RETURN Self
@@ -104,7 +104,7 @@ METHOD QAbstractScrollArea:configure( xObject )
METHOD QAbstractScrollArea:addScrollBarWidget( pWidget, nAlignment )
RETURN Qt_QAbstractScrollArea_addScrollBarWidget( ::pPtr, pWidget, nAlignment )
RETURN Qt_QAbstractScrollArea_addScrollBarWidget( ::pPtr, hbqt_ptr( pWidget ), nAlignment )
METHOD QAbstractScrollArea:cornerWidget()
@@ -124,11 +124,11 @@ METHOD QAbstractScrollArea:maximumViewportSize()
METHOD QAbstractScrollArea:setCornerWidget( pWidget )
RETURN Qt_QAbstractScrollArea_setCornerWidget( ::pPtr, pWidget )
RETURN Qt_QAbstractScrollArea_setCornerWidget( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QAbstractScrollArea:setHorizontalScrollBar( pScrollBar )
RETURN Qt_QAbstractScrollArea_setHorizontalScrollBar( ::pPtr, pScrollBar )
RETURN Qt_QAbstractScrollArea_setHorizontalScrollBar( ::pPtr, hbqt_ptr( pScrollBar ) )
METHOD QAbstractScrollArea:setHorizontalScrollBarPolicy( nQt_ScrollBarPolicy )
@@ -136,7 +136,7 @@ METHOD QAbstractScrollArea:setHorizontalScrollBarPolicy( nQt_ScrollBarPolicy )
METHOD QAbstractScrollArea:setVerticalScrollBar( pScrollBar )
RETURN Qt_QAbstractScrollArea_setVerticalScrollBar( ::pPtr, pScrollBar )
RETURN Qt_QAbstractScrollArea_setVerticalScrollBar( ::pPtr, hbqt_ptr( pScrollBar ) )
METHOD QAbstractScrollArea:setVerticalScrollBarPolicy( nQt_ScrollBarPolicy )
@@ -144,7 +144,7 @@ METHOD QAbstractScrollArea:setVerticalScrollBarPolicy( nQt_ScrollBarPolicy )
METHOD QAbstractScrollArea:setViewport( pWidget )
RETURN Qt_QAbstractScrollArea_setViewport( ::pPtr, pWidget )
RETURN Qt_QAbstractScrollArea_setViewport( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QAbstractScrollArea:verticalScrollBar()

View File

@@ -100,7 +100,7 @@ CREATE CLASS QAbstractSlider INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QAbstractSlider:new( pParent )
::pPtr := Qt_QAbstractSlider( pParent )
::pPtr := Qt_QAbstractSlider( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -102,7 +102,7 @@ CREATE CLASS QAbstractSpinBox INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QAbstractSpinBox:new( pParent )
::pPtr := Qt_QAbstractSpinBox( pParent )
::pPtr := Qt_QAbstractSpinBox( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -87,7 +87,7 @@ CREATE CLASS QAbstractTextDocumentLayout INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QAbstractTextDocumentLayout:new( pParent )
::pPtr := Qt_QAbstractTextDocumentLayout( pParent )
::pPtr := Qt_QAbstractTextDocumentLayout( hbqt_ptr( pParent ) )
RETURN Self
@@ -101,11 +101,11 @@ METHOD QAbstractTextDocumentLayout:configure( xObject )
METHOD QAbstractTextDocumentLayout:anchorAt( pPosition )
RETURN Qt_QAbstractTextDocumentLayout_anchorAt( ::pPtr, pPosition )
RETURN Qt_QAbstractTextDocumentLayout_anchorAt( ::pPtr, hbqt_ptr( pPosition ) )
METHOD QAbstractTextDocumentLayout:blockBoundingRect( pBlock )
RETURN Qt_QAbstractTextDocumentLayout_blockBoundingRect( ::pPtr, pBlock )
RETURN Qt_QAbstractTextDocumentLayout_blockBoundingRect( ::pPtr, hbqt_ptr( pBlock ) )
METHOD QAbstractTextDocumentLayout:document()
@@ -117,7 +117,7 @@ METHOD QAbstractTextDocumentLayout:documentSize()
METHOD QAbstractTextDocumentLayout:frameBoundingRect( pFrame )
RETURN Qt_QAbstractTextDocumentLayout_frameBoundingRect( ::pPtr, pFrame )
RETURN Qt_QAbstractTextDocumentLayout_frameBoundingRect( ::pPtr, hbqt_ptr( pFrame ) )
METHOD QAbstractTextDocumentLayout:handlerForObject( nObjectType )
@@ -125,7 +125,7 @@ METHOD QAbstractTextDocumentLayout:handlerForObject( nObjectType )
METHOD QAbstractTextDocumentLayout:hitTest( pPoint, nAccuracy )
RETURN Qt_QAbstractTextDocumentLayout_hitTest( ::pPtr, pPoint, nAccuracy )
RETURN Qt_QAbstractTextDocumentLayout_hitTest( ::pPtr, hbqt_ptr( pPoint ), nAccuracy )
METHOD QAbstractTextDocumentLayout:pageCount()
@@ -137,9 +137,9 @@ METHOD QAbstractTextDocumentLayout:paintDevice()
METHOD QAbstractTextDocumentLayout:registerHandler( nObjectType, pComponent )
RETURN Qt_QAbstractTextDocumentLayout_registerHandler( ::pPtr, nObjectType, pComponent )
RETURN Qt_QAbstractTextDocumentLayout_registerHandler( ::pPtr, nObjectType, hbqt_ptr( pComponent ) )
METHOD QAbstractTextDocumentLayout:setPaintDevice( pDevice )
RETURN Qt_QAbstractTextDocumentLayout_setPaintDevice( ::pPtr, pDevice )
RETURN Qt_QAbstractTextDocumentLayout_setPaintDevice( ::pPtr, hbqt_ptr( pDevice ) )

View File

@@ -124,7 +124,7 @@ CREATE CLASS QAction INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QAction:new( pParent )
::pPtr := Qt_QAction( pParent )
::pPtr := Qt_QAction( hbqt_ptr( pParent ) )
RETURN Self
@@ -202,7 +202,7 @@ METHOD QAction:parentWidget()
METHOD QAction:setActionGroup( pGroup )
RETURN Qt_QAction_setActionGroup( ::pPtr, pGroup )
RETURN Qt_QAction_setActionGroup( ::pPtr, hbqt_ptr( pGroup ) )
METHOD QAction:setAutoRepeat( lBool )
@@ -214,11 +214,11 @@ METHOD QAction:setCheckable( lBool )
METHOD QAction:setData( pUserData )
RETURN Qt_QAction_setData( ::pPtr, pUserData )
RETURN Qt_QAction_setData( ::pPtr, hbqt_ptr( pUserData ) )
METHOD QAction:setFont( pFont )
RETURN Qt_QAction_setFont( ::pPtr, pFont )
RETURN Qt_QAction_setFont( ::pPtr, hbqt_ptr( pFont ) )
METHOD QAction:setIcon( cIcon )
@@ -234,7 +234,7 @@ METHOD QAction:setIconVisibleInMenu( lVisible )
METHOD QAction:setMenu( pMenu )
RETURN Qt_QAction_setMenu( ::pPtr, pMenu )
RETURN Qt_QAction_setMenu( ::pPtr, hbqt_ptr( pMenu ) )
METHOD QAction:setMenuRole( nMenuRole )
@@ -246,7 +246,7 @@ METHOD QAction:setSeparator( lB )
METHOD QAction:setShortcut( pShortcut )
RETURN Qt_QAction_setShortcut( ::pPtr, pShortcut )
RETURN Qt_QAction_setShortcut( ::pPtr, hbqt_ptr( pShortcut ) )
METHOD QAction:setShortcutContext( nContext )
@@ -282,7 +282,7 @@ METHOD QAction:shortcutContext()
METHOD QAction:showStatusText( pWidget )
RETURN Qt_QAction_showStatusText( ::pPtr, pWidget )
RETURN Qt_QAction_showStatusText( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QAction:statusTip()

View File

@@ -88,7 +88,7 @@ CREATE CLASS QActionGroup INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QActionGroup:new( pParent )
::pPtr := Qt_QActionGroup( pParent )
::pPtr := Qt_QActionGroup( hbqt_ptr( pParent ) )
RETURN Self
@@ -102,7 +102,7 @@ METHOD QActionGroup:configure( xObject )
METHOD QActionGroup:addAction( pAction )
RETURN Qt_QActionGroup_addAction( ::pPtr, pAction )
RETURN Qt_QActionGroup_addAction( ::pPtr, hbqt_ptr( pAction ) )
METHOD QActionGroup:addAction_1( cText )
@@ -130,7 +130,7 @@ METHOD QActionGroup:isVisible()
METHOD QActionGroup:removeAction( pAction )
RETURN Qt_QActionGroup_removeAction( ::pPtr, pAction )
RETURN Qt_QActionGroup_removeAction( ::pPtr, hbqt_ptr( pAction ) )
METHOD QActionGroup:setDisabled( lB )

View File

@@ -152,7 +152,7 @@ CREATE CLASS QApplication INHERIT QCoreApplication
/*----------------------------------------------------------------------*/
METHOD QApplication:new( pParent )
::pPtr := Qt_QApplication( pParent )
::pPtr := Qt_QApplication( hbqt_ptr( pParent ) )
RETURN Self
@@ -166,7 +166,7 @@ METHOD QApplication:configure( xObject )
METHOD QApplication:commitData( pManager )
RETURN Qt_QApplication_commitData( ::pPtr, pManager )
RETURN Qt_QApplication_commitData( ::pPtr, hbqt_ptr( pManager ) )
METHOD QApplication:inputContext()
@@ -178,7 +178,7 @@ METHOD QApplication:isSessionRestored()
METHOD QApplication:saveState( pManager )
RETURN Qt_QApplication_saveState( ::pPtr, pManager )
RETURN Qt_QApplication_saveState( ::pPtr, hbqt_ptr( pManager ) )
METHOD QApplication:sessionId()
@@ -190,7 +190,7 @@ METHOD QApplication:sessionKey()
METHOD QApplication:setInputContext( pInputContext )
RETURN Qt_QApplication_setInputContext( ::pPtr, pInputContext )
RETURN Qt_QApplication_setInputContext( ::pPtr, hbqt_ptr( pInputContext ) )
METHOD QApplication:styleSheet()
@@ -210,7 +210,7 @@ METHOD QApplication:activeWindow()
METHOD QApplication:alert( pWidget, nMsec )
RETURN Qt_QApplication_alert( ::pPtr, pWidget, nMsec )
RETURN Qt_QApplication_alert( ::pPtr, hbqt_ptr( pWidget ), nMsec )
METHOD QApplication:beep()
@@ -218,7 +218,7 @@ METHOD QApplication:beep()
METHOD QApplication:changeOverrideCursor( pCursor )
RETURN Qt_QApplication_changeOverrideCursor( ::pPtr, pCursor )
RETURN Qt_QApplication_changeOverrideCursor( ::pPtr, hbqt_ptr( pCursor ) )
METHOD QApplication:clipboard()
@@ -258,11 +258,11 @@ METHOD QApplication:font()
METHOD QApplication:font_1( pWidget )
RETURN Qt_QApplication_font_1( ::pPtr, pWidget )
RETURN Qt_QApplication_font_1( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QApplication:font_2( pClassName )
RETURN Qt_QApplication_font_2( ::pPtr, pClassName )
RETURN Qt_QApplication_font_2( ::pPtr, hbqt_ptr( pClassName ) )
METHOD QApplication:fontMetrics()
@@ -318,11 +318,11 @@ METHOD QApplication:palette()
METHOD QApplication:palette_1( pWidget )
RETURN Qt_QApplication_palette_1( ::pPtr, pWidget )
RETURN Qt_QApplication_palette_1( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QApplication:palette_2( pClassName )
RETURN Qt_QApplication_palette_2( ::pPtr, pClassName )
RETURN Qt_QApplication_palette_2( ::pPtr, hbqt_ptr( pClassName ) )
METHOD QApplication:quitOnLastWindowClosed()
@@ -334,7 +334,7 @@ METHOD QApplication:restoreOverrideCursor()
METHOD QApplication:setActiveWindow( pActive )
RETURN Qt_QApplication_setActiveWindow( ::pPtr, pActive )
RETURN Qt_QApplication_setActiveWindow( ::pPtr, hbqt_ptr( pActive ) )
METHOD QApplication:setColorSpec( nSpec )
@@ -358,11 +358,11 @@ METHOD QApplication:setEffectEnabled( nEffect, lEnable )
METHOD QApplication:setFont( pFont, pClassName )
RETURN Qt_QApplication_setFont( ::pPtr, pFont, pClassName )
RETURN Qt_QApplication_setFont( ::pPtr, hbqt_ptr( pFont ), hbqt_ptr( pClassName ) )
METHOD QApplication:setGlobalStrut( pQSize )
RETURN Qt_QApplication_setGlobalStrut( ::pPtr, pQSize )
RETURN Qt_QApplication_setGlobalStrut( ::pPtr, hbqt_ptr( pQSize ) )
METHOD QApplication:setGraphicsSystem( cSystem )
@@ -378,11 +378,11 @@ METHOD QApplication:setLayoutDirection( nDirection )
METHOD QApplication:setOverrideCursor( pCursor )
RETURN Qt_QApplication_setOverrideCursor( ::pPtr, pCursor )
RETURN Qt_QApplication_setOverrideCursor( ::pPtr, hbqt_ptr( pCursor ) )
METHOD QApplication:setPalette( pPalette, pClassName )
RETURN Qt_QApplication_setPalette( ::pPtr, pPalette, pClassName )
RETURN Qt_QApplication_setPalette( ::pPtr, hbqt_ptr( pPalette ), hbqt_ptr( pClassName ) )
METHOD QApplication:setQuitOnLastWindowClosed( lQuit )
@@ -398,7 +398,7 @@ METHOD QApplication:setStartDragTime( nMs )
METHOD QApplication:setStyle( pStyle )
RETURN Qt_QApplication_setStyle( ::pPtr, pStyle )
RETURN Qt_QApplication_setStyle( ::pPtr, hbqt_ptr( pStyle ) )
METHOD QApplication:setStyle_1( cStyle )
@@ -430,7 +430,7 @@ METHOD QApplication:syncX()
METHOD QApplication:topLevelAt( pPoint )
RETURN Qt_QApplication_topLevelAt( ::pPtr, pPoint )
RETURN Qt_QApplication_topLevelAt( ::pPtr, hbqt_ptr( pPoint ) )
METHOD QApplication:topLevelAt_1( nX, nY )
@@ -446,7 +446,7 @@ METHOD QApplication:wheelScrollLines()
METHOD QApplication:widgetAt( pPoint )
RETURN Qt_QApplication_widgetAt( ::pPtr, pPoint )
RETURN Qt_QApplication_widgetAt( ::pPtr, hbqt_ptr( pPoint ) )
METHOD QApplication:widgetAt_1( nX, nY )

View File

@@ -79,7 +79,7 @@ CREATE CLASS QBitmap INHERIT QPixmap
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QBitmap
METHOD QBitmap:new( ... )
::pPtr := Qt_QBitmap( ... )
@@ -100,13 +100,13 @@ METHOD QBitmap:clear()
METHOD QBitmap:transformed( pMatrix )
RETURN Qt_QBitmap_transformed( ::pPtr, pMatrix )
RETURN Qt_QBitmap_transformed( ::pPtr, hbqt_ptr( pMatrix ) )
METHOD QBitmap:transformed_1( pMatrix )
RETURN Qt_QBitmap_transformed_1( ::pPtr, pMatrix )
RETURN Qt_QBitmap_transformed_1( ::pPtr, hbqt_ptr( pMatrix ) )
METHOD QBitmap:fromImage( pImage, nFlags )
RETURN Qt_QBitmap_fromImage( ::pPtr, pImage, nFlags )
RETURN Qt_QBitmap_fromImage( ::pPtr, hbqt_ptr( pImage ), nFlags )

View File

@@ -96,7 +96,7 @@ CREATE CLASS QBoxLayout INHERIT QLayout
/*----------------------------------------------------------------------*/
METHOD QBoxLayout:new( pParent )
::pPtr := Qt_QBoxLayout( pParent )
::pPtr := Qt_QBoxLayout( hbqt_ptr( pParent ) )
RETURN Self
@@ -110,11 +110,11 @@ METHOD QBoxLayout:configure( xObject )
METHOD QBoxLayout:addLayout( pLayout, nStretch )
RETURN Qt_QBoxLayout_addLayout( ::pPtr, pLayout, nStretch )
RETURN Qt_QBoxLayout_addLayout( ::pPtr, hbqt_ptr( pLayout ), nStretch )
METHOD QBoxLayout:addSpacerItem( pSpacerItem )
RETURN Qt_QBoxLayout_addSpacerItem( ::pPtr, pSpacerItem )
RETURN Qt_QBoxLayout_addSpacerItem( ::pPtr, hbqt_ptr( pSpacerItem ) )
METHOD QBoxLayout:addSpacing( nSize )
@@ -130,7 +130,7 @@ METHOD QBoxLayout:addStrut( nSize )
METHOD QBoxLayout:addWidget( pWidget, nStretch, nAlignment )
RETURN Qt_QBoxLayout_addWidget( ::pPtr, pWidget, nStretch, nAlignment )
RETURN Qt_QBoxLayout_addWidget( ::pPtr, hbqt_ptr( pWidget ), nStretch, nAlignment )
METHOD QBoxLayout:direction()
@@ -138,11 +138,11 @@ METHOD QBoxLayout:direction()
METHOD QBoxLayout:insertLayout( nIndex, pLayout, nStretch )
RETURN Qt_QBoxLayout_insertLayout( ::pPtr, nIndex, pLayout, nStretch )
RETURN Qt_QBoxLayout_insertLayout( ::pPtr, nIndex, hbqt_ptr( pLayout ), nStretch )
METHOD QBoxLayout:insertSpacerItem( nIndex, pSpacerItem )
RETURN Qt_QBoxLayout_insertSpacerItem( ::pPtr, nIndex, pSpacerItem )
RETURN Qt_QBoxLayout_insertSpacerItem( ::pPtr, nIndex, hbqt_ptr( pSpacerItem ) )
METHOD QBoxLayout:insertSpacing( nIndex, nSize )
@@ -154,7 +154,7 @@ METHOD QBoxLayout:insertStretch( nIndex, nStretch )
METHOD QBoxLayout:insertWidget( nIndex, pWidget, nStretch, nAlignment )
RETURN Qt_QBoxLayout_insertWidget( ::pPtr, nIndex, pWidget, nStretch, nAlignment )
RETURN Qt_QBoxLayout_insertWidget( ::pPtr, nIndex, hbqt_ptr( pWidget ), nStretch, nAlignment )
METHOD QBoxLayout:invalidate()
@@ -174,11 +174,11 @@ METHOD QBoxLayout:setStretch( nIndex, nStretch )
METHOD QBoxLayout:setStretchFactor( pWidget, nStretch )
RETURN Qt_QBoxLayout_setStretchFactor( ::pPtr, pWidget, nStretch )
RETURN Qt_QBoxLayout_setStretchFactor( ::pPtr, hbqt_ptr( pWidget ), nStretch )
METHOD QBoxLayout:setStretchFactor_1( pLayout, nStretch )
RETURN Qt_QBoxLayout_setStretchFactor_1( ::pPtr, pLayout, nStretch )
RETURN Qt_QBoxLayout_setStretchFactor_1( ::pPtr, hbqt_ptr( pLayout ), nStretch )
METHOD QBoxLayout:spacing()

View File

@@ -89,7 +89,7 @@ CREATE CLASS QBrush
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QBrush
METHOD QBrush:new( ... )
::pPtr := Qt_QBrush( ... )
@@ -118,7 +118,7 @@ METHOD QBrush:matrix()
METHOD QBrush:setColor( pColor )
RETURN Qt_QBrush_setColor( ::pPtr, pColor )
RETURN Qt_QBrush_setColor( ::pPtr, hbqt_ptr( pColor ) )
METHOD QBrush:setColor_1( nColor )
@@ -126,7 +126,7 @@ METHOD QBrush:setColor_1( nColor )
METHOD QBrush:setMatrix( pMatrix )
RETURN Qt_QBrush_setMatrix( ::pPtr, pMatrix )
RETURN Qt_QBrush_setMatrix( ::pPtr, hbqt_ptr( pMatrix ) )
METHOD QBrush:setStyle( nStyle )
@@ -134,15 +134,15 @@ METHOD QBrush:setStyle( nStyle )
METHOD QBrush:setTexture( pPixmap )
RETURN Qt_QBrush_setTexture( ::pPtr, pPixmap )
RETURN Qt_QBrush_setTexture( ::pPtr, hbqt_ptr( pPixmap ) )
METHOD QBrush:setTextureImage( pImage )
RETURN Qt_QBrush_setTextureImage( ::pPtr, pImage )
RETURN Qt_QBrush_setTextureImage( ::pPtr, hbqt_ptr( pImage ) )
METHOD QBrush:setTransform( pMatrix )
RETURN Qt_QBrush_setTransform( ::pPtr, pMatrix )
RETURN Qt_QBrush_setTransform( ::pPtr, hbqt_ptr( pMatrix ) )
METHOD QBrush:style()

View File

@@ -86,7 +86,7 @@ CREATE CLASS QButtonGroup INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QButtonGroup:new( pParent )
::pPtr := Qt_QButtonGroup( pParent )
::pPtr := Qt_QButtonGroup( hbqt_ptr( pParent ) )
RETURN Self
@@ -100,11 +100,11 @@ METHOD QButtonGroup:configure( xObject )
METHOD QButtonGroup:addButton( pButton )
RETURN Qt_QButtonGroup_addButton( ::pPtr, pButton )
RETURN Qt_QButtonGroup_addButton( ::pPtr, hbqt_ptr( pButton ) )
METHOD QButtonGroup:addButton_1( pButton, nId )
RETURN Qt_QButtonGroup_addButton_1( ::pPtr, pButton, nId )
RETURN Qt_QButtonGroup_addButton_1( ::pPtr, hbqt_ptr( pButton ), nId )
METHOD QButtonGroup:button( nId )
@@ -124,11 +124,11 @@ METHOD QButtonGroup:exclusive()
METHOD QButtonGroup:id( pButton )
RETURN Qt_QButtonGroup_id( ::pPtr, pButton )
RETURN Qt_QButtonGroup_id( ::pPtr, hbqt_ptr( pButton ) )
METHOD QButtonGroup:removeButton( pButton )
RETURN Qt_QButtonGroup_removeButton( ::pPtr, pButton )
RETURN Qt_QButtonGroup_removeButton( ::pPtr, hbqt_ptr( pButton ) )
METHOD QButtonGroup:setExclusive( lBool )
@@ -136,5 +136,5 @@ METHOD QButtonGroup:setExclusive( lBool )
METHOD QButtonGroup:setId( pButton, nId )
RETURN Qt_QButtonGroup_setId( ::pPtr, pButton, nId )
RETURN Qt_QButtonGroup_setId( ::pPtr, hbqt_ptr( pButton ), nId )

View File

@@ -114,7 +114,7 @@ CREATE CLASS QCalendarWidget INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QCalendarWidget:new( pParent )
::pPtr := Qt_QCalendarWidget( pParent )
::pPtr := Qt_QCalendarWidget( hbqt_ptr( pParent ) )
RETURN Self
@@ -132,7 +132,7 @@ METHOD QCalendarWidget:dateEditAcceptDelay()
METHOD QCalendarWidget:dateTextFormat( pDate )
RETURN Qt_QCalendarWidget_dateTextFormat( ::pPtr, pDate )
RETURN Qt_QCalendarWidget_dateTextFormat( ::pPtr, hbqt_ptr( pDate ) )
METHOD QCalendarWidget:firstDayOfWeek()
@@ -188,7 +188,7 @@ METHOD QCalendarWidget:setDateEditEnabled( lEnable )
METHOD QCalendarWidget:setDateTextFormat( pDate, pFormat )
RETURN Qt_QCalendarWidget_setDateTextFormat( ::pPtr, pDate, pFormat )
RETURN Qt_QCalendarWidget_setDateTextFormat( ::pPtr, hbqt_ptr( pDate ), hbqt_ptr( pFormat ) )
METHOD QCalendarWidget:setFirstDayOfWeek( nDayOfWeek )
@@ -196,7 +196,7 @@ METHOD QCalendarWidget:setFirstDayOfWeek( nDayOfWeek )
METHOD QCalendarWidget:setHeaderTextFormat( pFormat )
RETURN Qt_QCalendarWidget_setHeaderTextFormat( ::pPtr, pFormat )
RETURN Qt_QCalendarWidget_setHeaderTextFormat( ::pPtr, hbqt_ptr( pFormat ) )
METHOD QCalendarWidget:setHorizontalHeaderFormat( nFormat )
@@ -204,11 +204,11 @@ METHOD QCalendarWidget:setHorizontalHeaderFormat( nFormat )
METHOD QCalendarWidget:setMaximumDate( pDate )
RETURN Qt_QCalendarWidget_setMaximumDate( ::pPtr, pDate )
RETURN Qt_QCalendarWidget_setMaximumDate( ::pPtr, hbqt_ptr( pDate ) )
METHOD QCalendarWidget:setMinimumDate( pDate )
RETURN Qt_QCalendarWidget_setMinimumDate( ::pPtr, pDate )
RETURN Qt_QCalendarWidget_setMinimumDate( ::pPtr, hbqt_ptr( pDate ) )
METHOD QCalendarWidget:setSelectionMode( nMode )
@@ -220,7 +220,7 @@ METHOD QCalendarWidget:setVerticalHeaderFormat( nFormat )
METHOD QCalendarWidget:setWeekdayTextFormat( nDayOfWeek, pFormat )
RETURN Qt_QCalendarWidget_setWeekdayTextFormat( ::pPtr, nDayOfWeek, pFormat )
RETURN Qt_QCalendarWidget_setWeekdayTextFormat( ::pPtr, nDayOfWeek, hbqt_ptr( pFormat ) )
METHOD QCalendarWidget:verticalHeaderFormat()
@@ -240,7 +240,7 @@ METHOD QCalendarWidget:setCurrentPage( nYear, nMonth )
METHOD QCalendarWidget:setDateRange( pMin, pMax )
RETURN Qt_QCalendarWidget_setDateRange( ::pPtr, pMin, pMax )
RETURN Qt_QCalendarWidget_setDateRange( ::pPtr, hbqt_ptr( pMin ), hbqt_ptr( pMax ) )
METHOD QCalendarWidget:setGridVisible( lShow )
@@ -252,7 +252,7 @@ METHOD QCalendarWidget:setNavigationBarVisible( lVisible )
METHOD QCalendarWidget:setSelectedDate( pDate )
RETURN Qt_QCalendarWidget_setSelectedDate( ::pPtr, pDate )
RETURN Qt_QCalendarWidget_setSelectedDate( ::pPtr, hbqt_ptr( pDate ) )
METHOD QCalendarWidget:showNextMonth()

View File

@@ -80,7 +80,7 @@ CREATE CLASS QCheckBox INHERIT QAbstractButton
/*----------------------------------------------------------------------*/
METHOD QCheckBox:new( pParent )
::pPtr := Qt_QCheckBox( pParent )
::pPtr := Qt_QCheckBox( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -90,7 +90,7 @@ CREATE CLASS QClipboard INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QClipboard:new( pParent )
::pPtr := Qt_QClipboard( pParent )
::pPtr := Qt_QClipboard( hbqt_ptr( pParent ) )
RETURN Self
@@ -132,15 +132,15 @@ METHOD QClipboard:pixmap( nMode )
METHOD QClipboard:setImage( pImage, nMode )
RETURN Qt_QClipboard_setImage( ::pPtr, pImage, nMode )
RETURN Qt_QClipboard_setImage( ::pPtr, hbqt_ptr( pImage ), nMode )
METHOD QClipboard:setMimeData( pSrc, nMode )
RETURN Qt_QClipboard_setMimeData( ::pPtr, pSrc, nMode )
RETURN Qt_QClipboard_setMimeData( ::pPtr, hbqt_ptr( pSrc ), nMode )
METHOD QClipboard:setPixmap( pPixmap, nMode )
RETURN Qt_QClipboard_setPixmap( ::pPtr, pPixmap, nMode )
RETURN Qt_QClipboard_setPixmap( ::pPtr, hbqt_ptr( pPixmap ), nMode )
METHOD QClipboard:setText( cText, nMode )

View File

@@ -140,7 +140,7 @@ CREATE CLASS QColor
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QColor
METHOD QColor:new( ... )
::pPtr := Qt_QColor( ... )

View File

@@ -91,7 +91,7 @@ CREATE CLASS QColorDialog INHERIT QDialog
/*----------------------------------------------------------------------*/
METHOD QColorDialog:new( pParent )
::pPtr := Qt_QColorDialog( pParent )
::pPtr := Qt_QColorDialog( hbqt_ptr( pParent ) )
RETURN Self
@@ -121,7 +121,7 @@ METHOD QColorDialog:selectedColor()
METHOD QColorDialog:setCurrentColor( pColor )
RETURN Qt_QColorDialog_setCurrentColor( ::pPtr, pColor )
RETURN Qt_QColorDialog_setCurrentColor( ::pPtr, hbqt_ptr( pColor ) )
METHOD QColorDialog:setOption( nOption, lOn )
@@ -149,11 +149,11 @@ METHOD QColorDialog:customCount()
METHOD QColorDialog:getColor( pInitial, pParent, cTitle, nOptions )
RETURN Qt_QColorDialog_getColor( ::pPtr, pInitial, pParent, cTitle, nOptions )
RETURN Qt_QColorDialog_getColor( ::pPtr, hbqt_ptr( pInitial ), hbqt_ptr( pParent ), cTitle, nOptions )
METHOD QColorDialog:getColor_1( pInitial, pParent )
RETURN Qt_QColorDialog_getColor_1( ::pPtr, pInitial, pParent )
RETURN Qt_QColorDialog_getColor_1( ::pPtr, hbqt_ptr( pInitial ), hbqt_ptr( pParent ) )
METHOD QColorDialog:setCustomColor( nIndex, nColor )

View File

@@ -135,7 +135,7 @@ CREATE CLASS QComboBox INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QComboBox:new( pParent )
::pPtr := Qt_QComboBox( pParent )
::pPtr := Qt_QComboBox( hbqt_ptr( pParent ) )
RETURN Self
@@ -149,15 +149,15 @@ METHOD QComboBox:configure( xObject )
METHOD QComboBox:addItem( cText, pUserData )
RETURN Qt_QComboBox_addItem( ::pPtr, cText, pUserData )
RETURN Qt_QComboBox_addItem( ::pPtr, cText, hbqt_ptr( pUserData ) )
METHOD QComboBox:addItem_1( cIcon, cText, pUserData )
RETURN Qt_QComboBox_addItem_1( ::pPtr, cIcon, cText, pUserData )
RETURN Qt_QComboBox_addItem_1( ::pPtr, cIcon, cText, hbqt_ptr( pUserData ) )
METHOD QComboBox:addItems( pTexts )
RETURN Qt_QComboBox_addItems( ::pPtr, pTexts )
RETURN Qt_QComboBox_addItems( ::pPtr, hbqt_ptr( pTexts ) )
METHOD QComboBox:completer()
@@ -181,7 +181,7 @@ METHOD QComboBox:duplicatesEnabled()
METHOD QComboBox:findData( pData, nRole, nFlags )
RETURN Qt_QComboBox_findData( ::pPtr, pData, nRole, nFlags )
RETURN Qt_QComboBox_findData( ::pPtr, hbqt_ptr( pData ), nRole, nFlags )
METHOD QComboBox:findText( cText, nFlags )
@@ -201,15 +201,15 @@ METHOD QComboBox:iconSize()
METHOD QComboBox:insertItem( nIndex, cText, pUserData )
RETURN Qt_QComboBox_insertItem( ::pPtr, nIndex, cText, pUserData )
RETURN Qt_QComboBox_insertItem( ::pPtr, nIndex, cText, hbqt_ptr( pUserData ) )
METHOD QComboBox:insertItem_1( nIndex, cIcon, cText, pUserData )
RETURN Qt_QComboBox_insertItem_1( ::pPtr, nIndex, cIcon, cText, pUserData )
RETURN Qt_QComboBox_insertItem_1( ::pPtr, nIndex, cIcon, cText, hbqt_ptr( pUserData ) )
METHOD QComboBox:insertItems( nIndex, pList )
RETURN Qt_QComboBox_insertItems( ::pPtr, nIndex, pList )
RETURN Qt_QComboBox_insertItems( ::pPtr, nIndex, hbqt_ptr( pList ) )
METHOD QComboBox:insertPolicy()
@@ -273,7 +273,7 @@ METHOD QComboBox:rootModelIndex()
METHOD QComboBox:setCompleter( pCompleter )
RETURN Qt_QComboBox_setCompleter( ::pPtr, pCompleter )
RETURN Qt_QComboBox_setCompleter( ::pPtr, hbqt_ptr( pCompleter ) )
METHOD QComboBox:setDuplicatesEnabled( lEnable )
@@ -289,7 +289,7 @@ METHOD QComboBox:setFrame( lBool )
METHOD QComboBox:setIconSize( pSize )
RETURN Qt_QComboBox_setIconSize( ::pPtr, pSize )
RETURN Qt_QComboBox_setIconSize( ::pPtr, hbqt_ptr( pSize ) )
METHOD QComboBox:setInsertPolicy( nPolicy )
@@ -297,11 +297,11 @@ METHOD QComboBox:setInsertPolicy( nPolicy )
METHOD QComboBox:setItemData( nIndex, pValue, nRole )
RETURN Qt_QComboBox_setItemData( ::pPtr, nIndex, pValue, nRole )
RETURN Qt_QComboBox_setItemData( ::pPtr, nIndex, hbqt_ptr( pValue ), nRole )
METHOD QComboBox:setItemDelegate( pDelegate )
RETURN Qt_QComboBox_setItemDelegate( ::pPtr, pDelegate )
RETURN Qt_QComboBox_setItemDelegate( ::pPtr, hbqt_ptr( pDelegate ) )
METHOD QComboBox:setItemIcon( nIndex, cIcon )
@@ -313,7 +313,7 @@ METHOD QComboBox:setItemText( nIndex, cText )
METHOD QComboBox:setLineEdit( pEdit )
RETURN Qt_QComboBox_setLineEdit( ::pPtr, pEdit )
RETURN Qt_QComboBox_setLineEdit( ::pPtr, hbqt_ptr( pEdit ) )
METHOD QComboBox:setMaxCount( nMax )
@@ -329,7 +329,7 @@ METHOD QComboBox:setMinimumContentsLength( nCharacters )
METHOD QComboBox:setModel( pModel )
RETURN Qt_QComboBox_setModel( ::pPtr, pModel )
RETURN Qt_QComboBox_setModel( ::pPtr, hbqt_ptr( pModel ) )
METHOD QComboBox:setModelColumn( nVisibleColumn )
@@ -337,7 +337,7 @@ METHOD QComboBox:setModelColumn( nVisibleColumn )
METHOD QComboBox:setRootModelIndex( pIndex )
RETURN Qt_QComboBox_setRootModelIndex( ::pPtr, pIndex )
RETURN Qt_QComboBox_setRootModelIndex( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QComboBox:setSizeAdjustPolicy( nPolicy )
@@ -345,11 +345,11 @@ METHOD QComboBox:setSizeAdjustPolicy( nPolicy )
METHOD QComboBox:setValidator( pValidator )
RETURN Qt_QComboBox_setValidator( ::pPtr, pValidator )
RETURN Qt_QComboBox_setValidator( ::pPtr, hbqt_ptr( pValidator ) )
METHOD QComboBox:setView( pItemView )
RETURN Qt_QComboBox_setView( ::pPtr, pItemView )
RETURN Qt_QComboBox_setView( ::pPtr, hbqt_ptr( pItemView ) )
METHOD QComboBox:showPopup()

View File

@@ -78,7 +78,7 @@ CREATE CLASS QCommandLinkButton INHERIT QPushButton
/*----------------------------------------------------------------------*/
METHOD QCommandLinkButton:new( pParent )
::pPtr := Qt_QCommandLinkButton( pParent )
::pPtr := Qt_QCommandLinkButton( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -76,7 +76,7 @@ CREATE CLASS QCommonStyle INHERIT QStyle
/*----------------------------------------------------------------------*/
METHOD QCommonStyle:new( pParent )
::pPtr := Qt_QCommonStyle( pParent )
::pPtr := Qt_QCommonStyle( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -105,7 +105,7 @@ CREATE CLASS QCompleter INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QCompleter:new( pParent )
::pPtr := Qt_QCompleter( pParent )
::pPtr := Qt_QCompleter( hbqt_ptr( pParent ) )
RETURN Self
@@ -167,7 +167,7 @@ METHOD QCompleter:modelSorting()
METHOD QCompleter:pathFromIndex( pIndex )
RETURN Qt_QCompleter_pathFromIndex( ::pPtr, pIndex )
RETURN Qt_QCompleter_pathFromIndex( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QCompleter:popup()
@@ -195,7 +195,7 @@ METHOD QCompleter:setCurrentRow( nRow )
METHOD QCompleter:setModel( pModel )
RETURN Qt_QCompleter_setModel( ::pPtr, pModel )
RETURN Qt_QCompleter_setModel( ::pPtr, hbqt_ptr( pModel ) )
METHOD QCompleter:setModelSorting( nSorting )
@@ -203,11 +203,11 @@ METHOD QCompleter:setModelSorting( nSorting )
METHOD QCompleter:setPopup( pPopup )
RETURN Qt_QCompleter_setPopup( ::pPtr, pPopup )
RETURN Qt_QCompleter_setPopup( ::pPtr, hbqt_ptr( pPopup ) )
METHOD QCompleter:setWidget( pWidget )
RETURN Qt_QCompleter_setWidget( ::pPtr, pWidget )
RETURN Qt_QCompleter_setWidget( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QCompleter:splitPath( cPath )
@@ -223,7 +223,7 @@ METHOD QCompleter:wrapAround()
METHOD QCompleter:complete( pRect )
RETURN Qt_QCompleter_complete( ::pPtr, pRect )
RETURN Qt_QCompleter_complete( ::pPtr, hbqt_ptr( pRect ) )
METHOD QCompleter:setCompletionPrefix( cPrefix )

View File

@@ -81,7 +81,7 @@ CREATE CLASS QConicalGradient INHERIT QGradient
/*----------------------------------------------------------------------*/
METHOD QConicalGradient:new( pParent )
::pPtr := Qt_QConicalGradient( pParent )
::pPtr := Qt_QConicalGradient( hbqt_ptr( pParent ) )
RETURN Self
@@ -107,7 +107,7 @@ METHOD QConicalGradient:setAngle( nAngle )
METHOD QConicalGradient:setCenter( pCenter )
RETURN Qt_QConicalGradient_setCenter( ::pPtr, pCenter )
RETURN Qt_QConicalGradient_setCenter( ::pPtr, hbqt_ptr( pCenter ) )
METHOD QConicalGradient:setCenter_1( nX, nY )

View File

@@ -83,7 +83,7 @@ CREATE CLASS QContextMenuEvent INHERIT QInputEvent
/*----------------------------------------------------------------------*/
METHOD QContextMenuEvent:new( pParent )
::pPtr := Qt_QContextMenuEvent( pParent )
::pPtr := Qt_QContextMenuEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -84,7 +84,7 @@ CREATE CLASS QCursor
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QCursor
METHOD QCursor:new( ... )
::pPtr := Qt_QCursor( ... )
@@ -133,5 +133,5 @@ METHOD QCursor:setPos( nX, nY )
METHOD QCursor:setPos_1( pP )
RETURN Qt_QCursor_setPos_1( ::pPtr, pP )
RETURN Qt_QCursor_setPos_1( ::pPtr, hbqt_ptr( pP ) )

View File

@@ -76,7 +76,7 @@ CREATE CLASS QDateEdit INHERIT QDateTimeEdit
/*----------------------------------------------------------------------*/
METHOD QDateEdit:new( pParent )
::pPtr := Qt_QDateEdit( pParent )
::pPtr := Qt_QDateEdit( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -120,7 +120,7 @@ CREATE CLASS QDateTimeEdit INHERIT QAbstractSpinBox
/*----------------------------------------------------------------------*/
METHOD QDateTimeEdit:new( pParent )
::pPtr := Qt_QDateTimeEdit( pParent )
::pPtr := Qt_QDateTimeEdit( hbqt_ptr( pParent ) )
RETURN Self
@@ -230,7 +230,7 @@ METHOD QDateTimeEdit:setCalendarPopup( lEnable )
METHOD QDateTimeEdit:setCalendarWidget( pCalendarWidget )
RETURN Qt_QDateTimeEdit_setCalendarWidget( ::pPtr, pCalendarWidget )
RETURN Qt_QDateTimeEdit_setCalendarWidget( ::pPtr, hbqt_ptr( pCalendarWidget ) )
METHOD QDateTimeEdit:setCurrentSection( nSection )
@@ -242,11 +242,11 @@ METHOD QDateTimeEdit:setCurrentSectionIndex( nIndex )
METHOD QDateTimeEdit:setDateRange( pMin, pMax )
RETURN Qt_QDateTimeEdit_setDateRange( ::pPtr, pMin, pMax )
RETURN Qt_QDateTimeEdit_setDateRange( ::pPtr, hbqt_ptr( pMin ), hbqt_ptr( pMax ) )
METHOD QDateTimeEdit:setDateTimeRange( pMin, pMax )
RETURN Qt_QDateTimeEdit_setDateTimeRange( ::pPtr, pMin, pMax )
RETURN Qt_QDateTimeEdit_setDateTimeRange( ::pPtr, hbqt_ptr( pMin ), hbqt_ptr( pMax ) )
METHOD QDateTimeEdit:setDisplayFormat( cFormat )
@@ -254,27 +254,27 @@ METHOD QDateTimeEdit:setDisplayFormat( cFormat )
METHOD QDateTimeEdit:setMaximumDate( pMax )
RETURN Qt_QDateTimeEdit_setMaximumDate( ::pPtr, pMax )
RETURN Qt_QDateTimeEdit_setMaximumDate( ::pPtr, hbqt_ptr( pMax ) )
METHOD QDateTimeEdit:setMaximumDateTime( pDt )
RETURN Qt_QDateTimeEdit_setMaximumDateTime( ::pPtr, pDt )
RETURN Qt_QDateTimeEdit_setMaximumDateTime( ::pPtr, hbqt_ptr( pDt ) )
METHOD QDateTimeEdit:setMaximumTime( pMax )
RETURN Qt_QDateTimeEdit_setMaximumTime( ::pPtr, pMax )
RETURN Qt_QDateTimeEdit_setMaximumTime( ::pPtr, hbqt_ptr( pMax ) )
METHOD QDateTimeEdit:setMinimumDate( pMin )
RETURN Qt_QDateTimeEdit_setMinimumDate( ::pPtr, pMin )
RETURN Qt_QDateTimeEdit_setMinimumDate( ::pPtr, hbqt_ptr( pMin ) )
METHOD QDateTimeEdit:setMinimumDateTime( pDt )
RETURN Qt_QDateTimeEdit_setMinimumDateTime( ::pPtr, pDt )
RETURN Qt_QDateTimeEdit_setMinimumDateTime( ::pPtr, hbqt_ptr( pDt ) )
METHOD QDateTimeEdit:setMinimumTime( pMin )
RETURN Qt_QDateTimeEdit_setMinimumTime( ::pPtr, pMin )
RETURN Qt_QDateTimeEdit_setMinimumTime( ::pPtr, hbqt_ptr( pMin ) )
METHOD QDateTimeEdit:setSelectedSection( nSection )
@@ -282,7 +282,7 @@ METHOD QDateTimeEdit:setSelectedSection( nSection )
METHOD QDateTimeEdit:setTimeRange( pMin, pMax )
RETURN Qt_QDateTimeEdit_setTimeRange( ::pPtr, pMin, pMax )
RETURN Qt_QDateTimeEdit_setTimeRange( ::pPtr, hbqt_ptr( pMin ), hbqt_ptr( pMax ) )
METHOD QDateTimeEdit:setTimeSpec( nSpec )
@@ -298,13 +298,13 @@ METHOD QDateTimeEdit:timeSpec()
METHOD QDateTimeEdit:setDate( pDate )
RETURN Qt_QDateTimeEdit_setDate( ::pPtr, pDate )
RETURN Qt_QDateTimeEdit_setDate( ::pPtr, hbqt_ptr( pDate ) )
METHOD QDateTimeEdit:setDateTime( pDateTime )
RETURN Qt_QDateTimeEdit_setDateTime( ::pPtr, pDateTime )
RETURN Qt_QDateTimeEdit_setDateTime( ::pPtr, hbqt_ptr( pDateTime ) )
METHOD QDateTimeEdit:setTime( pTime )
RETURN Qt_QDateTimeEdit_setTime( ::pPtr, pTime )
RETURN Qt_QDateTimeEdit_setTime( ::pPtr, hbqt_ptr( pTime ) )

View File

@@ -88,7 +88,7 @@ CREATE CLASS QDesktopWidget INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QDesktopWidget:new( pParent )
::pPtr := Qt_QDesktopWidget( pParent )
::pPtr := Qt_QDesktopWidget( hbqt_ptr( pParent ) )
RETURN Self
@@ -106,11 +106,11 @@ METHOD QDesktopWidget:availableGeometry( nScreen )
METHOD QDesktopWidget:availableGeometry_1( pWidget )
RETURN Qt_QDesktopWidget_availableGeometry_1( ::pPtr, pWidget )
RETURN Qt_QDesktopWidget_availableGeometry_1( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QDesktopWidget:availableGeometry_2( pP )
RETURN Qt_QDesktopWidget_availableGeometry_2( ::pPtr, pP )
RETURN Qt_QDesktopWidget_availableGeometry_2( ::pPtr, hbqt_ptr( pP ) )
METHOD QDesktopWidget:isVirtualDesktop()
@@ -134,17 +134,17 @@ METHOD QDesktopWidget:screenGeometry( nScreen )
METHOD QDesktopWidget:screenGeometry_1( pWidget )
RETURN Qt_QDesktopWidget_screenGeometry_1( ::pPtr, pWidget )
RETURN Qt_QDesktopWidget_screenGeometry_1( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QDesktopWidget:screenGeometry_2( pP )
RETURN Qt_QDesktopWidget_screenGeometry_2( ::pPtr, pP )
RETURN Qt_QDesktopWidget_screenGeometry_2( ::pPtr, hbqt_ptr( pP ) )
METHOD QDesktopWidget:screenNumber( pWidget )
RETURN Qt_QDesktopWidget_screenNumber( ::pPtr, pWidget )
RETURN Qt_QDesktopWidget_screenNumber( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QDesktopWidget:screenNumber_1( pPoint )
RETURN Qt_QDesktopWidget_screenNumber_1( ::pPtr, pPoint )
RETURN Qt_QDesktopWidget_screenNumber_1( ::pPtr, hbqt_ptr( pPoint ) )

View File

@@ -83,7 +83,7 @@ CREATE CLASS QDial INHERIT QAbstractSlider
/*----------------------------------------------------------------------*/
METHOD QDial:new( pParent )
::pPtr := Qt_QDial( pParent )
::pPtr := Qt_QDial( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -86,7 +86,7 @@ CREATE CLASS QDialog INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QDialog:new( pParent )
::pPtr := Qt_QDialog( pParent )
::pPtr := Qt_QDialog( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -113,7 +113,7 @@ CREATE CLASS QDirModel INHERIT QAbstractItemModel
/*----------------------------------------------------------------------*/
METHOD QDirModel:new( pParent )
::pPtr := Qt_QDirModel( pParent )
::pPtr := Qt_QDirModel( hbqt_ptr( pParent ) )
RETURN Self
@@ -127,31 +127,31 @@ METHOD QDirModel:configure( xObject )
METHOD QDirModel:columnCount( pParent )
RETURN Qt_QDirModel_columnCount( ::pPtr, pParent )
RETURN Qt_QDirModel_columnCount( ::pPtr, hbqt_ptr( pParent ) )
METHOD QDirModel:data( pIndex, nRole )
RETURN Qt_QDirModel_data( ::pPtr, pIndex, nRole )
RETURN Qt_QDirModel_data( ::pPtr, hbqt_ptr( pIndex ), nRole )
METHOD QDirModel:dropMimeData( pData, nAction, nRow, nColumn, pParent )
RETURN Qt_QDirModel_dropMimeData( ::pPtr, pData, nAction, nRow, nColumn, pParent )
RETURN Qt_QDirModel_dropMimeData( ::pPtr, hbqt_ptr( pData ), nAction, nRow, nColumn, hbqt_ptr( pParent ) )
METHOD QDirModel:fileIcon( pIndex )
RETURN Qt_QDirModel_fileIcon( ::pPtr, pIndex )
RETURN Qt_QDirModel_fileIcon( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QDirModel:fileInfo( pIndex )
RETURN Qt_QDirModel_fileInfo( ::pPtr, pIndex )
RETURN Qt_QDirModel_fileInfo( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QDirModel:fileName( pIndex )
RETURN Qt_QDirModel_fileName( ::pPtr, pIndex )
RETURN Qt_QDirModel_fileName( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QDirModel:filePath( pIndex )
RETURN Qt_QDirModel_filePath( ::pPtr, pIndex )
RETURN Qt_QDirModel_filePath( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QDirModel:filter()
@@ -159,11 +159,11 @@ METHOD QDirModel:filter()
METHOD QDirModel:flags( pIndex )
RETURN Qt_QDirModel_flags( ::pPtr, pIndex )
RETURN Qt_QDirModel_flags( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QDirModel:hasChildren( pParent )
RETURN Qt_QDirModel_hasChildren( ::pPtr, pParent )
RETURN Qt_QDirModel_hasChildren( ::pPtr, hbqt_ptr( pParent ) )
METHOD QDirModel:headerData( nSection, nOrientation, nRole )
@@ -175,7 +175,7 @@ METHOD QDirModel:iconProvider()
METHOD QDirModel:index( nRow, nColumn, pParent )
RETURN Qt_QDirModel_index( ::pPtr, nRow, nColumn, pParent )
RETURN Qt_QDirModel_index( ::pPtr, nRow, nColumn, hbqt_ptr( pParent ) )
METHOD QDirModel:index_1( cPath, nColumn )
@@ -183,7 +183,7 @@ METHOD QDirModel:index_1( cPath, nColumn )
METHOD QDirModel:isDir( pIndex )
RETURN Qt_QDirModel_isDir( ::pPtr, pIndex )
RETURN Qt_QDirModel_isDir( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QDirModel:isReadOnly()
@@ -199,7 +199,7 @@ METHOD QDirModel:mimeTypes()
METHOD QDirModel:mkdir( pParent, cName )
RETURN Qt_QDirModel_mkdir( ::pPtr, pParent, cName )
RETURN Qt_QDirModel_mkdir( ::pPtr, hbqt_ptr( pParent ), cName )
METHOD QDirModel:nameFilters()
@@ -207,11 +207,11 @@ METHOD QDirModel:nameFilters()
METHOD QDirModel:parent( pChild )
RETURN Qt_QDirModel_parent( ::pPtr, pChild )
RETURN Qt_QDirModel_parent( ::pPtr, hbqt_ptr( pChild ) )
METHOD QDirModel:remove( pIndex )
RETURN Qt_QDirModel_remove( ::pPtr, pIndex )
RETURN Qt_QDirModel_remove( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QDirModel:resolveSymlinks()
@@ -219,15 +219,15 @@ METHOD QDirModel:resolveSymlinks()
METHOD QDirModel:rmdir( pIndex )
RETURN Qt_QDirModel_rmdir( ::pPtr, pIndex )
RETURN Qt_QDirModel_rmdir( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QDirModel:rowCount( pParent )
RETURN Qt_QDirModel_rowCount( ::pPtr, pParent )
RETURN Qt_QDirModel_rowCount( ::pPtr, hbqt_ptr( pParent ) )
METHOD QDirModel:setData( pIndex, pValue, nRole )
RETURN Qt_QDirModel_setData( ::pPtr, pIndex, pValue, nRole )
RETURN Qt_QDirModel_setData( ::pPtr, hbqt_ptr( pIndex ), hbqt_ptr( pValue ), nRole )
METHOD QDirModel:setFilter( nFilters )
@@ -235,7 +235,7 @@ METHOD QDirModel:setFilter( nFilters )
METHOD QDirModel:setIconProvider( pProvider )
RETURN Qt_QDirModel_setIconProvider( ::pPtr, pProvider )
RETURN Qt_QDirModel_setIconProvider( ::pPtr, hbqt_ptr( pProvider ) )
METHOD QDirModel:setLazyChildCount( lEnable )
@@ -243,7 +243,7 @@ METHOD QDirModel:setLazyChildCount( lEnable )
METHOD QDirModel:setNameFilters( pFilters )
RETURN Qt_QDirModel_setNameFilters( ::pPtr, pFilters )
RETURN Qt_QDirModel_setNameFilters( ::pPtr, hbqt_ptr( pFilters ) )
METHOD QDirModel:setReadOnly( lEnable )
@@ -271,5 +271,5 @@ METHOD QDirModel:supportedDropActions()
METHOD QDirModel:refresh( pParent )
RETURN Qt_QDirModel_refresh( ::pPtr, pParent )
RETURN Qt_QDirModel_refresh( ::pPtr, hbqt_ptr( pParent ) )

View File

@@ -88,7 +88,7 @@ CREATE CLASS QDockWidget INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QDockWidget:new( pParent )
::pPtr := Qt_QDockWidget( pParent )
::pPtr := Qt_QDockWidget( hbqt_ptr( pParent ) )
RETURN Self
@@ -130,11 +130,11 @@ METHOD QDockWidget:setFloating( lFloating )
METHOD QDockWidget:setTitleBarWidget( pWidget )
RETURN Qt_QDockWidget_setTitleBarWidget( ::pPtr, pWidget )
RETURN Qt_QDockWidget_setTitleBarWidget( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QDockWidget:setWidget( pWidget )
RETURN Qt_QDockWidget_setWidget( ::pPtr, pWidget )
RETURN Qt_QDockWidget_setWidget( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QDockWidget:titleBarWidget()

View File

@@ -94,7 +94,7 @@ CREATE CLASS QDoubleSpinBox INHERIT QAbstractSpinBox
/*----------------------------------------------------------------------*/
METHOD QDoubleSpinBox:new( pParent )
::pPtr := Qt_QDoubleSpinBox( pParent )
::pPtr := Qt_QDoubleSpinBox( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -76,7 +76,7 @@ CREATE CLASS QDragEnterEvent INHERIT QDragMoveEvent
/*----------------------------------------------------------------------*/
METHOD QDragEnterEvent:new( pParent )
::pPtr := Qt_QDragEnterEvent( pParent )
::pPtr := Qt_QDragEnterEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -76,7 +76,7 @@ CREATE CLASS QDragLeaveEvent INHERIT QEvent
/*----------------------------------------------------------------------*/
METHOD QDragLeaveEvent:new( pParent )
::pPtr := Qt_QDragLeaveEvent( pParent )
::pPtr := Qt_QDragLeaveEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -81,7 +81,7 @@ CREATE CLASS QDragMoveEvent INHERIT QDropEvent
/*----------------------------------------------------------------------*/
METHOD QDragMoveEvent:new( pParent )
::pPtr := Qt_QDragMoveEvent( pParent )
::pPtr := Qt_QDragMoveEvent( hbqt_ptr( pParent ) )
RETURN Self
@@ -95,7 +95,7 @@ METHOD QDragMoveEvent:configure( xObject )
METHOD QDragMoveEvent:accept( pRectangle )
RETURN Qt_QDragMoveEvent_accept( ::pPtr, pRectangle )
RETURN Qt_QDragMoveEvent_accept( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QDragMoveEvent:accept_1()
@@ -107,7 +107,7 @@ METHOD QDragMoveEvent:answerRect()
METHOD QDragMoveEvent:ignore( pRectangle )
RETURN Qt_QDragMoveEvent_ignore( ::pPtr, pRectangle )
RETURN Qt_QDragMoveEvent_ignore( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QDragMoveEvent:ignore_1()

View File

@@ -86,7 +86,7 @@ CREATE CLASS QDropEvent INHERIT QEvent
/*----------------------------------------------------------------------*/
METHOD QDropEvent:new( pParent )
::pPtr := Qt_QDropEvent( pParent )
::pPtr := Qt_QDropEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -77,7 +77,7 @@ CREATE CLASS QErrorMessage INHERIT QDialog
/*----------------------------------------------------------------------*/
METHOD QErrorMessage:new( pParent )
::pPtr := Qt_QErrorMessage( pParent )
::pPtr := Qt_QErrorMessage( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -121,7 +121,7 @@ CREATE CLASS QFileDialog INHERIT QDialog
/*----------------------------------------------------------------------*/
METHOD QFileDialog:new( pParent )
::pPtr := Qt_QFileDialog( pParent )
::pPtr := Qt_QFileDialog( hbqt_ptr( pParent ) )
RETURN Self
@@ -199,7 +199,7 @@ METHOD QFileDialog:resolveSymlinks()
METHOD QFileDialog:restoreState( pState )
RETURN Qt_QFileDialog_restoreState( ::pPtr, pState )
RETURN Qt_QFileDialog_restoreState( ::pPtr, hbqt_ptr( pState ) )
METHOD QFileDialog:saveState()
@@ -239,7 +239,7 @@ METHOD QFileDialog:setDirectory( cDirectory )
METHOD QFileDialog:setDirectory_1( pDirectory )
RETURN Qt_QFileDialog_setDirectory_1( ::pPtr, pDirectory )
RETURN Qt_QFileDialog_setDirectory_1( ::pPtr, hbqt_ptr( pDirectory ) )
METHOD QFileDialog:setFileMode( nMode )
@@ -251,15 +251,15 @@ METHOD QFileDialog:setFilter( nFilters )
METHOD QFileDialog:setHistory( pPaths )
RETURN Qt_QFileDialog_setHistory( ::pPtr, pPaths )
RETURN Qt_QFileDialog_setHistory( ::pPtr, hbqt_ptr( pPaths ) )
METHOD QFileDialog:setIconProvider( pProvider )
RETURN Qt_QFileDialog_setIconProvider( ::pPtr, pProvider )
RETURN Qt_QFileDialog_setIconProvider( ::pPtr, hbqt_ptr( pProvider ) )
METHOD QFileDialog:setItemDelegate( pDelegate )
RETURN Qt_QFileDialog_setItemDelegate( ::pPtr, pDelegate )
RETURN Qt_QFileDialog_setItemDelegate( ::pPtr, hbqt_ptr( pDelegate ) )
METHOD QFileDialog:setLabelText( nLabel, cText )
@@ -275,7 +275,7 @@ METHOD QFileDialog:setNameFilterDetailsVisible( lEnabled )
METHOD QFileDialog:setNameFilters( pFilters )
RETURN Qt_QFileDialog_setNameFilters( ::pPtr, pFilters )
RETURN Qt_QFileDialog_setNameFilters( ::pPtr, hbqt_ptr( pFilters ) )
METHOD QFileDialog:setOption( nOption, lOn )
@@ -287,7 +287,7 @@ METHOD QFileDialog:setOptions( nOptions )
METHOD QFileDialog:setProxyModel( pProxyModel )
RETURN Qt_QFileDialog_setProxyModel( ::pPtr, pProxyModel )
RETURN Qt_QFileDialog_setProxyModel( ::pPtr, hbqt_ptr( pProxyModel ) )
METHOD QFileDialog:setReadOnly( lEnabled )
@@ -311,5 +311,5 @@ METHOD QFileDialog:viewMode()
METHOD QFileDialog:getExistingDirectory( pParent, cCaption, cDir, nOptions )
RETURN Qt_QFileDialog_getExistingDirectory( ::pPtr, pParent, cCaption, cDir, nOptions )
RETURN Qt_QFileDialog_getExistingDirectory( ::pPtr, hbqt_ptr( pParent ), cCaption, cDir, nOptions )

View File

@@ -79,7 +79,7 @@ CREATE CLASS QFileIconProvider
/*----------------------------------------------------------------------*/
METHOD QFileIconProvider:new( pParent )
::pPtr := Qt_QFileIconProvider( pParent )
::pPtr := Qt_QFileIconProvider( hbqt_ptr( pParent ) )
RETURN Self
@@ -97,9 +97,9 @@ METHOD QFileIconProvider:icon( nType )
METHOD QFileIconProvider:icon_1( pInfo )
RETURN Qt_QFileIconProvider_icon_1( ::pPtr, pInfo )
RETURN Qt_QFileIconProvider_icon_1( ::pPtr, hbqt_ptr( pInfo ) )
METHOD QFileIconProvider:type( pInfo )
RETURN Qt_QFileIconProvider_type( ::pPtr, pInfo )
RETURN Qt_QFileIconProvider_type( ::pPtr, hbqt_ptr( pInfo ) )

View File

@@ -105,7 +105,7 @@ CREATE CLASS QFileSystemModel INHERIT QAbstractItemModel
/*----------------------------------------------------------------------*/
METHOD QFileSystemModel:new( pParent )
::pPtr := Qt_QFileSystemModel( pParent )
::pPtr := Qt_QFileSystemModel( hbqt_ptr( pParent ) )
RETURN Self
@@ -119,23 +119,23 @@ METHOD QFileSystemModel:configure( xObject )
METHOD QFileSystemModel:dropMimeData( pData, nAction, nRow, nColumn, pParent )
RETURN Qt_QFileSystemModel_dropMimeData( ::pPtr, pData, nAction, nRow, nColumn, pParent )
RETURN Qt_QFileSystemModel_dropMimeData( ::pPtr, hbqt_ptr( pData ), nAction, nRow, nColumn, hbqt_ptr( pParent ) )
METHOD QFileSystemModel:fileIcon( pIndex )
RETURN Qt_QFileSystemModel_fileIcon( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_fileIcon( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:fileInfo( pIndex )
RETURN Qt_QFileSystemModel_fileInfo( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_fileInfo( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:fileName( pIndex )
RETURN Qt_QFileSystemModel_fileName( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_fileName( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:filePath( pIndex )
RETURN Qt_QFileSystemModel_filePath( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_filePath( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:filter()
@@ -147,7 +147,7 @@ METHOD QFileSystemModel:index( cPath, nColumn )
METHOD QFileSystemModel:isDir( pIndex )
RETURN Qt_QFileSystemModel_isDir( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_isDir( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:isReadOnly()
@@ -155,7 +155,7 @@ METHOD QFileSystemModel:isReadOnly()
METHOD QFileSystemModel:lastModified( pIndex )
RETURN Qt_QFileSystemModel_lastModified( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_lastModified( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:mimeTypes()
@@ -163,7 +163,7 @@ METHOD QFileSystemModel:mimeTypes()
METHOD QFileSystemModel:mkdir( pParent, cName )
RETURN Qt_QFileSystemModel_mkdir( ::pPtr, pParent, cName )
RETURN Qt_QFileSystemModel_mkdir( ::pPtr, hbqt_ptr( pParent ), cName )
METHOD QFileSystemModel:myComputer( nRole )
@@ -179,11 +179,11 @@ METHOD QFileSystemModel:nameFilters()
METHOD QFileSystemModel:permissions( pIndex )
RETURN Qt_QFileSystemModel_permissions( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_permissions( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:remove( pIndex )
RETURN Qt_QFileSystemModel_remove( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_remove( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:resolveSymlinks()
@@ -191,7 +191,7 @@ METHOD QFileSystemModel:resolveSymlinks()
METHOD QFileSystemModel:rmdir( pIndex )
RETURN Qt_QFileSystemModel_rmdir( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_rmdir( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:rootDirectory()
@@ -211,7 +211,7 @@ METHOD QFileSystemModel:setNameFilterDisables( lEnable )
METHOD QFileSystemModel:setNameFilters( pFilters )
RETURN Qt_QFileSystemModel_setNameFilters( ::pPtr, pFilters )
RETURN Qt_QFileSystemModel_setNameFilters( ::pPtr, hbqt_ptr( pFilters ) )
METHOD QFileSystemModel:setReadOnly( lEnable )
@@ -227,9 +227,9 @@ METHOD QFileSystemModel:setRootPath( cNewPath )
METHOD QFileSystemModel:size( pIndex )
RETURN Qt_QFileSystemModel_size( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_size( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QFileSystemModel:type( pIndex )
RETURN Qt_QFileSystemModel_type( ::pPtr, pIndex )
RETURN Qt_QFileSystemModel_type( ::pPtr, hbqt_ptr( pIndex ) )

View File

@@ -79,7 +79,7 @@ CREATE CLASS QFocusEvent INHERIT QEvent
/*----------------------------------------------------------------------*/
METHOD QFocusEvent:new( pParent )
::pPtr := Qt_QFocusEvent( pParent )
::pPtr := Qt_QFocusEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -78,7 +78,7 @@ CREATE CLASS QFocusFrame INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QFocusFrame:new( pParent )
::pPtr := Qt_QFocusFrame( pParent )
::pPtr := Qt_QFocusFrame( hbqt_ptr( pParent ) )
RETURN Self
@@ -92,7 +92,7 @@ METHOD QFocusFrame:configure( xObject )
METHOD QFocusFrame:setWidget( pWidget )
RETURN Qt_QFocusFrame_setWidget( ::pPtr, pWidget )
RETURN Qt_QFocusFrame_setWidget( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QFocusFrame:widget()

View File

@@ -133,7 +133,7 @@ CREATE CLASS QFont
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QFont
METHOD QFont:new( ... )
::pPtr := Qt_QFont( ... )
@@ -362,7 +362,7 @@ METHOD QFont:insertSubstitution( cFamilyName, cSubstituteName )
METHOD QFont:insertSubstitutions( cFamilyName, pSubstituteNames )
RETURN Qt_QFont_insertSubstitutions( ::pPtr, cFamilyName, pSubstituteNames )
RETURN Qt_QFont_insertSubstitutions( ::pPtr, cFamilyName, hbqt_ptr( pSubstituteNames ) )
METHOD QFont:removeSubstitution( cFamilyName )

View File

@@ -82,7 +82,7 @@ CREATE CLASS QFontComboBox INHERIT QComboBox
/*----------------------------------------------------------------------*/
METHOD QFontComboBox:new( pParent )
::pPtr := Qt_QFontComboBox( pParent )
::pPtr := Qt_QFontComboBox( hbqt_ptr( pParent ) )
RETURN Self
@@ -116,5 +116,5 @@ METHOD QFontComboBox:writingSystem()
METHOD QFontComboBox:setCurrentFont( pFont )
RETURN Qt_QFontComboBox_setCurrentFont( ::pPtr, pFont )
RETURN Qt_QFontComboBox_setCurrentFont( ::pPtr, hbqt_ptr( pFont ) )

View File

@@ -96,7 +96,7 @@ CREATE CLASS QFontDatabase
/*----------------------------------------------------------------------*/
METHOD QFontDatabase:new( pParent )
::pPtr := Qt_QFontDatabase( pParent )
::pPtr := Qt_QFontDatabase( hbqt_ptr( pParent ) )
RETURN Self
@@ -142,11 +142,11 @@ METHOD QFontDatabase:italic( cFamily, cStyle )
METHOD QFontDatabase:styleString( pFont )
RETURN Qt_QFontDatabase_styleString( ::pPtr, pFont )
RETURN Qt_QFontDatabase_styleString( ::pPtr, hbqt_ptr( pFont ) )
METHOD QFontDatabase:styleString_1( pFontInfo )
RETURN Qt_QFontDatabase_styleString_1( ::pPtr, pFontInfo )
RETURN Qt_QFontDatabase_styleString_1( ::pPtr, hbqt_ptr( pFontInfo ) )
METHOD QFontDatabase:styles( cFamily )
@@ -162,7 +162,7 @@ METHOD QFontDatabase:addApplicationFont( cFileName )
METHOD QFontDatabase:addApplicationFontFromData( pFontData )
RETURN Qt_QFontDatabase_addApplicationFontFromData( ::pPtr, pFontData )
RETURN Qt_QFontDatabase_addApplicationFontFromData( ::pPtr, hbqt_ptr( pFontData ) )
METHOD QFontDatabase:applicationFontFamilies( nId )

View File

@@ -88,7 +88,7 @@ CREATE CLASS QFontDialog INHERIT QDialog
/*----------------------------------------------------------------------*/
METHOD QFontDialog:new( pParent )
::pPtr := Qt_QFontDialog( pParent )
::pPtr := Qt_QFontDialog( hbqt_ptr( pParent ) )
RETURN Self
@@ -114,7 +114,7 @@ METHOD QFontDialog:selectedFont()
METHOD QFontDialog:setCurrentFont( pFont )
RETURN Qt_QFontDialog_setCurrentFont( ::pPtr, pFont )
RETURN Qt_QFontDialog_setCurrentFont( ::pPtr, hbqt_ptr( pFont ) )
METHOD QFontDialog:setOption( nOption, lOn )
@@ -130,21 +130,21 @@ METHOD QFontDialog:testOption( nOption )
METHOD QFontDialog:getFont( lOk, pInitial, pParent, cTitle, nOptions )
RETURN Qt_QFontDialog_getFont( ::pPtr, lOk, pInitial, pParent, cTitle, nOptions )
RETURN Qt_QFontDialog_getFont( ::pPtr, lOk, hbqt_ptr( pInitial ), hbqt_ptr( pParent ), cTitle, nOptions )
METHOD QFontDialog:getFont_1( lOk, pInitial, pParent, pName )
RETURN Qt_QFontDialog_getFont_1( ::pPtr, lOk, pInitial, pParent, pName )
RETURN Qt_QFontDialog_getFont_1( ::pPtr, lOk, hbqt_ptr( pInitial ), hbqt_ptr( pParent ), hbqt_ptr( pName ) )
METHOD QFontDialog:getFont_2( lOk, pInitial, pParent, cTitle )
RETURN Qt_QFontDialog_getFont_2( ::pPtr, lOk, pInitial, pParent, cTitle )
RETURN Qt_QFontDialog_getFont_2( ::pPtr, lOk, hbqt_ptr( pInitial ), hbqt_ptr( pParent ), cTitle )
METHOD QFontDialog:getFont_3( lOk, pInitial, pParent )
RETURN Qt_QFontDialog_getFont_3( ::pPtr, lOk, pInitial, pParent )
RETURN Qt_QFontDialog_getFont_3( ::pPtr, lOk, hbqt_ptr( pInitial ), hbqt_ptr( pParent ) )
METHOD QFontDialog:getFont_4( lOk, pParent )
RETURN Qt_QFontDialog_getFont_4( ::pPtr, lOk, pParent )
RETURN Qt_QFontDialog_getFont_4( ::pPtr, lOk, hbqt_ptr( pParent ) )

View File

@@ -88,7 +88,7 @@ CREATE CLASS QFontInfo
/*----------------------------------------------------------------------*/
METHOD QFontInfo:new( pParent )
::pPtr := Qt_QFontInfo( pParent )
::pPtr := Qt_QFontInfo( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -101,7 +101,7 @@ CREATE CLASS QFontMetrics
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QFontMetrics
METHOD QFontMetrics:new( ... )
::pPtr := Qt_QFontMetrics( ... )
@@ -138,7 +138,7 @@ METHOD QFontMetrics:boundingRect_2( nX, nY, nWidth, nHeight, nFlags, cText, nTab
METHOD QFontMetrics:boundingRect_3( pRect, nFlags, cText, nTabStops, nTabArray )
RETURN Qt_QFontMetrics_boundingRect_3( ::pPtr, pRect, nFlags, cText, nTabStops, nTabArray )
RETURN Qt_QFontMetrics_boundingRect_3( ::pPtr, hbqt_ptr( pRect ), nFlags, cText, nTabStops, nTabArray )
METHOD QFontMetrics:descent()

View File

@@ -100,7 +100,7 @@ CREATE CLASS QFontMetricsF
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QFontMetricsF
METHOD QFontMetricsF:new( ... )
::pPtr := Qt_QFontMetricsF( ... )
@@ -133,7 +133,7 @@ METHOD QFontMetricsF:boundingRect_1( nCh )
METHOD QFontMetricsF:boundingRect_2( pRect, nFlags, cText, nTabStops, nTabArray )
RETURN Qt_QFontMetricsF_boundingRect_2( ::pPtr, pRect, nFlags, cText, nTabStops, nTabArray )
RETURN Qt_QFontMetricsF_boundingRect_2( ::pPtr, hbqt_ptr( pRect ), nFlags, cText, nTabStops, nTabArray )
METHOD QFontMetricsF:descent()

View File

@@ -112,7 +112,7 @@ CREATE CLASS QFormLayout INHERIT QLayout
/*----------------------------------------------------------------------*/
METHOD QFormLayout:new( pParent )
::pPtr := Qt_QFormLayout( pParent )
::pPtr := Qt_QFormLayout( hbqt_ptr( pParent ) )
RETURN Self
@@ -126,27 +126,27 @@ METHOD QFormLayout:configure( xObject )
METHOD QFormLayout:addRow( pLabel, pField )
RETURN Qt_QFormLayout_addRow( ::pPtr, pLabel, pField )
RETURN Qt_QFormLayout_addRow( ::pPtr, hbqt_ptr( pLabel ), hbqt_ptr( pField ) )
METHOD QFormLayout:addRow_1( pLabel, pField )
RETURN Qt_QFormLayout_addRow_1( ::pPtr, pLabel, pField )
RETURN Qt_QFormLayout_addRow_1( ::pPtr, hbqt_ptr( pLabel ), hbqt_ptr( pField ) )
METHOD QFormLayout:addRow_2( pWidget )
RETURN Qt_QFormLayout_addRow_2( ::pPtr, pWidget )
RETURN Qt_QFormLayout_addRow_2( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QFormLayout:addRow_3( cLabelText, pField )
RETURN Qt_QFormLayout_addRow_3( ::pPtr, cLabelText, pField )
RETURN Qt_QFormLayout_addRow_3( ::pPtr, cLabelText, hbqt_ptr( pField ) )
METHOD QFormLayout:addRow_4( cLabelText, pField )
RETURN Qt_QFormLayout_addRow_4( ::pPtr, cLabelText, pField )
RETURN Qt_QFormLayout_addRow_4( ::pPtr, cLabelText, hbqt_ptr( pField ) )
METHOD QFormLayout:addRow_5( pLayout )
RETURN Qt_QFormLayout_addRow_5( ::pPtr, pLayout )
RETURN Qt_QFormLayout_addRow_5( ::pPtr, hbqt_ptr( pLayout ) )
METHOD QFormLayout:fieldGrowthPolicy()
@@ -162,11 +162,11 @@ METHOD QFormLayout:getItemPosition( nIndex, nRowPtr, nRolePtr )
METHOD QFormLayout:getLayoutPosition( pLayout, nRowPtr, nRolePtr )
RETURN Qt_QFormLayout_getLayoutPosition( ::pPtr, pLayout, nRowPtr, nRolePtr )
RETURN Qt_QFormLayout_getLayoutPosition( ::pPtr, hbqt_ptr( pLayout ), nRowPtr, nRolePtr )
METHOD QFormLayout:getWidgetPosition( pWidget, nRowPtr, nRolePtr )
RETURN Qt_QFormLayout_getWidgetPosition( ::pPtr, pWidget, nRowPtr, nRolePtr )
RETURN Qt_QFormLayout_getWidgetPosition( ::pPtr, hbqt_ptr( pWidget ), nRowPtr, nRolePtr )
METHOD QFormLayout:horizontalSpacing()
@@ -174,27 +174,27 @@ METHOD QFormLayout:horizontalSpacing()
METHOD QFormLayout:insertRow( nRow, pLabel, pField )
RETURN Qt_QFormLayout_insertRow( ::pPtr, nRow, pLabel, pField )
RETURN Qt_QFormLayout_insertRow( ::pPtr, nRow, hbqt_ptr( pLabel ), hbqt_ptr( pField ) )
METHOD QFormLayout:insertRow_1( nRow, pLabel, pField )
RETURN Qt_QFormLayout_insertRow_1( ::pPtr, nRow, pLabel, pField )
RETURN Qt_QFormLayout_insertRow_1( ::pPtr, nRow, hbqt_ptr( pLabel ), hbqt_ptr( pField ) )
METHOD QFormLayout:insertRow_2( nRow, pWidget )
RETURN Qt_QFormLayout_insertRow_2( ::pPtr, nRow, pWidget )
RETURN Qt_QFormLayout_insertRow_2( ::pPtr, nRow, hbqt_ptr( pWidget ) )
METHOD QFormLayout:insertRow_3( nRow, cLabelText, pField )
RETURN Qt_QFormLayout_insertRow_3( ::pPtr, nRow, cLabelText, pField )
RETURN Qt_QFormLayout_insertRow_3( ::pPtr, nRow, cLabelText, hbqt_ptr( pField ) )
METHOD QFormLayout:insertRow_4( nRow, cLabelText, pField )
RETURN Qt_QFormLayout_insertRow_4( ::pPtr, nRow, cLabelText, pField )
RETURN Qt_QFormLayout_insertRow_4( ::pPtr, nRow, cLabelText, hbqt_ptr( pField ) )
METHOD QFormLayout:insertRow_5( nRow, pLayout )
RETURN Qt_QFormLayout_insertRow_5( ::pPtr, nRow, pLayout )
RETURN Qt_QFormLayout_insertRow_5( ::pPtr, nRow, hbqt_ptr( pLayout ) )
METHOD QFormLayout:itemAt( nRow, nRole )
@@ -206,11 +206,11 @@ METHOD QFormLayout:labelAlignment()
METHOD QFormLayout:labelForField( pField )
RETURN Qt_QFormLayout_labelForField( ::pPtr, pField )
RETURN Qt_QFormLayout_labelForField( ::pPtr, hbqt_ptr( pField ) )
METHOD QFormLayout:labelForField_1( pField )
RETURN Qt_QFormLayout_labelForField_1( ::pPtr, pField )
RETURN Qt_QFormLayout_labelForField_1( ::pPtr, hbqt_ptr( pField ) )
METHOD QFormLayout:rowCount()
@@ -234,7 +234,7 @@ METHOD QFormLayout:setHorizontalSpacing( nSpacing )
METHOD QFormLayout:setItem( nRow, nRole, pItem )
RETURN Qt_QFormLayout_setItem( ::pPtr, nRow, nRole, pItem )
RETURN Qt_QFormLayout_setItem( ::pPtr, nRow, nRole, hbqt_ptr( pItem ) )
METHOD QFormLayout:setLabelAlignment( nAlignment )
@@ -242,7 +242,7 @@ METHOD QFormLayout:setLabelAlignment( nAlignment )
METHOD QFormLayout:setLayout( nRow, nRole, pLayout )
RETURN Qt_QFormLayout_setLayout( ::pPtr, nRow, nRole, pLayout )
RETURN Qt_QFormLayout_setLayout( ::pPtr, nRow, nRole, hbqt_ptr( pLayout ) )
METHOD QFormLayout:setRowWrapPolicy( nPolicy )
@@ -258,7 +258,7 @@ METHOD QFormLayout:setVerticalSpacing( nSpacing )
METHOD QFormLayout:setWidget( nRow, nRole, pWidget )
RETURN Qt_QFormLayout_setWidget( ::pPtr, nRow, nRole, pWidget )
RETURN Qt_QFormLayout_setWidget( ::pPtr, nRow, nRole, hbqt_ptr( pWidget ) )
METHOD QFormLayout:spacing()

View File

@@ -89,7 +89,7 @@ CREATE CLASS QFrame INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QFrame:new( pParent )
::pPtr := Qt_QFrame( pParent )
::pPtr := Qt_QFrame( hbqt_ptr( pParent ) )
RETURN Self
@@ -131,7 +131,7 @@ METHOD QFrame:midLineWidth()
METHOD QFrame:setFrameRect( pQRect )
RETURN Qt_QFrame_setFrameRect( ::pPtr, pQRect )
RETURN Qt_QFrame_setFrameRect( ::pPtr, hbqt_ptr( pQRect ) )
METHOD QFrame:setFrameShadow( nShadow )

View File

@@ -82,7 +82,7 @@ CREATE CLASS QGradient
/*----------------------------------------------------------------------*/
METHOD QGradient:new( pParent )
::pPtr := Qt_QGradient( pParent )
::pPtr := Qt_QGradient( hbqt_ptr( pParent ) )
RETURN Self
@@ -100,7 +100,7 @@ METHOD QGradient:coordinateMode()
METHOD QGradient:setColorAt( nPosition, pColor )
RETURN Qt_QGradient_setColorAt( ::pPtr, nPosition, pColor )
RETURN Qt_QGradient_setColorAt( ::pPtr, nPosition, hbqt_ptr( pColor ) )
METHOD QGradient:setCoordinateMode( nMode )

View File

@@ -102,7 +102,7 @@ CREATE CLASS QGridLayout INHERIT QLayout
/*----------------------------------------------------------------------*/
METHOD QGridLayout:new( pParent )
::pPtr := Qt_QGridLayout( pParent )
::pPtr := Qt_QGridLayout( hbqt_ptr( pParent ) )
RETURN Self
@@ -116,23 +116,23 @@ METHOD QGridLayout:configure( xObject )
METHOD QGridLayout:addItem( pItem, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment )
RETURN Qt_QGridLayout_addItem( ::pPtr, pItem, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment )
RETURN Qt_QGridLayout_addItem( ::pPtr, hbqt_ptr( pItem ), nRow, nColumn, nRowSpan, nColumnSpan, nAlignment )
METHOD QGridLayout:addLayout( pLayout, nRow, nColumn, nAlignment )
RETURN Qt_QGridLayout_addLayout( ::pPtr, pLayout, nRow, nColumn, nAlignment )
RETURN Qt_QGridLayout_addLayout( ::pPtr, hbqt_ptr( pLayout ), nRow, nColumn, nAlignment )
METHOD QGridLayout:addLayout_1( pLayout, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment )
RETURN Qt_QGridLayout_addLayout_1( ::pPtr, pLayout, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment )
RETURN Qt_QGridLayout_addLayout_1( ::pPtr, hbqt_ptr( pLayout ), nRow, nColumn, nRowSpan, nColumnSpan, nAlignment )
METHOD QGridLayout:addWidget( pWidget, nRow, nColumn, nAlignment )
RETURN Qt_QGridLayout_addWidget( ::pPtr, pWidget, nRow, nColumn, nAlignment )
RETURN Qt_QGridLayout_addWidget( ::pPtr, hbqt_ptr( pWidget ), nRow, nColumn, nAlignment )
METHOD QGridLayout:addWidget_1( pWidget, nFromRow, nFromColumn, nRowSpan, nColumnSpan, nAlignment )
RETURN Qt_QGridLayout_addWidget_1( ::pPtr, pWidget, nFromRow, nFromColumn, nRowSpan, nColumnSpan, nAlignment )
RETURN Qt_QGridLayout_addWidget_1( ::pPtr, hbqt_ptr( pWidget ), nFromRow, nFromColumn, nRowSpan, nColumnSpan, nAlignment )
METHOD QGridLayout:cellRect( nRow, nColumn )

View File

@@ -86,7 +86,7 @@ CREATE CLASS QGroupBox INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QGroupBox:new( pParent )
::pPtr := Qt_QGroupBox( pParent )
::pPtr := Qt_QGroupBox( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -76,7 +76,7 @@ CREATE CLASS QHBoxLayout INHERIT QBoxLayout
/*----------------------------------------------------------------------*/
METHOD QHBoxLayout:new( pParent )
::pPtr := Qt_QHBoxLayout( pParent )
::pPtr := Qt_QHBoxLayout( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -133,7 +133,7 @@ CREATE CLASS QHeaderView INHERIT QAbstractItemView
/*----------------------------------------------------------------------*/
METHOD QHeaderView:new( pParent )
::pPtr := Qt_QHeaderView( pParent )
::pPtr := Qt_QHeaderView( hbqt_ptr( pParent ) )
RETURN Self
@@ -207,7 +207,7 @@ METHOD QHeaderView:logicalIndexAt_1( nX, nY )
METHOD QHeaderView:logicalIndexAt_2( pPos )
RETURN Qt_QHeaderView_logicalIndexAt_2( ::pPtr, pPos )
RETURN Qt_QHeaderView_logicalIndexAt_2( ::pPtr, hbqt_ptr( pPos ) )
METHOD QHeaderView:minimumSectionSize()
@@ -239,7 +239,7 @@ METHOD QHeaderView:resizeSections( nMode )
METHOD QHeaderView:restoreState( pState )
RETURN Qt_QHeaderView_restoreState( ::pPtr, pState )
RETURN Qt_QHeaderView_restoreState( ::pPtr, hbqt_ptr( pState ) )
METHOD QHeaderView:saveState()

View File

@@ -82,7 +82,7 @@ CREATE CLASS QHelpEvent
/*----------------------------------------------------------------------*/
METHOD QHelpEvent:new( pParent )
::pPtr := Qt_QHelpEvent( pParent )
::pPtr := Qt_QHelpEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -85,7 +85,7 @@ CREATE CLASS QIcon
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QIcon
METHOD QIcon:new( ... )
::pPtr := Qt_QIcon( ... )
@@ -102,15 +102,15 @@ METHOD QIcon:configure( xObject )
METHOD QIcon:actualSize( pSize, nMode, nState )
RETURN Qt_QIcon_actualSize( ::pPtr, pSize, nMode, nState )
RETURN Qt_QIcon_actualSize( ::pPtr, hbqt_ptr( pSize ), nMode, nState )
METHOD QIcon:addFile( cFileName, pSize, nMode, nState )
RETURN Qt_QIcon_addFile( ::pPtr, cFileName, pSize, nMode, nState )
RETURN Qt_QIcon_addFile( ::pPtr, cFileName, hbqt_ptr( pSize ), nMode, nState )
METHOD QIcon:addPixmap( pPixmap, nMode, nState )
RETURN Qt_QIcon_addPixmap( ::pPtr, pPixmap, nMode, nState )
RETURN Qt_QIcon_addPixmap( ::pPtr, hbqt_ptr( pPixmap ), nMode, nState )
METHOD QIcon:cacheKey()
@@ -122,15 +122,15 @@ METHOD QIcon:isNull()
METHOD QIcon:paint( pPainter, pRect, nAlignment, nMode, nState )
RETURN Qt_QIcon_paint( ::pPtr, pPainter, pRect, nAlignment, nMode, nState )
RETURN Qt_QIcon_paint( ::pPtr, hbqt_ptr( pPainter ), hbqt_ptr( pRect ), nAlignment, nMode, nState )
METHOD QIcon:paint_1( pPainter, nX, nY, nW, nH, nAlignment, nMode, nState )
RETURN Qt_QIcon_paint_1( ::pPtr, pPainter, nX, nY, nW, nH, nAlignment, nMode, nState )
RETURN Qt_QIcon_paint_1( ::pPtr, hbqt_ptr( pPainter ), nX, nY, nW, nH, nAlignment, nMode, nState )
METHOD QIcon:pixmap( pSize, nMode, nState )
RETURN Qt_QIcon_pixmap( ::pPtr, pSize, nMode, nState )
RETURN Qt_QIcon_pixmap( ::pPtr, hbqt_ptr( pSize ), nMode, nState )
METHOD QIcon:pixmap_1( nW, nH, nMode, nState )

View File

@@ -135,7 +135,7 @@ CREATE CLASS QImage
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QImage
METHOD QImage:new( ... )
::pPtr := Qt_QImage( ... )
@@ -184,7 +184,7 @@ METHOD QImage:convertToFormat( nFormat, nFlags )
METHOD QImage:copy( pRectangle )
RETURN Qt_QImage_copy( ::pPtr, pRectangle )
RETURN Qt_QImage_copy( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QImage:copy_1( nX, nY, nWidth, nHeight )
@@ -244,15 +244,15 @@ METHOD QImage:isNull()
METHOD QImage:load( cFileName, pFormat )
RETURN Qt_QImage_load( ::pPtr, cFileName, pFormat )
RETURN Qt_QImage_load( ::pPtr, cFileName, hbqt_ptr( pFormat ) )
METHOD QImage:load_1( pDevice, pFormat )
RETURN Qt_QImage_load_1( ::pPtr, pDevice, pFormat )
RETURN Qt_QImage_load_1( ::pPtr, hbqt_ptr( pDevice ), hbqt_ptr( pFormat ) )
METHOD QImage:loadFromData( pData, pFormat )
RETURN Qt_QImage_loadFromData( ::pPtr, pData, pFormat )
RETURN Qt_QImage_loadFromData( ::pPtr, hbqt_ptr( pData ), hbqt_ptr( pFormat ) )
METHOD QImage:mirrored( lHorizontal, lVertical )
@@ -272,7 +272,7 @@ METHOD QImage:offset()
METHOD QImage:pixel( pPosition )
RETURN Qt_QImage_pixel( ::pPtr, pPosition )
RETURN Qt_QImage_pixel( ::pPtr, hbqt_ptr( pPosition ) )
METHOD QImage:pixel_1( nX, nY )
@@ -280,7 +280,7 @@ METHOD QImage:pixel_1( nX, nY )
METHOD QImage:pixelIndex( pPosition )
RETURN Qt_QImage_pixelIndex( ::pPtr, pPosition )
RETURN Qt_QImage_pixelIndex( ::pPtr, hbqt_ptr( pPosition ) )
METHOD QImage:pixelIndex_1( nX, nY )
@@ -296,15 +296,15 @@ METHOD QImage:rgbSwapped()
METHOD QImage:save( cFileName, pFormat, nQuality )
RETURN Qt_QImage_save( ::pPtr, cFileName, pFormat, nQuality )
RETURN Qt_QImage_save( ::pPtr, cFileName, hbqt_ptr( pFormat ), nQuality )
METHOD QImage:save_1( pDevice, pFormat, nQuality )
RETURN Qt_QImage_save_1( ::pPtr, pDevice, pFormat, nQuality )
RETURN Qt_QImage_save_1( ::pPtr, hbqt_ptr( pDevice ), hbqt_ptr( pFormat ), nQuality )
METHOD QImage:scaled( pSize, nAspectRatioMode, nTransformMode )
RETURN Qt_QImage_scaled( ::pPtr, pSize, nAspectRatioMode, nTransformMode )
RETURN Qt_QImage_scaled( ::pPtr, hbqt_ptr( pSize ), nAspectRatioMode, nTransformMode )
METHOD QImage:scaled_1( nWidth, nHeight, nAspectRatioMode, nTransformMode )
@@ -344,11 +344,11 @@ METHOD QImage:setNumColors( nNumColors )
METHOD QImage:setOffset( pOffset )
RETURN Qt_QImage_setOffset( ::pPtr, pOffset )
RETURN Qt_QImage_setOffset( ::pPtr, hbqt_ptr( pOffset ) )
METHOD QImage:setPixel( pPosition, nIndex_or_rgb )
RETURN Qt_QImage_setPixel( ::pPtr, pPosition, nIndex_or_rgb )
RETURN Qt_QImage_setPixel( ::pPtr, hbqt_ptr( pPosition ), nIndex_or_rgb )
METHOD QImage:setPixel_1( nX, nY, nIndex_or_rgb )
@@ -372,15 +372,15 @@ METHOD QImage:textKeys()
METHOD QImage:transformed( pMatrix, nMode )
RETURN Qt_QImage_transformed( ::pPtr, pMatrix, nMode )
RETURN Qt_QImage_transformed( ::pPtr, hbqt_ptr( pMatrix ), nMode )
METHOD QImage:transformed_1( pMatrix, nMode )
RETURN Qt_QImage_transformed_1( ::pPtr, pMatrix, nMode )
RETURN Qt_QImage_transformed_1( ::pPtr, hbqt_ptr( pMatrix ), nMode )
METHOD QImage:valid( pPos )
RETURN Qt_QImage_valid( ::pPtr, pPos )
RETURN Qt_QImage_valid( ::pPtr, hbqt_ptr( pPos ) )
METHOD QImage:valid_1( nX, nY )

View File

@@ -114,7 +114,7 @@ CREATE CLASS QImageReader
/*----------------------------------------------------------------------*/
METHOD QImageReader:new( pParent )
::pPtr := Qt_QImageReader( pParent )
::pPtr := Qt_QImageReader( hbqt_ptr( pParent ) )
RETURN Self
@@ -204,7 +204,7 @@ METHOD QImageReader:read()
METHOD QImageReader:read_1( pImage )
RETURN Qt_QImageReader_read_1( ::pPtr, pImage )
RETURN Qt_QImageReader_read_1( ::pPtr, hbqt_ptr( pImage ) )
METHOD QImageReader:scaledClipRect()
@@ -220,15 +220,15 @@ METHOD QImageReader:setAutoDetectImageFormat( lEnabled )
METHOD QImageReader:setBackgroundColor( pColor )
RETURN Qt_QImageReader_setBackgroundColor( ::pPtr, pColor )
RETURN Qt_QImageReader_setBackgroundColor( ::pPtr, hbqt_ptr( pColor ) )
METHOD QImageReader:setClipRect( pRect )
RETURN Qt_QImageReader_setClipRect( ::pPtr, pRect )
RETURN Qt_QImageReader_setClipRect( ::pPtr, hbqt_ptr( pRect ) )
METHOD QImageReader:setDevice( pDevice )
RETURN Qt_QImageReader_setDevice( ::pPtr, pDevice )
RETURN Qt_QImageReader_setDevice( ::pPtr, hbqt_ptr( pDevice ) )
METHOD QImageReader:setFileName( cFileName )
@@ -236,7 +236,7 @@ METHOD QImageReader:setFileName( cFileName )
METHOD QImageReader:setFormat( pFormat )
RETURN Qt_QImageReader_setFormat( ::pPtr, pFormat )
RETURN Qt_QImageReader_setFormat( ::pPtr, hbqt_ptr( pFormat ) )
METHOD QImageReader:setQuality( nQuality )
@@ -244,11 +244,11 @@ METHOD QImageReader:setQuality( nQuality )
METHOD QImageReader:setScaledClipRect( pRect )
RETURN Qt_QImageReader_setScaledClipRect( ::pPtr, pRect )
RETURN Qt_QImageReader_setScaledClipRect( ::pPtr, hbqt_ptr( pRect ) )
METHOD QImageReader:setScaledSize( pSize )
RETURN Qt_QImageReader_setScaledSize( ::pPtr, pSize )
RETURN Qt_QImageReader_setScaledSize( ::pPtr, hbqt_ptr( pSize ) )
METHOD QImageReader:size()
@@ -276,5 +276,5 @@ METHOD QImageReader:imageFormat_1( cFileName )
METHOD QImageReader:imageFormat_2( pDevice )
RETURN Qt_QImageReader_imageFormat_2( ::pPtr, pDevice )
RETURN Qt_QImageReader_imageFormat_2( ::pPtr, hbqt_ptr( pDevice ) )

View File

@@ -94,7 +94,7 @@ CREATE CLASS QImageWriter
/*----------------------------------------------------------------------*/
METHOD QImageWriter:new( pParent )
::pPtr := Qt_QImageWriter( pParent )
::pPtr := Qt_QImageWriter( hbqt_ptr( pParent ) )
RETURN Self
@@ -148,7 +148,7 @@ METHOD QImageWriter:setCompression( nCompression )
METHOD QImageWriter:setDevice( pDevice )
RETURN Qt_QImageWriter_setDevice( ::pPtr, pDevice )
RETURN Qt_QImageWriter_setDevice( ::pPtr, hbqt_ptr( pDevice ) )
METHOD QImageWriter:setFileName( cFileName )
@@ -156,7 +156,7 @@ METHOD QImageWriter:setFileName( cFileName )
METHOD QImageWriter:setFormat( pFormat )
RETURN Qt_QImageWriter_setFormat( ::pPtr, pFormat )
RETURN Qt_QImageWriter_setFormat( ::pPtr, hbqt_ptr( pFormat ) )
METHOD QImageWriter:setGamma( nGamma )
@@ -176,5 +176,5 @@ METHOD QImageWriter:supportsOption( nOption )
METHOD QImageWriter:write( pImage )
RETURN Qt_QImageWriter_write( ::pPtr, pImage )
RETURN Qt_QImageWriter_write( ::pPtr, hbqt_ptr( pImage ) )

View File

@@ -87,7 +87,7 @@ CREATE CLASS QInputContext INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QInputContext:new( pParent )
::pPtr := Qt_QInputContext( pParent )
::pPtr := Qt_QInputContext( hbqt_ptr( pParent ) )
RETURN Self
@@ -101,7 +101,7 @@ METHOD QInputContext:configure( xObject )
METHOD QInputContext:filterEvent( pEvent )
RETURN Qt_QInputContext_filterEvent( ::pPtr, pEvent )
RETURN Qt_QInputContext_filterEvent( ::pPtr, hbqt_ptr( pEvent ) )
METHOD QInputContext:font()
@@ -121,7 +121,7 @@ METHOD QInputContext:language()
METHOD QInputContext:mouseHandler( nX, pEvent )
RETURN Qt_QInputContext_mouseHandler( ::pPtr, nX, pEvent )
RETURN Qt_QInputContext_mouseHandler( ::pPtr, nX, hbqt_ptr( pEvent ) )
METHOD QInputContext:reset()
@@ -129,7 +129,7 @@ METHOD QInputContext:reset()
METHOD QInputContext:sendEvent( pEvent )
RETURN Qt_QInputContext_sendEvent( ::pPtr, pEvent )
RETURN Qt_QInputContext_sendEvent( ::pPtr, hbqt_ptr( pEvent ) )
METHOD QInputContext:standardFormat( nS )
@@ -141,5 +141,5 @@ METHOD QInputContext:update()
METHOD QInputContext:widgetDestroyed( pWidget )
RETURN Qt_QInputContext_widgetDestroyed( ::pPtr, pWidget )
RETURN Qt_QInputContext_widgetDestroyed( ::pPtr, hbqt_ptr( pWidget ) )

View File

@@ -120,7 +120,7 @@ CREATE CLASS QInputDialog INHERIT QDialog
/*----------------------------------------------------------------------*/
METHOD QInputDialog:new( pParent )
::pPtr := Qt_QInputDialog( pParent )
::pPtr := Qt_QInputDialog( hbqt_ptr( pParent ) )
RETURN Self
@@ -194,7 +194,7 @@ METHOD QInputDialog:okButtonText()
METHOD QInputDialog:open( pReceiver, pMember )
RETURN Qt_QInputDialog_open( ::pPtr, pReceiver, pMember )
RETURN Qt_QInputDialog_open( ::pPtr, hbqt_ptr( pReceiver ), hbqt_ptr( pMember ) )
METHOD QInputDialog:options()
@@ -210,7 +210,7 @@ METHOD QInputDialog:setComboBoxEditable( lEditable )
METHOD QInputDialog:setComboBoxItems( pItems )
RETURN Qt_QInputDialog_setComboBoxItems( ::pPtr, pItems )
RETURN Qt_QInputDialog_setComboBoxItems( ::pPtr, hbqt_ptr( pItems ) )
METHOD QInputDialog:setDoubleDecimals( nDecimals )
@@ -294,17 +294,17 @@ METHOD QInputDialog:textValue()
METHOD QInputDialog:getDouble( pParent, cTitle, cLabel, nValue, nMin, nMax, nDecimals, lOk, nFlags )
RETURN Qt_QInputDialog_getDouble( ::pPtr, pParent, cTitle, cLabel, nValue, nMin, nMax, nDecimals, lOk, nFlags )
RETURN Qt_QInputDialog_getDouble( ::pPtr, hbqt_ptr( pParent ), cTitle, cLabel, nValue, nMin, nMax, nDecimals, lOk, nFlags )
METHOD QInputDialog:getInt( pParent, cTitle, cLabel, nValue, nMin, nMax, nStep, lOk, nFlags )
RETURN Qt_QInputDialog_getInt( ::pPtr, pParent, cTitle, cLabel, nValue, nMin, nMax, nStep, lOk, nFlags )
RETURN Qt_QInputDialog_getInt( ::pPtr, hbqt_ptr( pParent ), cTitle, cLabel, nValue, nMin, nMax, nStep, lOk, nFlags )
METHOD QInputDialog:getItem( pParent, cTitle, cLabel, pItems, nCurrent, lEditable, lOk, nFlags )
RETURN Qt_QInputDialog_getItem( ::pPtr, pParent, cTitle, cLabel, pItems, nCurrent, lEditable, lOk, nFlags )
RETURN Qt_QInputDialog_getItem( ::pPtr, hbqt_ptr( pParent ), cTitle, cLabel, hbqt_ptr( pItems ), nCurrent, lEditable, lOk, nFlags )
METHOD QInputDialog:getText( pParent, cTitle, cLabel, nMode, cText, lOk, nFlags )
RETURN Qt_QInputDialog_getText( ::pPtr, pParent, cTitle, cLabel, nMode, cText, lOk, nFlags )
RETURN Qt_QInputDialog_getText( ::pPtr, hbqt_ptr( pParent ), cTitle, cLabel, nMode, cText, lOk, nFlags )

View File

@@ -77,7 +77,7 @@ CREATE CLASS QInputEvent INHERIT QEvent
/*----------------------------------------------------------------------*/
METHOD QInputEvent:new( pParent )
::pPtr := Qt_QInputEvent( pParent )
::pPtr := Qt_QInputEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -81,7 +81,7 @@ CREATE CLASS QInputMethodEvent INHERIT QEvent
/*----------------------------------------------------------------------*/
METHOD QInputMethodEvent:new( pParent )
::pPtr := Qt_QInputMethodEvent( pParent )
::pPtr := Qt_QInputMethodEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -79,7 +79,7 @@ CREATE CLASS QItemSelection INHERIT QList
/*----------------------------------------------------------------------*/
METHOD QItemSelection:new( pParent )
::pPtr := Qt_QItemSelection( pParent )
::pPtr := Qt_QItemSelection( hbqt_ptr( pParent ) )
RETURN Self
@@ -93,13 +93,13 @@ METHOD QItemSelection:configure( xObject )
METHOD QItemSelection:contains( pIndex )
RETURN Qt_QItemSelection_contains( ::pPtr, pIndex )
RETURN Qt_QItemSelection_contains( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QItemSelection:merge( pOther, nCommand )
RETURN Qt_QItemSelection_merge( ::pPtr, pOther, nCommand )
RETURN Qt_QItemSelection_merge( ::pPtr, hbqt_ptr( pOther ), nCommand )
METHOD QItemSelection:select( pTopLeft, pBottomRight )
RETURN Qt_QItemSelection_select( ::pPtr, pTopLeft, pBottomRight )
RETURN Qt_QItemSelection_select( ::pPtr, hbqt_ptr( pTopLeft ), hbqt_ptr( pBottomRight ) )

View File

@@ -91,7 +91,7 @@ CREATE CLASS QItemSelectionModel INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QItemSelectionModel:new( pParent )
::pPtr := Qt_QItemSelectionModel( pParent )
::pPtr := Qt_QItemSelectionModel( hbqt_ptr( pParent ) )
RETURN Self
@@ -105,7 +105,7 @@ METHOD QItemSelectionModel:configure( xObject )
METHOD QItemSelectionModel:columnIntersectsSelection( nColumn, pParent )
RETURN Qt_QItemSelectionModel_columnIntersectsSelection( ::pPtr, nColumn, pParent )
RETURN Qt_QItemSelectionModel_columnIntersectsSelection( ::pPtr, nColumn, hbqt_ptr( pParent ) )
METHOD QItemSelectionModel:currentIndex()
@@ -117,15 +117,15 @@ METHOD QItemSelectionModel:hasSelection()
METHOD QItemSelectionModel:isColumnSelected( nColumn, pParent )
RETURN Qt_QItemSelectionModel_isColumnSelected( ::pPtr, nColumn, pParent )
RETURN Qt_QItemSelectionModel_isColumnSelected( ::pPtr, nColumn, hbqt_ptr( pParent ) )
METHOD QItemSelectionModel:isRowSelected( nRow, pParent )
RETURN Qt_QItemSelectionModel_isRowSelected( ::pPtr, nRow, pParent )
RETURN Qt_QItemSelectionModel_isRowSelected( ::pPtr, nRow, hbqt_ptr( pParent ) )
METHOD QItemSelectionModel:isSelected( pIndex )
RETURN Qt_QItemSelectionModel_isSelected( ::pPtr, pIndex )
RETURN Qt_QItemSelectionModel_isSelected( ::pPtr, hbqt_ptr( pIndex ) )
METHOD QItemSelectionModel:model()
@@ -133,7 +133,7 @@ METHOD QItemSelectionModel:model()
METHOD QItemSelectionModel:rowIntersectsSelection( nRow, pParent )
RETURN Qt_QItemSelectionModel_rowIntersectsSelection( ::pPtr, nRow, pParent )
RETURN Qt_QItemSelectionModel_rowIntersectsSelection( ::pPtr, nRow, hbqt_ptr( pParent ) )
METHOD QItemSelectionModel:selection()
@@ -153,13 +153,13 @@ METHOD QItemSelectionModel:reset()
METHOD QItemSelectionModel:select( pIndex, nCommand )
RETURN Qt_QItemSelectionModel_select( ::pPtr, pIndex, nCommand )
RETURN Qt_QItemSelectionModel_select( ::pPtr, hbqt_ptr( pIndex ), nCommand )
METHOD QItemSelectionModel:select_1( pSelection, nCommand )
RETURN Qt_QItemSelectionModel_select_1( ::pPtr, pSelection, nCommand )
RETURN Qt_QItemSelectionModel_select_1( ::pPtr, hbqt_ptr( pSelection ), nCommand )
METHOD QItemSelectionModel:setCurrentIndex( pIndex, nCommand )
RETURN Qt_QItemSelectionModel_setCurrentIndex( ::pPtr, pIndex, nCommand )
RETURN Qt_QItemSelectionModel_setCurrentIndex( ::pPtr, hbqt_ptr( pIndex ), nCommand )

View File

@@ -85,7 +85,7 @@ CREATE CLASS QKeyEvent INHERIT QInputEvent
/*----------------------------------------------------------------------*/
METHOD QKeyEvent:new( pParent )
::pPtr := Qt_QKeyEvent( pParent )
::pPtr := Qt_QKeyEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -82,7 +82,7 @@ CREATE CLASS QKeySequence
/*----------------------------------------------------------------------*/
METHOD QKeySequence:new( pParent )
::pPtr := Qt_QKeySequence( pParent )
::pPtr := Qt_QKeySequence( hbqt_ptr( pParent ) )
RETURN Self
@@ -104,7 +104,7 @@ METHOD QKeySequence:isEmpty()
METHOD QKeySequence:matches( pSeq )
RETURN Qt_QKeySequence_matches( ::pPtr, pSeq )
RETURN Qt_QKeySequence_matches( ::pPtr, hbqt_ptr( pSeq ) )
METHOD QKeySequence:toString( nFormat )

View File

@@ -95,7 +95,7 @@ CREATE CLASS QLCDNumber INHERIT QFrame
/*----------------------------------------------------------------------*/
METHOD QLCDNumber:new( pParent )
::pPtr := Qt_QLCDNumber( pParent )
::pPtr := Qt_QLCDNumber( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -105,7 +105,7 @@ CREATE CLASS QLabel INHERIT QFrame
/*----------------------------------------------------------------------*/
METHOD QLabel:new( pParent )
::pPtr := Qt_QLabel( pParent )
::pPtr := Qt_QLabel( hbqt_ptr( pParent ) )
RETURN Self
@@ -159,7 +159,7 @@ METHOD QLabel:setAlignment( nQt_Alignment )
METHOD QLabel:setBuddy( pBuddy )
RETURN Qt_QLabel_setBuddy( ::pPtr, pBuddy )
RETURN Qt_QLabel_setBuddy( ::pPtr, hbqt_ptr( pBuddy ) )
METHOD QLabel:setIndent( nInt )
@@ -211,7 +211,7 @@ METHOD QLabel:clear()
METHOD QLabel:setMovie( pMovie )
RETURN Qt_QLabel_setMovie( ::pPtr, pMovie )
RETURN Qt_QLabel_setMovie( ::pPtr, hbqt_ptr( pMovie ) )
METHOD QLabel:setNum( nNum )
@@ -223,11 +223,11 @@ METHOD QLabel:setNum_1( nNum )
METHOD QLabel:setPicture( pPicture )
RETURN Qt_QLabel_setPicture( ::pPtr, pPicture )
RETURN Qt_QLabel_setPicture( ::pPtr, hbqt_ptr( pPicture ) )
METHOD QLabel:setPixmap( pQPixmap )
RETURN Qt_QLabel_setPixmap( ::pPtr, pQPixmap )
RETURN Qt_QLabel_setPixmap( ::pPtr, hbqt_ptr( pQPixmap ) )
METHOD QLabel:setText( cQString )

View File

@@ -105,7 +105,7 @@ CREATE CLASS QLayout INHERIT QObject, QLayoutItem
/*----------------------------------------------------------------------*/
METHOD QLayout:new( pParent )
::pPtr := Qt_QLayout( pParent )
::pPtr := Qt_QLayout( hbqt_ptr( pParent ) )
RETURN Self
@@ -123,11 +123,11 @@ METHOD QLayout:activate()
METHOD QLayout:addItem( pItem )
RETURN Qt_QLayout_addItem( ::pPtr, pItem )
RETURN Qt_QLayout_addItem( ::pPtr, hbqt_ptr( pItem ) )
METHOD QLayout:addWidget( pW )
RETURN Qt_QLayout_addWidget( ::pPtr, pW )
RETURN Qt_QLayout_addWidget( ::pPtr, hbqt_ptr( pW ) )
METHOD QLayout:contentsRect()
@@ -147,7 +147,7 @@ METHOD QLayout:getContentsMargins( nLeft, nTop, nRight, nBottom )
METHOD QLayout:indexOf( pWidget )
RETURN Qt_QLayout_indexOf( ::pPtr, pWidget )
RETURN Qt_QLayout_indexOf( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QLayout:isEnabled()
@@ -175,15 +175,15 @@ METHOD QLayout:parentWidget()
METHOD QLayout:removeItem( pItem )
RETURN Qt_QLayout_removeItem( ::pPtr, pItem )
RETURN Qt_QLayout_removeItem( ::pPtr, hbqt_ptr( pItem ) )
METHOD QLayout:removeWidget( pWidget )
RETURN Qt_QLayout_removeWidget( ::pPtr, pWidget )
RETURN Qt_QLayout_removeWidget( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QLayout:setAlignment( pW, nAlignment )
RETURN Qt_QLayout_setAlignment( ::pPtr, pW, nAlignment )
RETURN Qt_QLayout_setAlignment( ::pPtr, hbqt_ptr( pW ), nAlignment )
METHOD QLayout:setAlignment_1( nAlignment )
@@ -191,7 +191,7 @@ METHOD QLayout:setAlignment_1( nAlignment )
METHOD QLayout:setAlignment_2( pL, nAlignment )
RETURN Qt_QLayout_setAlignment_2( ::pPtr, pL, nAlignment )
RETURN Qt_QLayout_setAlignment_2( ::pPtr, hbqt_ptr( pL ), nAlignment )
METHOD QLayout:setContentsMargins( nLeft, nTop, nRight, nBottom )
@@ -203,7 +203,7 @@ METHOD QLayout:setEnabled( lEnable )
METHOD QLayout:setMenuBar( pWidget )
RETURN Qt_QLayout_setMenuBar( ::pPtr, pWidget )
RETURN Qt_QLayout_setMenuBar( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QLayout:setSizeConstraint( nSizeConstraint )
@@ -231,5 +231,5 @@ METHOD QLayout:update()
METHOD QLayout:closestAcceptableSize( pWidget, pSize )
RETURN Qt_QLayout_closestAcceptableSize( ::pPtr, pWidget, pSize )
RETURN Qt_QLayout_closestAcceptableSize( ::pPtr, hbqt_ptr( pWidget ), hbqt_ptr( pSize ) )

View File

@@ -93,7 +93,7 @@ CREATE CLASS QLayoutItem
/*----------------------------------------------------------------------*/
METHOD QLayoutItem:new( pParent )
::pPtr := Qt_QLayoutItem( pParent )
::pPtr := Qt_QLayoutItem( hbqt_ptr( pParent ) )
RETURN Self
@@ -159,7 +159,7 @@ METHOD QLayoutItem:setAlignment( nAlignment )
METHOD QLayoutItem:setGeometry( pR )
RETURN Qt_QLayoutItem_setGeometry( ::pPtr, pR )
RETURN Qt_QLayoutItem_setGeometry( ::pPtr, hbqt_ptr( pR ) )
METHOD QLayoutItem:sizeHint()

View File

@@ -131,7 +131,7 @@ CREATE CLASS QLineEdit INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QLineEdit:new( pParent )
::pPtr := Qt_QLineEdit( pParent )
::pPtr := Qt_QLineEdit( hbqt_ptr( pParent ) )
RETURN Self
@@ -173,7 +173,7 @@ METHOD QLineEdit:cursorPosition()
METHOD QLineEdit:cursorPositionAt( pPos )
RETURN Qt_QLineEdit_cursorPositionAt( ::pPtr, pPos )
RETURN Qt_QLineEdit_cursorPositionAt( ::pPtr, hbqt_ptr( pPos ) )
METHOD QLineEdit:cursorWordBackward( lMark )
@@ -273,7 +273,7 @@ METHOD QLineEdit:setAlignment( nFlag )
METHOD QLineEdit:setCompleter( pC )
RETURN Qt_QLineEdit_setCompleter( ::pPtr, pC )
RETURN Qt_QLineEdit_setCompleter( ::pPtr, hbqt_ptr( pC ) )
METHOD QLineEdit:setCursorPosition( nInt )
@@ -317,7 +317,7 @@ METHOD QLineEdit:setTextMargins( nLeft, nTop, nRight, nBottom )
METHOD QLineEdit:setValidator( pV )
RETURN Qt_QLineEdit_setValidator( ::pPtr, pV )
RETURN Qt_QLineEdit_setValidator( ::pPtr, hbqt_ptr( pV ) )
METHOD QLineEdit:sizeHint()

View File

@@ -81,7 +81,7 @@ CREATE CLASS QLinearGradient INHERIT QGradient
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QLinearGradient
METHOD QLinearGradient:new( ... )
::pPtr := Qt_QLinearGradient( ... )
@@ -102,7 +102,7 @@ METHOD QLinearGradient:finalStop()
METHOD QLinearGradient:setFinalStop( pStop )
RETURN Qt_QLinearGradient_setFinalStop( ::pPtr, pStop )
RETURN Qt_QLinearGradient_setFinalStop( ::pPtr, hbqt_ptr( pStop ) )
METHOD QLinearGradient:setFinalStop_1( nX, nY )
@@ -110,7 +110,7 @@ METHOD QLinearGradient:setFinalStop_1( nX, nY )
METHOD QLinearGradient:setStart( pStart )
RETURN Qt_QLinearGradient_setStart( ::pPtr, pStart )
RETURN Qt_QLinearGradient_setStart( ::pPtr, hbqt_ptr( pStart ) )
METHOD QLinearGradient:setStart_1( nX, nY )

View File

@@ -105,7 +105,7 @@ CREATE CLASS QListView INHERIT QAbstractItemView
/*----------------------------------------------------------------------*/
METHOD QListView:new( pParent )
::pPtr := Qt_QListView( pParent )
::pPtr := Qt_QListView( hbqt_ptr( pParent ) )
RETURN Self
@@ -171,7 +171,7 @@ METHOD QListView:setFlow( nFlow )
METHOD QListView:setGridSize( pSize )
RETURN Qt_QListView_setGridSize( ::pPtr, pSize )
RETURN Qt_QListView_setGridSize( ::pPtr, hbqt_ptr( pSize ) )
METHOD QListView:setLayoutMode( nMode )

View File

@@ -106,7 +106,7 @@ CREATE CLASS QListWidget INHERIT QListView
/*----------------------------------------------------------------------*/
METHOD QListWidget:new( pParent )
::pPtr := Qt_QListWidget( pParent )
::pPtr := Qt_QListWidget( hbqt_ptr( pParent ) )
RETURN Self
@@ -124,15 +124,15 @@ METHOD QListWidget:addItem( cLabel )
METHOD QListWidget:addItem_1( pItem )
RETURN Qt_QListWidget_addItem_1( ::pPtr, pItem )
RETURN Qt_QListWidget_addItem_1( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:addItems( pLabels )
RETURN Qt_QListWidget_addItems( ::pPtr, pLabels )
RETURN Qt_QListWidget_addItems( ::pPtr, hbqt_ptr( pLabels ) )
METHOD QListWidget:closePersistentEditor( pItem )
RETURN Qt_QListWidget_closePersistentEditor( ::pPtr, pItem )
RETURN Qt_QListWidget_closePersistentEditor( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:count()
@@ -148,11 +148,11 @@ METHOD QListWidget:currentRow()
METHOD QListWidget:editItem( pItem )
RETURN Qt_QListWidget_editItem( ::pPtr, pItem )
RETURN Qt_QListWidget_editItem( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:insertItem( nRow, pItem )
RETURN Qt_QListWidget_insertItem( ::pPtr, nRow, pItem )
RETURN Qt_QListWidget_insertItem( ::pPtr, nRow, hbqt_ptr( pItem ) )
METHOD QListWidget:insertItem_1( nRow, cLabel )
@@ -160,7 +160,7 @@ METHOD QListWidget:insertItem_1( nRow, cLabel )
METHOD QListWidget:insertItems( nRow, pLabels )
RETURN Qt_QListWidget_insertItems( ::pPtr, nRow, pLabels )
RETURN Qt_QListWidget_insertItems( ::pPtr, nRow, hbqt_ptr( pLabels ) )
METHOD QListWidget:isSortingEnabled()
@@ -172,7 +172,7 @@ METHOD QListWidget:item( nRow )
METHOD QListWidget:itemAt( pP )
RETURN Qt_QListWidget_itemAt( ::pPtr, pP )
RETURN Qt_QListWidget_itemAt( ::pPtr, hbqt_ptr( pP ) )
METHOD QListWidget:itemAt_1( nX, nY )
@@ -180,27 +180,27 @@ METHOD QListWidget:itemAt_1( nX, nY )
METHOD QListWidget:itemWidget( pItem )
RETURN Qt_QListWidget_itemWidget( ::pPtr, pItem )
RETURN Qt_QListWidget_itemWidget( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:openPersistentEditor( pItem )
RETURN Qt_QListWidget_openPersistentEditor( ::pPtr, pItem )
RETURN Qt_QListWidget_openPersistentEditor( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:removeItemWidget( pItem )
RETURN Qt_QListWidget_removeItemWidget( ::pPtr, pItem )
RETURN Qt_QListWidget_removeItemWidget( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:row( pItem )
RETURN Qt_QListWidget_row( ::pPtr, pItem )
RETURN Qt_QListWidget_row( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:setCurrentItem( pItem )
RETURN Qt_QListWidget_setCurrentItem( ::pPtr, pItem )
RETURN Qt_QListWidget_setCurrentItem( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:setCurrentItem_1( pItem, nCommand )
RETURN Qt_QListWidget_setCurrentItem_1( ::pPtr, pItem, nCommand )
RETURN Qt_QListWidget_setCurrentItem_1( ::pPtr, hbqt_ptr( pItem ), nCommand )
METHOD QListWidget:setCurrentRow( nRow )
@@ -212,7 +212,7 @@ METHOD QListWidget:setCurrentRow_1( nRow, nCommand )
METHOD QListWidget:setItemWidget( pItem, pWidget )
RETURN Qt_QListWidget_setItemWidget( ::pPtr, pItem, pWidget )
RETURN Qt_QListWidget_setItemWidget( ::pPtr, hbqt_ptr( pItem ), hbqt_ptr( pWidget ) )
METHOD QListWidget:setSortingEnabled( lEnable )
@@ -228,7 +228,7 @@ METHOD QListWidget:takeItem( nRow )
METHOD QListWidget:visualItemRect( pItem )
RETURN Qt_QListWidget_visualItemRect( ::pPtr, pItem )
RETURN Qt_QListWidget_visualItemRect( ::pPtr, hbqt_ptr( pItem ) )
METHOD QListWidget:clear()
@@ -236,5 +236,5 @@ METHOD QListWidget:clear()
METHOD QListWidget:scrollToItem( pItem, nHint )
RETURN Qt_QListWidget_scrollToItem( ::pPtr, pItem, nHint )
RETURN Qt_QListWidget_scrollToItem( ::pPtr, hbqt_ptr( pItem ), nHint )

View File

@@ -111,7 +111,7 @@ CREATE CLASS QListWidgetItem INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QListWidgetItem:new( pParent )
::pPtr := Qt_QListWidgetItem( pParent )
::pPtr := Qt_QListWidgetItem( hbqt_ptr( pParent ) )
RETURN Self
@@ -169,11 +169,11 @@ METHOD QListWidgetItem:listWidget()
METHOD QListWidgetItem:read( pIn )
RETURN Qt_QListWidgetItem_read( ::pPtr, pIn )
RETURN Qt_QListWidgetItem_read( ::pPtr, hbqt_ptr( pIn ) )
METHOD QListWidgetItem:setBackground( pBrush )
RETURN Qt_QListWidgetItem_setBackground( ::pPtr, pBrush )
RETURN Qt_QListWidgetItem_setBackground( ::pPtr, hbqt_ptr( pBrush ) )
METHOD QListWidgetItem:setCheckState( nState )
@@ -181,7 +181,7 @@ METHOD QListWidgetItem:setCheckState( nState )
METHOD QListWidgetItem:setData( nRole, pValue )
RETURN Qt_QListWidgetItem_setData( ::pPtr, nRole, pValue )
RETURN Qt_QListWidgetItem_setData( ::pPtr, nRole, hbqt_ptr( pValue ) )
METHOD QListWidgetItem:setFlags( nFlags )
@@ -189,11 +189,11 @@ METHOD QListWidgetItem:setFlags( nFlags )
METHOD QListWidgetItem:setFont( pFont )
RETURN Qt_QListWidgetItem_setFont( ::pPtr, pFont )
RETURN Qt_QListWidgetItem_setFont( ::pPtr, hbqt_ptr( pFont ) )
METHOD QListWidgetItem:setForeground( pBrush )
RETURN Qt_QListWidgetItem_setForeground( ::pPtr, pBrush )
RETURN Qt_QListWidgetItem_setForeground( ::pPtr, hbqt_ptr( pBrush ) )
METHOD QListWidgetItem:setHidden( lHide )
@@ -209,7 +209,7 @@ METHOD QListWidgetItem:setSelected( lSelect )
METHOD QListWidgetItem:setSizeHint( pSize )
RETURN Qt_QListWidgetItem_setSizeHint( ::pPtr, pSize )
RETURN Qt_QListWidgetItem_setSizeHint( ::pPtr, hbqt_ptr( pSize ) )
METHOD QListWidgetItem:setStatusTip( cStatusTip )
@@ -261,5 +261,5 @@ METHOD QListWidgetItem:whatsThis()
METHOD QListWidgetItem:write( pOut )
RETURN Qt_QListWidgetItem_write( ::pPtr, pOut )
RETURN Qt_QListWidgetItem_write( ::pPtr, hbqt_ptr( pOut ) )

View File

@@ -124,7 +124,7 @@ CREATE CLASS QMainWindow INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QMainWindow:new( pParent )
::pPtr := Qt_QMainWindow( pParent )
::pPtr := Qt_QMainWindow( hbqt_ptr( pParent ) )
RETURN Self
@@ -138,19 +138,19 @@ METHOD QMainWindow:configure( xObject )
METHOD QMainWindow:addDockWidget( nArea, pDockwidget )
RETURN Qt_QMainWindow_addDockWidget( ::pPtr, nArea, pDockwidget )
RETURN Qt_QMainWindow_addDockWidget( ::pPtr, nArea, hbqt_ptr( pDockwidget ) )
METHOD QMainWindow:addDockWidget_1( nArea, pDockwidget, nOrientation )
RETURN Qt_QMainWindow_addDockWidget_1( ::pPtr, nArea, pDockwidget, nOrientation )
RETURN Qt_QMainWindow_addDockWidget_1( ::pPtr, nArea, hbqt_ptr( pDockwidget ), nOrientation )
METHOD QMainWindow:addToolBar( nArea, pToolbar )
RETURN Qt_QMainWindow_addToolBar( ::pPtr, nArea, pToolbar )
RETURN Qt_QMainWindow_addToolBar( ::pPtr, nArea, hbqt_ptr( pToolbar ) )
METHOD QMainWindow:addToolBar_1( pToolbar )
RETURN Qt_QMainWindow_addToolBar_1( ::pPtr, pToolbar )
RETURN Qt_QMainWindow_addToolBar_1( ::pPtr, hbqt_ptr( pToolbar ) )
METHOD QMainWindow:addToolBar_2( cTitle )
@@ -178,7 +178,7 @@ METHOD QMainWindow:dockOptions()
METHOD QMainWindow:dockWidgetArea( pDockwidget )
RETURN Qt_QMainWindow_dockWidgetArea( ::pPtr, pDockwidget )
RETURN Qt_QMainWindow_dockWidgetArea( ::pPtr, hbqt_ptr( pDockwidget ) )
METHOD QMainWindow:documentMode()
@@ -190,11 +190,11 @@ METHOD QMainWindow:iconSize()
METHOD QMainWindow:insertToolBar( pBefore, pToolbar )
RETURN Qt_QMainWindow_insertToolBar( ::pPtr, pBefore, pToolbar )
RETURN Qt_QMainWindow_insertToolBar( ::pPtr, hbqt_ptr( pBefore ), hbqt_ptr( pToolbar ) )
METHOD QMainWindow:insertToolBarBreak( pBefore )
RETURN Qt_QMainWindow_insertToolBarBreak( ::pPtr, pBefore )
RETURN Qt_QMainWindow_insertToolBarBreak( ::pPtr, hbqt_ptr( pBefore ) )
METHOD QMainWindow:isAnimated()
@@ -214,23 +214,23 @@ METHOD QMainWindow:menuWidget()
METHOD QMainWindow:removeDockWidget( pDockwidget )
RETURN Qt_QMainWindow_removeDockWidget( ::pPtr, pDockwidget )
RETURN Qt_QMainWindow_removeDockWidget( ::pPtr, hbqt_ptr( pDockwidget ) )
METHOD QMainWindow:removeToolBar( pToolbar )
RETURN Qt_QMainWindow_removeToolBar( ::pPtr, pToolbar )
RETURN Qt_QMainWindow_removeToolBar( ::pPtr, hbqt_ptr( pToolbar ) )
METHOD QMainWindow:removeToolBarBreak( pBefore )
RETURN Qt_QMainWindow_removeToolBarBreak( ::pPtr, pBefore )
RETURN Qt_QMainWindow_removeToolBarBreak( ::pPtr, hbqt_ptr( pBefore ) )
METHOD QMainWindow:restoreDockWidget( pDockwidget )
RETURN Qt_QMainWindow_restoreDockWidget( ::pPtr, pDockwidget )
RETURN Qt_QMainWindow_restoreDockWidget( ::pPtr, hbqt_ptr( pDockwidget ) )
METHOD QMainWindow:restoreState( pState, nVersion )
RETURN Qt_QMainWindow_restoreState( ::pPtr, pState, nVersion )
RETURN Qt_QMainWindow_restoreState( ::pPtr, hbqt_ptr( pState ), nVersion )
METHOD QMainWindow:saveState( nVersion )
@@ -238,7 +238,7 @@ METHOD QMainWindow:saveState( nVersion )
METHOD QMainWindow:setCentralWidget( pWidget )
RETURN Qt_QMainWindow_setCentralWidget( ::pPtr, pWidget )
RETURN Qt_QMainWindow_setCentralWidget( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QMainWindow:setCorner( nCorner, nArea )
@@ -254,19 +254,19 @@ METHOD QMainWindow:setDocumentMode( lEnabled )
METHOD QMainWindow:setIconSize( pIconSize )
RETURN Qt_QMainWindow_setIconSize( ::pPtr, pIconSize )
RETURN Qt_QMainWindow_setIconSize( ::pPtr, hbqt_ptr( pIconSize ) )
METHOD QMainWindow:setMenuBar( pMenuBar )
RETURN Qt_QMainWindow_setMenuBar( ::pPtr, pMenuBar )
RETURN Qt_QMainWindow_setMenuBar( ::pPtr, hbqt_ptr( pMenuBar ) )
METHOD QMainWindow:setMenuWidget( pMenuBar )
RETURN Qt_QMainWindow_setMenuWidget( ::pPtr, pMenuBar )
RETURN Qt_QMainWindow_setMenuWidget( ::pPtr, hbqt_ptr( pMenuBar ) )
METHOD QMainWindow:setStatusBar( pStatusbar )
RETURN Qt_QMainWindow_setStatusBar( ::pPtr, pStatusbar )
RETURN Qt_QMainWindow_setStatusBar( ::pPtr, hbqt_ptr( pStatusbar ) )
METHOD QMainWindow:setTabPosition( nAreas, nTabPosition )
@@ -286,7 +286,7 @@ METHOD QMainWindow:setUnifiedTitleAndToolBarOnMac( lSet )
METHOD QMainWindow:splitDockWidget( pFirst, pSecond, nOrientation )
RETURN Qt_QMainWindow_splitDockWidget( ::pPtr, pFirst, pSecond, nOrientation )
RETURN Qt_QMainWindow_splitDockWidget( ::pPtr, hbqt_ptr( pFirst ), hbqt_ptr( pSecond ), nOrientation )
METHOD QMainWindow:statusBar()
@@ -302,15 +302,15 @@ METHOD QMainWindow:tabShape()
METHOD QMainWindow:tabifyDockWidget( pFirst, pSecond )
RETURN Qt_QMainWindow_tabifyDockWidget( ::pPtr, pFirst, pSecond )
RETURN Qt_QMainWindow_tabifyDockWidget( ::pPtr, hbqt_ptr( pFirst ), hbqt_ptr( pSecond ) )
METHOD QMainWindow:toolBarArea( pToolbar )
RETURN Qt_QMainWindow_toolBarArea( ::pPtr, pToolbar )
RETURN Qt_QMainWindow_toolBarArea( ::pPtr, hbqt_ptr( pToolbar ) )
METHOD QMainWindow:toolBarBreak( pToolbar )
RETURN Qt_QMainWindow_toolBarBreak( ::pPtr, pToolbar )
RETURN Qt_QMainWindow_toolBarBreak( ::pPtr, hbqt_ptr( pToolbar ) )
METHOD QMainWindow:toolButtonStyle()

View File

@@ -105,7 +105,7 @@ CREATE CLASS QMatrix
/*----------------------------------------------------------------------*/
METHOD QMatrix:new( pParent )
::pPtr := Qt_QMatrix( pParent )
::pPtr := Qt_QMatrix( hbqt_ptr( pParent ) )
RETURN Self
@@ -167,47 +167,47 @@ METHOD QMatrix:map_1( nX, nY, nTx, nTy )
METHOD QMatrix:map_2( pPoint )
RETURN Qt_QMatrix_map_2( ::pPtr, pPoint )
RETURN Qt_QMatrix_map_2( ::pPtr, hbqt_ptr( pPoint ) )
METHOD QMatrix:map_3( pPoint )
RETURN Qt_QMatrix_map_3( ::pPtr, pPoint )
RETURN Qt_QMatrix_map_3( ::pPtr, hbqt_ptr( pPoint ) )
METHOD QMatrix:map_4( pLine )
RETURN Qt_QMatrix_map_4( ::pPtr, pLine )
RETURN Qt_QMatrix_map_4( ::pPtr, hbqt_ptr( pLine ) )
METHOD QMatrix:map_5( pLine )
RETURN Qt_QMatrix_map_5( ::pPtr, pLine )
RETURN Qt_QMatrix_map_5( ::pPtr, hbqt_ptr( pLine ) )
METHOD QMatrix:map_6( pPolygon )
RETURN Qt_QMatrix_map_6( ::pPtr, pPolygon )
RETURN Qt_QMatrix_map_6( ::pPtr, hbqt_ptr( pPolygon ) )
METHOD QMatrix:map_7( pPolygon )
RETURN Qt_QMatrix_map_7( ::pPtr, pPolygon )
RETURN Qt_QMatrix_map_7( ::pPtr, hbqt_ptr( pPolygon ) )
METHOD QMatrix:map_8( pRegion )
RETURN Qt_QMatrix_map_8( ::pPtr, pRegion )
RETURN Qt_QMatrix_map_8( ::pPtr, hbqt_ptr( pRegion ) )
METHOD QMatrix:map_9( pPath )
RETURN Qt_QMatrix_map_9( ::pPtr, pPath )
RETURN Qt_QMatrix_map_9( ::pPtr, hbqt_ptr( pPath ) )
METHOD QMatrix:mapRect( pRectangle )
RETURN Qt_QMatrix_mapRect( ::pPtr, pRectangle )
RETURN Qt_QMatrix_mapRect( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QMatrix:mapRect_1( pRectangle )
RETURN Qt_QMatrix_mapRect_1( ::pPtr, pRectangle )
RETURN Qt_QMatrix_mapRect_1( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QMatrix:mapToPolygon( pRectangle )
RETURN Qt_QMatrix_mapToPolygon( ::pPtr, pRectangle )
RETURN Qt_QMatrix_mapToPolygon( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QMatrix:reset()

View File

@@ -109,7 +109,7 @@ CREATE CLASS QMenu INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QMenu:new( pParent )
::pPtr := Qt_QMenu( pParent )
::pPtr := Qt_QMenu( hbqt_ptr( pParent ) )
RETURN Self
@@ -123,11 +123,11 @@ METHOD QMenu:configure( xObject )
METHOD QMenu:actionAt( pPt )
RETURN Qt_QMenu_actionAt( ::pPtr, pPt )
RETURN Qt_QMenu_actionAt( ::pPtr, hbqt_ptr( pPt ) )
METHOD QMenu:actionGeometry( pAct )
RETURN Qt_QMenu_actionGeometry( ::pPtr, pAct )
RETURN Qt_QMenu_actionGeometry( ::pPtr, hbqt_ptr( pAct ) )
METHOD QMenu:activeAction()
@@ -143,19 +143,19 @@ METHOD QMenu:addAction_1( cIcon, cText )
METHOD QMenu:addAction_2( cText, pReceiver, pMember, pShortcut )
RETURN Qt_QMenu_addAction_2( ::pPtr, cText, pReceiver, pMember, pShortcut )
RETURN Qt_QMenu_addAction_2( ::pPtr, cText, hbqt_ptr( pReceiver ), hbqt_ptr( pMember ), hbqt_ptr( pShortcut ) )
METHOD QMenu:addAction_3( cIcon, cText, pReceiver, pMember, pShortcut )
RETURN Qt_QMenu_addAction_3( ::pPtr, cIcon, cText, pReceiver, pMember, pShortcut )
RETURN Qt_QMenu_addAction_3( ::pPtr, cIcon, cText, hbqt_ptr( pReceiver ), hbqt_ptr( pMember ), hbqt_ptr( pShortcut ) )
METHOD QMenu:addAction_4( pAction )
RETURN Qt_QMenu_addAction_4( ::pPtr, pAction )
RETURN Qt_QMenu_addAction_4( ::pPtr, hbqt_ptr( pAction ) )
METHOD QMenu:addMenu( pMenu )
RETURN Qt_QMenu_addMenu( ::pPtr, pMenu )
RETURN Qt_QMenu_addMenu( ::pPtr, hbqt_ptr( pMenu ) )
METHOD QMenu:addMenu_1( cTitle )
@@ -183,7 +183,7 @@ METHOD QMenu:exec()
METHOD QMenu:exec_1( pP, pAction )
RETURN Qt_QMenu_exec_1( ::pPtr, pP, pAction )
RETURN Qt_QMenu_exec_1( ::pPtr, hbqt_ptr( pP ), hbqt_ptr( pAction ) )
METHOD QMenu:hideTearOffMenu()
@@ -195,11 +195,11 @@ METHOD QMenu:icon()
METHOD QMenu:insertMenu( pBefore, pMenu )
RETURN Qt_QMenu_insertMenu( ::pPtr, pBefore, pMenu )
RETURN Qt_QMenu_insertMenu( ::pPtr, hbqt_ptr( pBefore ), hbqt_ptr( pMenu ) )
METHOD QMenu:insertSeparator( pBefore )
RETURN Qt_QMenu_insertSeparator( ::pPtr, pBefore )
RETURN Qt_QMenu_insertSeparator( ::pPtr, hbqt_ptr( pBefore ) )
METHOD QMenu:isEmpty()
@@ -219,7 +219,7 @@ METHOD QMenu:menuAction()
METHOD QMenu:popup( pP, pAtAction )
RETURN Qt_QMenu_popup( ::pPtr, pP, pAtAction )
RETURN Qt_QMenu_popup( ::pPtr, hbqt_ptr( pP ), hbqt_ptr( pAtAction ) )
METHOD QMenu:separatorsCollapsible()
@@ -227,11 +227,11 @@ METHOD QMenu:separatorsCollapsible()
METHOD QMenu:setActiveAction( pAct )
RETURN Qt_QMenu_setActiveAction( ::pPtr, pAct )
RETURN Qt_QMenu_setActiveAction( ::pPtr, hbqt_ptr( pAct ) )
METHOD QMenu:setDefaultAction( pAct )
RETURN Qt_QMenu_setDefaultAction( ::pPtr, pAct )
RETURN Qt_QMenu_setDefaultAction( ::pPtr, hbqt_ptr( pAct ) )
METHOD QMenu:setIcon( cIcon )

View File

@@ -90,7 +90,7 @@ CREATE CLASS QMenuBar INHERIT QWidget
/*----------------------------------------------------------------------*/
METHOD QMenuBar:new( pParent )
::pPtr := Qt_QMenuBar( pParent )
::pPtr := Qt_QMenuBar( hbqt_ptr( pParent ) )
RETURN Self
@@ -112,15 +112,15 @@ METHOD QMenuBar:addAction( cText )
METHOD QMenuBar:addAction_1( cText, pReceiver, pMember )
RETURN Qt_QMenuBar_addAction_1( ::pPtr, cText, pReceiver, pMember )
RETURN Qt_QMenuBar_addAction_1( ::pPtr, cText, hbqt_ptr( pReceiver ), hbqt_ptr( pMember ) )
METHOD QMenuBar:addAction_2( pAction )
RETURN Qt_QMenuBar_addAction_2( ::pPtr, pAction )
RETURN Qt_QMenuBar_addAction_2( ::pPtr, hbqt_ptr( pAction ) )
METHOD QMenuBar:addMenu( pMenu )
RETURN Qt_QMenuBar_addMenu( ::pPtr, pMenu )
RETURN Qt_QMenuBar_addMenu( ::pPtr, hbqt_ptr( pMenu ) )
METHOD QMenuBar:addMenu_1( cTitle )
@@ -140,11 +140,11 @@ METHOD QMenuBar:clear()
METHOD QMenuBar:insertMenu( pBefore, pMenu )
RETURN Qt_QMenuBar_insertMenu( ::pPtr, pBefore, pMenu )
RETURN Qt_QMenuBar_insertMenu( ::pPtr, hbqt_ptr( pBefore ), hbqt_ptr( pMenu ) )
METHOD QMenuBar:insertSeparator( pBefore )
RETURN Qt_QMenuBar_insertSeparator( ::pPtr, pBefore )
RETURN Qt_QMenuBar_insertSeparator( ::pPtr, hbqt_ptr( pBefore ) )
METHOD QMenuBar:isDefaultUp()
@@ -152,7 +152,7 @@ METHOD QMenuBar:isDefaultUp()
METHOD QMenuBar:setActiveAction( pAct )
RETURN Qt_QMenuBar_setActiveAction( ::pPtr, pAct )
RETURN Qt_QMenuBar_setActiveAction( ::pPtr, hbqt_ptr( pAct ) )
METHOD QMenuBar:setDefaultUp( lBool )

View File

@@ -114,7 +114,7 @@ CREATE CLASS QMessageBox INHERIT QDialog
/*----------------------------------------------------------------------*/
METHOD QMessageBox:new( pParent )
::pPtr := Qt_QMessageBox( pParent )
::pPtr := Qt_QMessageBox( hbqt_ptr( pParent ) )
RETURN Self
@@ -128,7 +128,7 @@ METHOD QMessageBox:configure( xObject )
METHOD QMessageBox:addButton( pButton, nRole )
RETURN Qt_QMessageBox_addButton( ::pPtr, pButton, nRole )
RETURN Qt_QMessageBox_addButton( ::pPtr, hbqt_ptr( pButton ), nRole )
METHOD QMessageBox:addButton_1( cText, nRole )
@@ -144,7 +144,7 @@ METHOD QMessageBox:button( nWhich )
METHOD QMessageBox:buttonRole( pButton )
RETURN Qt_QMessageBox_buttonRole( ::pPtr, pButton )
RETURN Qt_QMessageBox_buttonRole( ::pPtr, hbqt_ptr( pButton ) )
METHOD QMessageBox:clickedButton()
@@ -176,15 +176,15 @@ METHOD QMessageBox:informativeText()
METHOD QMessageBox:open( pReceiver, pMember )
RETURN Qt_QMessageBox_open( ::pPtr, pReceiver, pMember )
RETURN Qt_QMessageBox_open( ::pPtr, hbqt_ptr( pReceiver ), hbqt_ptr( pMember ) )
METHOD QMessageBox:removeButton( pButton )
RETURN Qt_QMessageBox_removeButton( ::pPtr, pButton )
RETURN Qt_QMessageBox_removeButton( ::pPtr, hbqt_ptr( pButton ) )
METHOD QMessageBox:setDefaultButton( pButton )
RETURN Qt_QMessageBox_setDefaultButton( ::pPtr, pButton )
RETURN Qt_QMessageBox_setDefaultButton( ::pPtr, hbqt_ptr( pButton ) )
METHOD QMessageBox:setDefaultButton_1( nButton )
@@ -196,7 +196,7 @@ METHOD QMessageBox:setDetailedText( cText )
METHOD QMessageBox:setEscapeButton( pButton )
RETURN Qt_QMessageBox_setEscapeButton( ::pPtr, pButton )
RETURN Qt_QMessageBox_setEscapeButton( ::pPtr, hbqt_ptr( pButton ) )
METHOD QMessageBox:setEscapeButton_1( nButton )
@@ -208,7 +208,7 @@ METHOD QMessageBox:setIcon( nIcon )
METHOD QMessageBox:setIconPixmap( pPixmap )
RETURN Qt_QMessageBox_setIconPixmap( ::pPtr, pPixmap )
RETURN Qt_QMessageBox_setIconPixmap( ::pPtr, hbqt_ptr( pPixmap ) )
METHOD QMessageBox:setInformativeText( cText )
@@ -236,7 +236,7 @@ METHOD QMessageBox:setWindowTitle( cTitle )
METHOD QMessageBox:standardButton( pButton )
RETURN Qt_QMessageBox_standardButton( ::pPtr, pButton )
RETURN Qt_QMessageBox_standardButton( ::pPtr, hbqt_ptr( pButton ) )
METHOD QMessageBox:standardButtons()
@@ -252,27 +252,27 @@ METHOD QMessageBox:textFormat()
METHOD QMessageBox:about( pParent, cTitle, cText )
RETURN Qt_QMessageBox_about( ::pPtr, pParent, cTitle, cText )
RETURN Qt_QMessageBox_about( ::pPtr, hbqt_ptr( pParent ), cTitle, cText )
METHOD QMessageBox:aboutQt( pParent, cTitle )
RETURN Qt_QMessageBox_aboutQt( ::pPtr, pParent, cTitle )
RETURN Qt_QMessageBox_aboutQt( ::pPtr, hbqt_ptr( pParent ), cTitle )
METHOD QMessageBox:critical( pParent, cTitle, cText, nButtons, nDefaultButton )
RETURN Qt_QMessageBox_critical( ::pPtr, pParent, cTitle, cText, nButtons, nDefaultButton )
RETURN Qt_QMessageBox_critical( ::pPtr, hbqt_ptr( pParent ), cTitle, cText, nButtons, nDefaultButton )
METHOD QMessageBox:information( pParent, cTitle, cText, nButtons, nDefaultButton )
RETURN Qt_QMessageBox_information( ::pPtr, pParent, cTitle, cText, nButtons, nDefaultButton )
RETURN Qt_QMessageBox_information( ::pPtr, hbqt_ptr( pParent ), cTitle, cText, nButtons, nDefaultButton )
METHOD QMessageBox:question( pParent, cTitle, cText, nButtons, nDefaultButton )
RETURN Qt_QMessageBox_question( ::pPtr, pParent, cTitle, cText, nButtons, nDefaultButton )
RETURN Qt_QMessageBox_question( ::pPtr, hbqt_ptr( pParent ), cTitle, cText, nButtons, nDefaultButton )
METHOD QMessageBox:warning( pParent, cTitle, cText, nButtons, nDefaultButton )
RETURN Qt_QMessageBox_warning( ::pPtr, pParent, cTitle, cText, nButtons, nDefaultButton )
RETURN Qt_QMessageBox_warning( ::pPtr, hbqt_ptr( pParent ), cTitle, cText, nButtons, nDefaultButton )
METHOD QMessageBox:exec()

View File

@@ -85,7 +85,7 @@ CREATE CLASS QMouseEvent INHERIT QInputEvent
/*----------------------------------------------------------------------*/
METHOD QMouseEvent:new( pParent )
::pPtr := Qt_QMouseEvent( pParent )
::pPtr := Qt_QMouseEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -78,7 +78,7 @@ CREATE CLASS QMoveEvent INHERIT QEvent
/*----------------------------------------------------------------------*/
METHOD QMoveEvent:new( pParent )
::pPtr := Qt_QMoveEvent( pParent )
::pPtr := Qt_QMoveEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -104,7 +104,7 @@ CREATE CLASS QMovie INHERIT QObject
/*----------------------------------------------------------------------*/
METHOD QMovie:new( pParent )
::pPtr := Qt_QMovie( pParent )
::pPtr := Qt_QMovie( hbqt_ptr( pParent ) )
RETURN Self
@@ -178,7 +178,7 @@ METHOD QMovie:scaledSize()
METHOD QMovie:setBackgroundColor( pColor )
RETURN Qt_QMovie_setBackgroundColor( ::pPtr, pColor )
RETURN Qt_QMovie_setBackgroundColor( ::pPtr, hbqt_ptr( pColor ) )
METHOD QMovie:setCacheMode( nMode )
@@ -186,7 +186,7 @@ METHOD QMovie:setCacheMode( nMode )
METHOD QMovie:setDevice( pDevice )
RETURN Qt_QMovie_setDevice( ::pPtr, pDevice )
RETURN Qt_QMovie_setDevice( ::pPtr, hbqt_ptr( pDevice ) )
METHOD QMovie:setFileName( cFileName )
@@ -194,11 +194,11 @@ METHOD QMovie:setFileName( cFileName )
METHOD QMovie:setFormat( pFormat )
RETURN Qt_QMovie_setFormat( ::pPtr, pFormat )
RETURN Qt_QMovie_setFormat( ::pPtr, hbqt_ptr( pFormat ) )
METHOD QMovie:setScaledSize( pSize )
RETURN Qt_QMovie_setScaledSize( ::pPtr, pSize )
RETURN Qt_QMovie_setScaledSize( ::pPtr, hbqt_ptr( pSize ) )
METHOD QMovie:speed()

View File

@@ -84,7 +84,7 @@ CREATE CLASS QPageSetupDialog INHERIT QDialog
/*----------------------------------------------------------------------*/
METHOD QPageSetupDialog:new( pParent )
::pPtr := Qt_QPageSetupDialog( pParent )
::pPtr := Qt_QPageSetupDialog( hbqt_ptr( pParent ) )
RETURN Self
@@ -102,7 +102,7 @@ METHOD QPageSetupDialog:exec()
METHOD QPageSetupDialog:open( pReceiver, pMember )
RETURN Qt_QPageSetupDialog_open( ::pPtr, pReceiver, pMember )
RETURN Qt_QPageSetupDialog_open( ::pPtr, hbqt_ptr( pReceiver ), hbqt_ptr( pMember ) )
METHOD QPageSetupDialog:options()

View File

@@ -88,7 +88,7 @@ CREATE CLASS QPaintDevice
/*----------------------------------------------------------------------*/
METHOD QPaintDevice:new( pParent )
::pPtr := Qt_QPaintDevice( pParent )
::pPtr := Qt_QPaintDevice( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -78,7 +78,7 @@ CREATE CLASS QPaintEvent INHERIT QEvent
/*----------------------------------------------------------------------*/
METHOD QPaintEvent:new( pParent )
::pPtr := Qt_QPaintEvent( pParent )
::pPtr := Qt_QPaintEvent( hbqt_ptr( pParent ) )
RETURN Self

View File

@@ -258,7 +258,7 @@ CREATE CLASS QPainter
/*----------------------------------------------------------------------*/
METHOD QPainter:new( pParent )
::pPtr := Qt_QPainter( pParent )
::pPtr := Qt_QPainter( hbqt_ptr( pParent ) )
RETURN Self
@@ -280,15 +280,15 @@ METHOD QPainter:backgroundMode()
METHOD QPainter:begin( pDevice )
RETURN Qt_QPainter_begin( ::pPtr, pDevice )
RETURN Qt_QPainter_begin( ::pPtr, hbqt_ptr( pDevice ) )
METHOD QPainter:boundingRect( pRectangle, nFlags, cText )
RETURN Qt_QPainter_boundingRect( ::pPtr, pRectangle, nFlags, cText )
RETURN Qt_QPainter_boundingRect( ::pPtr, hbqt_ptr( pRectangle ), nFlags, cText )
METHOD QPainter:boundingRect_1( pRectangle, nFlags, cText )
RETURN Qt_QPainter_boundingRect_1( ::pPtr, pRectangle, nFlags, cText )
RETURN Qt_QPainter_boundingRect_1( ::pPtr, hbqt_ptr( pRectangle ), nFlags, cText )
METHOD QPainter:boundingRect_2( nX, nY, nW, nH, nFlags, cText )
@@ -296,7 +296,7 @@ METHOD QPainter:boundingRect_2( nX, nY, nW, nH, nFlags, cText )
METHOD QPainter:boundingRect_3( pRectangle, cText, pOption )
RETURN Qt_QPainter_boundingRect_3( ::pPtr, pRectangle, cText, pOption )
RETURN Qt_QPainter_boundingRect_3( ::pPtr, hbqt_ptr( pRectangle ), cText, hbqt_ptr( pOption ) )
METHOD QPainter:brush()
@@ -340,11 +340,11 @@ METHOD QPainter:deviceTransform()
METHOD QPainter:drawArc( pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawArc( ::pPtr, pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawArc( ::pPtr, hbqt_ptr( pRectangle ), nStartAngle, nSpanAngle )
METHOD QPainter:drawArc_1( pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawArc_1( ::pPtr, pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawArc_1( ::pPtr, hbqt_ptr( pRectangle ), nStartAngle, nSpanAngle )
METHOD QPainter:drawArc_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle )
@@ -352,11 +352,11 @@ METHOD QPainter:drawArc_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle )
METHOD QPainter:drawChord( pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawChord( ::pPtr, pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawChord( ::pPtr, hbqt_ptr( pRectangle ), nStartAngle, nSpanAngle )
METHOD QPainter:drawChord_1( pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawChord_1( ::pPtr, pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawChord_1( ::pPtr, hbqt_ptr( pRectangle ), nStartAngle, nSpanAngle )
METHOD QPainter:drawChord_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle )
@@ -364,27 +364,27 @@ METHOD QPainter:drawChord_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle )
METHOD QPainter:drawConvexPolygon( pPoints, nPointCount )
RETURN Qt_QPainter_drawConvexPolygon( ::pPtr, pPoints, nPointCount )
RETURN Qt_QPainter_drawConvexPolygon( ::pPtr, hbqt_ptr( pPoints ), nPointCount )
METHOD QPainter:drawConvexPolygon_1( pPoints, nPointCount )
RETURN Qt_QPainter_drawConvexPolygon_1( ::pPtr, pPoints, nPointCount )
RETURN Qt_QPainter_drawConvexPolygon_1( ::pPtr, hbqt_ptr( pPoints ), nPointCount )
METHOD QPainter:drawConvexPolygon_2( pPolygon )
RETURN Qt_QPainter_drawConvexPolygon_2( ::pPtr, pPolygon )
RETURN Qt_QPainter_drawConvexPolygon_2( ::pPtr, hbqt_ptr( pPolygon ) )
METHOD QPainter:drawConvexPolygon_3( pPolygon )
RETURN Qt_QPainter_drawConvexPolygon_3( ::pPtr, pPolygon )
RETURN Qt_QPainter_drawConvexPolygon_3( ::pPtr, hbqt_ptr( pPolygon ) )
METHOD QPainter:drawEllipse( pRectangle )
RETURN Qt_QPainter_drawEllipse( ::pPtr, pRectangle )
RETURN Qt_QPainter_drawEllipse( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainter:drawEllipse_1( pRectangle )
RETURN Qt_QPainter_drawEllipse_1( ::pPtr, pRectangle )
RETURN Qt_QPainter_drawEllipse_1( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainter:drawEllipse_2( nX, nY, nWidth, nHeight )
@@ -392,63 +392,63 @@ METHOD QPainter:drawEllipse_2( nX, nY, nWidth, nHeight )
METHOD QPainter:drawEllipse_3( pCenter, nRx, nRy )
RETURN Qt_QPainter_drawEllipse_3( ::pPtr, pCenter, nRx, nRy )
RETURN Qt_QPainter_drawEllipse_3( ::pPtr, hbqt_ptr( pCenter ), nRx, nRy )
METHOD QPainter:drawEllipse_4( pCenter, nRx, nRy )
RETURN Qt_QPainter_drawEllipse_4( ::pPtr, pCenter, nRx, nRy )
RETURN Qt_QPainter_drawEllipse_4( ::pPtr, hbqt_ptr( pCenter ), nRx, nRy )
METHOD QPainter:drawImage( pTarget, pImage, pSource, nFlags )
RETURN Qt_QPainter_drawImage( ::pPtr, pTarget, pImage, pSource, nFlags )
RETURN Qt_QPainter_drawImage( ::pPtr, hbqt_ptr( pTarget ), hbqt_ptr( pImage ), hbqt_ptr( pSource ), nFlags )
METHOD QPainter:drawImage_1( pTarget, pImage, pSource, nFlags )
RETURN Qt_QPainter_drawImage_1( ::pPtr, pTarget, pImage, pSource, nFlags )
RETURN Qt_QPainter_drawImage_1( ::pPtr, hbqt_ptr( pTarget ), hbqt_ptr( pImage ), hbqt_ptr( pSource ), nFlags )
METHOD QPainter:drawImage_2( pPoint, pImage )
RETURN Qt_QPainter_drawImage_2( ::pPtr, pPoint, pImage )
RETURN Qt_QPainter_drawImage_2( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pImage ) )
METHOD QPainter:drawImage_3( pPoint, pImage )
RETURN Qt_QPainter_drawImage_3( ::pPtr, pPoint, pImage )
RETURN Qt_QPainter_drawImage_3( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pImage ) )
METHOD QPainter:drawImage_4( pPoint, pImage, pSource, nFlags )
RETURN Qt_QPainter_drawImage_4( ::pPtr, pPoint, pImage, pSource, nFlags )
RETURN Qt_QPainter_drawImage_4( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pImage ), hbqt_ptr( pSource ), nFlags )
METHOD QPainter:drawImage_5( pPoint, pImage, pSource, nFlags )
RETURN Qt_QPainter_drawImage_5( ::pPtr, pPoint, pImage, pSource, nFlags )
RETURN Qt_QPainter_drawImage_5( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pImage ), hbqt_ptr( pSource ), nFlags )
METHOD QPainter:drawImage_6( pRectangle, pImage )
RETURN Qt_QPainter_drawImage_6( ::pPtr, pRectangle, pImage )
RETURN Qt_QPainter_drawImage_6( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pImage ) )
METHOD QPainter:drawImage_7( pRectangle, pImage )
RETURN Qt_QPainter_drawImage_7( ::pPtr, pRectangle, pImage )
RETURN Qt_QPainter_drawImage_7( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pImage ) )
METHOD QPainter:drawImage_8( nX, nY, pImage, nSx, nSy, nSw, nSh, nFlags )
RETURN Qt_QPainter_drawImage_8( ::pPtr, nX, nY, pImage, nSx, nSy, nSw, nSh, nFlags )
RETURN Qt_QPainter_drawImage_8( ::pPtr, nX, nY, hbqt_ptr( pImage ), nSx, nSy, nSw, nSh, nFlags )
METHOD QPainter:drawLine( pLine )
RETURN Qt_QPainter_drawLine( ::pPtr, pLine )
RETURN Qt_QPainter_drawLine( ::pPtr, hbqt_ptr( pLine ) )
METHOD QPainter:drawLine_1( pLine )
RETURN Qt_QPainter_drawLine_1( ::pPtr, pLine )
RETURN Qt_QPainter_drawLine_1( ::pPtr, hbqt_ptr( pLine ) )
METHOD QPainter:drawLine_2( pP1, pP2 )
RETURN Qt_QPainter_drawLine_2( ::pPtr, pP1, pP2 )
RETURN Qt_QPainter_drawLine_2( ::pPtr, hbqt_ptr( pP1 ), hbqt_ptr( pP2 ) )
METHOD QPainter:drawLine_3( pP1, pP2 )
RETURN Qt_QPainter_drawLine_3( ::pPtr, pP1, pP2 )
RETURN Qt_QPainter_drawLine_3( ::pPtr, hbqt_ptr( pP1 ), hbqt_ptr( pP2 ) )
METHOD QPainter:drawLine_4( nX1, nY1, nX2, nY2 )
@@ -456,43 +456,43 @@ METHOD QPainter:drawLine_4( nX1, nY1, nX2, nY2 )
METHOD QPainter:drawLines( pLines, nLineCount )
RETURN Qt_QPainter_drawLines( ::pPtr, pLines, nLineCount )
RETURN Qt_QPainter_drawLines( ::pPtr, hbqt_ptr( pLines ), nLineCount )
METHOD QPainter:drawLines_1( pLines, nLineCount )
RETURN Qt_QPainter_drawLines_1( ::pPtr, pLines, nLineCount )
RETURN Qt_QPainter_drawLines_1( ::pPtr, hbqt_ptr( pLines ), nLineCount )
METHOD QPainter:drawLines_2( pPointPairs, nLineCount )
RETURN Qt_QPainter_drawLines_2( ::pPtr, pPointPairs, nLineCount )
RETURN Qt_QPainter_drawLines_2( ::pPtr, hbqt_ptr( pPointPairs ), nLineCount )
METHOD QPainter:drawLines_3( pPointPairs, nLineCount )
RETURN Qt_QPainter_drawLines_3( ::pPtr, pPointPairs, nLineCount )
RETURN Qt_QPainter_drawLines_3( ::pPtr, hbqt_ptr( pPointPairs ), nLineCount )
METHOD QPainter:drawPath( pPath )
RETURN Qt_QPainter_drawPath( ::pPtr, pPath )
RETURN Qt_QPainter_drawPath( ::pPtr, hbqt_ptr( pPath ) )
METHOD QPainter:drawPicture( pPoint, pPicture )
RETURN Qt_QPainter_drawPicture( ::pPtr, pPoint, pPicture )
RETURN Qt_QPainter_drawPicture( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pPicture ) )
METHOD QPainter:drawPicture_1( pPoint, pPicture )
RETURN Qt_QPainter_drawPicture_1( ::pPtr, pPoint, pPicture )
RETURN Qt_QPainter_drawPicture_1( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pPicture ) )
METHOD QPainter:drawPicture_2( nX, nY, pPicture )
RETURN Qt_QPainter_drawPicture_2( ::pPtr, nX, nY, pPicture )
RETURN Qt_QPainter_drawPicture_2( ::pPtr, nX, nY, hbqt_ptr( pPicture ) )
METHOD QPainter:drawPie( pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawPie( ::pPtr, pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawPie( ::pPtr, hbqt_ptr( pRectangle ), nStartAngle, nSpanAngle )
METHOD QPainter:drawPie_1( pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawPie_1( ::pPtr, pRectangle, nStartAngle, nSpanAngle )
RETURN Qt_QPainter_drawPie_1( ::pPtr, hbqt_ptr( pRectangle ), nStartAngle, nSpanAngle )
METHOD QPainter:drawPie_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle )
@@ -500,55 +500,55 @@ METHOD QPainter:drawPie_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle )
METHOD QPainter:drawPixmap( pTarget, pPixmap, pSource )
RETURN Qt_QPainter_drawPixmap( ::pPtr, pTarget, pPixmap, pSource )
RETURN Qt_QPainter_drawPixmap( ::pPtr, hbqt_ptr( pTarget ), hbqt_ptr( pPixmap ), hbqt_ptr( pSource ) )
METHOD QPainter:drawPixmap_1( pTarget, pPixmap, pSource )
RETURN Qt_QPainter_drawPixmap_1( ::pPtr, pTarget, pPixmap, pSource )
RETURN Qt_QPainter_drawPixmap_1( ::pPtr, hbqt_ptr( pTarget ), hbqt_ptr( pPixmap ), hbqt_ptr( pSource ) )
METHOD QPainter:drawPixmap_2( pPoint, pPixmap, pSource )
RETURN Qt_QPainter_drawPixmap_2( ::pPtr, pPoint, pPixmap, pSource )
RETURN Qt_QPainter_drawPixmap_2( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pPixmap ), hbqt_ptr( pSource ) )
METHOD QPainter:drawPixmap_3( pPoint, pPixmap, pSource )
RETURN Qt_QPainter_drawPixmap_3( ::pPtr, pPoint, pPixmap, pSource )
RETURN Qt_QPainter_drawPixmap_3( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pPixmap ), hbqt_ptr( pSource ) )
METHOD QPainter:drawPixmap_4( pPoint, pPixmap )
RETURN Qt_QPainter_drawPixmap_4( ::pPtr, pPoint, pPixmap )
RETURN Qt_QPainter_drawPixmap_4( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pPixmap ) )
METHOD QPainter:drawPixmap_5( pPoint, pPixmap )
RETURN Qt_QPainter_drawPixmap_5( ::pPtr, pPoint, pPixmap )
RETURN Qt_QPainter_drawPixmap_5( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pPixmap ) )
METHOD QPainter:drawPixmap_6( nX, nY, pPixmap )
RETURN Qt_QPainter_drawPixmap_6( ::pPtr, nX, nY, pPixmap )
RETURN Qt_QPainter_drawPixmap_6( ::pPtr, nX, nY, hbqt_ptr( pPixmap ) )
METHOD QPainter:drawPixmap_7( pRectangle, pPixmap )
RETURN Qt_QPainter_drawPixmap_7( ::pPtr, pRectangle, pPixmap )
RETURN Qt_QPainter_drawPixmap_7( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pPixmap ) )
METHOD QPainter:drawPixmap_8( nX, nY, nWidth, nHeight, pPixmap )
RETURN Qt_QPainter_drawPixmap_8( ::pPtr, nX, nY, nWidth, nHeight, pPixmap )
RETURN Qt_QPainter_drawPixmap_8( ::pPtr, nX, nY, nWidth, nHeight, hbqt_ptr( pPixmap ) )
METHOD QPainter:drawPixmap_9( nX, nY, nW, nH, pPixmap, nSx, nSy, nSw, nSh )
RETURN Qt_QPainter_drawPixmap_9( ::pPtr, nX, nY, nW, nH, pPixmap, nSx, nSy, nSw, nSh )
RETURN Qt_QPainter_drawPixmap_9( ::pPtr, nX, nY, nW, nH, hbqt_ptr( pPixmap ), nSx, nSy, nSw, nSh )
METHOD QPainter:drawPixmap_10( nX, nY, pPixmap, nSx, nSy, nSw, nSh )
RETURN Qt_QPainter_drawPixmap_10( ::pPtr, nX, nY, pPixmap, nSx, nSy, nSw, nSh )
RETURN Qt_QPainter_drawPixmap_10( ::pPtr, nX, nY, hbqt_ptr( pPixmap ), nSx, nSy, nSw, nSh )
METHOD QPainter:drawPoint( pPosition )
RETURN Qt_QPainter_drawPoint( ::pPtr, pPosition )
RETURN Qt_QPainter_drawPoint( ::pPtr, hbqt_ptr( pPosition ) )
METHOD QPainter:drawPoint_1( pPosition )
RETURN Qt_QPainter_drawPoint_1( ::pPtr, pPosition )
RETURN Qt_QPainter_drawPoint_1( ::pPtr, hbqt_ptr( pPosition ) )
METHOD QPainter:drawPoint_2( nX, nY )
@@ -556,59 +556,59 @@ METHOD QPainter:drawPoint_2( nX, nY )
METHOD QPainter:drawPoints( pPoints, nPointCount )
RETURN Qt_QPainter_drawPoints( ::pPtr, pPoints, nPointCount )
RETURN Qt_QPainter_drawPoints( ::pPtr, hbqt_ptr( pPoints ), nPointCount )
METHOD QPainter:drawPoints_1( pPoints, nPointCount )
RETURN Qt_QPainter_drawPoints_1( ::pPtr, pPoints, nPointCount )
RETURN Qt_QPainter_drawPoints_1( ::pPtr, hbqt_ptr( pPoints ), nPointCount )
METHOD QPainter:drawPoints_2( pPoints )
RETURN Qt_QPainter_drawPoints_2( ::pPtr, pPoints )
RETURN Qt_QPainter_drawPoints_2( ::pPtr, hbqt_ptr( pPoints ) )
METHOD QPainter:drawPoints_3( pPoints )
RETURN Qt_QPainter_drawPoints_3( ::pPtr, pPoints )
RETURN Qt_QPainter_drawPoints_3( ::pPtr, hbqt_ptr( pPoints ) )
METHOD QPainter:drawPolygon( pPoints, nPointCount, nFillRule )
RETURN Qt_QPainter_drawPolygon( ::pPtr, pPoints, nPointCount, nFillRule )
RETURN Qt_QPainter_drawPolygon( ::pPtr, hbqt_ptr( pPoints ), nPointCount, nFillRule )
METHOD QPainter:drawPolygon_1( pPoints, nPointCount, nFillRule )
RETURN Qt_QPainter_drawPolygon_1( ::pPtr, pPoints, nPointCount, nFillRule )
RETURN Qt_QPainter_drawPolygon_1( ::pPtr, hbqt_ptr( pPoints ), nPointCount, nFillRule )
METHOD QPainter:drawPolygon_2( pPoints, nFillRule )
RETURN Qt_QPainter_drawPolygon_2( ::pPtr, pPoints, nFillRule )
RETURN Qt_QPainter_drawPolygon_2( ::pPtr, hbqt_ptr( pPoints ), nFillRule )
METHOD QPainter:drawPolygon_3( pPoints, nFillRule )
RETURN Qt_QPainter_drawPolygon_3( ::pPtr, pPoints, nFillRule )
RETURN Qt_QPainter_drawPolygon_3( ::pPtr, hbqt_ptr( pPoints ), nFillRule )
METHOD QPainter:drawPolyline( pPoints, nPointCount )
RETURN Qt_QPainter_drawPolyline( ::pPtr, pPoints, nPointCount )
RETURN Qt_QPainter_drawPolyline( ::pPtr, hbqt_ptr( pPoints ), nPointCount )
METHOD QPainter:drawPolyline_1( pPoints, nPointCount )
RETURN Qt_QPainter_drawPolyline_1( ::pPtr, pPoints, nPointCount )
RETURN Qt_QPainter_drawPolyline_1( ::pPtr, hbqt_ptr( pPoints ), nPointCount )
METHOD QPainter:drawPolyline_2( pPoints )
RETURN Qt_QPainter_drawPolyline_2( ::pPtr, pPoints )
RETURN Qt_QPainter_drawPolyline_2( ::pPtr, hbqt_ptr( pPoints ) )
METHOD QPainter:drawPolyline_3( pPoints )
RETURN Qt_QPainter_drawPolyline_3( ::pPtr, pPoints )
RETURN Qt_QPainter_drawPolyline_3( ::pPtr, hbqt_ptr( pPoints ) )
METHOD QPainter:drawRect( pRectangle )
RETURN Qt_QPainter_drawRect( ::pPtr, pRectangle )
RETURN Qt_QPainter_drawRect( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainter:drawRect_1( pRectangle )
RETURN Qt_QPainter_drawRect_1( ::pPtr, pRectangle )
RETURN Qt_QPainter_drawRect_1( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainter:drawRect_2( nX, nY, nWidth, nHeight )
@@ -616,19 +616,19 @@ METHOD QPainter:drawRect_2( nX, nY, nWidth, nHeight )
METHOD QPainter:drawRects( pRectangles, nRectCount )
RETURN Qt_QPainter_drawRects( ::pPtr, pRectangles, nRectCount )
RETURN Qt_QPainter_drawRects( ::pPtr, hbqt_ptr( pRectangles ), nRectCount )
METHOD QPainter:drawRects_1( pRectangles, nRectCount )
RETURN Qt_QPainter_drawRects_1( ::pPtr, pRectangles, nRectCount )
RETURN Qt_QPainter_drawRects_1( ::pPtr, hbqt_ptr( pRectangles ), nRectCount )
METHOD QPainter:drawRoundedRect( pRect, nXRadius, nYRadius, nMode )
RETURN Qt_QPainter_drawRoundedRect( ::pPtr, pRect, nXRadius, nYRadius, nMode )
RETURN Qt_QPainter_drawRoundedRect( ::pPtr, hbqt_ptr( pRect ), nXRadius, nYRadius, nMode )
METHOD QPainter:drawRoundedRect_1( pRect, nXRadius, nYRadius, nMode )
RETURN Qt_QPainter_drawRoundedRect_1( ::pPtr, pRect, nXRadius, nYRadius, nMode )
RETURN Qt_QPainter_drawRoundedRect_1( ::pPtr, hbqt_ptr( pRect ), nXRadius, nYRadius, nMode )
METHOD QPainter:drawRoundedRect_2( nX, nY, nW, nH, nXRadius, nYRadius, nMode )
@@ -636,19 +636,19 @@ METHOD QPainter:drawRoundedRect_2( nX, nY, nW, nH, nXRadius, nYRadius, nMode )
METHOD QPainter:drawText( pPosition, cText )
RETURN Qt_QPainter_drawText( ::pPtr, pPosition, cText )
RETURN Qt_QPainter_drawText( ::pPtr, hbqt_ptr( pPosition ), cText )
METHOD QPainter:drawText_1( pPosition, cText )
RETURN Qt_QPainter_drawText_1( ::pPtr, pPosition, cText )
RETURN Qt_QPainter_drawText_1( ::pPtr, hbqt_ptr( pPosition ), cText )
METHOD QPainter:drawText_2( pRectangle, nFlags, cText, pBoundingRect )
RETURN Qt_QPainter_drawText_2( ::pPtr, pRectangle, nFlags, cText, pBoundingRect )
RETURN Qt_QPainter_drawText_2( ::pPtr, hbqt_ptr( pRectangle ), nFlags, cText, hbqt_ptr( pBoundingRect ) )
METHOD QPainter:drawText_3( pRectangle, nFlags, cText, pBoundingRect )
RETURN Qt_QPainter_drawText_3( ::pPtr, pRectangle, nFlags, cText, pBoundingRect )
RETURN Qt_QPainter_drawText_3( ::pPtr, hbqt_ptr( pRectangle ), nFlags, cText, hbqt_ptr( pBoundingRect ) )
METHOD QPainter:drawText_4( nX, nY, cText )
@@ -656,23 +656,23 @@ METHOD QPainter:drawText_4( nX, nY, cText )
METHOD QPainter:drawText_5( nX, nY, nWidth, nHeight, nFlags, cText, pBoundingRect )
RETURN Qt_QPainter_drawText_5( ::pPtr, nX, nY, nWidth, nHeight, nFlags, cText, pBoundingRect )
RETURN Qt_QPainter_drawText_5( ::pPtr, nX, nY, nWidth, nHeight, nFlags, cText, hbqt_ptr( pBoundingRect ) )
METHOD QPainter:drawText_6( pRectangle, cText, pOption )
RETURN Qt_QPainter_drawText_6( ::pPtr, pRectangle, cText, pOption )
RETURN Qt_QPainter_drawText_6( ::pPtr, hbqt_ptr( pRectangle ), cText, hbqt_ptr( pOption ) )
METHOD QPainter:drawTiledPixmap( pRectangle, pPixmap, pPosition )
RETURN Qt_QPainter_drawTiledPixmap( ::pPtr, pRectangle, pPixmap, pPosition )
RETURN Qt_QPainter_drawTiledPixmap( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pPixmap ), hbqt_ptr( pPosition ) )
METHOD QPainter:drawTiledPixmap_1( pRectangle, pPixmap, pPosition )
RETURN Qt_QPainter_drawTiledPixmap_1( ::pPtr, pRectangle, pPixmap, pPosition )
RETURN Qt_QPainter_drawTiledPixmap_1( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pPixmap ), hbqt_ptr( pPosition ) )
METHOD QPainter:drawTiledPixmap_2( nX, nY, nWidth, nHeight, pPixmap, nSx, nSy )
RETURN Qt_QPainter_drawTiledPixmap_2( ::pPtr, nX, nY, nWidth, nHeight, pPixmap, nSx, nSy )
RETURN Qt_QPainter_drawTiledPixmap_2( ::pPtr, nX, nY, nWidth, nHeight, hbqt_ptr( pPixmap ), nSx, nSy )
METHOD QPainter:end()
@@ -680,11 +680,11 @@ METHOD QPainter:end()
METHOD QPainter:eraseRect( pRectangle )
RETURN Qt_QPainter_eraseRect( ::pPtr, pRectangle )
RETURN Qt_QPainter_eraseRect( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainter:eraseRect_1( pRectangle )
RETURN Qt_QPainter_eraseRect_1( ::pPtr, pRectangle )
RETURN Qt_QPainter_eraseRect_1( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainter:eraseRect_2( nX, nY, nWidth, nHeight )
@@ -692,11 +692,11 @@ METHOD QPainter:eraseRect_2( nX, nY, nWidth, nHeight )
METHOD QPainter:fillPath( pPath, pBrush )
RETURN Qt_QPainter_fillPath( ::pPtr, pPath, pBrush )
RETURN Qt_QPainter_fillPath( ::pPtr, hbqt_ptr( pPath ), hbqt_ptr( pBrush ) )
METHOD QPainter:fillRect( pRectangle, pBrush )
RETURN Qt_QPainter_fillRect( ::pPtr, pRectangle, pBrush )
RETURN Qt_QPainter_fillRect( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pBrush ) )
METHOD QPainter:fillRect_1( nX, nY, nWidth, nHeight, nStyle )
@@ -704,31 +704,31 @@ METHOD QPainter:fillRect_1( nX, nY, nWidth, nHeight, nStyle )
METHOD QPainter:fillRect_2( pRectangle, nStyle )
RETURN Qt_QPainter_fillRect_2( ::pPtr, pRectangle, nStyle )
RETURN Qt_QPainter_fillRect_2( ::pPtr, hbqt_ptr( pRectangle ), nStyle )
METHOD QPainter:fillRect_3( pRectangle, nStyle )
RETURN Qt_QPainter_fillRect_3( ::pPtr, pRectangle, nStyle )
RETURN Qt_QPainter_fillRect_3( ::pPtr, hbqt_ptr( pRectangle ), nStyle )
METHOD QPainter:fillRect_4( pRectangle, pBrush )
RETURN Qt_QPainter_fillRect_4( ::pPtr, pRectangle, pBrush )
RETURN Qt_QPainter_fillRect_4( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pBrush ) )
METHOD QPainter:fillRect_5( pRectangle, pColor )
RETURN Qt_QPainter_fillRect_5( ::pPtr, pRectangle, pColor )
RETURN Qt_QPainter_fillRect_5( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pColor ) )
METHOD QPainter:fillRect_6( pRectangle, pColor )
RETURN Qt_QPainter_fillRect_6( ::pPtr, pRectangle, pColor )
RETURN Qt_QPainter_fillRect_6( ::pPtr, hbqt_ptr( pRectangle ), hbqt_ptr( pColor ) )
METHOD QPainter:fillRect_7( nX, nY, nWidth, nHeight, pBrush )
RETURN Qt_QPainter_fillRect_7( ::pPtr, nX, nY, nWidth, nHeight, pBrush )
RETURN Qt_QPainter_fillRect_7( ::pPtr, nX, nY, nWidth, nHeight, hbqt_ptr( pBrush ) )
METHOD QPainter:fillRect_8( nX, nY, nWidth, nHeight, pColor )
RETURN Qt_QPainter_fillRect_8( ::pPtr, nX, nY, nWidth, nHeight, pColor )
RETURN Qt_QPainter_fillRect_8( ::pPtr, nX, nY, nWidth, nHeight, hbqt_ptr( pColor ) )
METHOD QPainter:fillRect_9( nX, nY, nWidth, nHeight, nColor )
@@ -736,11 +736,11 @@ METHOD QPainter:fillRect_9( nX, nY, nWidth, nHeight, nColor )
METHOD QPainter:fillRect_10( pRectangle, nColor )
RETURN Qt_QPainter_fillRect_10( ::pPtr, pRectangle, nColor )
RETURN Qt_QPainter_fillRect_10( ::pPtr, hbqt_ptr( pRectangle ), nColor )
METHOD QPainter:fillRect_11( pRectangle, nColor )
RETURN Qt_QPainter_fillRect_11( ::pPtr, pRectangle, nColor )
RETURN Qt_QPainter_fillRect_11( ::pPtr, hbqt_ptr( pRectangle ), nColor )
METHOD QPainter:font()
@@ -760,7 +760,7 @@ METHOD QPainter:hasClipping()
METHOD QPainter:initFrom( pWidget )
RETURN Qt_QPainter_initFrom( ::pPtr, pWidget )
RETURN Qt_QPainter_initFrom( ::pPtr, hbqt_ptr( pWidget ) )
METHOD QPainter:isActive()
@@ -812,7 +812,7 @@ METHOD QPainter:scale( nSx, nSy )
METHOD QPainter:setBackground( pBrush )
RETURN Qt_QPainter_setBackground( ::pPtr, pBrush )
RETURN Qt_QPainter_setBackground( ::pPtr, hbqt_ptr( pBrush ) )
METHOD QPainter:setBackgroundMode( nMode )
@@ -820,7 +820,7 @@ METHOD QPainter:setBackgroundMode( nMode )
METHOD QPainter:setBrush( pBrush )
RETURN Qt_QPainter_setBrush( ::pPtr, pBrush )
RETURN Qt_QPainter_setBrush( ::pPtr, hbqt_ptr( pBrush ) )
METHOD QPainter:setBrush_1( nStyle )
@@ -828,11 +828,11 @@ METHOD QPainter:setBrush_1( nStyle )
METHOD QPainter:setBrushOrigin( pPosition )
RETURN Qt_QPainter_setBrushOrigin( ::pPtr, pPosition )
RETURN Qt_QPainter_setBrushOrigin( ::pPtr, hbqt_ptr( pPosition ) )
METHOD QPainter:setBrushOrigin_1( pPosition )
RETURN Qt_QPainter_setBrushOrigin_1( ::pPtr, pPosition )
RETURN Qt_QPainter_setBrushOrigin_1( ::pPtr, hbqt_ptr( pPosition ) )
METHOD QPainter:setBrushOrigin_2( nX, nY )
@@ -840,11 +840,11 @@ METHOD QPainter:setBrushOrigin_2( nX, nY )
METHOD QPainter:setClipPath( pPath, nOperation )
RETURN Qt_QPainter_setClipPath( ::pPtr, pPath, nOperation )
RETURN Qt_QPainter_setClipPath( ::pPtr, hbqt_ptr( pPath ), nOperation )
METHOD QPainter:setClipRect( pRectangle, nOperation )
RETURN Qt_QPainter_setClipRect( ::pPtr, pRectangle, nOperation )
RETURN Qt_QPainter_setClipRect( ::pPtr, hbqt_ptr( pRectangle ), nOperation )
METHOD QPainter:setClipRect_1( nX, nY, nWidth, nHeight, nOperation )
@@ -852,11 +852,11 @@ METHOD QPainter:setClipRect_1( nX, nY, nWidth, nHeight, nOperation )
METHOD QPainter:setClipRect_2( pRectangle, nOperation )
RETURN Qt_QPainter_setClipRect_2( ::pPtr, pRectangle, nOperation )
RETURN Qt_QPainter_setClipRect_2( ::pPtr, hbqt_ptr( pRectangle ), nOperation )
METHOD QPainter:setClipRegion( pRegion, nOperation )
RETURN Qt_QPainter_setClipRegion( ::pPtr, pRegion, nOperation )
RETURN Qt_QPainter_setClipRegion( ::pPtr, hbqt_ptr( pRegion ), nOperation )
METHOD QPainter:setClipping( lEnable )
@@ -868,7 +868,7 @@ METHOD QPainter:setCompositionMode( nMode )
METHOD QPainter:setFont( pFont )
RETURN Qt_QPainter_setFont( ::pPtr, pFont )
RETURN Qt_QPainter_setFont( ::pPtr, hbqt_ptr( pFont ) )
METHOD QPainter:setLayoutDirection( nDirection )
@@ -880,11 +880,11 @@ METHOD QPainter:setOpacity( nOpacity )
METHOD QPainter:setPen( pPen )
RETURN Qt_QPainter_setPen( ::pPtr, pPen )
RETURN Qt_QPainter_setPen( ::pPtr, hbqt_ptr( pPen ) )
METHOD QPainter:setPen_1( pColor )
RETURN Qt_QPainter_setPen_1( ::pPtr, pColor )
RETURN Qt_QPainter_setPen_1( ::pPtr, hbqt_ptr( pColor ) )
METHOD QPainter:setPen_2( nStyle )
@@ -900,7 +900,7 @@ METHOD QPainter:setRenderHints( nHints, lOn )
METHOD QPainter:setTransform( pTransform, lCombine )
RETURN Qt_QPainter_setTransform( ::pPtr, pTransform, lCombine )
RETURN Qt_QPainter_setTransform( ::pPtr, hbqt_ptr( pTransform ), lCombine )
METHOD QPainter:setViewTransformEnabled( lEnable )
@@ -908,7 +908,7 @@ METHOD QPainter:setViewTransformEnabled( lEnable )
METHOD QPainter:setViewport( pRectangle )
RETURN Qt_QPainter_setViewport( ::pPtr, pRectangle )
RETURN Qt_QPainter_setViewport( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainter:setViewport_1( nX, nY, nWidth, nHeight )
@@ -916,7 +916,7 @@ METHOD QPainter:setViewport_1( nX, nY, nWidth, nHeight )
METHOD QPainter:setWindow( pRectangle )
RETURN Qt_QPainter_setWindow( ::pPtr, pRectangle )
RETURN Qt_QPainter_setWindow( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainter:setWindow_1( nX, nY, nWidth, nHeight )
@@ -924,7 +924,7 @@ METHOD QPainter:setWindow_1( nX, nY, nWidth, nHeight )
METHOD QPainter:setWorldMatrix( pMatrix, lCombine )
RETURN Qt_QPainter_setWorldMatrix( ::pPtr, pMatrix, lCombine )
RETURN Qt_QPainter_setWorldMatrix( ::pPtr, hbqt_ptr( pMatrix ), lCombine )
METHOD QPainter:setWorldMatrixEnabled( lEnable )
@@ -932,7 +932,7 @@ METHOD QPainter:setWorldMatrixEnabled( lEnable )
METHOD QPainter:setWorldTransform( pMatrix, lCombine )
RETURN Qt_QPainter_setWorldTransform( ::pPtr, pMatrix, lCombine )
RETURN Qt_QPainter_setWorldTransform( ::pPtr, hbqt_ptr( pMatrix ), lCombine )
METHOD QPainter:shear( nSh, nSv )
@@ -940,7 +940,7 @@ METHOD QPainter:shear( nSh, nSv )
METHOD QPainter:strokePath( pPath, pPen )
RETURN Qt_QPainter_strokePath( ::pPtr, pPath, pPen )
RETURN Qt_QPainter_strokePath( ::pPtr, hbqt_ptr( pPath ), hbqt_ptr( pPen ) )
METHOD QPainter:testRenderHint( nHint )
@@ -952,11 +952,11 @@ METHOD QPainter:transform()
METHOD QPainter:translate( pOffset )
RETURN Qt_QPainter_translate( ::pPtr, pOffset )
RETURN Qt_QPainter_translate( ::pPtr, hbqt_ptr( pOffset ) )
METHOD QPainter:translate_1( pOffset )
RETURN Qt_QPainter_translate_1( ::pPtr, pOffset )
RETURN Qt_QPainter_translate_1( ::pPtr, hbqt_ptr( pOffset ) )
METHOD QPainter:translate_2( nDx, nDy )
@@ -988,13 +988,13 @@ METHOD QPainter:worldTransform()
METHOD QPainter:redirected( pDevice, pOffset )
RETURN Qt_QPainter_redirected( ::pPtr, pDevice, pOffset )
RETURN Qt_QPainter_redirected( ::pPtr, hbqt_ptr( pDevice ), hbqt_ptr( pOffset ) )
METHOD QPainter:restoreRedirected( pDevice )
RETURN Qt_QPainter_restoreRedirected( ::pPtr, pDevice )
RETURN Qt_QPainter_restoreRedirected( ::pPtr, hbqt_ptr( pDevice ) )
METHOD QPainter:setRedirected( pDevice, pReplacement, pOffset )
RETURN Qt_QPainter_setRedirected( ::pPtr, pDevice, pReplacement, pOffset )
RETURN Qt_QPainter_setRedirected( ::pPtr, hbqt_ptr( pDevice ), hbqt_ptr( pReplacement ), hbqt_ptr( pOffset ) )

View File

@@ -127,7 +127,7 @@ CREATE CLASS QPainterPath
/*----------------------------------------------------------------------*/
METHOD QPainterPath:new( pParent )
::pPtr := Qt_QPainterPath( pParent )
::pPtr := Qt_QPainterPath( hbqt_ptr( pParent ) )
RETURN Self
@@ -141,7 +141,7 @@ METHOD QPainterPath:configure( xObject )
METHOD QPainterPath:addEllipse( pBoundingRectangle )
RETURN Qt_QPainterPath_addEllipse( ::pPtr, pBoundingRectangle )
RETURN Qt_QPainterPath_addEllipse( ::pPtr, hbqt_ptr( pBoundingRectangle ) )
METHOD QPainterPath:addEllipse_1( nX, nY, nWidth, nHeight )
@@ -149,19 +149,19 @@ METHOD QPainterPath:addEllipse_1( nX, nY, nWidth, nHeight )
METHOD QPainterPath:addEllipse_2( pCenter, nRx, nRy )
RETURN Qt_QPainterPath_addEllipse_2( ::pPtr, pCenter, nRx, nRy )
RETURN Qt_QPainterPath_addEllipse_2( ::pPtr, hbqt_ptr( pCenter ), nRx, nRy )
METHOD QPainterPath:addPath( pPath )
RETURN Qt_QPainterPath_addPath( ::pPtr, pPath )
RETURN Qt_QPainterPath_addPath( ::pPtr, hbqt_ptr( pPath ) )
METHOD QPainterPath:addPolygon( pPolygon )
RETURN Qt_QPainterPath_addPolygon( ::pPtr, pPolygon )
RETURN Qt_QPainterPath_addPolygon( ::pPtr, hbqt_ptr( pPolygon ) )
METHOD QPainterPath:addRect( pRectangle )
RETURN Qt_QPainterPath_addRect( ::pPtr, pRectangle )
RETURN Qt_QPainterPath_addRect( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainterPath:addRect_1( nX, nY, nWidth, nHeight )
@@ -169,11 +169,11 @@ METHOD QPainterPath:addRect_1( nX, nY, nWidth, nHeight )
METHOD QPainterPath:addRegion( pRegion )
RETURN Qt_QPainterPath_addRegion( ::pPtr, pRegion )
RETURN Qt_QPainterPath_addRegion( ::pPtr, hbqt_ptr( pRegion ) )
METHOD QPainterPath:addRoundedRect( pRect, nXRadius, nYRadius, nMode )
RETURN Qt_QPainterPath_addRoundedRect( ::pPtr, pRect, nXRadius, nYRadius, nMode )
RETURN Qt_QPainterPath_addRoundedRect( ::pPtr, hbqt_ptr( pRect ), nXRadius, nYRadius, nMode )
METHOD QPainterPath:addRoundedRect_1( nX, nY, nW, nH, nXRadius, nYRadius, nMode )
@@ -181,11 +181,11 @@ METHOD QPainterPath:addRoundedRect_1( nX, nY, nW, nH, nXRadius, nYRadius, nMode
METHOD QPainterPath:addText( pPoint, pFont, cText )
RETURN Qt_QPainterPath_addText( ::pPtr, pPoint, pFont, cText )
RETURN Qt_QPainterPath_addText( ::pPtr, hbqt_ptr( pPoint ), hbqt_ptr( pFont ), cText )
METHOD QPainterPath:addText_1( nX, nY, pFont, cText )
RETURN Qt_QPainterPath_addText_1( ::pPtr, nX, nY, pFont, cText )
RETURN Qt_QPainterPath_addText_1( ::pPtr, nX, nY, hbqt_ptr( pFont ), cText )
METHOD QPainterPath:angleAtPercent( nT )
@@ -193,7 +193,7 @@ METHOD QPainterPath:angleAtPercent( nT )
METHOD QPainterPath:arcMoveTo( pRectangle, nAngle )
RETURN Qt_QPainterPath_arcMoveTo( ::pPtr, pRectangle, nAngle )
RETURN Qt_QPainterPath_arcMoveTo( ::pPtr, hbqt_ptr( pRectangle ), nAngle )
METHOD QPainterPath:arcMoveTo_1( nX, nY, nWidth, nHeight, nAngle )
@@ -201,7 +201,7 @@ METHOD QPainterPath:arcMoveTo_1( nX, nY, nWidth, nHeight, nAngle )
METHOD QPainterPath:arcTo( pRectangle, nStartAngle, nSweepLength )
RETURN Qt_QPainterPath_arcTo( ::pPtr, pRectangle, nStartAngle, nSweepLength )
RETURN Qt_QPainterPath_arcTo( ::pPtr, hbqt_ptr( pRectangle ), nStartAngle, nSweepLength )
METHOD QPainterPath:arcTo_1( nX, nY, nWidth, nHeight, nStartAngle, nSweepLength )
@@ -217,19 +217,19 @@ METHOD QPainterPath:closeSubpath()
METHOD QPainterPath:connectPath( pPath )
RETURN Qt_QPainterPath_connectPath( ::pPtr, pPath )
RETURN Qt_QPainterPath_connectPath( ::pPtr, hbqt_ptr( pPath ) )
METHOD QPainterPath:contains( pPoint )
RETURN Qt_QPainterPath_contains( ::pPtr, pPoint )
RETURN Qt_QPainterPath_contains( ::pPtr, hbqt_ptr( pPoint ) )
METHOD QPainterPath:contains_1( pRectangle )
RETURN Qt_QPainterPath_contains_1( ::pPtr, pRectangle )
RETURN Qt_QPainterPath_contains_1( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainterPath:contains_2( pP )
RETURN Qt_QPainterPath_contains_2( ::pPtr, pP )
RETURN Qt_QPainterPath_contains_2( ::pPtr, hbqt_ptr( pP ) )
METHOD QPainterPath:controlPointRect()
@@ -237,7 +237,7 @@ METHOD QPainterPath:controlPointRect()
METHOD QPainterPath:cubicTo( pC1, pC2, pEndPoint )
RETURN Qt_QPainterPath_cubicTo( ::pPtr, pC1, pC2, pEndPoint )
RETURN Qt_QPainterPath_cubicTo( ::pPtr, hbqt_ptr( pC1 ), hbqt_ptr( pC2 ), hbqt_ptr( pEndPoint ) )
METHOD QPainterPath:cubicTo_1( nC1X, nC1Y, nC2X, nC2Y, nEndPointX, nEndPointY )
@@ -257,15 +257,15 @@ METHOD QPainterPath:fillRule()
METHOD QPainterPath:intersected( pP )
RETURN Qt_QPainterPath_intersected( ::pPtr, pP )
RETURN Qt_QPainterPath_intersected( ::pPtr, hbqt_ptr( pP ) )
METHOD QPainterPath:intersects( pRectangle )
RETURN Qt_QPainterPath_intersects( ::pPtr, pRectangle )
RETURN Qt_QPainterPath_intersects( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPainterPath:intersects_1( pP )
RETURN Qt_QPainterPath_intersects_1( ::pPtr, pP )
RETURN Qt_QPainterPath_intersects_1( ::pPtr, hbqt_ptr( pP ) )
METHOD QPainterPath:isEmpty()
@@ -277,7 +277,7 @@ METHOD QPainterPath:length()
METHOD QPainterPath:lineTo( pEndPoint )
RETURN Qt_QPainterPath_lineTo( ::pPtr, pEndPoint )
RETURN Qt_QPainterPath_lineTo( ::pPtr, hbqt_ptr( pEndPoint ) )
METHOD QPainterPath:lineTo_1( nX, nY )
@@ -285,7 +285,7 @@ METHOD QPainterPath:lineTo_1( nX, nY )
METHOD QPainterPath:moveTo( pPoint )
RETURN Qt_QPainterPath_moveTo( ::pPtr, pPoint )
RETURN Qt_QPainterPath_moveTo( ::pPtr, hbqt_ptr( pPoint ) )
METHOD QPainterPath:moveTo_1( nX, nY )
@@ -301,7 +301,7 @@ METHOD QPainterPath:pointAtPercent( nT )
METHOD QPainterPath:quadTo( pC, pEndPoint )
RETURN Qt_QPainterPath_quadTo( ::pPtr, pC, pEndPoint )
RETURN Qt_QPainterPath_quadTo( ::pPtr, hbqt_ptr( pC ), hbqt_ptr( pEndPoint ) )
METHOD QPainterPath:quadTo_1( nCx, nCy, nEndPointX, nEndPointY )
@@ -325,15 +325,15 @@ METHOD QPainterPath:slopeAtPercent( nT )
METHOD QPainterPath:subtracted( pP )
RETURN Qt_QPainterPath_subtracted( ::pPtr, pP )
RETURN Qt_QPainterPath_subtracted( ::pPtr, hbqt_ptr( pP ) )
METHOD QPainterPath:toFillPolygon( pMatrix )
RETURN Qt_QPainterPath_toFillPolygon( ::pPtr, pMatrix )
RETURN Qt_QPainterPath_toFillPolygon( ::pPtr, hbqt_ptr( pMatrix ) )
METHOD QPainterPath:toFillPolygon_1( pMatrix )
RETURN Qt_QPainterPath_toFillPolygon_1( ::pPtr, pMatrix )
RETURN Qt_QPainterPath_toFillPolygon_1( ::pPtr, hbqt_ptr( pMatrix ) )
METHOD QPainterPath:toReversed()
@@ -341,5 +341,5 @@ METHOD QPainterPath:toReversed()
METHOD QPainterPath:united( pP )
RETURN Qt_QPainterPath_united( ::pPtr, pP )
RETURN Qt_QPainterPath_united( ::pPtr, hbqt_ptr( pP ) )

View File

@@ -110,7 +110,7 @@ CREATE CLASS QPalette
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QPalette
METHOD QPalette:new( ... )
::pPtr := Qt_QPalette( ... )
@@ -187,7 +187,7 @@ METHOD QPalette:isBrushSet( nCg, nCr )
METHOD QPalette:isCopyOf( pP )
RETURN Qt_QPalette_isCopyOf( ::pPtr, pP )
RETURN Qt_QPalette_isCopyOf( ::pPtr, hbqt_ptr( pP ) )
METHOD QPalette:isEqual( nCg1, nCg2 )
@@ -215,27 +215,27 @@ METHOD QPalette:midlight()
METHOD QPalette:resolve( pOther )
RETURN Qt_QPalette_resolve( ::pPtr, pOther )
RETURN Qt_QPalette_resolve( ::pPtr, hbqt_ptr( pOther ) )
METHOD QPalette:setBrush( nRole, pBrush )
RETURN Qt_QPalette_setBrush( ::pPtr, nRole, pBrush )
RETURN Qt_QPalette_setBrush( ::pPtr, nRole, hbqt_ptr( pBrush ) )
METHOD QPalette:setBrush_1( nGroup, nRole, pBrush )
RETURN Qt_QPalette_setBrush_1( ::pPtr, nGroup, nRole, pBrush )
RETURN Qt_QPalette_setBrush_1( ::pPtr, nGroup, nRole, hbqt_ptr( pBrush ) )
METHOD QPalette:setColor( nRole, pColor )
RETURN Qt_QPalette_setColor( ::pPtr, nRole, pColor )
RETURN Qt_QPalette_setColor( ::pPtr, nRole, hbqt_ptr( pColor ) )
METHOD QPalette:setColor_1( nGroup, nRole, pColor )
RETURN Qt_QPalette_setColor_1( ::pPtr, nGroup, nRole, pColor )
RETURN Qt_QPalette_setColor_1( ::pPtr, nGroup, nRole, hbqt_ptr( pColor ) )
METHOD QPalette:setColorGroup( nCg, pWindowText, pButton, pLight, pDark, pMid, pText, pBright_text, pBase, pWindow )
RETURN Qt_QPalette_setColorGroup( ::pPtr, nCg, pWindowText, pButton, pLight, pDark, pMid, pText, pBright_text, pBase, pWindow )
RETURN Qt_QPalette_setColorGroup( ::pPtr, nCg, hbqt_ptr( pWindowText ), hbqt_ptr( pButton ), hbqt_ptr( pLight ), hbqt_ptr( pDark ), hbqt_ptr( pMid ), hbqt_ptr( pText ), hbqt_ptr( pBright_text ), hbqt_ptr( pBase ), hbqt_ptr( pWindow ) )
METHOD QPalette:setCurrentColorGroup( nCg )

View File

@@ -96,7 +96,7 @@ CREATE CLASS QPen
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QPen
METHOD QPen:new( ... )
::pPtr := Qt_QPen( ... )
@@ -145,7 +145,7 @@ METHOD QPen:miterLimit()
METHOD QPen:setBrush( pBrush )
RETURN Qt_QPen_setBrush( ::pPtr, pBrush )
RETURN Qt_QPen_setBrush( ::pPtr, hbqt_ptr( pBrush ) )
METHOD QPen:setCapStyle( nStyle )
@@ -153,7 +153,7 @@ METHOD QPen:setCapStyle( nStyle )
METHOD QPen:setColor( pColor )
RETURN Qt_QPen_setColor( ::pPtr, pColor )
RETURN Qt_QPen_setColor( ::pPtr, hbqt_ptr( pColor ) )
METHOD QPen:setCosmetic( lCosmetic )

View File

@@ -86,7 +86,7 @@ CREATE CLASS QPicture INHERIT QPaintDevice
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QPicture
METHOD QPicture:new( ... )
::pPtr := Qt_QPicture( ... )
@@ -115,31 +115,31 @@ METHOD QPicture:isNull()
METHOD QPicture:load( cFileName, pFormat )
RETURN Qt_QPicture_load( ::pPtr, cFileName, pFormat )
RETURN Qt_QPicture_load( ::pPtr, cFileName, hbqt_ptr( pFormat ) )
METHOD QPicture:load_1( pDev, pFormat )
RETURN Qt_QPicture_load_1( ::pPtr, pDev, pFormat )
RETURN Qt_QPicture_load_1( ::pPtr, hbqt_ptr( pDev ), hbqt_ptr( pFormat ) )
METHOD QPicture:play( pPainter )
RETURN Qt_QPicture_play( ::pPtr, pPainter )
RETURN Qt_QPicture_play( ::pPtr, hbqt_ptr( pPainter ) )
METHOD QPicture:save( cFileName, pFormat )
RETURN Qt_QPicture_save( ::pPtr, cFileName, pFormat )
RETURN Qt_QPicture_save( ::pPtr, cFileName, hbqt_ptr( pFormat ) )
METHOD QPicture:save_1( pDev, pFormat )
RETURN Qt_QPicture_save_1( ::pPtr, pDev, pFormat )
RETURN Qt_QPicture_save_1( ::pPtr, hbqt_ptr( pDev ), hbqt_ptr( pFormat ) )
METHOD QPicture:setBoundingRect( pR )
RETURN Qt_QPicture_setBoundingRect( ::pPtr, pR )
RETURN Qt_QPicture_setBoundingRect( ::pPtr, hbqt_ptr( pR ) )
METHOD QPicture:setData( pData, nSize )
RETURN Qt_QPicture_setData( ::pPtr, pData, nSize )
RETURN Qt_QPicture_setData( ::pPtr, hbqt_ptr( pData ), nSize )
METHOD QPicture:size()

View File

@@ -115,7 +115,7 @@ CREATE CLASS QPixmap INHERIT QPaintDevice
/*----------------------------------------------------------------------*/
METHOD New( ... ) CLASS QPixmap
METHOD QPixmap:new( ... )
::pPtr := Qt_QPixmap( ... )
@@ -140,7 +140,7 @@ METHOD QPixmap:cacheKey()
METHOD QPixmap:copy( pRectangle )
RETURN Qt_QPixmap_copy( ::pPtr, pRectangle )
RETURN Qt_QPixmap_copy( ::pPtr, hbqt_ptr( pRectangle ) )
METHOD QPixmap:copy_1( nX, nY, nWidth, nHeight )
@@ -152,11 +152,11 @@ METHOD QPixmap:createHeuristicMask( lClipTight )
METHOD QPixmap:createMaskFromColor( pMaskColor, nMode )
RETURN Qt_QPixmap_createMaskFromColor( ::pPtr, pMaskColor, nMode )
RETURN Qt_QPixmap_createMaskFromColor( ::pPtr, hbqt_ptr( pMaskColor ), nMode )
METHOD QPixmap:createMaskFromColor_1( pMaskColor )
RETURN Qt_QPixmap_createMaskFromColor_1( ::pPtr, pMaskColor )
RETURN Qt_QPixmap_createMaskFromColor_1( ::pPtr, hbqt_ptr( pMaskColor ) )
METHOD QPixmap:depth()
@@ -168,15 +168,15 @@ METHOD QPixmap:detach()
METHOD QPixmap:fill( pColor )
RETURN Qt_QPixmap_fill( ::pPtr, pColor )
RETURN Qt_QPixmap_fill( ::pPtr, hbqt_ptr( pColor ) )
METHOD QPixmap:fill_1( pWidget, pOffset )
RETURN Qt_QPixmap_fill_1( ::pPtr, pWidget, pOffset )
RETURN Qt_QPixmap_fill_1( ::pPtr, hbqt_ptr( pWidget ), hbqt_ptr( pOffset ) )
METHOD QPixmap:fill_2( pWidget, nX, nY )
RETURN Qt_QPixmap_fill_2( ::pPtr, pWidget, nX, nY )
RETURN Qt_QPixmap_fill_2( ::pPtr, hbqt_ptr( pWidget ), nX, nY )
METHOD QPixmap:hasAlpha()
@@ -200,11 +200,11 @@ METHOD QPixmap:isQBitmap()
METHOD QPixmap:load( cFileName, pFormat, nFlags )
RETURN Qt_QPixmap_load( ::pPtr, cFileName, pFormat, nFlags )
RETURN Qt_QPixmap_load( ::pPtr, cFileName, hbqt_ptr( pFormat ), nFlags )
METHOD QPixmap:loadFromData( pData, pFormat, nFlags )
RETURN Qt_QPixmap_loadFromData( ::pPtr, pData, pFormat, nFlags )
RETURN Qt_QPixmap_loadFromData( ::pPtr, hbqt_ptr( pData ), hbqt_ptr( pFormat ), nFlags )
METHOD QPixmap:mask()
@@ -216,11 +216,11 @@ METHOD QPixmap:rect()
METHOD QPixmap:save( cFileName, pFormat, nQuality )
RETURN Qt_QPixmap_save( ::pPtr, cFileName, pFormat, nQuality )
RETURN Qt_QPixmap_save( ::pPtr, cFileName, hbqt_ptr( pFormat ), nQuality )
METHOD QPixmap:save_1( pDevice, pFormat, nQuality )
RETURN Qt_QPixmap_save_1( ::pPtr, pDevice, pFormat, nQuality )
RETURN Qt_QPixmap_save_1( ::pPtr, hbqt_ptr( pDevice ), hbqt_ptr( pFormat ), nQuality )
METHOD QPixmap:scaled( nWidth, nHeight, nAspectRatioMode, nTransformMode )
@@ -228,7 +228,7 @@ METHOD QPixmap:scaled( nWidth, nHeight, nAspectRatioMode, nTransformMode )
METHOD QPixmap:scaled_1( pSize, nAspectRatioMode, nTransformMode )
RETURN Qt_QPixmap_scaled_1( ::pPtr, pSize, nAspectRatioMode, nTransformMode )
RETURN Qt_QPixmap_scaled_1( ::pPtr, hbqt_ptr( pSize ), nAspectRatioMode, nTransformMode )
METHOD QPixmap:scaledToHeight( nHeight, nMode )
@@ -240,11 +240,11 @@ METHOD QPixmap:scaledToWidth( nWidth, nMode )
METHOD QPixmap:setAlphaChannel( pAlphaChannel )
RETURN Qt_QPixmap_setAlphaChannel( ::pPtr, pAlphaChannel )
RETURN Qt_QPixmap_setAlphaChannel( ::pPtr, hbqt_ptr( pAlphaChannel ) )
METHOD QPixmap:setMask( pMask )
RETURN Qt_QPixmap_setMask( ::pPtr, pMask )
RETURN Qt_QPixmap_setMask( ::pPtr, hbqt_ptr( pMask ) )
METHOD QPixmap:size()
@@ -256,11 +256,11 @@ METHOD QPixmap:toImage()
METHOD QPixmap:transformed( pTransform, nMode )
RETURN Qt_QPixmap_transformed( ::pPtr, pTransform, nMode )
RETURN Qt_QPixmap_transformed( ::pPtr, hbqt_ptr( pTransform ), nMode )
METHOD QPixmap:transformed_1( pMatrix, nMode )
RETURN Qt_QPixmap_transformed_1( ::pPtr, pMatrix, nMode )
RETURN Qt_QPixmap_transformed_1( ::pPtr, hbqt_ptr( pMatrix ), nMode )
METHOD QPixmap:width()
@@ -272,21 +272,21 @@ METHOD QPixmap:defaultDepth()
METHOD QPixmap:fromImage( pImage, nFlags )
RETURN Qt_QPixmap_fromImage( ::pPtr, pImage, nFlags )
RETURN Qt_QPixmap_fromImage( ::pPtr, hbqt_ptr( pImage ), nFlags )
METHOD QPixmap:grabWidget( pWidget, pRectangle )
RETURN Qt_QPixmap_grabWidget( ::pPtr, pWidget, pRectangle )
RETURN Qt_QPixmap_grabWidget( ::pPtr, hbqt_ptr( pWidget ), hbqt_ptr( pRectangle ) )
METHOD QPixmap:grabWidget_1( pWidget, nX, nY, nWidth, nHeight )
RETURN Qt_QPixmap_grabWidget_1( ::pPtr, pWidget, nX, nY, nWidth, nHeight )
RETURN Qt_QPixmap_grabWidget_1( ::pPtr, hbqt_ptr( pWidget ), nX, nY, nWidth, nHeight )
METHOD QPixmap:trueMatrix( pMatrix, nWidth, nHeight )
RETURN Qt_QPixmap_trueMatrix( ::pPtr, pMatrix, nWidth, nHeight )
RETURN Qt_QPixmap_trueMatrix( ::pPtr, hbqt_ptr( pMatrix ), nWidth, nHeight )
METHOD QPixmap:trueMatrix_1( pM, nW, nH )
RETURN Qt_QPixmap_trueMatrix_1( ::pPtr, pM, nW, nH )
RETURN Qt_QPixmap_trueMatrix_1( ::pPtr, hbqt_ptr( pM ), nW, nH )

View File

@@ -133,7 +133,7 @@ CREATE CLASS QPlainTextEdit INHERIT QAbstractScrollArea
/*----------------------------------------------------------------------*/
METHOD QPlainTextEdit:new( pParent )
::pPtr := Qt_QPlainTextEdit( pParent )
::pPtr := Qt_QPlainTextEdit( hbqt_ptr( pParent ) )
RETURN Self
@@ -171,11 +171,11 @@ METHOD QPlainTextEdit:currentCharFormat()
METHOD QPlainTextEdit:cursorForPosition( pPos )
RETURN Qt_QPlainTextEdit_cursorForPosition( ::pPtr, pPos )
RETURN Qt_QPlainTextEdit_cursorForPosition( ::pPtr, hbqt_ptr( pPos ) )
METHOD QPlainTextEdit:cursorRect( pCursor )
RETURN Qt_QPlainTextEdit_cursorRect( ::pPtr, pCursor )
RETURN Qt_QPlainTextEdit_cursorRect( ::pPtr, hbqt_ptr( pCursor ) )
METHOD QPlainTextEdit:cursorRect_1()
@@ -215,7 +215,7 @@ METHOD QPlainTextEdit:lineWrapMode()
METHOD QPlainTextEdit:loadResource( nType, pName )
RETURN Qt_QPlainTextEdit_loadResource( ::pPtr, nType, pName )
RETURN Qt_QPlainTextEdit_loadResource( ::pPtr, nType, hbqt_ptr( pName ) )
METHOD QPlainTextEdit:maximumBlockCount()
@@ -223,7 +223,7 @@ METHOD QPlainTextEdit:maximumBlockCount()
METHOD QPlainTextEdit:mergeCurrentCharFormat( pModifier )
RETURN Qt_QPlainTextEdit_mergeCurrentCharFormat( ::pPtr, pModifier )
RETURN Qt_QPlainTextEdit_mergeCurrentCharFormat( ::pPtr, hbqt_ptr( pModifier ) )
METHOD QPlainTextEdit:moveCursor( nOperation, nMode )
@@ -235,7 +235,7 @@ METHOD QPlainTextEdit:overwriteMode()
METHOD QPlainTextEdit:print( pPrinter )
RETURN Qt_QPlainTextEdit_print( ::pPtr, pPrinter )
RETURN Qt_QPlainTextEdit_print( ::pPtr, hbqt_ptr( pPrinter ) )
METHOD QPlainTextEdit:setBackgroundVisible( lVisible )
@@ -247,7 +247,7 @@ METHOD QPlainTextEdit:setCenterOnScroll( lEnabled )
METHOD QPlainTextEdit:setCurrentCharFormat( pFormat )
RETURN Qt_QPlainTextEdit_setCurrentCharFormat( ::pPtr, pFormat )
RETURN Qt_QPlainTextEdit_setCurrentCharFormat( ::pPtr, hbqt_ptr( pFormat ) )
METHOD QPlainTextEdit:setCursorWidth( nWidth )
@@ -255,7 +255,7 @@ METHOD QPlainTextEdit:setCursorWidth( nWidth )
METHOD QPlainTextEdit:setDocument( pDocument )
RETURN Qt_QPlainTextEdit_setDocument( ::pPtr, pDocument )
RETURN Qt_QPlainTextEdit_setDocument( ::pPtr, hbqt_ptr( pDocument ) )
METHOD QPlainTextEdit:setDocumentTitle( cTitle )
@@ -287,7 +287,7 @@ METHOD QPlainTextEdit:setTabStopWidth( nWidth )
METHOD QPlainTextEdit:setTextCursor( pCursor )
RETURN Qt_QPlainTextEdit_setTextCursor( ::pPtr, pCursor )
RETURN Qt_QPlainTextEdit_setTextCursor( ::pPtr, hbqt_ptr( pCursor ) )
METHOD QPlainTextEdit:setTextInteractionFlags( nFlags )

Some files were not shown because too many files have changed in this diff Show More