2010-08-01 18:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* contrib/hbqt/generator/qtcore.qtp
  * contrib/hbqt/generator/qtgui.qtp
  - contrib/hbqt/qtcore/THBQAbstractItemModel.prg
  - contrib/hbqt/qtcore/HBQAbstractItemModel.cpp
  + contrib/hbqt/qtgui/THBQAbstractItemModel.prg
  + contrib/hbqt/qtgui/HBQAbstractItemModel.cpp
  * contrib/hbqt/qtgui/filelist.hbm
  * contrib/hbqt/qtcore/filelist.hbm
  * contrib/hbqt/qtgui/hbqtgui_garbage.h
  * contrib/hbqt/qtcore/hbqtcore_garbage.h
  * contrib/hbqt/hbqtgui_filelist.hbm
  * contrib/hbqt/hbqtcore_filelist.hbm
    * Moved GUI dependent classes to hbqtgui.

  * contrib/hbqt/hbqt_common.hbm
  * contrib/hbqt/hbqtcore.hbc
    + Added my copyright.

  * contrib/hbqt/hbqtcore.hbc
    + Added TOFIX about slots subsystem making qtgui references.

  * contrib/hbqt/generator/hbqtgen.prg
    - Deleted more inactive code.

  * contrib/hbqt/hbqt_errorsys.prg
  * contrib/hbqt/THbQtUI.prg
  * contrib/hbqt/hbqtgui_filelist.hbm
  * contrib/hbqt/hbqtcore_filelist.hbm
  * contrib/hbqt/hbqt_misc.prg
    ! Fixed to throw RTE instead of displaying uncontrollable msgbox.
    * QT errorsys now calls hbqt_messagebox() directly.
    % hbqt_messagebox() moved inside errorsys code and made static.
    ! Moved QT errorsys to hbqtgui subsystem. Overriding default
      errorsys is only required for apps using QT GUI subsystem.
    ; I didn't test the actual code, so there might be stupid typos
      left, pls test me.

  * contrib/hbqt/doc/en/*
    * Changed after regeneration (due to some last minute changes in
      prev commit)
This commit is contained in:
Viktor Szakats
2010-08-01 16:09:08 +00:00
parent c5c041ccb2
commit a8a1914c04
274 changed files with 8934 additions and 8883 deletions

View File

@@ -16,6 +16,48 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-08-01 18:03 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbqt/generator/qtcore.qtp
* contrib/hbqt/generator/qtgui.qtp
- contrib/hbqt/qtcore/THBQAbstractItemModel.prg
- contrib/hbqt/qtcore/HBQAbstractItemModel.cpp
+ contrib/hbqt/qtgui/THBQAbstractItemModel.prg
+ contrib/hbqt/qtgui/HBQAbstractItemModel.cpp
* contrib/hbqt/qtgui/filelist.hbm
* contrib/hbqt/qtcore/filelist.hbm
* contrib/hbqt/qtgui/hbqtgui_garbage.h
* contrib/hbqt/qtcore/hbqtcore_garbage.h
* contrib/hbqt/hbqtgui_filelist.hbm
* contrib/hbqt/hbqtcore_filelist.hbm
* Moved GUI dependent classes to hbqtgui.
* contrib/hbqt/hbqt_common.hbm
* contrib/hbqt/hbqtcore.hbc
+ Added my copyright.
* contrib/hbqt/hbqtcore.hbc
+ Added TOFIX about slots subsystem making qtgui references.
* contrib/hbqt/generator/hbqtgen.prg
- Deleted more inactive code.
* contrib/hbqt/hbqt_errorsys.prg
* contrib/hbqt/THbQtUI.prg
* contrib/hbqt/hbqtgui_filelist.hbm
* contrib/hbqt/hbqtcore_filelist.hbm
* contrib/hbqt/hbqt_misc.prg
! Fixed to throw RTE instead of displaying uncontrollable msgbox.
* QT errorsys now calls hbqt_messagebox() directly.
% hbqt_messagebox() moved inside errorsys code and made static.
! Moved QT errorsys to hbqtgui subsystem. Overriding default
errorsys is only required for apps using QT GUI subsystem.
; I didn't test the actual code, so there might be stupid typos
left, pls test me.
* contrib/hbqt/doc/en/*
* Changed after regeneration (due to some last minute changes in
prev commit)
2010-08-01 14:09 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
% normalize rebased sources paths (mingw, *nix/gcc).
@@ -116,12 +158,12 @@
The easiest would be to rewrite HBQT_MESSAGEBOX() in
C++ to use QMessageBox QT class directly and place
this function into hbqtcore.
Pritpal, can you do it?
[DONE - differently]
; TOFIX: If this is done it would be also good to fix hbqtcore -> qtgui
dependencies. Currently this is QMessageBox plus some stuff
referenced from hbqt_hbqabstractitemmodel.cpp. This latter
can pbly be solved by moving this HB class to hbqtgui.
can pbly be solved by moving this HB class to hbqtgui. [DONE]
2010-07-31 23:57 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/wvgscrlb.prg

View File

@@ -67,6 +67,7 @@
#include "hbclass.ch"
#include "common.ch"
#include "error.ch"
#include "hbqt.ch"
/*----------------------------------------------------------------------*/
@@ -311,6 +312,7 @@ METHOD HbQtUI:loadUI( cUiFull, qParent )
METHOD HbQtUI:OnError( ... )
LOCAL cMsg, xReturn
LOCAL oError
cMsg := __GetMessage()
IF SubStr( cMsg, 1, 1 ) == "_"
@@ -321,7 +323,19 @@ METHOD HbQtUI:OnError( ... )
IF hb_hHasKey( ::qObj, substr( cMsg, 3 ) )
xReturn := ::qObj[ substr( cMsg, 3 ) ]
ELSE
hbqt_showError( "Control < " + substr( cMsg, 3 ) + " > does not exists!" )
oError := ErrorNew()
oError:severity := ES_ERROR
oError:genCode := EG_ARG
oError:subSystem := "HBQT"
oError:subCode := 1001
oError:canRetry := .F.
oError:canDefault := .F.
oError:Args := hb_AParams()
oError:operation := ProcName()
oError:Description := "Control <" + substr( cMsg, 3 ) + "> does not exist"
Eval( ErrorBlock(), oError )
ENDIF
ELSE
xReturn := ::oWidget:&cMsg( ... )

View File

@@ -3,52 +3,52 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* HBEvents()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/THBEvents.prg
* C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbevents.html
* $ONELINER$
* Creates a new HBEvents object.
* $INHERITS$
* QObject
* $SYNTAX$
* HBEvents():new( ... )
* HBEvents():from( pPtr_OR_oObj_of_type_HBEvents )
* HBEvents():configure( pPtr_OR_oObj_of_type_HBEvents )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type HBEvents
* $METHODS$
* :hbConnect( xObj, nEvent, xBlock ) -> lBool
* :hbDisconnect( xObj, nEvent ) -> lBool
* :hbClear() -> lBool
*
* $RETURNS$
* An instance of the object of type HBEvents
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new HBEvents object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbevents.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/THBEvents.prg
* C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp
* Library : hbqtcore
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* HBQPlainTextEdit()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQPlainTextEdit.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQPlainTextEdit.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbqplaintextedit.html
* $ONELINER$
* Creates a new HBQPlainTextEdit object.
* $INHERITS$
* QPlainTextEdit
* $SYNTAX$
* HBQPlainTextEdit():new( ... )
* HBQPlainTextEdit():from( pPtr_OR_oObj_of_type_HBQPlainTextEdit )
* HBQPlainTextEdit():configure( pPtr_OR_oObj_of_type_HBQPlainTextEdit )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type HBQPlainTextEdit
* $METHODS$
* :hbGetIndex( pCrQTextCursor ) -> nInt
* :hbGetLine( pCrQTextCursor ) -> nInt
@@ -75,33 +83,25 @@
* :hbToggleCodeCompetion() -> NIL
* :hbToggleCompetionTips() -> NIL
*
* $RETURNS$
* An instance of the object of type HBQPlainTextEdit
* $SEEALSO$
* QPlainTextEdit
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QPlainTextEdit
* $ONELINER$
* Creates a new HBQPlainTextEdit object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbqplaintextedit.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQPlainTextEdit.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQPlainTextEdit.cpp
* Library : hbqtgui
* $SEEALSO$
* QPlainTextEdit
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* HBQSyntaxHighlighter()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbqsyntaxhighlighter.html
* $ONELINER$
* Creates a new HBQSyntaxHighlighter object.
* $INHERITS$
* QSyntaxHighlighter
* $SYNTAX$
* HBQSyntaxHighlighter():new( ... )
* HBQSyntaxHighlighter():from( pPtr_OR_oObj_of_type_HBQSyntaxHighlighter )
* HBQSyntaxHighlighter():configure( pPtr_OR_oObj_of_type_HBQSyntaxHighlighter )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type HBQSyntaxHighlighter
* $METHODS$
* :hbSetMultiLineCommentFormat( pFormat ) -> NIL
* :hbSetSingleLineCommentFormat( pFormat ) -> NIL
@@ -25,33 +33,25 @@
* :hbSetFormatColumnSelection( nStart, nCount, pColor ) -> NIL
* :hbSetRuleWithRegExp( cName, pReg, pFormat ) -> NIL
*
* $RETURNS$
* An instance of the object of type HBQSyntaxHighlighter
* $SEEALSO$
* QSyntaxHighlighter
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QSyntaxHighlighter
* $ONELINER$
* Creates a new HBQSyntaxHighlighter object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbqsyntaxhighlighter.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp
* Library : hbqtgui
* $SEEALSO$
* QSyntaxHighlighter
* $END$
*/

View File

@@ -3,51 +3,51 @@
*/
/* $DOC$
* $NAME$
* HBQTextBlockUserData()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQTextBlockUserData.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* HBQTextBlockUserData():new( ... )
* HBQTextBlockUserData():from( pPtr_OR_oObj_of_type_HBQTextBlockUserData )
* HBQTextBlockUserData():configure( pPtr_OR_oObj_of_type_HBQTextBlockUserData )
* $METHODS$
* :hbSetState( nState ) -> nInt
* :hbState() -> nInt
*
* $RETURNS$
* An instance of the object of type HBQTextBlockUserData
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new HBQTextBlockUserData object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* HBQTextBlockUserData()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbqtextblockuserdata.html
* $ONELINER$
* Creates a new HBQTextBlockUserData object.
* $INHERITS$
*
* $SYNTAX$
* HBQTextBlockUserData():new( ... )
* HBQTextBlockUserData():from( pPtr_OR_oObj_of_type_HBQTextBlockUserData )
* HBQTextBlockUserData():configure( pPtr_OR_oObj_of_type_HBQTextBlockUserData )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type HBQTextBlockUserData
* $METHODS$
* :hbSetState( nState ) -> nInt
* :hbState() -> nInt
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQTextBlockUserData.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,53 +3,53 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* HBSlots()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/THBSlots.prg
* C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbslots.html
* $ONELINER$
* Creates a new HBSlots object.
* $INHERITS$
* QObject
* $SYNTAX$
* HBSlots():new( ... )
* HBSlots():from( pPtr_OR_oObj_of_type_HBSlots )
* HBSlots():configure( pPtr_OR_oObj_of_type_HBSlots )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type HBSlots
* $METHODS$
* :hbConnect( xPObj, pSlot, xBBlock ) -> lBool
* :hbDisconnect( xObj, pSlot ) -> lBool
* :hbIsConnected( xObj, pSlot ) -> lBool
* :hbClear() -> lBool
*
* $RETURNS$
* An instance of the object of type HBSlots
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new HBSlots object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbslots.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/THBSlots.prg
* C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp
* Library : hbqtcore
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractButton()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractButton.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractbutton.html
* $ONELINER$
* Creates a new QAbstractButton object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QAbstractButton():new( ... )
* QAbstractButton():from( pPtr_OR_oObj_of_type_QAbstractButton )
* QAbstractButton():configure( pPtr_OR_oObj_of_type_QAbstractButton )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractButton
* $METHODS$
* :autoExclusive() -> lBool
* :autoRepeat() -> lBool
@@ -45,33 +53,25 @@
* :setIconSize( pSize ) -> NIL
* :toggle() -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractButton
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QAbstractButton object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractbutton.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractButton.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractItemDelegate()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractItemDelegate.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemdelegate.html
* $ONELINER$
* Creates a new QAbstractItemDelegate object.
* $INHERITS$
* QObject
* $SYNTAX$
* QAbstractItemDelegate():new( ... )
* QAbstractItemDelegate():from( pPtr_OR_oObj_of_type_QAbstractItemDelegate )
* QAbstractItemDelegate():configure( pPtr_OR_oObj_of_type_QAbstractItemDelegate )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractItemDelegate
* $METHODS$
* :createEditor( pParent, pOption, pIndex ) -> pQWidget
* :editorEvent( pEvent, pModel, pOption, pIndex ) -> lBool
@@ -26,33 +34,25 @@
* :sizeHint( pOption, pIndex ) -> pQSize
* :updateEditorGeometry( pEditor, pOption, pIndex ) -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractItemDelegate
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QAbstractItemDelegate object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemdelegate.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractItemDelegate.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractItemModel()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractItemModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemmodel.html
* $ONELINER$
* Creates a new QAbstractItemModel object.
* $INHERITS$
* QObject
* $SYNTAX$
* QAbstractItemModel():new( ... )
* QAbstractItemModel():from( pPtr_OR_oObj_of_type_QAbstractItemModel )
* QAbstractItemModel():configure( pPtr_OR_oObj_of_type_QAbstractItemModel )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractItemModel
* $METHODS$
* :buddy( pIndex ) -> pQModelIndex
* :canFetchMore( pParent ) -> lBool
@@ -51,33 +59,25 @@
* :revert() -> NIL
* :submit() -> lBool
*
* $RETURNS$
* An instance of the object of type QAbstractItemModel
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QAbstractItemModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemmodel.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractItemModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp
* Library : hbqtcore
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractItemView()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractItemView.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemview.html
* $ONELINER$
* Creates a new QAbstractItemView object.
* $INHERITS$
* QAbstractScrollArea
* $SYNTAX$
* QAbstractItemView():new( ... )
* QAbstractItemView():from( pPtr_OR_oObj_of_type_QAbstractItemView )
* QAbstractItemView():configure( pPtr_OR_oObj_of_type_QAbstractItemView )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractItemView
* $METHODS$
* :alternatingRowColors() -> lBool
* :autoScrollMargin() -> nInt
@@ -82,33 +90,25 @@
* :setRootIndex( pIndex ) -> NIL
* :update( pIndex ) -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractItemView
* $SEEALSO$
* QAbstractScrollArea
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractScrollArea
* $ONELINER$
* Creates a new QAbstractItemView object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemview.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractItemView.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractScrollArea
* $END$
*/

View File

@@ -3,50 +3,50 @@
*/
/* $DOC$
* $NAME$
* QAbstractListModel()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractListModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractListModel():new( ... )
* QAbstractListModel():from( pPtr_OR_oObj_of_type_QAbstractListModel )
* QAbstractListModel():configure( pPtr_OR_oObj_of_type_QAbstractListModel )
* $METHODS$
* :index( nRow, nColumn, pParent ) -> pQModelIndex
*
* $RETURNS$
* An instance of the object of type QAbstractListModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QAbstractListModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* QAbstractListModel()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractlistmodel.html
* $ONELINER$
* Creates a new QAbstractListModel object.
* $INHERITS$
* QAbstractItemModel
* $SYNTAX$
* QAbstractListModel():new( ... )
* QAbstractListModel():from( pPtr_OR_oObj_of_type_QAbstractListModel )
* QAbstractListModel():configure( pPtr_OR_oObj_of_type_QAbstractListModel )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractListModel
* $METHODS$
* :index( nRow, nColumn, pParent ) -> pQModelIndex
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractListModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp
* Library : hbqtcore
* $SEEALSO$
* QAbstractItemModel
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractPrintDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractPrintDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractprintdialog.html
* $ONELINER$
* Creates a new QAbstractPrintDialog object.
* $INHERITS$
* QDialog
* $SYNTAX$
* QAbstractPrintDialog():new( ... )
* QAbstractPrintDialog():from( pPtr_OR_oObj_of_type_QAbstractPrintDialog )
* QAbstractPrintDialog():configure( pPtr_OR_oObj_of_type_QAbstractPrintDialog )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractPrintDialog
* $METHODS$
* :exec() -> nInt
* :fromPage() -> nInt
@@ -29,33 +37,25 @@
* :setPrintRange( nRange ) -> NIL
* :toPage() -> nInt
*
* $RETURNS$
* An instance of the object of type QAbstractPrintDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QAbstractPrintDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractprintdialog.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractPrintDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp
* Library : hbqtgui
* $SEEALSO$
* QDialog
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractProxyModel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractProxyModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractproxymodel.html
* $ONELINER$
* Creates a new QAbstractProxyModel object.
* $INHERITS$
* QAbstractItemModel
* $SYNTAX$
* QAbstractProxyModel():new( ... )
* QAbstractProxyModel():from( pPtr_OR_oObj_of_type_QAbstractProxyModel )
* QAbstractProxyModel():configure( pPtr_OR_oObj_of_type_QAbstractProxyModel )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractProxyModel
* $METHODS$
* :mapFromSource( pSourceIndex ) -> pQModelIndex
* :mapSelectionFromSource( pSourceSelection ) -> pQItemSelection
@@ -25,33 +33,25 @@
* :setSourceModel( pSourceModel ) -> NIL
* :sourceModel() -> pQAbstractItemModel
*
* $RETURNS$
* An instance of the object of type QAbstractProxyModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QAbstractProxyModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractproxymodel.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractProxyModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractItemModel
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractScrollArea()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractScrollArea.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractscrollarea.html
* $ONELINER$
* Creates a new QAbstractScrollArea object.
* $INHERITS$
* QFrame
* $SYNTAX$
* QAbstractScrollArea():new( ... )
* QAbstractScrollArea():from( pPtr_OR_oObj_of_type_QAbstractScrollArea )
* QAbstractScrollArea():configure( pPtr_OR_oObj_of_type_QAbstractScrollArea )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractScrollArea
* $METHODS$
* :addScrollBarWidget( pWidget, nAlignment ) -> NIL
* :cornerWidget() -> pQWidget
@@ -33,33 +41,25 @@
* :verticalScrollBarPolicy() -> nQt::ScrollBarPolicy
* :viewport() -> pQWidget
*
* $RETURNS$
* An instance of the object of type QAbstractScrollArea
* $SEEALSO$
* QFrame
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QFrame
* $ONELINER$
* Creates a new QAbstractScrollArea object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractscrollarea.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractScrollArea.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp
* Library : hbqtgui
* $SEEALSO$
* QFrame
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractSlider()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractSlider.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractslider.html
* $ONELINER$
* Creates a new QAbstractSlider object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QAbstractSlider():new( ... )
* QAbstractSlider():from( pPtr_OR_oObj_of_type_QAbstractSlider )
* QAbstractSlider():configure( pPtr_OR_oObj_of_type_QAbstractSlider )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractSlider
* $METHODS$
* :hasTracking() -> lBool
* :invertedAppearance() -> lBool
@@ -43,33 +51,25 @@
* :setOrientation( nQt::Orientation ) -> NIL
* :setValue( nInt ) -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractSlider
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QAbstractSlider object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractslider.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractSlider.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractSpinBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractSpinBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractspinbox.html
* $ONELINER$
* Creates a new QAbstractSpinBox object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QAbstractSpinBox():new( ... )
* QAbstractSpinBox():from( pPtr_OR_oObj_of_type_QAbstractSpinBox )
* QAbstractSpinBox():configure( pPtr_OR_oObj_of_type_QAbstractSpinBox )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractSpinBox
* $METHODS$
* :alignment() -> nQt::Alignment
* :buttonSymbols() -> nButtonSymbols
@@ -45,33 +53,25 @@
* :stepDown() -> NIL
* :stepUp() -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractSpinBox
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QAbstractSpinBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractspinbox.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractSpinBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,50 +3,50 @@
*/
/* $DOC$
* $NAME$
* QAbstractTableModel()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractTableModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractTableModel():new( ... )
* QAbstractTableModel():from( pPtr_OR_oObj_of_type_QAbstractTableModel )
* QAbstractTableModel():configure( pPtr_OR_oObj_of_type_QAbstractTableModel )
* $METHODS$
* :index( nRow, nColumn, pParent ) -> pQModelIndex
*
* $RETURNS$
* An instance of the object of type QAbstractTableModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QAbstractTableModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* QAbstractTableModel()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstracttablemodel.html
* $ONELINER$
* Creates a new QAbstractTableModel object.
* $INHERITS$
* QAbstractItemModel
* $SYNTAX$
* QAbstractTableModel():new( ... )
* QAbstractTableModel():from( pPtr_OR_oObj_of_type_QAbstractTableModel )
* QAbstractTableModel():configure( pPtr_OR_oObj_of_type_QAbstractTableModel )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractTableModel
* $METHODS$
* :index( nRow, nColumn, pParent ) -> pQModelIndex
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractTableModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp
* Library : hbqtcore
* $SEEALSO$
* QAbstractItemModel
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAbstractTextDocumentLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstracttextdocumentlayout.html
* $ONELINER$
* Creates a new QAbstractTextDocumentLayout object.
* $INHERITS$
* QObject
* $SYNTAX$
* QAbstractTextDocumentLayout():new( ... )
* QAbstractTextDocumentLayout():from( pPtr_OR_oObj_of_type_QAbstractTextDocumentLayout )
* QAbstractTextDocumentLayout():configure( pPtr_OR_oObj_of_type_QAbstractTextDocumentLayout )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAbstractTextDocumentLayout
* $METHODS$
* :anchorAt( pPosition ) -> cQString
* :blockBoundingRect( pBlock ) -> pQRectF
@@ -29,33 +37,25 @@
* :registerHandler( nObjectType, pComponent ) -> NIL
* :setPaintDevice( pDevice ) -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractTextDocumentLayout
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QAbstractTextDocumentLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstracttextdocumentlayout.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QAction()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAction.prg
* C++ wrappers : contrib/hbqt/qtgui/QAction.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qaction.html
* $ONELINER$
* Creates a new QAction object.
* $INHERITS$
* QObject
* $SYNTAX$
* QAction():new( ... )
* QAction():from( pPtr_OR_oObj_of_type_QAction )
* QAction():configure( pPtr_OR_oObj_of_type_QAction )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QAction
* $METHODS$
* :actionGroup() -> Group
* :activate( nEvent ) -> NIL
@@ -69,33 +77,25 @@
* :toggle() -> NIL
* :trigger() -> NIL
*
* $RETURNS$
* An instance of the object of type QAction
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QAction object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qaction.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAction.prg
* C++ wrappers : contrib/hbqt/qtgui/QAction.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QActionGroup()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQActionGroup.prg
* C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qactiongroup.html
* $ONELINER$
* Creates a new QActionGroup object.
* $INHERITS$
* QObject
* $SYNTAX$
* QActionGroup():new( ... )
* QActionGroup():from( pPtr_OR_oObj_of_type_QActionGroup )
* QActionGroup():configure( pPtr_OR_oObj_of_type_QActionGroup )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QActionGroup
* $METHODS$
* :actions() -> pQList<QAction *>
* :addAction( pAction ) -> pQAction
@@ -32,33 +40,25 @@
* :setExclusive( lBool ) -> NIL
* :setVisible( lBool ) -> NIL
*
* $RETURNS$
* An instance of the object of type QActionGroup
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QActionGroup object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qactiongroup.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQActionGroup.prg
* C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QApplication()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQApplication.prg
* C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qapplication.html
* $ONELINER$
* Creates a new QApplication object.
* $INHERITS$
* QCoreApplication
* $SYNTAX$
* QApplication():new( ... )
* QApplication():from( pPtr_OR_oObj_of_type_QApplication )
* QApplication():configure( pPtr_OR_oObj_of_type_QApplication )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QApplication
* $METHODS$
* :commitData( pManager ) -> NIL
* :isSessionRestored() -> lBool
@@ -93,33 +101,25 @@
* :closeAllWindows() -> NIL
* :setStyleSheet( cSheet ) -> NIL
*
* $RETURNS$
* An instance of the object of type QApplication
* $SEEALSO$
* QCoreApplication
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QCoreApplication
* $ONELINER$
* Creates a new QApplication object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qapplication.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQApplication.prg
* C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp
* Library : hbqtgui
* $SEEALSO$
* QCoreApplication
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QBitArray()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQBitArray.prg
* C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbitarray.html
* $ONELINER$
* Creates a new QBitArray object.
* $INHERITS$
*
* $SYNTAX$
* QBitArray():new( ... )
* QBitArray():from( pPtr_OR_oObj_of_type_QBitArray )
* QBitArray():configure( pPtr_OR_oObj_of_type_QBitArray )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QBitArray
* $METHODS$
* :at( nI ) -> lBool
* :clear() -> NIL
@@ -35,33 +43,25 @@
* :toggleBit( nI ) -> lBool
* :truncate( nPos ) -> NIL
*
* $RETURNS$
* An instance of the object of type QBitArray
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QBitArray object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbitarray.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQBitArray.prg
* C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,31 +3,33 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QBitmap()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBitmap.prg
* C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbitmap.html
* $ONELINER$
* Creates a new QBitmap object.
* $INHERITS$
* QPixmap
* $SYNTAX$
* QBitmap():new( ... )
* QBitmap():from( pPtr_OR_oObj_of_type_QBitmap )
* QBitmap():configure( pPtr_OR_oObj_of_type_QBitmap )
* $METHODS$
* :clear() -> NIL
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QBitmap
* $SEEALSO$
* QPixmap
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $METHODS$
* :clear() -> NIL
*
* $DESCRIPTION$
*
* $EXAMPLES$
* oBitmap := QBitmap():new()
* oBitmap := QBitmap():new( pBitmap_other )
@@ -36,23 +38,21 @@
* oBitmap := QBitmap():new( "QSize" , pQSize )
* oBitmap := QBitmap():new( cImageFilename, [ cFormat ] )
*
* $INHERITS$
* QPixmap
* $ONELINER$
* Creates a new QBitmap object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbitmap.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBitmap.prg
* C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp
* Library : hbqtgui
* $SEEALSO$
* QPixmap
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QBoxLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBoxLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qboxlayout.html
* $ONELINER$
* Creates a new QBoxLayout object.
* $INHERITS$
* QLayout
* $SYNTAX$
* QBoxLayout():new( ... )
* QBoxLayout():from( pPtr_OR_oObj_of_type_QBoxLayout )
* QBoxLayout():configure( pPtr_OR_oObj_of_type_QBoxLayout )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QBoxLayout
* $METHODS$
* :addLayout( pLayout, nStretch ) -> NIL
* :addSpacerItem( pSpacerItem ) -> NIL
@@ -39,33 +47,25 @@
* :spacing() -> nInt
* :stretch( nIndex ) -> nInt
*
* $RETURNS$
* An instance of the object of type QBoxLayout
* $SEEALSO$
* QLayout
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QLayout
* $ONELINER$
* Creates a new QBoxLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qboxlayout.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBoxLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp
* Library : hbqtgui
* $SEEALSO$
* QLayout
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QBrush()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBrush.prg
* C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbrush.html
* $ONELINER$
* Creates a new QBrush object.
* $INHERITS$
*
* $SYNTAX$
* QBrush():new( ... )
* QBrush():from( pPtr_OR_oObj_of_type_QBrush )
* QBrush():configure( pPtr_OR_oObj_of_type_QBrush )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QBrush
* $METHODS$
* :color() -> pQColor
* :isOpaque() -> lBool
@@ -33,14 +41,8 @@
* :textureImage() -> pQImage
* :transform() -> pQTransform
*
* $RETURNS$
* An instance of the object of type QBrush
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $DESCRIPTION$
*
* $EXAMPLES$
* oBrush := QBrush():new()
* oBrush := QBrush():new( pQBrush )
@@ -54,23 +56,21 @@
* oBrush := QBrush():new( "QGradient", pQGradient )
* oBrush := QBrush():new( "QColor" , pQColor, [ nQt_BrushStyle = Qt_SolidPattern ] )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QBrush object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbrush.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBrush.prg
* C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QBuffer()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQBuffer.prg
* C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbuffer.html
* $ONELINER$
* Creates a new QBuffer object.
* $INHERITS$
* QIODevice
* $SYNTAX$
* QBuffer():new( ... )
* QBuffer():from( pPtr_OR_oObj_of_type_QBuffer )
* QBuffer():configure( pPtr_OR_oObj_of_type_QBuffer )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QBuffer
* $METHODS$
* :buffer() -> pQByteArray
* :buffer_1() -> pQByteArray
@@ -25,33 +33,25 @@
* :setData( pData, nSize ) -> NIL
* :setData_1( pData ) -> NIL
*
* $RETURNS$
* An instance of the object of type QBuffer
* $SEEALSO$
* QIODevice
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QIODevice
* $ONELINER$
* Creates a new QBuffer object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbuffer.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQBuffer.prg
* C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp
* Library : hbqtcore
* $SEEALSO$
* QIODevice
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QButtonGroup()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQButtonGroup.prg
* C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbuttongroup.html
* $ONELINER$
* Creates a new QButtonGroup object.
* $INHERITS$
* QObject
* $SYNTAX$
* QButtonGroup():new( ... )
* QButtonGroup():from( pPtr_OR_oObj_of_type_QButtonGroup )
* QButtonGroup():configure( pPtr_OR_oObj_of_type_QButtonGroup )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QButtonGroup
* $METHODS$
* :addButton( pButton ) -> NIL
* :addButton_1( pButton, nId ) -> NIL
@@ -30,33 +38,25 @@
* :setExclusive( lBool ) -> NIL
* :setId( pButton, nId ) -> NIL
*
* $RETURNS$
* An instance of the object of type QButtonGroup
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QButtonGroup object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbuttongroup.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQButtonGroup.prg
* C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QByteArray()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQByteArray.prg
* C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbytearray.html
* $ONELINER$
* Creates a new QByteArray object.
* $INHERITS$
*
* $SYNTAX$
* QByteArray():new( ... )
* QByteArray():from( pPtr_OR_oObj_of_type_QByteArray )
* QByteArray():configure( pPtr_OR_oObj_of_type_QByteArray )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QByteArray
* $METHODS$
* :at( nI ) -> cChar
* :capacity() -> nInt
@@ -69,33 +77,25 @@
* :toUShort( @lOk, nBase ) -> nUshort
* :truncate( nPos ) -> NIL
*
* $RETURNS$
* An instance of the object of type QByteArray
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QByteArray object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbytearray.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQByteArray.prg
* C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QCalendarWidget()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCalendarWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcalendarwidget.html
* $ONELINER$
* Creates a new QCalendarWidget object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QCalendarWidget():new( ... )
* QCalendarWidget():from( pPtr_OR_oObj_of_type_QCalendarWidget )
* QCalendarWidget():configure( pPtr_OR_oObj_of_type_QCalendarWidget )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QCalendarWidget
* $METHODS$
* :dateEditAcceptDelay() -> nInt
* :dateTextFormat( pDate ) -> pQTextCharFormat
@@ -57,33 +65,25 @@
* :showSelectedDate() -> NIL
* :showToday() -> NIL
*
* $RETURNS$
* An instance of the object of type QCalendarWidget
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QCalendarWidget object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcalendarwidget.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCalendarWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QChar()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQChar.prg
* C++ wrappers : contrib/hbqt/qtcore/QChar.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qchar.html
* $ONELINER$
* Creates a new QChar object.
* $INHERITS$
*
* $SYNTAX$
* QChar():new( ... )
* QChar():from( pPtr_OR_oObj_of_type_QChar )
* QChar():configure( pPtr_OR_oObj_of_type_QChar )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QChar
* $METHODS$
* :category() -> nCategory
* :combiningClass() -> nUnsigned
@@ -47,33 +55,25 @@
* :unicode_1() -> nUshort
* :unicodeVersion() -> nUnicodeVersion
*
* $RETURNS$
* An instance of the object of type QChar
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QChar object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qchar.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQChar.prg
* C++ wrappers : contrib/hbqt/qtcore/QChar.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,53 +3,53 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QCheckBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCheckBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcheckbox.html
* $ONELINER$
* Creates a new QCheckBox object.
* $INHERITS$
* QAbstractButton
* $SYNTAX$
* QCheckBox():new( ... )
* QCheckBox():from( pPtr_OR_oObj_of_type_QCheckBox )
* QCheckBox():configure( pPtr_OR_oObj_of_type_QCheckBox )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QCheckBox
* $METHODS$
* :checkState() -> nQt::CheckState
* :isTristate() -> lBool
* :setCheckState( nState ) -> NIL
* :setTristate( lY ) -> NIL
*
* $RETURNS$
* An instance of the object of type QCheckBox
* $SEEALSO$
* QAbstractButton
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractButton
* $ONELINER$
* Creates a new QCheckBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcheckbox.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCheckBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractButton
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QClipboard()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQClipboard.prg
* C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qclipboard.html
* $ONELINER$
* Creates a new QClipboard object.
* $INHERITS$
* QObject
* $SYNTAX$
* QClipboard():new( ... )
* QClipboard():from( pPtr_OR_oObj_of_type_QClipboard )
* QClipboard():configure( pPtr_OR_oObj_of_type_QClipboard )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QClipboard
* $METHODS$
* :clear( nMode ) -> NIL
* :image( nMode ) -> pQImage
@@ -32,33 +40,25 @@
* :supportsSelection() -> lBool
* :text( nMode ) -> cQString
*
* $RETURNS$
* An instance of the object of type QClipboard
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QClipboard object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qclipboard.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQClipboard.prg
* C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QColor()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQColor.prg
* C++ wrappers : contrib/hbqt/qtgui/QColor.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcolor.html
* $ONELINER$
* Creates a new QColor object.
* $INHERITS$
*
* $SYNTAX$
* QColor():new( ... )
* QColor():from( pPtr_OR_oObj_of_type_QColor )
* QColor():configure( pPtr_OR_oObj_of_type_QColor )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QColor
* $METHODS$
* :alpha() -> nInt
* :alphaF() -> nQreal
@@ -70,14 +78,8 @@
* :yellowF() -> nQreal
* :colorNames() -> pQStringList
*
* $RETURNS$
* An instance of the object of type QColor
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $DESCRIPTION$
*
* $EXAMPLES$
* oColor := QColor():new() // You will supply other parameter later
* oColor := QColor():new( nQt_Color ) // R: hbqt.ch
@@ -87,23 +89,21 @@
* oColor := QColor():new( nR, nG, nB ) // Red Green Blue values
* oColor := QColor():new( nR, nG, nB, nAlpha ) // Red Green Blue values with Alpha Channel
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QColor object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcolor.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQColor.prg
* C++ wrappers : contrib/hbqt/qtgui/QColor.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QColorDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQColorDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcolordialog.html
* $ONELINER$
* Creates a new QColorDialog object.
* $INHERITS$
* QDialog
* $SYNTAX$
* QColorDialog():new( ... )
* QColorDialog():from( pPtr_OR_oObj_of_type_QColorDialog )
* QColorDialog():configure( pPtr_OR_oObj_of_type_QColorDialog )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QColorDialog
* $METHODS$
* :currentColor() -> pQColor
* :open() -> NIL
@@ -34,33 +42,25 @@
* :setCustomColor( nIndex, nColor ) -> NIL
* :setStandardColor( nIndex, nColor ) -> NIL
*
* $RETURNS$
* An instance of the object of type QColorDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QColorDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcolordialog.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQColorDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp
* Library : hbqtgui
* $SEEALSO$
* QDialog
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QComboBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQComboBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcombobox.html
* $ONELINER$
* Creates a new QComboBox object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QComboBox():new( ... )
* QComboBox():from( pPtr_OR_oObj_of_type_QComboBox )
* QComboBox():configure( pPtr_OR_oObj_of_type_QComboBox )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QComboBox
* $METHODS$
* :addItem( cText, pUserData ) -> NIL
* :addItem_1( cIcon, cText, pUserData ) -> NIL
@@ -78,33 +86,25 @@
* :setCurrentIndex( nIndex ) -> NIL
* :setEditText( cText ) -> NIL
*
* $RETURNS$
* An instance of the object of type QComboBox
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QComboBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcombobox.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQComboBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,51 +3,51 @@
*/
/* $DOC$
* $NAME$
* QCommandLinkButton()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCommandLinkButton.prg
* C++ wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QCommandLinkButton():new( ... )
* QCommandLinkButton():from( pPtr_OR_oObj_of_type_QCommandLinkButton )
* QCommandLinkButton():configure( pPtr_OR_oObj_of_type_QCommandLinkButton )
* $METHODS$
* :description() -> cQString
* :setDescription( cDescription ) -> NIL
*
* $RETURNS$
* An instance of the object of type QCommandLinkButton
* $SEEALSO$
* QPushButton
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QPushButton
* $ONELINER$
* Creates a new QCommandLinkButton object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* QCommandLinkButton()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcommandlinkbutton.html
* $ONELINER$
* Creates a new QCommandLinkButton object.
* $INHERITS$
* QPushButton
* $SYNTAX$
* QCommandLinkButton():new( ... )
* QCommandLinkButton():from( pPtr_OR_oObj_of_type_QCommandLinkButton )
* QCommandLinkButton():configure( pPtr_OR_oObj_of_type_QCommandLinkButton )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QCommandLinkButton
* $METHODS$
* :description() -> cQString
* :setDescription( cDescription ) -> NIL
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCommandLinkButton.prg
* C++ wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp
* Library : hbqtgui
* $SEEALSO$
* QPushButton
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QCompleter()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCompleter.prg
* C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcompleter.html
* $ONELINER$
* Creates a new QCompleter object.
* $INHERITS$
* QObject
* $SYNTAX$
* QCompleter():new( ... )
* QCompleter():from( pPtr_OR_oObj_of_type_QCompleter )
* QCompleter():configure( pPtr_OR_oObj_of_type_QCompleter )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QCompleter
* $METHODS$
* :caseSensitivity() -> nQt::CaseSensitivity
* :completionColumn() -> nInt
@@ -48,33 +56,25 @@
* :setCompletionPrefix( cPrefix ) -> NIL
* :setWrapAround( lWrap ) -> NIL
*
* $RETURNS$
* An instance of the object of type QCompleter
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QCompleter object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcompleter.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCompleter.prg
* C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QConicalGradient()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQConicalGradient.prg
* C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qconicalgradient.html
* $ONELINER$
* Creates a new QConicalGradient object.
* $INHERITS$
* QGradient
* $SYNTAX$
* QConicalGradient():new( ... )
* QConicalGradient():from( pPtr_OR_oObj_of_type_QConicalGradient )
* QConicalGradient():configure( pPtr_OR_oObj_of_type_QConicalGradient )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QConicalGradient
* $METHODS$
* :angle() -> nQreal
* :center() -> pQPointF
@@ -24,33 +32,25 @@
* :setCenter( pCenter ) -> NIL
* :setCenter_1( nX, nY ) -> NIL
*
* $RETURNS$
* An instance of the object of type QConicalGradient
* $SEEALSO$
* QGradient
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QGradient
* $ONELINER$
* Creates a new QConicalGradient object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qconicalgradient.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQConicalGradient.prg
* C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp
* Library : hbqtgui
* $SEEALSO$
* QGradient
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QContextMenuEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQContextMenuEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcontextmenuevent.html
* $ONELINER$
* Creates a new QContextMenuEvent object.
* $INHERITS$
* QInputEvent
* $SYNTAX$
* QContextMenuEvent():new( ... )
* QContextMenuEvent():from( pPtr_OR_oObj_of_type_QContextMenuEvent )
* QContextMenuEvent():configure( pPtr_OR_oObj_of_type_QContextMenuEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QContextMenuEvent
* $METHODS$
* :globalPos() -> pQPoint
* :globalX() -> nInt
@@ -26,33 +34,25 @@
* :x() -> nInt
* :y() -> nInt
*
* $RETURNS$
* An instance of the object of type QContextMenuEvent
* $SEEALSO$
* QInputEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QInputEvent
* $ONELINER$
* Creates a new QContextMenuEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcontextmenuevent.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQContextMenuEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp
* Library : hbqtgui
* $SEEALSO$
* QInputEvent
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QCoreApplication()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQCoreApplication.prg
* C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcoreapplication.html
* $ONELINER$
* Creates a new QCoreApplication object.
* $INHERITS$
* QObject
* $SYNTAX$
* QCoreApplication():new( ... )
* QCoreApplication():from( pPtr_OR_oObj_of_type_QCoreApplication )
* QCoreApplication():configure( pPtr_OR_oObj_of_type_QCoreApplication )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QCoreApplication
* $METHODS$
* :notify( pReceiver, pEvent ) -> lBool
* :addLibraryPath( cPath ) -> NIL
@@ -58,33 +66,25 @@
* :translate_1( pContext, pSourceText, pDisambiguation, nEncoding ) -> cQString
* :quit() -> NIL
*
* $RETURNS$
* An instance of the object of type QCoreApplication
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QCoreApplication object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcoreapplication.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQCoreApplication.prg
* C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp
* Library : hbqtcore
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QCursor()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCursor.prg
* C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcursor.html
* $ONELINER$
* Creates a new QCursor object.
* $INHERITS$
*
* $SYNTAX$
* QCursor():new( ... )
* QCursor():from( pPtr_OR_oObj_of_type_QCursor )
* QCursor():configure( pPtr_OR_oObj_of_type_QCursor )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QCursor
* $METHODS$
* :bitmap() -> pQBitmap
* :hotSpot() -> pQPoint
@@ -28,14 +36,8 @@
* :setPos( nX, nY ) -> NIL
* :setPos_1( pP ) -> NIL
*
* $RETURNS$
* An instance of the object of type QCursor
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $DESCRIPTION$
*
* $EXAMPLES$
* oCursor := QCursor():new()
* oCursor := QCursor():new( pQCursor )
@@ -43,23 +45,21 @@
* oCursor := QCursor():new( "QPixmap", pQPixmap, [ nHotX = -1 ] , [ nHotY = -1 ] )
* oCursor := QCursor():new( pQBitmap, pQBitmapAsMask, [ nHotX = -1 ], [ nHotY = -1 ] )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QCursor object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcursor.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCursor.prg
* C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDataStream()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDataStream.prg
* C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatastream.html
* $ONELINER$
* Creates a new QDataStream object.
* $INHERITS$
*
* $SYNTAX$
* QDataStream():new( ... )
* QDataStream():from( pPtr_OR_oObj_of_type_QDataStream )
* QDataStream():configure( pPtr_OR_oObj_of_type_QDataStream )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDataStream
* $METHODS$
* :atEnd() -> lBool
* :byteOrder() -> nByteOrder
@@ -32,33 +40,25 @@
* :version() -> nInt
* :writeRawData( pS, nLen ) -> nInt
*
* $RETURNS$
* An instance of the object of type QDataStream
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QDataStream object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatastream.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDataStream.prg
* C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDate()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDate.prg
* C++ wrappers : contrib/hbqt/qtcore/QDate.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdate.html
* $ONELINER$
* Creates a new QDate object.
* $INHERITS$
*
* $SYNTAX$
* QDate():new( ... )
* QDate():from( pPtr_OR_oObj_of_type_QDate )
* QDate():configure( pPtr_OR_oObj_of_type_QDate )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDate
* $METHODS$
* :day() -> nInt
* :dayOfWeek() -> nInt
@@ -35,33 +43,25 @@
* :weekNumber( @nYearNumber ) -> nInt
* :year() -> nInt
*
* $RETURNS$
* An instance of the object of type QDate
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QDate object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdate.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDate.prg
* C++ wrappers : contrib/hbqt/qtcore/QDate.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDateTime()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDateTime.prg
* C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatetime.html
* $ONELINER$
* Creates a new QDateTime object.
* $INHERITS$
*
* $SYNTAX$
* QDateTime():new( ... )
* QDateTime():from( pPtr_OR_oObj_of_type_QDateTime )
* QDateTime():configure( pPtr_OR_oObj_of_type_QDateTime )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDateTime
* $METHODS$
* :date() -> pQDate
* :daysTo( pOther ) -> nInt
@@ -33,33 +41,25 @@
* :toString_1( nFormat ) -> cQString
* :toTime_t() -> nUint
*
* $RETURNS$
* An instance of the object of type QDateTime
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QDateTime object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatetime.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDateTime.prg
* C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDateTimeEdit()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDateTimeEdit.prg
* C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatetimeedit.html
* $ONELINER$
* Creates a new QDateTimeEdit object.
* $INHERITS$
* QAbstractSpinBox
* $SYNTAX$
* QDateTimeEdit():new( ... )
* QDateTimeEdit():from( pPtr_OR_oObj_of_type_QDateTimeEdit )
* QDateTimeEdit():configure( pPtr_OR_oObj_of_type_QDateTimeEdit )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDateTimeEdit
* $METHODS$
* :calendarPopup() -> lBool
* :calendarWidget() -> pQCalendarWidget
@@ -63,33 +71,25 @@
* :setDateTime( pDateTime ) -> NIL
* :setTime( pTime ) -> NIL
*
* $RETURNS$
* An instance of the object of type QDateTimeEdit
* $SEEALSO$
* QAbstractSpinBox
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractSpinBox
* $ONELINER$
* Creates a new QDateTimeEdit object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatetimeedit.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDateTimeEdit.prg
* C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractSpinBox
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDesktopWidget()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDesktopWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdesktopwidget.html
* $ONELINER$
* Creates a new QDesktopWidget object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QDesktopWidget():new( ... )
* QDesktopWidget():from( pPtr_OR_oObj_of_type_QDesktopWidget )
* QDesktopWidget():configure( pPtr_OR_oObj_of_type_QDesktopWidget )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDesktopWidget
* $METHODS$
* :availableGeometry( nScreen ) -> pQRect
* :availableGeometry_1( pWidget ) -> pQRect
@@ -31,33 +39,25 @@
* :screenNumber( pWidget ) -> nInt
* :screenNumber_1( pPoint ) -> nInt
*
* $RETURNS$
* An instance of the object of type QDesktopWidget
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QDesktopWidget object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdesktopwidget.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDesktopWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDial()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDial.prg
* C++ wrappers : contrib/hbqt/qtgui/QDial.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdial.html
* $ONELINER$
* Creates a new QDial object.
* $INHERITS$
* QAbstractSlider
* $SYNTAX$
* QDial():new( ... )
* QDial():from( pPtr_OR_oObj_of_type_QDial )
* QDial():configure( pPtr_OR_oObj_of_type_QDial )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDial
* $METHODS$
* :notchSize() -> nInt
* :notchTarget() -> nQreal
@@ -26,33 +34,25 @@
* :setNotchesVisible( lVisible ) -> NIL
* :setWrapping( lOn ) -> NIL
*
* $RETURNS$
* An instance of the object of type QDial
* $SEEALSO$
* QAbstractSlider
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractSlider
* $ONELINER$
* Creates a new QDial object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdial.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDial.prg
* C++ wrappers : contrib/hbqt/qtgui/QDial.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractSlider
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdialog.html
* $ONELINER$
* Creates a new QDialog object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QDialog():new( ... )
* QDialog():from( pPtr_OR_oObj_of_type_QDialog )
* QDialog():configure( pPtr_OR_oObj_of_type_QDialog )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDialog
* $METHODS$
* :isSizeGripEnabled() -> lBool
* :result() -> nInt
@@ -29,33 +37,25 @@
* :open() -> NIL
* :reject() -> NIL
*
* $RETURNS$
* An instance of the object of type QDialog
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdialog.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDir()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDir.prg
* C++ wrappers : contrib/hbqt/qtcore/QDir.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdir.html
* $ONELINER$
* Creates a new QDir object.
* $INHERITS$
*
* $SYNTAX$
* QDir():new( ... )
* QDir():from( pPtr_OR_oObj_of_type_QDir )
* QDir():configure( pPtr_OR_oObj_of_type_QDir )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDir
* $METHODS$
* :absoluteFilePath( cFileName ) -> cQString
* :absolutePath() -> cQString
@@ -68,33 +76,25 @@
* :tempPath() -> cQString
* :toNativeSeparators( cPathName ) -> cQString
*
* $RETURNS$
* An instance of the object of type QDir
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QDir object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdir.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDir.prg
* C++ wrappers : contrib/hbqt/qtcore/QDir.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDirModel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDirModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdirmodel.html
* $ONELINER$
* Creates a new QDirModel object.
* $INHERITS$
* QAbstractItemModel
* $SYNTAX$
* QDirModel():new( ... )
* QDirModel():from( pPtr_OR_oObj_of_type_QDirModel )
* QDirModel():configure( pPtr_OR_oObj_of_type_QDirModel )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDirModel
* $METHODS$
* :columnCount( pParent ) -> nInt
* :data( pIndex, nRole ) -> pQVariant
@@ -56,33 +64,25 @@
* :supportedDropActions() -> nQt::DropActions
* :refresh( pParent ) -> NIL
*
* $RETURNS$
* An instance of the object of type QDirModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QDirModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdirmodel.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDirModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractItemModel
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDockWidget()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDockWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdockwidget.html
* $ONELINER$
* Creates a new QDockWidget object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QDockWidget():new( ... )
* QDockWidget():from( pPtr_OR_oObj_of_type_QDockWidget )
* QDockWidget():configure( pPtr_OR_oObj_of_type_QDockWidget )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDockWidget
* $METHODS$
* :allowedAreas() -> nQt::DockWidgetAreas
* :features() -> nDockWidgetFeatures
@@ -31,33 +39,25 @@
* :toggleViewAction() -> pQAction
* :widget() -> pQWidget
*
* $RETURNS$
* An instance of the object of type QDockWidget
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QDockWidget object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdockwidget.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDockWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDoubleSpinBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDoubleSpinBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdoublespinbox.html
* $ONELINER$
* Creates a new QDoubleSpinBox object.
* $INHERITS$
* QAbstractSpinBox
* $SYNTAX$
* QDoubleSpinBox():new( ... )
* QDoubleSpinBox():from( pPtr_OR_oObj_of_type_QDoubleSpinBox )
* QDoubleSpinBox():configure( pPtr_OR_oObj_of_type_QDoubleSpinBox )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDoubleSpinBox
* $METHODS$
* :cleanText() -> cQString
* :decimals() -> nInt
@@ -37,33 +45,25 @@
* :valueFromText( cText ) -> nDouble
* :setValue( nVal ) -> NIL
*
* $RETURNS$
* An instance of the object of type QDoubleSpinBox
* $SEEALSO$
* QAbstractSpinBox
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractSpinBox
* $ONELINER$
* Creates a new QDoubleSpinBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdoublespinbox.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDoubleSpinBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractSpinBox
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDragMoveEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDragMoveEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdragmoveevent.html
* $ONELINER$
* Creates a new QDragMoveEvent object.
* $INHERITS$
* QDropEvent
* $SYNTAX$
* QDragMoveEvent():new( ... )
* QDragMoveEvent():from( pPtr_OR_oObj_of_type_QDragMoveEvent )
* QDragMoveEvent():configure( pPtr_OR_oObj_of_type_QDragMoveEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDragMoveEvent
* $METHODS$
* :accept( pRectangle ) -> NIL
* :accept_1() -> NIL
@@ -24,33 +32,25 @@
* :ignore( pRectangle ) -> NIL
* :ignore_1() -> NIL
*
* $RETURNS$
* An instance of the object of type QDragMoveEvent
* $SEEALSO$
* QDropEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDropEvent
* $ONELINER$
* Creates a new QDragMoveEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdragmoveevent.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDragMoveEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp
* Library : hbqtgui
* $SEEALSO$
* QDropEvent
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QDropEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDropEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdropevent.html
* $ONELINER$
* Creates a new QDropEvent object.
* $INHERITS$
* QEvent
* $SYNTAX$
* QDropEvent():new( ... )
* QDropEvent():from( pPtr_OR_oObj_of_type_QDropEvent )
* QDropEvent():configure( pPtr_OR_oObj_of_type_QDropEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QDropEvent
* $METHODS$
* :acceptProposedAction() -> NIL
* :dropAction() -> nQt::DropAction
@@ -29,33 +37,25 @@
* :setDropAction( nAction ) -> NIL
* :source() -> pQWidget
*
* $RETURNS$
* An instance of the object of type QDropEvent
* $SEEALSO$
* QEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QEvent
* $ONELINER$
* Creates a new QDropEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdropevent.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDropEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp
* Library : hbqtgui
* $SEEALSO$
* QEvent
* $END$
*/

View File

@@ -3,51 +3,51 @@
*/
/* $DOC$
* $NAME$
* QErrorMessage()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQErrorMessage.prg
* C++ wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QErrorMessage():new( ... )
* QErrorMessage():from( pPtr_OR_oObj_of_type_QErrorMessage )
* QErrorMessage():configure( pPtr_OR_oObj_of_type_QErrorMessage )
* $METHODS$
* :showMessage( cMessage ) -> NIL
* :showMessage_1( cMessage, cType ) -> NIL
*
* $RETURNS$
* An instance of the object of type QErrorMessage
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QErrorMessage object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* QErrorMessage()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qerrormessage.html
* $ONELINER$
* Creates a new QErrorMessage object.
* $INHERITS$
* QDialog
* $SYNTAX$
* QErrorMessage():new( ... )
* QErrorMessage():from( pPtr_OR_oObj_of_type_QErrorMessage )
* QErrorMessage():configure( pPtr_OR_oObj_of_type_QErrorMessage )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QErrorMessage
* $METHODS$
* :showMessage( cMessage ) -> NIL
* :showMessage_1( cMessage, cType ) -> NIL
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQErrorMessage.prg
* C++ wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp
* Library : hbqtgui
* $SEEALSO$
* QDialog
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQEvent.prg
* C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qevent.html
* $ONELINER$
* Creates a new QEvent object.
* $INHERITS$
*
* $SYNTAX$
* QEvent():new( ... )
* QEvent():from( pPtr_OR_oObj_of_type_QEvent )
* QEvent():configure( pPtr_OR_oObj_of_type_QEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QEvent
* $METHODS$
* :accept() -> NIL
* :ignore() -> NIL
@@ -26,33 +34,25 @@
* :type() -> nType
* :registerEventType( nHint ) -> nInt
*
* $RETURNS$
* An instance of the object of type QEvent
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qevent.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQEvent.prg
* C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QEventLoop()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQEventLoop.prg
* C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qeventloop.html
* $ONELINER$
* Creates a new QEventLoop object.
* $INHERITS$
* QObject
* $SYNTAX$
* QEventLoop():new( ... )
* QEventLoop():from( pPtr_OR_oObj_of_type_QEventLoop )
* QEventLoop():configure( pPtr_OR_oObj_of_type_QEventLoop )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QEventLoop
* $METHODS$
* :exec( nFlags ) -> nInt
* :exit( nReturnCode ) -> NIL
@@ -25,33 +33,25 @@
* :processEvents_1( nFlags, nMaxTime ) -> NIL
* :wakeUp() -> NIL
*
* $RETURNS$
* An instance of the object of type QEventLoop
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QEventLoop object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qeventloop.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQEventLoop.prg
* C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp
* Library : hbqtcore
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFile()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQFile.prg
* C++ wrappers : contrib/hbqt/qtcore/QFile.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfile.html
* $ONELINER$
* Creates a new QFile object.
* $INHERITS$
* QIODevice
* $SYNTAX$
* QFile():new( ... )
* QFile():from( pPtr_OR_oObj_of_type_QFile )
* QFile():configure( pPtr_OR_oObj_of_type_QFile )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFile
* $METHODS$
* :atEnd() -> lBool
* :close() -> NIL
@@ -53,33 +61,25 @@
* :setPermissions_1( cFileName, nPermissions ) -> lBool
* :symLinkTarget_1( cFileName ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFile
* $SEEALSO$
* QIODevice
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QIODevice
* $ONELINER$
* Creates a new QFile object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfile.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQFile.prg
* C++ wrappers : contrib/hbqt/qtcore/QFile.cpp
* Library : hbqtcore
* $SEEALSO$
* QIODevice
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFileDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfiledialog.html
* $ONELINER$
* Creates a new QFileDialog object.
* $INHERITS$
* QDialog
* $SYNTAX$
* QFileDialog():new( ... )
* QFileDialog():from( pPtr_OR_oObj_of_type_QFileDialog )
* QFileDialog():configure( pPtr_OR_oObj_of_type_QFileDialog )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFileDialog
* $METHODS$
* :acceptMode() -> nAcceptMode
* :confirmOverwrite() -> lBool
@@ -65,33 +73,25 @@
* :viewMode() -> nViewMode
* :getExistingDirectory( pParent, cCaption, cDir, nOptions ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFileDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QFileDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfiledialog.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp
* Library : hbqtgui
* $SEEALSO$
* QDialog
* $END$
*/

View File

@@ -3,52 +3,52 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFileIconProvider()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileIconProvider.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfileiconprovider.html
* $ONELINER$
* Creates a new QFileIconProvider object.
* $INHERITS$
*
* $SYNTAX$
* QFileIconProvider():new( ... )
* QFileIconProvider():from( pPtr_OR_oObj_of_type_QFileIconProvider )
* QFileIconProvider():configure( pPtr_OR_oObj_of_type_QFileIconProvider )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFileIconProvider
* $METHODS$
* :icon( nType ) -> pQIcon
* :icon_1( pInfo ) -> pQIcon
* :type( pInfo ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFileIconProvider
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFileIconProvider object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfileiconprovider.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileIconProvider.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFileInfo()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQFileInfo.prg
* C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfileinfo.html
* $ONELINER$
* Creates a new QFileInfo object.
* $INHERITS$
*
* $SYNTAX$
* QFileInfo():new( ... )
* QFileInfo():from( pPtr_OR_oObj_of_type_QFileInfo )
* QFileInfo():configure( pPtr_OR_oObj_of_type_QFileInfo )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFileInfo
* $METHODS$
* :absoluteDir() -> pQDir
* :absoluteFilePath() -> cQString
@@ -63,33 +71,25 @@
* :suffix() -> cQString
* :symLinkTarget() -> cQString
*
* $RETURNS$
* An instance of the object of type QFileInfo
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFileInfo object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfileinfo.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQFileInfo.prg
* C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFileSystemModel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileSystemModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfilesystemmodel.html
* $ONELINER$
* Creates a new QFileSystemModel object.
* $INHERITS$
* QAbstractItemModel
* $SYNTAX$
* QFileSystemModel():new( ... )
* QFileSystemModel():from( pPtr_OR_oObj_of_type_QFileSystemModel )
* QFileSystemModel():configure( pPtr_OR_oObj_of_type_QFileSystemModel )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFileSystemModel
* $METHODS$
* :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool
* :fileIcon( pIndex ) -> pQIcon
@@ -48,33 +56,25 @@
* :size( pIndex ) -> nQint64
* :type( pIndex ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFileSystemModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QFileSystemModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfilesystemmodel.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileSystemModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractItemModel
* $END$
*/

View File

@@ -3,52 +3,52 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFocusEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFocusEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfocusevent.html
* $ONELINER$
* Creates a new QFocusEvent object.
* $INHERITS$
* QEvent
* $SYNTAX$
* QFocusEvent():new( ... )
* QFocusEvent():from( pPtr_OR_oObj_of_type_QFocusEvent )
* QFocusEvent():configure( pPtr_OR_oObj_of_type_QFocusEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFocusEvent
* $METHODS$
* :gotFocus() -> lBool
* :lostFocus() -> lBool
* :reason() -> nQt::FocusReason
*
* $RETURNS$
* An instance of the object of type QFocusEvent
* $SEEALSO$
* QEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QEvent
* $ONELINER$
* Creates a new QFocusEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfocusevent.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFocusEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp
* Library : hbqtgui
* $SEEALSO$
* QEvent
* $END$
*/

View File

@@ -3,51 +3,51 @@
*/
/* $DOC$
* $NAME$
* QFocusFrame()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFocusFrame.prg
* C++ wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFocusFrame():new( ... )
* QFocusFrame():from( pPtr_OR_oObj_of_type_QFocusFrame )
* QFocusFrame():configure( pPtr_OR_oObj_of_type_QFocusFrame )
* $METHODS$
* :setWidget( pWidget ) -> NIL
* :widget() -> pQWidget
*
* $RETURNS$
* An instance of the object of type QFocusFrame
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QFocusFrame object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* QFocusFrame()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfocusframe.html
* $ONELINER$
* Creates a new QFocusFrame object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QFocusFrame():new( ... )
* QFocusFrame():from( pPtr_OR_oObj_of_type_QFocusFrame )
* QFocusFrame():configure( pPtr_OR_oObj_of_type_QFocusFrame )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFocusFrame
* $METHODS$
* :setWidget( pWidget ) -> NIL
* :widget() -> pQWidget
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFocusFrame.prg
* C++ wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFont()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFont.prg
* C++ wrappers : contrib/hbqt/qtgui/QFont.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfont.html
* $ONELINER$
* Creates a new QFont object.
* $INHERITS$
*
* $SYNTAX$
* QFont():new( ... )
* QFont():from( pPtr_OR_oObj_of_type_QFont )
* QFont():configure( pPtr_OR_oObj_of_type_QFont )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFont
* $METHODS$
* :bold() -> lBool
* :capitalization() -> nCapitalization
@@ -77,14 +85,8 @@
* :substitutes( cFamilyName ) -> pQStringList
* :substitutions() -> pQStringList
*
* $RETURNS$
* An instance of the object of type QFont
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $DESCRIPTION$
*
* $EXAMPLES$
* oFont := QFont():new()
* oFont := QFont():new( cFontName )
@@ -94,23 +96,21 @@
* oFont := QFont():new( pFont )
* oFont := QFont():new( pFont, pPaintDevice )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFont object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfont.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFont.prg
* C++ wrappers : contrib/hbqt/qtgui/QFont.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFontComboBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontComboBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontcombobox.html
* $ONELINER$
* Creates a new QFontComboBox object.
* $INHERITS$
* QComboBox
* $SYNTAX$
* QFontComboBox():new( ... )
* QFontComboBox():from( pPtr_OR_oObj_of_type_QFontComboBox )
* QFontComboBox():configure( pPtr_OR_oObj_of_type_QFontComboBox )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFontComboBox
* $METHODS$
* :currentFont() -> pQFont
* :fontFilters() -> nFontFilters
@@ -25,33 +33,25 @@
* :writingSystem() -> nQFontDatabase::WritingSystem
* :setCurrentFont( pFont ) -> NIL
*
* $RETURNS$
* An instance of the object of type QFontComboBox
* $SEEALSO$
* QComboBox
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QComboBox
* $ONELINER$
* Creates a new QFontComboBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontcombobox.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontComboBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp
* Library : hbqtgui
* $SEEALSO$
* QComboBox
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFontDatabase()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontDatabase.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontdatabase.html
* $ONELINER$
* Creates a new QFontDatabase object.
* $INHERITS$
*
* $SYNTAX$
* QFontDatabase():new( ... )
* QFontDatabase():from( pPtr_OR_oObj_of_type_QFontDatabase )
* QFontDatabase():configure( pPtr_OR_oObj_of_type_QFontDatabase )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFontDatabase
* $METHODS$
* :bold( cFamily, cStyle ) -> lBool
* :families( nWritingSystem ) -> pQStringList
@@ -42,33 +50,25 @@
* :writingSystemName( nWritingSystem ) -> cQString
* :writingSystemSample( nWritingSystem ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFontDatabase
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFontDatabase object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontdatabase.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontDatabase.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFontDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontdialog.html
* $ONELINER$
* Creates a new QFontDialog object.
* $INHERITS$
* QDialog
* $SYNTAX$
* QFontDialog():new( ... )
* QFontDialog():from( pPtr_OR_oObj_of_type_QFontDialog )
* QFontDialog():configure( pPtr_OR_oObj_of_type_QFontDialog )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFontDialog
* $METHODS$
* :currentFont() -> pQFont
* :options() -> nFontDialogOptions
@@ -31,33 +39,25 @@
* :getFont_3( @lOk, pInitial, pParent ) -> pQFont
* :getFont_4( @lOk, pParent ) -> pQFont
*
* $RETURNS$
* An instance of the object of type QFontDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QFontDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontdialog.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp
* Library : hbqtgui
* $SEEALSO$
* QDialog
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFontInfo()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontInfo.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontinfo.html
* $ONELINER$
* Creates a new QFontInfo object.
* $INHERITS$
*
* $SYNTAX$
* QFontInfo():new( ... )
* QFontInfo():from( pPtr_OR_oObj_of_type_QFontInfo )
* QFontInfo():configure( pPtr_OR_oObj_of_type_QFontInfo )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFontInfo
* $METHODS$
* :bold() -> lBool
* :exactMatch() -> lBool
@@ -31,33 +39,25 @@
* :styleHint() -> nQFont::StyleHint
* :weight() -> nInt
*
* $RETURNS$
* An instance of the object of type QFontInfo
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFontInfo object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontinfo.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontInfo.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFontMetrics()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontMetrics.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontmetrics.html
* $ONELINER$
* Creates a new QFontMetrics object.
* $INHERITS$
*
* $SYNTAX$
* QFontMetrics():new( ... )
* QFontMetrics():from( pPtr_OR_oObj_of_type_QFontMetrics )
* QFontMetrics():configure( pPtr_OR_oObj_of_type_QFontMetrics )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFontMetrics
* $METHODS$
* :ascent() -> nInt
* :averageCharWidth() -> nInt
@@ -45,36 +53,28 @@
* :width_1( pCh ) -> nInt
* :xHeight() -> nInt
*
* $RETURNS$
* An instance of the object of type QFontMetrics
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $DESCRIPTION$
*
* $EXAMPLES$
* oFontMetrics := QFontMetrics():new( pQFontMetrics )
* oFontMetrics := QFontMetrics():new( "QFont", pQFont )
* oFontMetrics := QFontMetrics():new( pQFont, pQPaintDevice )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFontMetrics object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontmetrics.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontMetrics.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFontMetricsF()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontMetricsF.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontmetricsf.html
* $ONELINER$
* Creates a new QFontMetricsF object.
* $INHERITS$
*
* $SYNTAX$
* QFontMetricsF():new( ... )
* QFontMetricsF():from( pPtr_OR_oObj_of_type_QFontMetricsF )
* QFontMetricsF():configure( pPtr_OR_oObj_of_type_QFontMetricsF )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFontMetricsF
* $METHODS$
* :ascent() -> nQreal
* :averageCharWidth() -> nQreal
@@ -44,37 +52,29 @@
* :width_1( pCh ) -> nQreal
* :xHeight() -> nQreal
*
* $RETURNS$
* An instance of the object of type QFontMetricsF
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $DESCRIPTION$
*
* $EXAMPLES$
* oFontMetricsF := QFontMetricsF():new( pQFontMetricsF )
* oFontMetricsF := QFontMetricsF():new( "QFontMetrics", pQFontMetrics )
* oFontMetricsF := QFontMetricsF():new( "QFont", pQFont )
* oFontMetricsF := QFontMetricsF():new( pQFont, pQPaintDevice )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFontMetricsF object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontmetricsf.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontMetricsF.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFormLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFormLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qformlayout.html
* $ONELINER$
* Creates a new QFormLayout object.
* $INHERITS$
* QLayout
* $SYNTAX$
* QFormLayout():new( ... )
* QFormLayout():from( pPtr_OR_oObj_of_type_QFormLayout )
* QFormLayout():configure( pPtr_OR_oObj_of_type_QFormLayout )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFormLayout
* $METHODS$
* :addRow( pLabel, pField ) -> NIL
* :addRow_1( pLabel, pField ) -> NIL
@@ -55,33 +63,25 @@
* :spacing() -> nInt
* :verticalSpacing() -> nInt
*
* $RETURNS$
* An instance of the object of type QFormLayout
* $SEEALSO$
* QLayout
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QLayout
* $ONELINER$
* Creates a new QFormLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qformlayout.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFormLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp
* Library : hbqtgui
* $SEEALSO$
* QLayout
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFrame()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFrame.prg
* C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qframe.html
* $ONELINER$
* Creates a new QFrame object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QFrame():new( ... )
* QFrame():from( pPtr_OR_oObj_of_type_QFrame )
* QFrame():configure( pPtr_OR_oObj_of_type_QFrame )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFrame
* $METHODS$
* :frameRect() -> pQRect
* :frameShadow() -> nShadow
@@ -32,33 +40,25 @@
* :setLineWidth( nInt ) -> NIL
* :setMidLineWidth( nInt ) -> NIL
*
* $RETURNS$
* An instance of the object of type QFrame
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QFrame object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qframe.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFrame.prg
* C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QFtp()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQFtp.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qftp.html
* $ONELINER$
* Creates a new QFtp object.
* $INHERITS$
* QObject
* $SYNTAX$
* QFtp():new( ... )
* QFtp():from( pPtr_OR_oObj_of_type_QFtp )
* QFtp():configure( pPtr_OR_oObj_of_type_QFtp )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QFtp
* $METHODS$
* :bytesAvailable() -> nQint64
* :cd( cDir ) -> nInt
@@ -45,33 +53,25 @@
* :state() -> nState
* :abort() -> NIL
*
* $RETURNS$
* An instance of the object of type QFtp
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QFtp object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qftp.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQFtp.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp
* Library : hbqtnetwork
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QGradient()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGradient.prg
* C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgradient.html
* $ONELINER$
* Creates a new QGradient object.
* $INHERITS$
*
* $SYNTAX$
* QGradient():new( ... )
* QGradient():from( pPtr_OR_oObj_of_type_QGradient )
* QGradient():configure( pPtr_OR_oObj_of_type_QGradient )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QGradient
* $METHODS$
* :coordinateMode() -> nCoordinateMode
* :setColorAt( nPosition, pColor ) -> NIL
@@ -25,33 +33,25 @@
* :spread() -> nSpread
* :type() -> nType
*
* $RETURNS$
* An instance of the object of type QGradient
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QGradient object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgradient.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGradient.prg
* C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QGridLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGridLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgridlayout.html
* $ONELINER$
* Creates a new QGridLayout object.
* $INHERITS$
* QLayout
* $SYNTAX$
* QGridLayout():new( ... )
* QGridLayout():from( pPtr_OR_oObj_of_type_QGridLayout )
* QGridLayout():configure( pPtr_OR_oObj_of_type_QGridLayout )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QGridLayout
* $METHODS$
* :addItem( pItem, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL
* :addLayout( pLayout, nRow, nColumn, nAlignment ) -> NIL
@@ -45,33 +53,25 @@
* :spacing() -> nInt
* :verticalSpacing() -> nInt
*
* $RETURNS$
* An instance of the object of type QGridLayout
* $SEEALSO$
* QLayout
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QLayout
* $ONELINER$
* Creates a new QGridLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgridlayout.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGridLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp
* Library : hbqtgui
* $SEEALSO$
* QLayout
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QGroupBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGroupBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgroupbox.html
* $ONELINER$
* Creates a new QGroupBox object.
* $INHERITS$
* QWidget
* $SYNTAX$
* QGroupBox():new( ... )
* QGroupBox():from( pPtr_OR_oObj_of_type_QGroupBox )
* QGroupBox():configure( pPtr_OR_oObj_of_type_QGroupBox )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QGroupBox
* $METHODS$
* :alignment() -> nQt::Alignment
* :isCheckable() -> lBool
@@ -29,33 +37,25 @@
* :title() -> cQString
* :setChecked( lChecked ) -> NIL
*
* $RETURNS$
* An instance of the object of type QGroupBox
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QGroupBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgroupbox.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGroupBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp
* Library : hbqtgui
* $SEEALSO$
* QWidget
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QHeaderView()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQHeaderView.prg
* C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qheaderview.html
* $ONELINER$
* Creates a new QHeaderView object.
* $INHERITS$
* QAbstractItemView
* $SYNTAX$
* QHeaderView():new( ... )
* QHeaderView():from( pPtr_OR_oObj_of_type_QHeaderView )
* QHeaderView():configure( pPtr_OR_oObj_of_type_QHeaderView )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QHeaderView
* $METHODS$
* :cascadingSectionResizes() -> lBool
* :count() -> nInt
@@ -76,33 +84,25 @@
* :setOffsetToLastSection() -> NIL
* :setOffsetToSectionPosition( nVisualIndex ) -> NIL
*
* $RETURNS$
* An instance of the object of type QHeaderView
* $SEEALSO$
* QAbstractItemView
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemView
* $ONELINER$
* Creates a new QHeaderView object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qheaderview.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQHeaderView.prg
* C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp
* Library : hbqtgui
* $SEEALSO$
* QAbstractItemView
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QHelpEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQHelpEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhelpevent.html
* $ONELINER$
* Creates a new QHelpEvent object.
* $INHERITS$
*
* $SYNTAX$
* QHelpEvent():new( ... )
* QHelpEvent():from( pPtr_OR_oObj_of_type_QHelpEvent )
* QHelpEvent():configure( pPtr_OR_oObj_of_type_QHelpEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QHelpEvent
* $METHODS$
* :globalPos() -> pQPoint
* :globalX() -> nInt
@@ -25,33 +33,25 @@
* :x() -> nInt
* :y() -> nInt
*
* $RETURNS$
* An instance of the object of type QHelpEvent
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QHelpEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhelpevent.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQHelpEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QHttp()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttp.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttp.html
* $ONELINER$
* Creates a new QHttp object.
* $INHERITS$
* QObject
* $SYNTAX$
* QHttp():new( ... )
* QHttp():from( pPtr_OR_oObj_of_type_QHttp )
* QHttp():configure( pPtr_OR_oObj_of_type_QHttp )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QHttp
* $METHODS$
* :bytesAvailable() -> nQint64
* :clearPendingRequests() -> NIL
@@ -43,33 +51,25 @@
* :state() -> nState
* :abort() -> NIL
*
* $RETURNS$
* An instance of the object of type QHttp
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QHttp object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttp.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttp.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp
* Library : hbqtnetwork
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QHttpHeader()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttpheader.html
* $ONELINER$
* Creates a new QHttpHeader object.
* $INHERITS$
*
* $SYNTAX$
* QHttpHeader():new( ... )
* QHttpHeader():from( pPtr_OR_oObj_of_type_QHttpHeader )
* QHttpHeader():configure( pPtr_OR_oObj_of_type_QHttpHeader )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QHttpHeader
* $METHODS$
* :addValue( cKey, cValue ) -> NIL
* :allValues( cKey ) -> pQStringList
@@ -37,33 +45,25 @@
* :toString() -> cQString
* :value( cKey ) -> cQString
*
* $RETURNS$
* An instance of the object of type QHttpHeader
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QHttpHeader object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttpheader.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp
* Library : hbqtnetwork
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QHttpRequestHeader()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttprequestheader.html
* $ONELINER$
* Creates a new QHttpRequestHeader object.
* $INHERITS$
* QHttpHeader
* $SYNTAX$
* QHttpRequestHeader():new( ... )
* QHttpRequestHeader():from( pPtr_OR_oObj_of_type_QHttpRequestHeader )
* QHttpRequestHeader():configure( pPtr_OR_oObj_of_type_QHttpRequestHeader )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QHttpRequestHeader
* $METHODS$
* :majorVersion() -> nInt
* :method() -> cQString
@@ -24,33 +32,25 @@
* :path() -> cQString
* :setRequest( cMethod, cPath, nMajorVer, nMinorVer ) -> NIL
*
* $RETURNS$
* An instance of the object of type QHttpRequestHeader
* $SEEALSO$
* QHttpHeader
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QHttpHeader
* $ONELINER$
* Creates a new QHttpRequestHeader object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttprequestheader.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp
* Library : hbqtnetwork
* $SEEALSO$
* QHttpHeader
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QHttpResponseHeader()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttpresponseheader.html
* $ONELINER$
* Creates a new QHttpResponseHeader object.
* $INHERITS$
* QHttpHeader
* $SYNTAX$
* QHttpResponseHeader():new( ... )
* QHttpResponseHeader():from( pPtr_OR_oObj_of_type_QHttpResponseHeader )
* QHttpResponseHeader():configure( pPtr_OR_oObj_of_type_QHttpResponseHeader )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QHttpResponseHeader
* $METHODS$
* :majorVersion() -> nInt
* :minorVersion() -> nInt
@@ -24,33 +32,25 @@
* :setStatusLine( nCode, cText, nMajorVer, nMinorVer ) -> NIL
* :statusCode() -> nInt
*
* $RETURNS$
* An instance of the object of type QHttpResponseHeader
* $SEEALSO$
* QHttpHeader
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QHttpHeader
* $ONELINER$
* Creates a new QHttpResponseHeader object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttpresponseheader.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp
* Library : hbqtnetwork
* $SEEALSO$
* QHttpHeader
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QIcon()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQIcon.prg
* C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qicon.html
* $ONELINER$
* Creates a new QIcon object.
* $INHERITS$
*
* $SYNTAX$
* QIcon():new( ... )
* QIcon():from( pPtr_OR_oObj_of_type_QIcon )
* QIcon():configure( pPtr_OR_oObj_of_type_QIcon )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QIcon
* $METHODS$
* :actualSize( pSize, nMode, nState ) -> pQSize
* :addFile( cFileName, pSize, nMode, nState ) -> NIL
@@ -30,36 +38,28 @@
* :pixmap_1( nW, nH, nMode, nState ) -> pQPixmap
* :pixmap_2( nExtent, nMode, nState ) -> pQPixmap
*
* $RETURNS$
* An instance of the object of type QIcon
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $DESCRIPTION$
*
* $EXAMPLES$
* oIcon := QIcon():new()
* oIcon := QIcon():new( cFileName )
* oIcon := QIcon():new( pQPixmap )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QIcon object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qicon.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQIcon.prg
* C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QImage()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImage.prg
* C++ wrappers : contrib/hbqt/qtgui/QImage.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimage.html
* $ONELINER$
* Creates a new QImage object.
* $INHERITS$
*
* $SYNTAX$
* QImage():new( ... )
* QImage():from( pPtr_OR_oObj_of_type_QImage )
* QImage():configure( pPtr_OR_oObj_of_type_QImage )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QImage
* $METHODS$
* :allGray() -> lBool
* :bits() -> pUchar
@@ -64,14 +72,8 @@
* :valid_1( nX, nY ) -> lBool
* :width() -> nInt
*
* $RETURNS$
* An instance of the object of type QImage
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $DESCRIPTION$
*
* $EXAMPLES$
* oImage := QImage():new()
* oImage := QImage():new( pQSize, cFormat )
@@ -83,23 +85,21 @@
* oImage := QImage():new( cFileName [, cFormat ] )
* oImage := QImage():new( pQImage )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QImage object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
* $TESTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimage.html
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImage.prg
* C++ wrappers : contrib/hbqt/qtgui/QImage.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QImageReader()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImageReader.prg
* C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimagereader.html
* $ONELINER$
* Creates a new QImageReader object.
* $INHERITS$
*
* $SYNTAX$
* QImageReader():new( ... )
* QImageReader():from( pPtr_OR_oObj_of_type_QImageReader )
* QImageReader():configure( pPtr_OR_oObj_of_type_QImageReader )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QImageReader
* $METHODS$
* :autoDetectImageFormat() -> lBool
* :backgroundColor() -> pQColor
@@ -58,33 +66,25 @@
* :imageFormat_2( pDevice ) -> pQByteArray
* :supportedImageFormats() -> pQList<QByteArray>
*
* $RETURNS$
* An instance of the object of type QImageReader
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QImageReader object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimagereader.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImageReader.prg
* C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QImageWriter()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImageWriter.prg
* C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimagewriter.html
* $ONELINER$
* Creates a new QImageWriter object.
* $INHERITS$
*
* $SYNTAX$
* QImageWriter():new( ... )
* QImageWriter():from( pPtr_OR_oObj_of_type_QImageWriter )
* QImageWriter():configure( pPtr_OR_oObj_of_type_QImageWriter )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QImageWriter
* $METHODS$
* :canWrite() -> lBool
* :compression() -> nInt
@@ -38,33 +46,25 @@
* :write( pImage ) -> lBool
* :supportedImageFormats() -> pQList<QByteArray>
*
* $RETURNS$
* An instance of the object of type QImageWriter
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QImageWriter object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimagewriter.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImageWriter.prg
* C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QInputDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qinputdialog.html
* $ONELINER$
* Creates a new QInputDialog object.
* $INHERITS$
* QDialog
* $SYNTAX$
* QInputDialog():new( ... )
* QInputDialog():from( pPtr_OR_oObj_of_type_QInputDialog )
* QInputDialog():configure( pPtr_OR_oObj_of_type_QInputDialog )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QInputDialog
* $METHODS$
* :cancelButtonText() -> cQString
* :comboBoxItems() -> pQStringList
@@ -63,33 +71,25 @@
* :getItem( pParent, cTitle, cLabel, pItems, nCurrent, lEditable, @lOk, nFlags ) -> cQString
* :getText( pParent, cTitle, cLabel, nMode, cText, @lOk, nFlags ) -> cQString
*
* $RETURNS$
* An instance of the object of type QInputDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QInputDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qinputdialog.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp
* Library : hbqtgui
* $SEEALSO$
* QDialog
* $END$
*/

View File

@@ -3,50 +3,50 @@
*/
/* $DOC$
* $NAME$
* QInputEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QInputEvent():new( ... )
* QInputEvent():from( pPtr_OR_oObj_of_type_QInputEvent )
* QInputEvent():configure( pPtr_OR_oObj_of_type_QInputEvent )
* $METHODS$
* :modifiers() -> nQt::KeyboardModifiers
*
* $RETURNS$
* An instance of the object of type QInputEvent
* $SEEALSO$
* QEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QEvent
* $ONELINER$
* Creates a new QInputEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* QInputEvent()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qinputevent.html
* $ONELINER$
* Creates a new QInputEvent object.
* $INHERITS$
* QEvent
* $SYNTAX$
* QInputEvent():new( ... )
* QInputEvent():from( pPtr_OR_oObj_of_type_QInputEvent )
* QInputEvent():configure( pPtr_OR_oObj_of_type_QInputEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QInputEvent
* $METHODS$
* :modifiers() -> nQt::KeyboardModifiers
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputEvent.cpp
* Library : hbqtgui
* $SEEALSO$
* QEvent
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QInputMethodEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputMethodEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qinputmethodevent.html
* $ONELINER$
* Creates a new QInputMethodEvent object.
* $INHERITS$
* QEvent
* $SYNTAX$
* QInputMethodEvent():new( ... )
* QInputMethodEvent():from( pPtr_OR_oObj_of_type_QInputMethodEvent )
* QInputMethodEvent():configure( pPtr_OR_oObj_of_type_QInputMethodEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QInputMethodEvent
* $METHODS$
* :commitString() -> cQString
* :preeditString() -> cQString
@@ -24,33 +32,25 @@
* :replacementStart() -> nInt
* :setCommitString( cCommitString, nReplaceFrom, nReplaceLength ) -> NIL
*
* $RETURNS$
* An instance of the object of type QInputMethodEvent
* $SEEALSO$
* QEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QEvent
* $ONELINER$
* Creates a new QInputMethodEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qinputmethodevent.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputMethodEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp
* Library : hbqtgui
* $SEEALSO$
* QEvent
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QIODevice()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQIODevice.prg
* C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qiodevice.html
* $ONELINER$
* Creates a new QIODevice object.
* $INHERITS$
* QObject
* $SYNTAX$
* QIODevice():new( ... )
* QIODevice():from( pPtr_OR_oObj_of_type_QIODevice )
* QIODevice():configure( pPtr_OR_oObj_of_type_QIODevice )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QIODevice
* $METHODS$
* :atEnd() -> lBool
* :bytesAvailable() -> nQint64
@@ -52,33 +60,25 @@
* :write_1( pData ) -> nQint64
* :write_2( pByteArray ) -> nQint64
*
* $RETURNS$
* An instance of the object of type QIODevice
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QIODevice object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qiodevice.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQIODevice.prg
* C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp
* Library : hbqtcore
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,52 +3,52 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QItemSelection()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQItemSelection.prg
* C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qitemselection.html
* $ONELINER$
* Creates a new QItemSelection object.
* $INHERITS$
* QList
* $SYNTAX$
* QItemSelection():new( ... )
* QItemSelection():from( pPtr_OR_oObj_of_type_QItemSelection )
* QItemSelection():configure( pPtr_OR_oObj_of_type_QItemSelection )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QItemSelection
* $METHODS$
* :contains( pIndex ) -> lBool
* :merge( pOther, nCommand ) -> NIL
* :select( pTopLeft, pBottomRight ) -> NIL
*
* $RETURNS$
* An instance of the object of type QItemSelection
* $SEEALSO$
* QList
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QList
* $ONELINER$
* Creates a new QItemSelection object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qitemselection.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQItemSelection.prg
* C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp
* Library : hbqtgui
* $SEEALSO$
* QList
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QItemSelectionModel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQItemSelectionModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qitemselectionmodel.html
* $ONELINER$
* Creates a new QItemSelectionModel object.
* $INHERITS$
* QObject
* $SYNTAX$
* QItemSelectionModel():new( ... )
* QItemSelectionModel():from( pPtr_OR_oObj_of_type_QItemSelectionModel )
* QItemSelectionModel():configure( pPtr_OR_oObj_of_type_QItemSelectionModel )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QItemSelectionModel
* $METHODS$
* :columnIntersectsSelection( nColumn, pParent ) -> lBool
* :currentIndex() -> pQModelIndex
@@ -34,33 +42,25 @@
* :select_1( pSelection, nCommand ) -> NIL
* :setCurrentIndex( pIndex, nCommand ) -> NIL
*
* $RETURNS$
* An instance of the object of type QItemSelectionModel
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QItemSelectionModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qitemselectionmodel.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQItemSelectionModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QKeyEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQKeyEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qkeyevent.html
* $ONELINER$
* Creates a new QKeyEvent object.
* $INHERITS$
* QInputEvent
* $SYNTAX$
* QKeyEvent():new( ... )
* QKeyEvent():from( pPtr_OR_oObj_of_type_QKeyEvent )
* QKeyEvent():configure( pPtr_OR_oObj_of_type_QKeyEvent )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QKeyEvent
* $METHODS$
* :count() -> nInt
* :isAutoRepeat() -> lBool
@@ -28,33 +36,25 @@
* :nativeVirtualKey() -> nQuint32
* :text() -> cQString
*
* $RETURNS$
* An instance of the object of type QKeyEvent
* $SEEALSO$
* QInputEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QInputEvent
* $ONELINER$
* Creates a new QKeyEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qkeyevent.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQKeyEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp
* Library : hbqtgui
* $SEEALSO$
* QInputEvent
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QKeySequence()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQKeySequence.prg
* C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qkeysequence.html
* $ONELINER$
* Creates a new QKeySequence object.
* $INHERITS$
*
* $SYNTAX$
* QKeySequence():new( ... )
* QKeySequence():from( pPtr_OR_oObj_of_type_QKeySequence )
* QKeySequence():configure( pPtr_OR_oObj_of_type_QKeySequence )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QKeySequence
* $METHODS$
* :count() -> nUint
* :isEmpty() -> lBool
@@ -24,33 +32,25 @@
* :toString( nFormat ) -> cQString
* :keyBindings( nKey ) -> pQList<QKeySequence>
*
* $RETURNS$
* An instance of the object of type QKeySequence
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QKeySequence object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qkeysequence.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQKeySequence.prg
* C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp
* Library : hbqtgui
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QLabel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQLabel.prg
* C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlabel.html
* $ONELINER$
* Creates a new QLabel object.
* $INHERITS$
* QFrame
* $SYNTAX$
* QLabel():new( ... )
* QLabel():from( pPtr_OR_oObj_of_type_QLabel )
* QLabel():configure( pPtr_OR_oObj_of_type_QLabel )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QLabel
* $METHODS$
* :alignment() -> nQt::Alignment
* :buddy() -> pQWidget
@@ -48,33 +56,25 @@
* :setPixmap( pQPixmap ) -> NIL
* :setText( cQString ) -> NIL
*
* $RETURNS$
* An instance of the object of type QLabel
* $SEEALSO$
* QFrame
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QFrame
* $ONELINER$
* Creates a new QLabel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlabel.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQLabel.prg
* C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp
* Library : hbqtgui
* $SEEALSO$
* QFrame
* $END$
*/

View File

@@ -3,51 +3,51 @@
*/
/* $DOC$
* $NAME$
* QLatin1Char()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQLatin1Char.prg
* C++ wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QLatin1Char():new( ... )
* QLatin1Char():from( pPtr_OR_oObj_of_type_QLatin1Char )
* QLatin1Char():configure( pPtr_OR_oObj_of_type_QLatin1Char )
* $METHODS$
* :toLatin1() -> cChar
* :unicode() -> nUshort
*
* $RETURNS$
* An instance of the object of type QLatin1Char
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QLatin1Char object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* QLatin1Char()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlatin1char.html
* $ONELINER$
* Creates a new QLatin1Char object.
* $INHERITS$
*
* $SYNTAX$
* QLatin1Char():new( ... )
* QLatin1Char():from( pPtr_OR_oObj_of_type_QLatin1Char )
* QLatin1Char():configure( pPtr_OR_oObj_of_type_QLatin1Char )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QLatin1Char
* $METHODS$
* :toLatin1() -> cChar
* :unicode() -> nUshort
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQLatin1Char.prg
* C++ wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,50 +3,50 @@
*/
/* $DOC$
* $NAME$
* QLatin1String()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQLatin1String.prg
* C++ wrappers : contrib/hbqt/qtcore/QLatin1String.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QLatin1String():new( ... )
* QLatin1String():from( pPtr_OR_oObj_of_type_QLatin1String )
* QLatin1String():configure( pPtr_OR_oObj_of_type_QLatin1String )
* $METHODS$
* :latin1() -> cChar
*
* $RETURNS$
* An instance of the object of type QLatin1String
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QLatin1String object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $NAME$
* QLatin1String()
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlatin1string.html
* $ONELINER$
* Creates a new QLatin1String object.
* $INHERITS$
*
* $SYNTAX$
* QLatin1String():new( ... )
* QLatin1String():from( pPtr_OR_oObj_of_type_QLatin1String )
* QLatin1String():configure( pPtr_OR_oObj_of_type_QLatin1String )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QLatin1String
* $METHODS$
* :latin1() -> cChar
*
* $DESCRIPTION$
*
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQLatin1String.prg
* C++ wrappers : contrib/hbqt/qtcore/QLatin1String.cpp
* Library : hbqtcore
* $SEEALSO$
*
* $END$
*/

View File

@@ -3,20 +3,28 @@
*/
/* $DOC$
* $TEMPLATE$
* Class
* $NAME$
* QLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $CATEGORY$
* Harbour Bindings for Qt
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlayout.html
* $ONELINER$
* Creates a new QLayout object.
* $INHERITS$
* QObject, QLayoutItem
* $SYNTAX$
* QLayout():new( ... )
* QLayout():from( pPtr_OR_oObj_of_type_QLayout )
* QLayout():configure( pPtr_OR_oObj_of_type_QLayout )
* $ARGUMENTS$
*
* $RETURNS$
* An instance of the object of type QLayout
* $METHODS$
* :activate() -> lBool
* :addItem( pItem ) -> NIL
@@ -48,33 +56,25 @@
* :update() -> NIL
* :closestAcceptableSize( pWidget, pSize ) -> pQSize
*
* $RETURNS$
* An instance of the object of type QLayout
* $SEEALSO$
* QObject, QLayoutItem
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject, QLayoutItem
* $ONELINER$
* Creates a new QLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlayout.html
* $EXAMPLES$
*
* $TESTS$
*
* $STATUS$
* R
* $COMPLIANCE$
* Not Clipper compatible
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $VERSION$
* 4.5 or upper
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp
* Library : hbqtgui
* $SEEALSO$
* QObject, QLayoutItem
* $END$
*/

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