diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 1449338ae7..63b69fae23 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -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 diff --git a/harbour/contrib/hbqt/THbQtUI.prg b/harbour/contrib/hbqt/THbQtUI.prg index 3a2291b3c9..4cd087c5c9 100644 --- a/harbour/contrib/hbqt/THbQtUI.prg +++ b/harbour/contrib/hbqt/THbQtUI.prg @@ -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( ... ) diff --git a/harbour/contrib/hbqt/doc/en/class_hbevents.txt b/harbour/contrib/hbqt/doc/en/class_hbevents.txt index cbe4127731..4c72bd51d4 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbevents.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbevents.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt b/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt index 9c8eb71b7c..7bf46ddc98 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt index cba28deefe..327bf6a0aa 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt index 73c1576bb7..a19b1f9d93 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_hbslots.txt b/harbour/contrib/hbqt/doc/en/class_hbslots.txt index d2e6f432cd..1a83db8ad4 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbslots.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbslots.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt index e4eae0383e..094f08db01 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt index 04d651f8d5..c8e179b2bb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt index 76a0e7caf3..76dd378d6d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt index 2e4b36a61b..698f8703c9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt index de586620ff..6f28f6725d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt index a32a4d5455..6d69b4f698 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt index 247760c740..a71c650393 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt index b367a12d71..f9a1d63caf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt index 498197ff39..97a7172001 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt index 2f8a92f7e5..b5a33b3962 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt index 47e913f8b5..cbaeeadfbe 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt index ff0dde44de..dcb0550b5a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qaction.txt b/harbour/contrib/hbqt/doc/en/class_qaction.txt index a3e09ff3b9..9e84f6d15a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qaction.txt +++ b/harbour/contrib/hbqt/doc/en/class_qaction.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt index 884826ef6a..6f9f2395ca 100644 --- a/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt +++ b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt @@ -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 * :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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qapplication.txt b/harbour/contrib/hbqt/doc/en/class_qapplication.txt index f4700ae103..9b31ffc154 100644 --- a/harbour/contrib/hbqt/doc/en/class_qapplication.txt +++ b/harbour/contrib/hbqt/doc/en/class_qapplication.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbitarray.txt b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt index 065f2337c2..5f3e155be5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbitarray.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbitmap.txt b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt index ced09856d1..2a047f3cc5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbitmap.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt index a41008cb0d..7335c5e12c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbrush.txt b/harbour/contrib/hbqt/doc/en/class_qbrush.txt index d322e5a393..13061c6688 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbrush.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbrush.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbuffer.txt b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt index db81a02301..59f693ae74 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbuffer.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt index 96a03e4c4e..198614097b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbytearray.txt b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt index b5084eb1fb..8904e67c67 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbytearray.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt index 4d9c5ca950..034f3fe921 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qchar.txt b/harbour/contrib/hbqt/doc/en/class_qchar.txt index 6366fab4d6..d571c99cf8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qchar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qchar.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt index 54306d76f5..0a9c1bd12e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qclipboard.txt b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt index 61840a2361..eeed612076 100644 --- a/harbour/contrib/hbqt/doc/en/class_qclipboard.txt +++ b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcolor.txt b/harbour/contrib/hbqt/doc/en/class_qcolor.txt index 7a1ef71ebd..d48cd5e1a1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcolor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcolor.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt index 88fa93c764..334c511f71 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcombobox.txt b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt index 41c09a088f..f23381f880 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt index 70ecf0f258..c0de624c5b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcompleter.txt b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt index 74bdb6744b..fbf1da4cc4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcompleter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt index 9d54b55c5a..cc883576c5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt index 26b351cb2a..fb948595f8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt index d3286229f3..d8b214cd20 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcursor.txt b/harbour/contrib/hbqt/doc/en/class_qcursor.txt index 4bfa7af75b..38e2a743a1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcursor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcursor.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatastream.txt b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt index 49df1d5a06..aac12d978f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatastream.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdate.txt b/harbour/contrib/hbqt/doc/en/class_qdate.txt index 49ed01a77e..df17521d14 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdate.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatetime.txt b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt index 62401ab742..f8e40a85a0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatetime.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt index 1372ca138e..a898f45740 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt index 958ee53590..1b3a5fe5a2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdial.txt b/harbour/contrib/hbqt/doc/en/class_qdial.txt index 65b44f3076..e95964031a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdial.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdial.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdialog.txt b/harbour/contrib/hbqt/doc/en/class_qdialog.txt index b0bdcc9828..04db76e8c0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdialog.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdir.txt b/harbour/contrib/hbqt/doc/en/class_qdir.txt index 403ca359a3..e1578d5ba8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdir.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdir.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt index 590069aa64..62f72f2a5f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt index 56b0210f1b..0d02d25564 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt index 0b24a1fc45..094f994947 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt index cfdd0e601a..301d373c4c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdropevent.txt b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt index 9782951f79..b6160613ac 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdropevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt index 35c7a63545..61afd5b251 100644 --- a/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qevent.txt b/harbour/contrib/hbqt/doc/en/class_qevent.txt index a87eeac6a7..cd94c4e996 100644 --- a/harbour/contrib/hbqt/doc/en/class_qevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qeventloop.txt b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt index 5491420391..c7495c4b78 100644 --- a/harbour/contrib/hbqt/doc/en/class_qeventloop.txt +++ b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfile.txt b/harbour/contrib/hbqt/doc/en/class_qfile.txt index f3fc9df74d..e717a3a411 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfile.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfile.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt index 3e19533437..9adf5d2613 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt index a3f7627bc2..45a4131ad6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt index 5ef950b1d1..82e793bcbd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt index c1c3d91644..6ff2cf08b0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt index 89567a7f69..6c891687e2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt index 7bdb1a9fa0..76a52d6af3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfont.txt b/harbour/contrib/hbqt/doc/en/class_qfont.txt index 40f947e527..6d130d897c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfont.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfont.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt index e393957118..1ff19a8267 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt index 9e90ea2417..80831f23f2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt index c1e442d2ac..21c5a7c686 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt index b6c26e687b..d7f0d4b101 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt index 58822576d2..c84edf0140 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt index 7c31af52ff..fc74b80be8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qformlayout.txt b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt index e96fbfaba3..a3e96e8bd5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qformlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qframe.txt b/harbour/contrib/hbqt/doc/en/class_qframe.txt index 924903a30e..3f5fcf8ef4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qframe.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qftp.txt b/harbour/contrib/hbqt/doc/en/class_qftp.txt index f95ec69686..03ea89eb9f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qftp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qftp.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qgradient.txt b/harbour/contrib/hbqt/doc/en/class_qgradient.txt index e881d24784..466da84be7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgradient.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt index 40f2fc9bf8..22e6b727db 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt index 78f439037b..ec67a0b3b6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qheaderview.txt b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt index d55e21c778..b7dbc3c743 100644 --- a/harbour/contrib/hbqt/doc/en/class_qheaderview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt index cafe845388..acc4074b4d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttp.txt b/harbour/contrib/hbqt/doc/en/class_qhttp.txt index 1013684bbf..2c158a98d0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttp.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt index 6e13826df3..60b1af4c8e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt index 3547c2250e..4a3f9d66d8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt index 194e7c9fbd..304286db9a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qicon.txt b/harbour/contrib/hbqt/doc/en/class_qicon.txt index dbcd685c66..8008b6004e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qicon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qicon.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qimage.txt b/harbour/contrib/hbqt/doc/en/class_qimage.txt index b0d65fe728..2f70d6d1a8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimage.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qimagereader.txt b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt index a4d6892f39..ee2f719b69 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimagereader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt @@ -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 * - * $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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt index bd8bce3b90..e175c06b54 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt @@ -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 * - * $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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt index 48b3b76705..a7beafae5a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputevent.txt b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt index 93a739da08..43601c9ba6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt index 4df5ac7e45..b5f3191bd8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qiodevice.txt b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt index d9cbe522e7..221317b7d6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qiodevice.txt +++ b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qitemselection.txt b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt index 940873e417..30d31e3626 100644 --- a/harbour/contrib/hbqt/doc/en/class_qitemselection.txt +++ b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt index 79944417fa..d95f0557fc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt index 039333ab8c..67162bdcd1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt index fe5b2444c0..41e4cf75ad 100644 --- a/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt +++ b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt @@ -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 * - * $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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlabel.txt b/harbour/contrib/hbqt/doc/en/class_qlabel.txt index c6c6cfa6f4..6973714483 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlabel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlabel.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt index 87aa0d9145..fa13ca14d8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt index c08e3a604f..73b2811ba1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlayout.txt b/harbour/contrib/hbqt/doc/en/class_qlayout.txt index 7b0f37e010..44f165447d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlayout.txt @@ -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$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt index 896e6c27bf..6f99514a51 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QLayoutItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQLayoutItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlayoutitem.html + * $ONELINER$ + * Creates a new QLayoutItem object. + * $INHERITS$ + * * $SYNTAX$ * QLayoutItem():new( ... ) * QLayoutItem():from( pPtr_OR_oObj_of_type_QLayoutItem ) * QLayoutItem():configure( pPtr_OR_oObj_of_type_QLayoutItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QLayoutItem * $METHODS$ * :alignment() -> nQt::Alignment * :controlTypes() -> nQSizePolicy::ControlTypes @@ -36,33 +44,25 @@ * :spacerItem() -> pQSpacerItem * :widget() -> pQWidget * - * $RETURNS$ - * An instance of the object of type QLayoutItem - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QLayoutItem 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/qlayoutitem.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/TQLayoutItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt index 83ea4e2466..1bdbb0c85e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QLCDNumber() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQLCDNumber.prg - * C++ wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlcdnumber.html + * $ONELINER$ + * Creates a new QLCDNumber object. + * $INHERITS$ + * QFrame * $SYNTAX$ * QLCDNumber():new( ... ) * QLCDNumber():from( pPtr_OR_oObj_of_type_QLCDNumber ) * QLCDNumber():configure( pPtr_OR_oObj_of_type_QLCDNumber ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QLCDNumber * $METHODS$ * :checkOverflow( nNum ) -> lBool * :checkOverflow_1( nNum ) -> lBool @@ -38,33 +46,25 @@ * :setOctMode() -> NIL * :setSmallDecimalPoint( lBool ) -> NIL * - * $RETURNS$ - * An instance of the object of type QLCDNumber - * $SEEALSO$ - * QFrame - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QFrame - * $ONELINER$ - * Creates a new QLCDNumber 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/qlcdnumber.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/TQLCDNumber.prg + * C++ wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp + * Library : hbqtgui + * $SEEALSO$ + * QFrame * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qline.txt b/harbour/contrib/hbqt/doc/en/class_qline.txt index 7851dc6f50..73dbdbef98 100644 --- a/harbour/contrib/hbqt/doc/en/class_qline.txt +++ b/harbour/contrib/hbqt/doc/en/class_qline.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QLine() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQLine.prg - * C++ wrappers : contrib/hbqt/qtcore/QLine.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qline.html + * $ONELINER$ + * Creates a new QLine object. + * $INHERITS$ + * * $SYNTAX$ * QLine():new( ... ) * QLine():from( pPtr_OR_oObj_of_type_QLine ) * QLine():configure( pPtr_OR_oObj_of_type_QLine ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QLine * $METHODS$ * :p1() -> pQPoint * :p2() -> pQPoint @@ -34,37 +42,29 @@ * :translate( pOffset ) -> NIL * :translate_1( nDx, nDy ) -> NIL * - * $RETURNS$ - * An instance of the object of type QLine - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oLine := QLine():new() * oLine := QLine():new( pQLine ) * oLine := QLine():new( pQPoint_p1, pQPoint_p2 ) * oLine := QLine():new( nX1, nY1, nX2, nY2 ) * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QLine 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/qline.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQLine.prg + * C++ wrappers : contrib/hbqt/qtcore/QLine.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt index e7aa556d87..f27acec83e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QLinearGradient() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQLinearGradient.prg - * C++ wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlineargradient.html + * $ONELINER$ + * Creates a new QLinearGradient object. + * $INHERITS$ + * QGradient * $SYNTAX$ * QLinearGradient():new( ... ) * QLinearGradient():from( pPtr_OR_oObj_of_type_QLinearGradient ) * QLinearGradient():configure( pPtr_OR_oObj_of_type_QLinearGradient ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QLinearGradient * $METHODS$ * :finalStop() -> pQPointF * :setFinalStop( pStop ) -> NIL @@ -25,37 +33,29 @@ * :setStart_1( nX, nY ) -> NIL * :start() -> pQPointF * - * $RETURNS$ - * An instance of the object of type QLinearGradient - * $SEEALSO$ - * QGradient - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oLinearGradiant := QLinearGradiant():new() * oLinearGradiant := QLinearGradiant():new( pQLinearGradient ) * oLinearGradiant := QLinearGradiant():new( pQPointF_start, pQPointF_finalStop ) * oLinearGradiant := QLinearGradiant():new( nX1, nY1, nX2, nY2 ) * - * $INHERITS$ - * QGradient - * $ONELINER$ - * Creates a new QLinearGradient 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/qlineargradient.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQLinearGradient.prg + * C++ wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp + * Library : hbqtgui + * $SEEALSO$ + * QGradient * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlineedit.txt b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt index bce1625184..0112824df1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlineedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QLineEdit() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQLineEdit.prg - * C++ wrappers : contrib/hbqt/qtgui/QLineEdit.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlineedit.html + * $ONELINER$ + * Creates a new QLineEdit object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QLineEdit():new( ... ) * QLineEdit():from( pPtr_OR_oObj_of_type_QLineEdit ) * QLineEdit():configure( pPtr_OR_oObj_of_type_QLineEdit ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QLineEdit * $METHODS$ * :alignment() -> nQt::Alignment * :backspace() -> NIL @@ -74,33 +82,25 @@ * :setText( cQString ) -> NIL * :undo() -> NIL * - * $RETURNS$ - * An instance of the object of type QLineEdit - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QLineEdit 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/qlineedit.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/TQLineEdit.prg + * C++ wrappers : contrib/hbqt/qtgui/QLineEdit.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlinef.txt b/harbour/contrib/hbqt/doc/en/class_qlinef.txt index 09b96bfc9b..368deb70e7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlinef.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlinef.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QLineF() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQLineF.prg - * C++ wrappers : contrib/hbqt/qtcore/QLineF.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlinef.html + * $ONELINER$ + * Creates a new QLineF object. + * $INHERITS$ + * * $SYNTAX$ * QLineF():new( ... ) * QLineF():from( pPtr_OR_oObj_of_type_QLineF ) * QLineF():configure( pPtr_OR_oObj_of_type_QLineF ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QLineF * $METHODS$ * :p1() -> pQPointF * :p2() -> pQPointF @@ -42,33 +50,25 @@ * :translate( pOffset ) -> NIL * :translate_1( nDx, nDy ) -> NIL * - * $RETURNS$ - * An instance of the object of type QLineF - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QLineF 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/qlinef.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/TQLineF.prg + * C++ wrappers : contrib/hbqt/qtcore/QLineF.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlist.txt b/harbour/contrib/hbqt/doc/en/class_qlist.txt index 99e6ddbf87..af9deae7d7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlist.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QList() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQList.prg - * C++ wrappers : contrib/hbqt/qtcore/QList.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlist.html + * $ONELINER$ + * Creates a new QList object. + * $INHERITS$ + * * $SYNTAX$ * QList():new( ... ) * QList():from( pPtr_OR_oObj_of_type_QList ) * QList():configure( pPtr_OR_oObj_of_type_QList ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QList * $METHODS$ * :append( xValue ) -> NIL * :at( nI ) -> pT @@ -59,33 +67,25 @@ * :value( nI ) -> pT * :value_1( nI, xDefaultValue ) -> pT * - * $RETURNS$ - * An instance of the object of type QList - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QList 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/qlist.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/TQList.prg + * C++ wrappers : contrib/hbqt/qtcore/QList.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistview.txt b/harbour/contrib/hbqt/doc/en/class_qlistview.txt index 2091169373..770f8b17ef 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistview.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QListView() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQListView.prg - * C++ wrappers : contrib/hbqt/qtgui/QListView.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlistview.html + * $ONELINER$ + * Creates a new QListView object. + * $INHERITS$ + * QAbstractItemView * $SYNTAX$ * QListView():new( ... ) * QListView():from( pPtr_OR_oObj_of_type_QListView ) * QListView():configure( pPtr_OR_oObj_of_type_QListView ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QListView * $METHODS$ * :batchSize() -> nInt * :clearPropertyFlags() -> NIL @@ -48,33 +56,25 @@ * :viewMode() -> nViewMode * :wordWrap() -> lBool * - * $RETURNS$ - * An instance of the object of type QListView - * $SEEALSO$ - * QAbstractItemView - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractItemView - * $ONELINER$ - * Creates a new QListView 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/qlistview.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/TQListView.prg + * C++ wrappers : contrib/hbqt/qtgui/QListView.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractItemView * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt index e9c1f9e316..6ede4439c7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QListWidget() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQListWidget.prg - * C++ wrappers : contrib/hbqt/qtgui/QListWidget.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlistwidget.html + * $ONELINER$ + * Creates a new QListWidget object. + * $INHERITS$ + * QListView * $SYNTAX$ * QListWidget():new( ... ) * QListWidget():from( pPtr_OR_oObj_of_type_QListWidget ) * QListWidget():configure( pPtr_OR_oObj_of_type_QListWidget ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QListWidget * $METHODS$ * :addItem( cLabel ) -> NIL * :addItem_1( pItem ) -> NIL @@ -51,33 +59,25 @@ * :clear() -> NIL * :scrollToItem( pItem, nHint ) -> NIL * - * $RETURNS$ - * An instance of the object of type QListWidget - * $SEEALSO$ - * QListView - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QListView - * $ONELINER$ - * Creates a new QListWidget 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/qlistwidget.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/TQListWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QListWidget.cpp + * Library : hbqtgui + * $SEEALSO$ + * QListView * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt index 83066b7004..6ed0f31495 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QListWidgetItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQListWidgetItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlistwidgetitem.html + * $ONELINER$ + * Creates a new QListWidgetItem object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QListWidgetItem():new( ... ) * QListWidgetItem():from( pPtr_OR_oObj_of_type_QListWidgetItem ) * QListWidgetItem():configure( pPtr_OR_oObj_of_type_QListWidgetItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QListWidgetItem * $METHODS$ * :background() -> pQBrush * :checkState() -> nQt::CheckState @@ -53,33 +61,25 @@ * :whatsThis() -> cQString * :write( pOut ) -> NIL * - * $RETURNS$ - * An instance of the object of type QListWidgetItem - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QListWidgetItem 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/qlistwidgetitem.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/TQListWidgetItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlocale.txt b/harbour/contrib/hbqt/doc/en/class_qlocale.txt index ef08e5a1b9..0d66be03d4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlocale.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlocale.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QLocale() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQLocale.prg - * C++ wrappers : contrib/hbqt/qtcore/QLocale.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlocale.html + * $ONELINER$ + * Creates a new QLocale object. + * $INHERITS$ + * * $SYNTAX$ * QLocale():new( ... ) * QLocale():from( pPtr_OR_oObj_of_type_QLocale ) * QLocale():configure( pPtr_OR_oObj_of_type_QLocale ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QLocale * $METHODS$ * :amText() -> cQString * :country() -> nCountry @@ -72,33 +80,25 @@ * :languageToString( nLanguage ) -> cQString * :setDefault( pLocale ) -> NIL * - * $RETURNS$ - * An instance of the object of type QLocale - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QLocale 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/qlocale.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/TQLocale.prg + * C++ wrappers : contrib/hbqt/qtcore/QLocale.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt index 79624e4feb..c4a2ca678f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMainWindow() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMainWindow.prg - * C++ wrappers : contrib/hbqt/qtgui/QMainWindow.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmainwindow.html + * $ONELINER$ + * Creates a new QMainWindow object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QMainWindow():new( ... ) * QMainWindow():from( pPtr_OR_oObj_of_type_QMainWindow ) * QMainWindow():configure( pPtr_OR_oObj_of_type_QMainWindow ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMainWindow * $METHODS$ * :addDockWidget( nArea, pDockwidget ) -> NIL * :addDockWidget_1( nArea, pDockwidget, nOrientation ) -> NIL @@ -68,33 +76,25 @@ * :setAnimated( lEnabled ) -> NIL * :setDockNestingEnabled( lEnabled ) -> NIL * - * $RETURNS$ - * An instance of the object of type QMainWindow - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QMainWindow 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/qmainwindow.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/TQMainWindow.prg + * C++ wrappers : contrib/hbqt/qtgui/QMainWindow.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmatrix.txt b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt index 43f22a8b34..d3a9df27fd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmatrix.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMatrix() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMatrix.prg - * C++ wrappers : contrib/hbqt/qtgui/QMatrix.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmatrix.html + * $ONELINER$ + * Creates a new QMatrix object. + * $INHERITS$ + * * $SYNTAX$ * QMatrix():new( ... ) * QMatrix():from( pPtr_OR_oObj_of_type_QMatrix ) * QMatrix():configure( pPtr_OR_oObj_of_type_QMatrix ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMatrix * $METHODS$ * :m11() -> nQreal * :m12() -> nQreal @@ -43,33 +51,25 @@ * :reset() -> NIL * :setMatrix( nM11, nM12, nM21, nM22, nDx, nDy ) -> NIL * - * $RETURNS$ - * An instance of the object of type QMatrix - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QMatrix 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/qmatrix.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/TQMatrix.prg + * C++ wrappers : contrib/hbqt/qtgui/QMatrix.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt index ae3f527745..26d8635f54 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMdiArea() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMdiArea.prg - * C++ wrappers : contrib/hbqt/qtgui/QMdiArea.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmdiarea.html + * $ONELINER$ + * Creates a new QMdiArea object. + * $INHERITS$ + * QAbstractScrollArea * $SYNTAX$ * QMdiArea():new( ... ) * QMdiArea():from( pPtr_OR_oObj_of_type_QMdiArea ) * QMdiArea():configure( pPtr_OR_oObj_of_type_QMdiArea ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMdiArea * $METHODS$ * :activationOrder() -> nWindowOrder * :activeSubWindow() -> pQMdiSubWindow @@ -45,33 +53,25 @@ * :setActiveSubWindow( pWindow ) -> NIL * :tileSubWindows() -> NIL * - * $RETURNS$ - * An instance of the object of type QMdiArea - * $SEEALSO$ - * QAbstractScrollArea - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractScrollArea - * $ONELINER$ - * Creates a new QMdiArea 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/qmdiarea.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/TQMdiArea.prg + * C++ wrappers : contrib/hbqt/qtgui/QMdiArea.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractScrollArea * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt index 8d036f5b6b..8b775d35a1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMdiSubWindow() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMdiSubWindow.prg - * C++ wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmdisubwindow.html + * $ONELINER$ + * Creates a new QMdiSubWindow object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QMdiSubWindow():new( ... ) * QMdiSubWindow():from( pPtr_OR_oObj_of_type_QMdiSubWindow ) * QMdiSubWindow():configure( pPtr_OR_oObj_of_type_QMdiSubWindow ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMdiSubWindow * $METHODS$ * :isShaded() -> lBool * :keyboardPageStep() -> nInt @@ -33,33 +41,25 @@ * :showShaded() -> NIL * :showSystemMenu() -> NIL * - * $RETURNS$ - * An instance of the object of type QMdiSubWindow - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QMdiSubWindow 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/qmdisubwindow.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/TQMdiSubWindow.prg + * C++ wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmenu.txt b/harbour/contrib/hbqt/doc/en/class_qmenu.txt index c57644941e..883355c3ed 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmenu.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmenu.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMenu() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMenu.prg - * C++ wrappers : contrib/hbqt/qtgui/QMenu.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmenu.html + * $ONELINER$ + * Creates a new QMenu object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QMenu():new( ... ) * QMenu():from( pPtr_OR_oObj_of_type_QMenu ) * QMenu():configure( pPtr_OR_oObj_of_type_QMenu ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMenu * $METHODS$ * :actionAt( pPt ) -> pQAction * :actionGeometry( pAct ) -> pQRect @@ -50,33 +58,25 @@ * :setTitle( cTitle ) -> NIL * :title() -> cQString * - * $RETURNS$ - * An instance of the object of type QMenu - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QMenu 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/qmenu.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/TQMenu.prg + * C++ wrappers : contrib/hbqt/qtgui/QMenu.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmenubar.txt b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt index d7b7e14d56..69fe9b5bb4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmenubar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMenuBar() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMenuBar.prg - * C++ wrappers : contrib/hbqt/qtgui/QMenuBar.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmenubar.html + * $ONELINER$ + * Creates a new QMenuBar object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QMenuBar():new( ... ) * QMenuBar():from( pPtr_OR_oObj_of_type_QMenuBar ) * QMenuBar():configure( pPtr_OR_oObj_of_type_QMenuBar ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMenuBar * $METHODS$ * :activeAction() -> pQAction * :addAction( cText ) -> pQAction @@ -33,33 +41,25 @@ * :setActiveAction( pAct ) -> NIL * :setDefaultUp( lBool ) -> NIL * - * $RETURNS$ - * An instance of the object of type QMenuBar - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QMenuBar 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/qmenubar.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/TQMenuBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QMenuBar.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt index 3871271f2d..3310cfac09 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMessageBox() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMessageBox.prg - * C++ wrappers : contrib/hbqt/qtgui/QMessageBox.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmessagebox.html + * $ONELINER$ + * Creates a new QMessageBox object. + * $INHERITS$ + * QDialog * $SYNTAX$ * QMessageBox():new( ... ) * QMessageBox():from( pPtr_OR_oObj_of_type_QMessageBox ) * QMessageBox():configure( pPtr_OR_oObj_of_type_QMessageBox ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMessageBox * $METHODS$ * :addButton( pButton, nRole ) -> NIL * :addButton_1( cText, nRole ) -> pQPushButton @@ -58,33 +66,25 @@ * :warning( pParent, cTitle, cText, nButtons, nDefaultButton ) -> nStandardButton * :exec() -> nInt * - * $RETURNS$ - * An instance of the object of type QMessageBox - * $SEEALSO$ - * QDialog - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QDialog - * $ONELINER$ - * Creates a new QMessageBox 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/qmessagebox.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/TQMessageBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QMessageBox.cpp + * Library : hbqtgui + * $SEEALSO$ + * QDialog * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmimedata.txt b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt index f816c7ff60..690addf096 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmimedata.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMimeData() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQMimeData.prg - * C++ wrappers : contrib/hbqt/qtcore/QMimeData.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmimedata.html + * $ONELINER$ + * Creates a new QMimeData object. + * $INHERITS$ + * QObject * $SYNTAX$ * QMimeData():new( ... ) * QMimeData():from( pPtr_OR_oObj_of_type_QMimeData ) * QMimeData():configure( pPtr_OR_oObj_of_type_QMimeData ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMimeData * $METHODS$ * :clear() -> NIL * :colorData() -> pQVariant @@ -40,33 +48,25 @@ * :urls() -> pQList * :hbUrlList() -> pQStringList * - * $RETURNS$ - * An instance of the object of type QMimeData - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QMimeData 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/qmimedata.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/TQMimeData.prg + * C++ wrappers : contrib/hbqt/qtcore/QMimeData.cpp + * Library : hbqtcore + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt index dcc0d91805..c060c88740 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QModelIndex() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQModelIndex.prg - * C++ wrappers : contrib/hbqt/qtcore/QModelIndex.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmodelindex.html + * $ONELINER$ + * Creates a new QModelIndex object. + * $INHERITS$ + * * $SYNTAX$ * QModelIndex():new( ... ) * QModelIndex():from( pPtr_OR_oObj_of_type_QModelIndex ) * QModelIndex():configure( pPtr_OR_oObj_of_type_QModelIndex ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QModelIndex * $METHODS$ * :column() -> nInt * :data( nRole ) -> pQVariant @@ -27,33 +35,25 @@ * :model() -> pQAbstractItemModel * :row() -> nInt * - * $RETURNS$ - * An instance of the object of type QModelIndex - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QModelIndex 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/qmodelindex.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/TQModelIndex.prg + * C++ wrappers : contrib/hbqt/qtcore/QModelIndex.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt index b577a673f6..51670e6318 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMouseEvent() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMouseEvent.prg - * C++ wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmouseevent.html + * $ONELINER$ + * Creates a new QMouseEvent object. + * $INHERITS$ + * QInputEvent * $SYNTAX$ * QMouseEvent():new( ... ) * QMouseEvent():from( pPtr_OR_oObj_of_type_QMouseEvent ) * QMouseEvent():configure( pPtr_OR_oObj_of_type_QMouseEvent ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMouseEvent * $METHODS$ * :button() -> nQt::MouseButton * :buttons() -> nQt::MouseButtons @@ -28,33 +36,25 @@ * :x() -> nInt * :y() -> nInt * - * $RETURNS$ - * An instance of the object of type QMouseEvent - * $SEEALSO$ - * QInputEvent - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QInputEvent - * $ONELINER$ - * Creates a new QMouseEvent 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/qmouseevent.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/TQMouseEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp + * Library : hbqtgui + * $SEEALSO$ + * QInputEvent * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt index 26b471501d..b0e1df58f1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QMoveEvent() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMoveEvent.prg - * C++ wrappers : contrib/hbqt/qtgui/QMoveEvent.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QMoveEvent():new( ... ) - * QMoveEvent():from( pPtr_OR_oObj_of_type_QMoveEvent ) - * QMoveEvent():configure( pPtr_OR_oObj_of_type_QMoveEvent ) - * $METHODS$ - * :oldPos() -> pQPoint - * :pos() -> pQPoint - * - * $RETURNS$ - * An instance of the object of type QMoveEvent - * $SEEALSO$ - * QEvent - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QEvent - * $ONELINER$ - * Creates a new QMoveEvent object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QMoveEvent() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qmoveevent.html + * $ONELINER$ + * Creates a new QMoveEvent object. + * $INHERITS$ + * QEvent + * $SYNTAX$ + * QMoveEvent():new( ... ) + * QMoveEvent():from( pPtr_OR_oObj_of_type_QMoveEvent ) + * QMoveEvent():configure( pPtr_OR_oObj_of_type_QMoveEvent ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMoveEvent + * $METHODS$ + * :oldPos() -> pQPoint + * :pos() -> pQPoint + * + * $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/TQMoveEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QMoveEvent.cpp + * Library : hbqtgui + * $SEEALSO$ + * QEvent * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmovie.txt b/harbour/contrib/hbqt/doc/en/class_qmovie.txt index 9fa4463f51..6111707c2e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmovie.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmovie.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QMovie() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQMovie.prg - * C++ wrappers : contrib/hbqt/qtgui/QMovie.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmovie.html + * $ONELINER$ + * Creates a new QMovie object. + * $INHERITS$ + * QObject * $SYNTAX$ * QMovie():new( ... ) * QMovie():from( pPtr_OR_oObj_of_type_QMovie ) * QMovie():configure( pPtr_OR_oObj_of_type_QMovie ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QMovie * $METHODS$ * :backgroundColor() -> pQColor * :cacheMode() -> nCacheMode @@ -47,33 +55,25 @@ * :start() -> NIL * :stop() -> NIL * - * $RETURNS$ - * An instance of the object of type QMovie - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QMovie 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/qmovie.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/TQMovie.prg + * C++ wrappers : contrib/hbqt/qtgui/QMovie.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt index 0d4a943778..4705300b1d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt +++ b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QNetworkRequest() - * $FILES$ - * Harbour source: contrib/hbqt/qtnetwork/TQNetworkRequest.prg - * C++ wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp - * Library : hbqtnetwork - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qnetworkrequest.html + * $ONELINER$ + * Creates a new QNetworkRequest object. + * $INHERITS$ + * * $SYNTAX$ * QNetworkRequest():new( ... ) * QNetworkRequest():from( pPtr_OR_oObj_of_type_QNetworkRequest ) * QNetworkRequest():configure( pPtr_OR_oObj_of_type_QNetworkRequest ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QNetworkRequest * $METHODS$ * :attribute( nCode, pDefaultValue ) -> pQVariant * :hasRawHeader( pHeaderName ) -> lBool @@ -29,33 +37,25 @@ * :setUrl( pUrl ) -> NIL * :url() -> pQUrl * - * $RETURNS$ - * An instance of the object of type QNetworkRequest - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QNetworkRequest 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/qnetworkrequest.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/TQNetworkRequest.prg + * C++ wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp + * Library : hbqtnetwork + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qobject.txt b/harbour/contrib/hbqt/doc/en/class_qobject.txt index 344bc6ba72..d9f1dceab8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qobject.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QObject() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQObject.prg - * C++ wrappers : contrib/hbqt/qtcore/QObject.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qobject.html + * $ONELINER$ + * Creates a new QObject object. + * $INHERITS$ + * * $SYNTAX$ * QObject():new( ... ) * QObject():from( pPtr_OR_oObj_of_type_QObject ) * QObject():configure( pPtr_OR_oObj_of_type_QObject ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QObject * $METHODS$ * :blockSignals( lBlock ) -> lBool * :connect( pSender, pSignal, pMethod, nType ) -> lBool @@ -47,33 +55,25 @@ * :trUtf8( pSourceText, pDisambiguation, nN ) -> cQString * :deleteLater() -> NIL * - * $RETURNS$ - * An instance of the object of type QObject - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QObject 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/qobject.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/TQObject.prg + * C++ wrappers : contrib/hbqt/qtcore/QObject.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt index 17f2720c82..75d67528af 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPageSetupDialog() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPageSetupDialog.prg - * C++ wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpagesetupdialog.html + * $ONELINER$ + * Creates a new QPageSetupDialog object. + * $INHERITS$ + * QDialog * $SYNTAX$ * QPageSetupDialog():new( ... ) * QPageSetupDialog():from( pPtr_OR_oObj_of_type_QPageSetupDialog ) * QPageSetupDialog():configure( pPtr_OR_oObj_of_type_QPageSetupDialog ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPageSetupDialog * $METHODS$ * :exec() -> nInt * :open( pReceiver, pMember ) -> NIL @@ -27,33 +35,25 @@ * :setVisible( lVisible ) -> NIL * :testOption( nOption ) -> lBool * - * $RETURNS$ - * An instance of the object of type QPageSetupDialog - * $SEEALSO$ - * QDialog - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QDialog - * $ONELINER$ - * Creates a new QPageSetupDialog 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/qpagesetupdialog.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/TQPageSetupDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp + * Library : hbqtgui + * $SEEALSO$ + * QDialog * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt index 07eada27ca..9237edc9d2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPaintDevice() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPaintDevice.prg - * C++ wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpaintdevice.html + * $ONELINER$ + * Creates a new QPaintDevice object. + * $INHERITS$ + * * $SYNTAX$ * QPaintDevice():new( ... ) * QPaintDevice():from( pPtr_OR_oObj_of_type_QPaintDevice ) * QPaintDevice():configure( pPtr_OR_oObj_of_type_QPaintDevice ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPaintDevice * $METHODS$ * :depth() -> nInt * :height() -> nInt @@ -31,33 +39,25 @@ * :width() -> nInt * :widthMM() -> nInt * - * $RETURNS$ - * An instance of the object of type QPaintDevice - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPaintDevice 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/qpaintdevice.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/TQPaintDevice.prg + * C++ wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt index 6cf425a4d4..2a8404b98d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPaintEngine() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPaintEngine.prg - * C++ wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpaintengine.html + * $ONELINER$ + * Creates a new QPaintEngine object. + * $INHERITS$ + * * $SYNTAX$ * QPaintEngine():new( ... ) * QPaintEngine():from( pPtr_OR_oObj_of_type_QPaintEngine ) * QPaintEngine():configure( pPtr_OR_oObj_of_type_QPaintEngine ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPaintEngine * $METHODS$ * :begin( pPdev ) -> lBool * :drawEllipse( pRect ) -> NIL @@ -43,33 +51,25 @@ * :type() -> nType * :updateState( pState ) -> NIL * - * $RETURNS$ - * An instance of the object of type QPaintEngine - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPaintEngine 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/qpaintengine.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/TQPaintEngine.prg + * C++ wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpainter.txt b/harbour/contrib/hbqt/doc/en/class_qpainter.txt index 27e122f40e..e94413395e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpainter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpainter.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPainter() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPainter.prg - * C++ wrappers : contrib/hbqt/qtgui/QPainter.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpainter.html + * $ONELINER$ + * Creates a new QPainter object. + * $INHERITS$ + * * $SYNTAX$ * QPainter():new( ... ) * QPainter():from( pPtr_OR_oObj_of_type_QPainter ) * QPainter():configure( pPtr_OR_oObj_of_type_QPainter ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPainter * $METHODS$ * :background() -> pQBrush * :backgroundMode() -> nQt::BGMode @@ -201,33 +209,25 @@ * :restoreRedirected( pDevice ) -> NIL * :setRedirected( pDevice, pReplacement, pOffset ) -> NIL * - * $RETURNS$ - * An instance of the object of type QPainter - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPainter 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/qpainter.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/TQPainter.prg + * C++ wrappers : contrib/hbqt/qtgui/QPainter.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt index 4c27eb01a5..65f61924fb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPainterPath() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPainterPath.prg - * C++ wrappers : contrib/hbqt/qtgui/QPainterPath.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpainterpath.html + * $ONELINER$ + * Creates a new QPainterPath object. + * $INHERITS$ + * * $SYNTAX$ * QPainterPath():new( ... ) * QPainterPath():from( pPtr_OR_oObj_of_type_QPainterPath ) * QPainterPath():configure( pPtr_OR_oObj_of_type_QPainterPath ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPainterPath * $METHODS$ * :addEllipse( pBoundingRectangle ) -> NIL * :addEllipse_1( nX, nY, nWidth, nHeight ) -> NIL @@ -69,33 +77,25 @@ * :toSubpathPolygons( pMatrix ) -> pQList * :toSubpathPolygons_1( pMatrix ) -> pQList * - * $RETURNS$ - * An instance of the object of type QPainterPath - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPainterPath 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/qpainterpath.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/TQPainterPath.prg + * C++ wrappers : contrib/hbqt/qtgui/QPainterPath.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt index 5c61d77ecc..964862017f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QPaintEvent() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPaintEvent.prg - * C++ wrappers : contrib/hbqt/qtgui/QPaintEvent.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QPaintEvent():new( ... ) - * QPaintEvent():from( pPtr_OR_oObj_of_type_QPaintEvent ) - * QPaintEvent():configure( pPtr_OR_oObj_of_type_QPaintEvent ) - * $METHODS$ - * :rect() -> pQRect - * :region() -> pQRegion - * - * $RETURNS$ - * An instance of the object of type QPaintEvent - * $SEEALSO$ - * QEvent - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QEvent - * $ONELINER$ - * Creates a new QPaintEvent object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QPaintEvent() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qpaintevent.html + * $ONELINER$ + * Creates a new QPaintEvent object. + * $INHERITS$ + * QEvent + * $SYNTAX$ + * QPaintEvent():new( ... ) + * QPaintEvent():from( pPtr_OR_oObj_of_type_QPaintEvent ) + * QPaintEvent():configure( pPtr_OR_oObj_of_type_QPaintEvent ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPaintEvent + * $METHODS$ + * :rect() -> pQRect + * :region() -> pQRegion + * + * $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/TQPaintEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QPaintEvent.cpp + * Library : hbqtgui + * $SEEALSO$ + * QEvent * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpalette.txt b/harbour/contrib/hbqt/doc/en/class_qpalette.txt index e50a5c8da9..9faf17a281 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpalette.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpalette.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPalette() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPalette.prg - * C++ wrappers : contrib/hbqt/qtgui/QPalette.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpalette.html + * $ONELINER$ + * Creates a new QPalette object. + * $INHERITS$ + * * $SYNTAX$ * QPalette():new( ... ) * QPalette():from( pPtr_OR_oObj_of_type_QPalette ) * QPalette():configure( pPtr_OR_oObj_of_type_QPalette ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPalette * $METHODS$ * :alternateBase() -> pQBrush * :base() -> pQBrush @@ -53,14 +61,8 @@ * :window() -> pQBrush * :windowText() -> pQBrush * - * $RETURNS$ - * An instance of the object of type QPalette - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oPalette := QPalette():new() * oPalette := QPalette():new( nQt_color ) @@ -72,23 +74,21 @@ * * pQBrush_window ) * */ * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPalette 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/qpalette.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPalette.prg + * C++ wrappers : contrib/hbqt/qtgui/QPalette.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpen.txt b/harbour/contrib/hbqt/doc/en/class_qpen.txt index 33b3b42b33..6c92f777d2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpen.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpen.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPen() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPen.prg - * C++ wrappers : contrib/hbqt/qtgui/QPen.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpen.html + * $ONELINER$ + * Creates a new QPen object. + * $INHERITS$ + * * $SYNTAX$ * QPen():new( ... ) * QPen():from( pPtr_OR_oObj_of_type_QPen ) * QPen():configure( pPtr_OR_oObj_of_type_QPen ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPen * $METHODS$ * :brush() -> pQBrush * :capStyle() -> nQt::PenCapStyle @@ -40,14 +48,8 @@ * :width() -> nInt * :widthF() -> nQreal * - * $RETURNS$ - * An instance of the object of type QPen - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oPen := QPen():new() * oPen := QPen():new( pQPen_other ) @@ -60,23 +62,21 @@ * * oPen := QPen():new( pQPen ) * */ * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPen 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/qpen.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPen.prg + * C++ wrappers : contrib/hbqt/qtgui/QPen.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpicture.txt b/harbour/contrib/hbqt/doc/en/class_qpicture.txt index cbf11bf725..7399fddbc7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpicture.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpicture.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPicture() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPicture.prg - * C++ wrappers : contrib/hbqt/qtgui/QPicture.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpicture.html + * $ONELINER$ + * Creates a new QPicture object. + * $INHERITS$ + * QPaintDevice * $SYNTAX$ * QPicture():new( ... ) * QPicture():from( pPtr_OR_oObj_of_type_QPicture ) * QPicture():configure( pPtr_OR_oObj_of_type_QPicture ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPicture * $METHODS$ * :boundingRect() -> pQRect * :data() -> cChar @@ -30,36 +38,28 @@ * :setData( pData, nSize ) -> NIL * :size() -> nUint * - * $RETURNS$ - * An instance of the object of type QPicture - * $SEEALSO$ - * QPaintDevice - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oPicture := QPicture():new() * oPicture := QPicture():new( nFormatVersion ) * oPicture := QPicture():new( pQPicture ) * - * $INHERITS$ - * QPaintDevice - * $ONELINER$ - * Creates a new QPicture 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/qpicture.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPicture.prg + * C++ wrappers : contrib/hbqt/qtgui/QPicture.cpp + * Library : hbqtgui + * $SEEALSO$ + * QPaintDevice * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpixmap.txt b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt index 60446ae902..2232c96b87 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpixmap.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPixmap() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPixmap.prg - * C++ wrappers : contrib/hbqt/qtgui/QPixmap.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpixmap.html + * $ONELINER$ + * Creates a new QPixmap object. + * $INHERITS$ + * QPaintDevice * $SYNTAX$ * QPixmap():new( ... ) * QPixmap():from( pPtr_OR_oObj_of_type_QPixmap ) * QPixmap():configure( pPtr_OR_oObj_of_type_QPixmap ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPixmap * $METHODS$ * :cacheKey() -> nQint64 * :createHeuristicMask( lClipTight ) -> pQBitmap @@ -47,37 +55,29 @@ * :trueMatrix( pMatrix, nWidth, nHeight ) -> pQTransform * :trueMatrix_1( pM, nW, nH ) -> pQMatrix * - * $RETURNS$ - * An instance of the object of type QPixmap - * $SEEALSO$ - * QPaintDevice - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oPixmap := QPixmap():new() * oPixmap := QPixmap():new( nWidth, nHeight ) * oPixmap := QPixmap():new( cImageFilename ) * oPixmap := QPixmap():new( pQPixmap ) * - * $INHERITS$ - * QPaintDevice - * $ONELINER$ - * Creates a new QPixmap 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/qpixmap.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPixmap.prg + * C++ wrappers : contrib/hbqt/qtgui/QPixmap.cpp + * Library : hbqtgui + * $SEEALSO$ + * QPaintDevice * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt index dc51781702..620a23865b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPlainTextDocumentLayout() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPlainTextDocumentLayout.prg - * C++ wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qplaintextdocumentlayout.html + * $ONELINER$ + * Creates a new QPlainTextDocumentLayout object. + * $INHERITS$ + * QAbstractTextDocumentLayout * $SYNTAX$ * QPlainTextDocumentLayout():new( ... ) * QPlainTextDocumentLayout():from( pPtr_OR_oObj_of_type_QPlainTextDocumentLayout ) * QPlainTextDocumentLayout():configure( pPtr_OR_oObj_of_type_QPlainTextDocumentLayout ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPlainTextDocumentLayout * $METHODS$ * :cursorWidth() -> nInt * :ensureBlockLayout( pBlock ) -> NIL * :requestUpdate() -> NIL * :setCursorWidth( nWidth ) -> NIL * - * $RETURNS$ - * An instance of the object of type QPlainTextDocumentLayout - * $SEEALSO$ - * QAbstractTextDocumentLayout - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractTextDocumentLayout - * $ONELINER$ - * Creates a new QPlainTextDocumentLayout 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/qplaintextdocumentlayout.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/TQPlainTextDocumentLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractTextDocumentLayout * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt index 9ae17252e3..96761d7e3c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPlainTextEdit() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPlainTextEdit.prg - * C++ wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qplaintextedit.html + * $ONELINER$ + * Creates a new QPlainTextEdit object. + * $INHERITS$ + * QAbstractScrollArea * $SYNTAX$ * QPlainTextEdit():new( ... ) * QPlainTextEdit():from( pPtr_OR_oObj_of_type_QPlainTextEdit ) * QPlainTextEdit():configure( pPtr_OR_oObj_of_type_QPlainTextEdit ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPlainTextEdit * $METHODS$ * :backgroundVisible() -> lBool * :blockCount() -> nInt @@ -76,33 +84,25 @@ * :setPlainText( cText ) -> NIL * :undo() -> NIL * - * $RETURNS$ - * An instance of the object of type QPlainTextEdit - * $SEEALSO$ - * QAbstractScrollArea - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractScrollArea - * $ONELINER$ - * Creates a new QPlainTextEdit 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/qplaintextedit.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/TQPlainTextEdit.prg + * C++ wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractScrollArea * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpoint.txt b/harbour/contrib/hbqt/doc/en/class_qpoint.txt index fe80eb5977..fa8c8fa06e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpoint.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpoint.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPoint() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQPoint.prg - * C++ wrappers : contrib/hbqt/qtcore/QPoint.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpoint.html + * $ONELINER$ + * Creates a new QPoint object. + * $INHERITS$ + * * $SYNTAX$ * QPoint():new( ... ) * QPoint():from( pPtr_OR_oObj_of_type_QPoint ) * QPoint():configure( pPtr_OR_oObj_of_type_QPoint ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPoint * $METHODS$ * :isNull() -> lBool * :manhattanLength() -> nInt @@ -27,36 +35,28 @@ * :x() -> nInt * :y() -> nInt * - * $RETURNS$ - * An instance of the object of type QPoint - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oPoint := QPoint():new() * oPoint := QPoint():new( nX, nY ) * oPoint := QPoint():new( pQPoint ) * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPoint 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/qpoint.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQPoint.prg + * C++ wrappers : contrib/hbqt/qtcore/QPoint.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpointf.txt b/harbour/contrib/hbqt/doc/en/class_qpointf.txt index 5642f9ae7c..6abb214cb7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpointf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpointf.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPointF() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQPointF.prg - * C++ wrappers : contrib/hbqt/qtcore/QPointF.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpointf.html + * $ONELINER$ + * Creates a new QPointF object. + * $INHERITS$ + * * $SYNTAX$ * QPointF():new( ... ) * QPointF():from( pPtr_OR_oObj_of_type_QPointF ) * QPointF():configure( pPtr_OR_oObj_of_type_QPointF ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPointF * $METHODS$ * :isNull() -> lBool * :rx() -> nQreal @@ -27,36 +35,28 @@ * :x() -> nQreal * :y() -> nQreal * - * $RETURNS$ - * An instance of the object of type QPointF - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oPointF := QPointF():new() * oPointF := QPointF():new( nX, nY ) * oPointF := QPointF():new( pQPoint ) * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPointF 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/qpointf.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQPointF.prg + * C++ wrappers : contrib/hbqt/qtcore/QPointF.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpolygon.txt b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt index c4978a0d4f..7d4c5286a1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpolygon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPolygon() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPolygon.prg - * C++ wrappers : contrib/hbqt/qtgui/QPolygon.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpolygon.html + * $ONELINER$ + * Creates a new QPolygon object. + * $INHERITS$ + * * $SYNTAX$ * QPolygon():new( ... ) * QPolygon():from( pPtr_OR_oObj_of_type_QPolygon ) * QPolygon():configure( pPtr_OR_oObj_of_type_QPolygon ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPolygon * $METHODS$ * :boundingRect() -> pQRect * :containsPoint( pPoint, nFillRule ) -> lBool @@ -29,33 +37,25 @@ * :translate( nDx, nDy ) -> NIL * :translate_1( pOffset ) -> NIL * - * $RETURNS$ - * An instance of the object of type QPolygon - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPolygon 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/qpolygon.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/TQPolygon.prg + * C++ wrappers : contrib/hbqt/qtgui/QPolygon.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt index 045c957fd6..9d5317789f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPolygonF() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPolygonF.prg - * C++ wrappers : contrib/hbqt/qtgui/QPolygonF.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpolygonf.html + * $ONELINER$ + * Creates a new QPolygonF object. + * $INHERITS$ + * * $SYNTAX$ * QPolygonF():new( ... ) * QPolygonF():from( pPtr_OR_oObj_of_type_QPolygonF ) * QPolygonF():configure( pPtr_OR_oObj_of_type_QPolygonF ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPolygonF * $METHODS$ * :boundingRect() -> pQRectF * :containsPoint( pPoint, nFillRule ) -> lBool @@ -25,33 +33,25 @@ * :translate( pOffset ) -> NIL * :translate_1( nDx, nDy ) -> NIL * - * $RETURNS$ - * An instance of the object of type QPolygonF - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPolygonF 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/qpolygonf.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/TQPolygonF.prg + * C++ wrappers : contrib/hbqt/qtgui/QPolygonF.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt index 962e295eb2..d85940dd31 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPrintDialog() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPrintDialog.prg - * C++ wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qprintdialog.html + * $ONELINER$ + * Creates a new QPrintDialog object. + * $INHERITS$ + * QAbstractPrintDialog * $SYNTAX$ * QPrintDialog():new( ... ) * QPrintDialog():from( pPtr_OR_oObj_of_type_QPrintDialog ) * QPrintDialog():configure( pPtr_OR_oObj_of_type_QPrintDialog ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPrintDialog * $METHODS$ * :done( nResult ) -> NIL * :open( pReceiver, pMember ) -> NIL @@ -28,33 +36,25 @@ * :setVisible( lVisible ) -> NIL * :testOption( nOption ) -> lBool * - * $RETURNS$ - * An instance of the object of type QPrintDialog - * $SEEALSO$ - * QAbstractPrintDialog - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractPrintDialog - * $ONELINER$ - * Creates a new QPrintDialog 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/qprintdialog.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/TQPrintDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractPrintDialog * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintengine.txt b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt index 7fade339f4..6e8157aa76 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintengine.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPrintEngine() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPrintEngine.prg - * C++ wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qprintengine.html + * $ONELINER$ + * Creates a new QPrintEngine object. + * $INHERITS$ + * * $SYNTAX$ * QPrintEngine():new( ... ) * QPrintEngine():from( pPtr_OR_oObj_of_type_QPrintEngine ) * QPrintEngine():configure( pPtr_OR_oObj_of_type_QPrintEngine ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPrintEngine * $METHODS$ * :abort() -> lBool * :metric( nId ) -> nInt @@ -25,33 +33,25 @@ * :property( nKey ) -> pQVariant * :setProperty( nKey, pValue ) -> NIL * - * $RETURNS$ - * An instance of the object of type QPrintEngine - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QPrintEngine 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/qprintengine.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/TQPrintEngine.prg + * C++ wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprinter.txt b/harbour/contrib/hbqt/doc/en/class_qprinter.txt index 2909faeb44..9ce45c8fe9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprinter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprinter.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPrinter() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPrinter.prg - * C++ wrappers : contrib/hbqt/qtgui/QPrinter.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qprinter.html + * $ONELINER$ + * Creates a new QPrinter object. + * $INHERITS$ + * QPaintDevice * $SYNTAX$ * QPrinter():new( ... ) * QPrinter():from( pPtr_OR_oObj_of_type_QPrinter ) * QPrinter():configure( pPtr_OR_oObj_of_type_QPrinter ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPrinter * $METHODS$ * :abort() -> lBool * :collateCopies() -> lBool @@ -75,33 +83,25 @@ * :supportedResolutions() -> pQList * :toPage() -> nInt * - * $RETURNS$ - * An instance of the object of type QPrinter - * $SEEALSO$ - * QPaintDevice - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QPaintDevice - * $ONELINER$ - * Creates a new QPrinter 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/qprinter.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/TQPrinter.prg + * C++ wrappers : contrib/hbqt/qtgui/QPrinter.cpp + * Library : hbqtgui + * $SEEALSO$ + * QPaintDevice * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt index 93ea8dace5..77486eefaa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QPrintPreviewDialog() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPrintPreviewDialog.prg - * C++ wrappers : contrib/hbqt/qtgui/QPrintPreviewDialog.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QPrintPreviewDialog():new( ... ) - * QPrintPreviewDialog():from( pPtr_OR_oObj_of_type_QPrintPreviewDialog ) - * QPrintPreviewDialog():configure( pPtr_OR_oObj_of_type_QPrintPreviewDialog ) - * $METHODS$ - * :open( pReceiver, pMember ) -> NIL - * :printer() -> pQPrinter - * - * $RETURNS$ - * An instance of the object of type QPrintPreviewDialog - * $SEEALSO$ - * QDialog - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QDialog - * $ONELINER$ - * Creates a new QPrintPreviewDialog object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QPrintPreviewDialog() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qprintpreviewdialog.html + * $ONELINER$ + * Creates a new QPrintPreviewDialog object. + * $INHERITS$ + * QDialog + * $SYNTAX$ + * QPrintPreviewDialog():new( ... ) + * QPrintPreviewDialog():from( pPtr_OR_oObj_of_type_QPrintPreviewDialog ) + * QPrintPreviewDialog():configure( pPtr_OR_oObj_of_type_QPrintPreviewDialog ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPrintPreviewDialog + * $METHODS$ + * :open( pReceiver, pMember ) -> NIL + * :printer() -> pQPrinter + * + * $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/TQPrintPreviewDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QPrintPreviewDialog.cpp + * Library : hbqtgui + * $SEEALSO$ + * QDialog * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprocess.txt b/harbour/contrib/hbqt/doc/en/class_qprocess.txt index 28949c4ea7..32f7b6e4d8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprocess.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprocess.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QProcess() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQProcess.prg - * C++ wrappers : contrib/hbqt/qtcore/QProcess.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qprocess.html + * $ONELINER$ + * Creates a new QProcess object. + * $INHERITS$ + * QIODevice * $SYNTAX$ * QProcess():new( ... ) * QProcess():from( pPtr_OR_oObj_of_type_QProcess ) * QProcess():configure( pPtr_OR_oObj_of_type_QProcess ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QProcess * $METHODS$ * :close() -> NIL * :closeReadChannel( nChannel ) -> NIL @@ -52,33 +60,25 @@ * :kill() -> NIL * :terminate() -> NIL * - * $RETURNS$ - * An instance of the object of type QProcess - * $SEEALSO$ - * QIODevice - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QIODevice - * $ONELINER$ - * Creates a new QProcess 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/qprocess.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/TQProcess.prg + * C++ wrappers : contrib/hbqt/qtcore/QProcess.cpp + * Library : hbqtcore + * $SEEALSO$ + * QIODevice * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt index 83dc40d16d..a4c38ad874 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QProgressBar() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQProgressBar.prg - * C++ wrappers : contrib/hbqt/qtgui/QProgressBar.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qprogressbar.html + * $ONELINER$ + * Creates a new QProgressBar object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QProgressBar():new( ... ) * QProgressBar():from( pPtr_OR_oObj_of_type_QProgressBar ) * QProgressBar():configure( pPtr_OR_oObj_of_type_QProgressBar ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QProgressBar * $METHODS$ * :alignment() -> nQt::Alignment * :format() -> cQString @@ -40,33 +48,25 @@ * :setRange( nMinimum, nMaximum ) -> NIL * :setValue( nValue ) -> NIL * - * $RETURNS$ - * An instance of the object of type QProgressBar - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QProgressBar 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/qprogressbar.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/TQProgressBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QProgressBar.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt index e9eb89d9af..aee8a1a115 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QProgressDialog() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQProgressDialog.prg - * C++ wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qprogressdialog.html + * $ONELINER$ + * Creates a new QProgressDialog object. + * $INHERITS$ + * QDialog * $SYNTAX$ * QProgressDialog():new( ... ) * QProgressDialog():from( pPtr_OR_oObj_of_type_QProgressDialog ) * QProgressDialog():configure( pPtr_OR_oObj_of_type_QProgressDialog ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QProgressDialog * $METHODS$ * :autoClose() -> lBool * :autoReset() -> lBool @@ -43,33 +51,25 @@ * :setRange( nMinimum, nMaximum ) -> NIL * :setValue( nProgress ) -> NIL * - * $RETURNS$ - * An instance of the object of type QProgressDialog - * $SEEALSO$ - * QDialog - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QDialog - * $ONELINER$ - * Creates a new QProgressDialog 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/qprogressdialog.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/TQProgressDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp + * Library : hbqtgui + * $SEEALSO$ + * QDialog * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt index e3e9391491..64cb018ad6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QPushButton() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQPushButton.prg - * C++ wrappers : contrib/hbqt/qtgui/QPushButton.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpushbutton.html + * $ONELINER$ + * Creates a new QPushButton object. + * $INHERITS$ + * QAbstractButton * $SYNTAX$ * QPushButton():new( ... ) * QPushButton():from( pPtr_OR_oObj_of_type_QPushButton ) * QPushButton():configure( pPtr_OR_oObj_of_type_QPushButton ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QPushButton * $METHODS$ * :autoDefault() -> lBool * :isDefault() -> lBool @@ -28,33 +36,25 @@ * :setMenu( pMenu ) -> NIL * :showMenu() -> NIL * - * $RETURNS$ - * An instance of the object of type QPushButton - * $SEEALSO$ - * QAbstractButton - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractButton - * $ONELINER$ - * Creates a new QPushButton 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/qpushbutton.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/TQPushButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QPushButton.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractButton * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt index d3c1c0ee5b..95e7be12f0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QRadialGradient() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQRadialGradient.prg - * C++ wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qradialgradient.html + * $ONELINER$ + * Creates a new QRadialGradient object. + * $INHERITS$ + * QGradient * $SYNTAX$ * QRadialGradient():new( ... ) * QRadialGradient():from( pPtr_OR_oObj_of_type_QRadialGradient ) * QRadialGradient():configure( pPtr_OR_oObj_of_type_QRadialGradient ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QRadialGradient * $METHODS$ * :center() -> pQPointF * :focalPoint() -> pQPointF @@ -27,14 +35,8 @@ * :setFocalPoint_1( nX, nY ) -> NIL * :setRadius( nRadius ) -> NIL * - * $RETURNS$ - * An instance of the object of type QRadialGradient - * $SEEALSO$ - * QGradient - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oRadialGradient := QRadialGradient():new() * oRadialGradient := QRadialGradient():new( pQRadialGradient ) @@ -42,23 +44,21 @@ * oRadialGradient := QRadialGradient():new( pQPointF_center, nRadius, pQPointF_focalPoint ) * oRadialGradient := QRadialGradient():new( nCx, nCy, nRadius, nFx, nFy ) * - * $INHERITS$ - * QGradient - * $ONELINER$ - * Creates a new QRadialGradient 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/qradialgradient.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQRadialGradient.prg + * C++ wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp + * Library : hbqtgui + * $SEEALSO$ + * QGradient * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qrect.txt b/harbour/contrib/hbqt/doc/en/class_qrect.txt index d98d684fdd..0af8473f91 100644 --- a/harbour/contrib/hbqt/doc/en/class_qrect.txt +++ b/harbour/contrib/hbqt/doc/en/class_qrect.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QRect() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQRect.prg - * C++ wrappers : contrib/hbqt/qtcore/QRect.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qrect.html + * $ONELINER$ + * Creates a new QRect object. + * $INHERITS$ + * * $SYNTAX$ * QRect():new( ... ) * QRect():from( pPtr_OR_oObj_of_type_QRect ) * QRect():configure( pPtr_OR_oObj_of_type_QRect ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QRect * $METHODS$ * :adjust( nDx1, nDy1, nDx2, nDy2 ) -> NIL * :bottom() -> nInt @@ -72,14 +80,8 @@ * :x() -> nInt * :y() -> nInt * - * $RETURNS$ - * An instance of the object of type QRect - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oRect := QRect():new() * oRect := QRect():new( pQRect_other ) @@ -90,23 +92,21 @@ * * oRect := QRect():new( pQPoint_topLeft, pQSize_size ) * */ * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QRect 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/qrect.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQRect.prg + * C++ wrappers : contrib/hbqt/qtcore/QRect.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qrectf.txt b/harbour/contrib/hbqt/doc/en/class_qrectf.txt index 14d05ae33a..7b361b12fd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qrectf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qrectf.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QRectF() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQRectF.prg - * C++ wrappers : contrib/hbqt/qtcore/QRectF.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qrectf.html + * $ONELINER$ + * Creates a new QRectF object. + * $INHERITS$ + * * $SYNTAX$ * QRectF():new( ... ) * QRectF():from( pPtr_OR_oObj_of_type_QRectF ) * QRectF():configure( pPtr_OR_oObj_of_type_QRectF ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QRectF * $METHODS$ * :adjust( nDx1, nDy1, nDx2, nDy2 ) -> NIL * :bottom() -> nQreal @@ -73,14 +81,8 @@ * :x() -> nQreal * :y() -> nQreal * - * $RETURNS$ - * An instance of the object of type QRectF - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oRectF := QRectF():new() * oRectF := QRectF():new( pQRectF_other ) @@ -91,23 +93,21 @@ * * oRect := QRectF():new( pQPoint_topLeft, pQSize_size ) * */ * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QRectF 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/qrectf.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQRectF.prg + * C++ wrappers : contrib/hbqt/qtcore/QRectF.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qregexp.txt b/harbour/contrib/hbqt/doc/en/class_qregexp.txt index 0a33d42ad4..5e046479ef 100644 --- a/harbour/contrib/hbqt/doc/en/class_qregexp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qregexp.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QRegExp() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQRegExp.prg - * C++ wrappers : contrib/hbqt/qtcore/QRegExp.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qregexp.html + * $ONELINER$ + * Creates a new QRegExp object. + * $INHERITS$ + * * $SYNTAX$ * QRegExp():new( ... ) * QRegExp():from( pPtr_OR_oObj_of_type_QRegExp ) * QRegExp():configure( pPtr_OR_oObj_of_type_QRegExp ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QRegExp * $METHODS$ * :cap( nNth ) -> cQString * :capturedTexts() -> pQStringList @@ -38,33 +46,25 @@ * :setPattern( cPattern ) -> NIL * :setPatternSyntax( nSyntax ) -> NIL * - * $RETURNS$ - * An instance of the object of type QRegExp - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QRegExp 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/qregexp.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/TQRegExp.prg + * C++ wrappers : contrib/hbqt/qtcore/QRegExp.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qregion.txt b/harbour/contrib/hbqt/doc/en/class_qregion.txt index 7f1ad30baa..702712589e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qregion.txt +++ b/harbour/contrib/hbqt/doc/en/class_qregion.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QRegion() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQRegion.prg - * C++ wrappers : contrib/hbqt/qtgui/QRegion.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qregion.html + * $ONELINER$ + * Creates a new QRegion object. + * $INHERITS$ + * * $SYNTAX$ * QRegion():new( ... ) * QRegion():from( pPtr_OR_oObj_of_type_QRegion ) * QRegion():configure( pPtr_OR_oObj_of_type_QRegion ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QRegion * $METHODS$ * :boundingRect() -> pQRect * :contains( pP ) -> lBool @@ -29,14 +37,8 @@ * :translate( nDx, nDy ) -> NIL * :translate_1( pPoint ) -> NIL * - * $RETURNS$ - * An instance of the object of type QRegion - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oRegion := QRegion():new() * oRegion := QRegion():new( pQRegion_other ) @@ -46,23 +48,21 @@ * oRegion := QRegion():new( "QRect" , pQRect, [ nQRegion_RegionType = QRegion_Rectangle ] ) ) * oRegion := QRegion():new( pQRect, nQRegion_RegionType ) * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QRegion 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/qregion.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQRegion.prg + * C++ wrappers : contrib/hbqt/qtgui/QRegion.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt index a6cf5cc459..79448567ea 100644 --- a/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QResizeEvent() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQResizeEvent.prg - * C++ wrappers : contrib/hbqt/qtgui/QResizeEvent.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QResizeEvent():new( ... ) - * QResizeEvent():from( pPtr_OR_oObj_of_type_QResizeEvent ) - * QResizeEvent():configure( pPtr_OR_oObj_of_type_QResizeEvent ) - * $METHODS$ - * :oldSize() -> pQSize - * :size() -> pQSize - * - * $RETURNS$ - * An instance of the object of type QResizeEvent - * $SEEALSO$ - * QEvent - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QEvent - * $ONELINER$ - * Creates a new QResizeEvent object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QResizeEvent() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qresizeevent.html + * $ONELINER$ + * Creates a new QResizeEvent object. + * $INHERITS$ + * QEvent + * $SYNTAX$ + * QResizeEvent():new( ... ) + * QResizeEvent():from( pPtr_OR_oObj_of_type_QResizeEvent ) + * QResizeEvent():configure( pPtr_OR_oObj_of_type_QResizeEvent ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QResizeEvent + * $METHODS$ + * :oldSize() -> pQSize + * :size() -> pQSize + * + * $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/TQResizeEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QResizeEvent.cpp + * Library : hbqtgui + * $SEEALSO$ + * QEvent * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qresource.txt b/harbour/contrib/hbqt/doc/en/class_qresource.txt index 363d777c55..e43995b38a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qresource.txt +++ b/harbour/contrib/hbqt/doc/en/class_qresource.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QResource() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQResource.prg - * C++ wrappers : contrib/hbqt/qtcore/QResource.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qresource.html + * $ONELINER$ + * Creates a new QResource object. + * $INHERITS$ + * * $SYNTAX$ * QResource():new( ... ) * QResource():from( pPtr_OR_oObj_of_type_QResource ) * QResource():configure( pPtr_OR_oObj_of_type_QResource ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QResource * $METHODS$ * :absoluteFilePath() -> cQString * :data() -> pUchar @@ -33,33 +41,25 @@ * :unregisterResource( cRccFileName, cMapRoot ) -> lBool * :unregisterResource_1( pRccData, cMapRoot ) -> lBool * - * $RETURNS$ - * An instance of the object of type QResource - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QResource 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/qresource.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/TQResource.prg + * C++ wrappers : contrib/hbqt/qtcore/QResource.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt index 61f083321d..01e0a8327d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QScrollArea() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQScrollArea.prg - * C++ wrappers : contrib/hbqt/qtgui/QScrollArea.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qscrollarea.html + * $ONELINER$ + * Creates a new QScrollArea object. + * $INHERITS$ + * QAbstractScrollArea * $SYNTAX$ * QScrollArea():new( ... ) * QScrollArea():from( pPtr_OR_oObj_of_type_QScrollArea ) * QScrollArea():configure( pPtr_OR_oObj_of_type_QScrollArea ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QScrollArea * $METHODS$ * :alignment() -> nQt::Alignment * :ensureVisible( nX, nY, nXmargin, nYmargin ) -> NIL @@ -28,33 +36,25 @@ * :widget() -> pQWidget * :widgetResizable() -> lBool * - * $RETURNS$ - * An instance of the object of type QScrollArea - * $SEEALSO$ - * QAbstractScrollArea - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractScrollArea - * $ONELINER$ - * Creates a new QScrollArea 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/qscrollarea.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/TQScrollArea.prg + * C++ wrappers : contrib/hbqt/qtgui/QScrollArea.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractScrollArea * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt index b0d5ebef62..3557be21b2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSessionManager() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSessionManager.prg - * C++ wrappers : contrib/hbqt/qtgui/QSessionManager.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsessionmanager.html + * $ONELINER$ + * Creates a new QSessionManager object. + * $INHERITS$ + * QObject * $SYNTAX$ * QSessionManager():new( ... ) * QSessionManager():from( pPtr_OR_oObj_of_type_QSessionManager ) * QSessionManager():configure( pPtr_OR_oObj_of_type_QSessionManager ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSessionManager * $METHODS$ * :allowsErrorInteraction() -> lBool * :allowsInteraction() -> lBool @@ -35,33 +43,25 @@ * :setRestartCommand( pCommand ) -> NIL * :setRestartHint( nHint ) -> NIL * - * $RETURNS$ - * An instance of the object of type QSessionManager - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QSessionManager 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/qsessionmanager.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/TQSessionManager.prg + * C++ wrappers : contrib/hbqt/qtgui/QSessionManager.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsettings.txt b/harbour/contrib/hbqt/doc/en/class_qsettings.txt index 3f9120b804..f458de7efe 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsettings.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsettings.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSettings() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQSettings.prg - * C++ wrappers : contrib/hbqt/qtcore/QSettings.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsettings.html + * $ONELINER$ + * Creates a new QSettings object. + * $INHERITS$ + * QObject * $SYNTAX$ * QSettings():new( ... ) * QSettings():from( pPtr_OR_oObj_of_type_QSettings ) * QSettings():configure( pPtr_OR_oObj_of_type_QSettings ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSettings * $METHODS$ * :allKeys() -> pQStringList * :applicationName() -> cQString @@ -50,33 +58,25 @@ * :setDefaultFormat( nFormat ) -> NIL * :setPath( nFormat, nScope, cPath ) -> NIL * - * $RETURNS$ - * An instance of the object of type QSettings - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QSettings 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/qsettings.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/TQSettings.prg + * C++ wrappers : contrib/hbqt/qtcore/QSettings.cpp + * Library : hbqtcore + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt index 067c5dbeed..c765f0ec18 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSignalMapper() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQSignalMapper.prg - * C++ wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsignalmapper.html + * $ONELINER$ + * Creates a new QSignalMapper object. + * $INHERITS$ + * QObject * $SYNTAX$ * QSignalMapper():new( ... ) * QSignalMapper():from( pPtr_OR_oObj_of_type_QSignalMapper ) * QSignalMapper():configure( pPtr_OR_oObj_of_type_QSignalMapper ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSignalMapper * $METHODS$ * :mapping( nId ) -> pQObject * :mapping_1( cId ) -> pQObject @@ -30,33 +38,25 @@ * :map() -> NIL * :map_1( pSender ) -> NIL * - * $RETURNS$ - * An instance of the object of type QSignalMapper - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QSignalMapper 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/qsignalmapper.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/TQSignalMapper.prg + * C++ wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp + * Library : hbqtcore + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsize.txt b/harbour/contrib/hbqt/doc/en/class_qsize.txt index 40ce89098c..86176d7c28 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsize.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsize.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSize() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQSize.prg - * C++ wrappers : contrib/hbqt/qtcore/QSize.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsize.html + * $ONELINER$ + * Creates a new QSize object. + * $INHERITS$ + * * $SYNTAX$ * QSize():new( ... ) * QSize():from( pPtr_OR_oObj_of_type_QSize ) * QSize():configure( pPtr_OR_oObj_of_type_QSize ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSize * $METHODS$ * :height() -> nInt * :isEmpty() -> lBool @@ -31,36 +39,28 @@ * :transpose() -> NIL * :width() -> nInt * - * $RETURNS$ - * An instance of the object of type QSize - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oSize := QSize():new() * oSize := QSize():new( pSize ) * oSize := QSize():new( nWidth, nHeight ) * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QSize 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/qsize.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQSize.prg + * C++ wrappers : contrib/hbqt/qtcore/QSize.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsizef.txt b/harbour/contrib/hbqt/doc/en/class_qsizef.txt index 5d5b38e600..2a43d0d879 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsizef.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsizef.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSizeF() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQSizeF.prg - * C++ wrappers : contrib/hbqt/qtcore/QSizeF.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsizef.html + * $ONELINER$ + * Creates a new QSizeF object. + * $INHERITS$ + * * $SYNTAX$ * QSizeF():new( ... ) * QSizeF():from( pPtr_OR_oObj_of_type_QSizeF ) * QSizeF():configure( pPtr_OR_oObj_of_type_QSizeF ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSizeF * $METHODS$ * :height() -> nQreal * :isEmpty() -> lBool @@ -32,35 +40,27 @@ * :transpose() -> NIL * :width() -> nQreal * - * $RETURNS$ - * An instance of the object of type QSizeF - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oSizeF := QSizeF():new() * oSizeF := QSizeF():new( nWidth, nHeight ) * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QSizeF 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/qsizef.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQSizeF.prg + * C++ wrappers : contrib/hbqt/qtcore/QSizeF.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt index 4faa0a9355..87e2792812 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSizePolicy() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSizePolicy.prg - * C++ wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsizepolicy.html + * $ONELINER$ + * Creates a new QSizePolicy object. + * $INHERITS$ + * * $SYNTAX$ * QSizePolicy():new( ... ) * QSizePolicy():from( pPtr_OR_oObj_of_type_QSizePolicy ) * QSizePolicy():configure( pPtr_OR_oObj_of_type_QSizePolicy ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSizePolicy * $METHODS$ * :controlType() -> nControlType * :expandingDirections() -> nQt::Orientations @@ -33,33 +41,25 @@ * :verticalPolicy() -> nPolicy * :verticalStretch() -> nInt * - * $RETURNS$ - * An instance of the object of type QSizePolicy - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QSizePolicy 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/qsizepolicy.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/TQSizePolicy.prg + * C++ wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qslider.txt b/harbour/contrib/hbqt/doc/en/class_qslider.txt index 49852c0e80..86b5b8417f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qslider.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSlider() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSlider.prg - * C++ wrappers : contrib/hbqt/qtgui/QSlider.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qslider.html + * $ONELINER$ + * Creates a new QSlider object. + * $INHERITS$ + * QAbstractSlider * $SYNTAX$ * QSlider():new( ... ) * QSlider():from( pPtr_OR_oObj_of_type_QSlider ) * QSlider():configure( pPtr_OR_oObj_of_type_QSlider ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSlider * $METHODS$ * :setTickInterval( nTi ) -> NIL * :setTickPosition( nPosition ) -> NIL * :tickInterval() -> nInt * :tickPosition() -> nTickPosition * - * $RETURNS$ - * An instance of the object of type QSlider - * $SEEALSO$ - * QAbstractSlider - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractSlider - * $ONELINER$ - * Creates a new QSlider 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/qslider.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/TQSlider.prg + * C++ wrappers : contrib/hbqt/qtgui/QSlider.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractSlider * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsound.txt b/harbour/contrib/hbqt/doc/en/class_qsound.txt index 1e6b42f540..59c67e2a9c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsound.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsound.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSound() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSound.prg - * C++ wrappers : contrib/hbqt/qtgui/QSound.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsound.html + * $ONELINER$ + * Creates a new QSound object. + * $INHERITS$ + * * $SYNTAX$ * QSound():new( ... ) * QSound():from( pPtr_OR_oObj_of_type_QSound ) * QSound():configure( pPtr_OR_oObj_of_type_QSound ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSound * $METHODS$ * :fileName() -> cQString * :isFinished() -> lBool @@ -26,33 +34,25 @@ * :isAvailable() -> lBool * :play( cFilename ) -> NIL * - * $RETURNS$ - * An instance of the object of type QSound - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QSound 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/qsound.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/TQSound.prg + * C++ wrappers : contrib/hbqt/qtgui/QSound.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt index 8cd2f08e57..c13ccc3a22 100644 --- a/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QSpacerItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSpacerItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QSpacerItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QSpacerItem():new( ... ) - * QSpacerItem():from( pPtr_OR_oObj_of_type_QSpacerItem ) - * QSpacerItem():configure( pPtr_OR_oObj_of_type_QSpacerItem ) - * $METHODS$ - * :changeSize( nW, nH, nHPolicy, nVPolicy ) -> NIL - * :isEmpty() -> lBool - * - * $RETURNS$ - * An instance of the object of type QSpacerItem - * $SEEALSO$ - * QLayoutItem - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QLayoutItem - * $ONELINER$ - * Creates a new QSpacerItem object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QSpacerItem() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qspaceritem.html + * $ONELINER$ + * Creates a new QSpacerItem object. + * $INHERITS$ + * QLayoutItem + * $SYNTAX$ + * QSpacerItem():new( ... ) + * QSpacerItem():from( pPtr_OR_oObj_of_type_QSpacerItem ) + * QSpacerItem():configure( pPtr_OR_oObj_of_type_QSpacerItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSpacerItem + * $METHODS$ + * :changeSize( nW, nH, nHPolicy, nVPolicy ) -> NIL + * :isEmpty() -> lBool + * + * $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/TQSpacerItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QSpacerItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * QLayoutItem * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt index c9fa42a32e..aa9e708406 100644 --- a/harbour/contrib/hbqt/doc/en/class_qspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSpinBox() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSpinBox.prg - * C++ wrappers : contrib/hbqt/qtgui/QSpinBox.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qspinbox.html + * $ONELINER$ + * Creates a new QSpinBox object. + * $INHERITS$ + * QAbstractSpinBox * $SYNTAX$ * QSpinBox():new( ... ) * QSpinBox():from( pPtr_OR_oObj_of_type_QSpinBox ) * QSpinBox():configure( pPtr_OR_oObj_of_type_QSpinBox ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSpinBox * $METHODS$ * :cleanText() -> cQString * :maximum() -> nInt @@ -33,33 +41,25 @@ * :value() -> nInt * :setValue( nVal ) -> NIL * - * $RETURNS$ - * An instance of the object of type QSpinBox - * $SEEALSO$ - * QAbstractSpinBox - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractSpinBox - * $ONELINER$ - * Creates a new QSpinBox 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/qspinbox.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/TQSpinBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QSpinBox.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractSpinBox * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt index 5c591eb364..e85ba2d3c7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSplashScreen() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSplashScreen.prg - * C++ wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsplashscreen.html + * $ONELINER$ + * Creates a new QSplashScreen object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QSplashScreen():new( ... ) * QSplashScreen():from( pPtr_OR_oObj_of_type_QSplashScreen ) * QSplashScreen():configure( pPtr_OR_oObj_of_type_QSplashScreen ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSplashScreen * $METHODS$ * :finish( pMainWin ) -> NIL * :pixmap() -> pQPixmap @@ -25,33 +33,25 @@ * :clearMessage() -> NIL * :showMessage( cMessage, nAlignment, pColor ) -> NIL * - * $RETURNS$ - * An instance of the object of type QSplashScreen - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QSplashScreen 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/qsplashscreen.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/TQSplashScreen.prg + * C++ wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsplitter.txt b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt index 43955c5959..57c8ff8777 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsplitter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSplitter() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSplitter.prg - * C++ wrappers : contrib/hbqt/qtgui/QSplitter.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsplitter.html + * $ONELINER$ + * Creates a new QSplitter object. + * $INHERITS$ + * QFrame * $SYNTAX$ * QSplitter():new( ... ) * QSplitter():from( pPtr_OR_oObj_of_type_QSplitter ) * QSplitter():configure( pPtr_OR_oObj_of_type_QSplitter ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSplitter * $METHODS$ * :addWidget( pWidget ) -> NIL * :childrenCollapsible() -> lBool @@ -40,33 +48,25 @@ * :sizes() -> pQList * :widget( nIndex ) -> pQWidget * - * $RETURNS$ - * An instance of the object of type QSplitter - * $SEEALSO$ - * QFrame - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QFrame - * $ONELINER$ - * Creates a new QSplitter 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/qsplitter.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/TQSplitter.prg + * C++ wrappers : contrib/hbqt/qtgui/QSplitter.cpp + * Library : hbqtgui + * $SEEALSO$ + * QFrame * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt index ed7824e58a..59fda4009c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStackedWidget() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStackedWidget.prg - * C++ wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstackedwidget.html + * $ONELINER$ + * Creates a new QStackedWidget object. + * $INHERITS$ + * QFrame * $SYNTAX$ * QStackedWidget():new( ... ) * QStackedWidget():from( pPtr_OR_oObj_of_type_QStackedWidget ) * QStackedWidget():configure( pPtr_OR_oObj_of_type_QStackedWidget ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStackedWidget * $METHODS$ * :addWidget( pWidget ) -> nInt * :count() -> nInt @@ -29,33 +37,25 @@ * :setCurrentIndex( nIndex ) -> NIL * :setCurrentWidget( pWidget ) -> NIL * - * $RETURNS$ - * An instance of the object of type QStackedWidget - * $SEEALSO$ - * QFrame - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QFrame - * $ONELINER$ - * Creates a new QStackedWidget 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/qstackedwidget.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/TQStackedWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp + * Library : hbqtgui + * $SEEALSO$ + * QFrame * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt index 8dc96266a7..8b5fbfb3d5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStandardItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStandardItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QStandardItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstandarditem.html + * $ONELINER$ + * Creates a new QStandardItem object. + * $INHERITS$ + * * $SYNTAX$ * QStandardItem():new( ... ) * QStandardItem():from( pPtr_OR_oObj_of_type_QStandardItem ) * QStandardItem():configure( pPtr_OR_oObj_of_type_QStandardItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStandardItem * $METHODS$ * :accessibleDescription() -> cQString * :accessibleText() -> cQString @@ -88,33 +96,25 @@ * :whatsThis() -> cQString * :write( pOut ) -> NIL * - * $RETURNS$ - * An instance of the object of type QStandardItem - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QStandardItem 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/qstandarditem.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/TQStandardItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QStandardItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt index 64d2af703f..724bf774b2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStandardItemModel() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStandardItemModel.prg - * C++ wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstandarditemmodel.html + * $ONELINER$ + * Creates a new QStandardItemModel object. + * $INHERITS$ + * QAbstractItemModeL * $SYNTAX$ * QStandardItemModel():new( ... ) * QStandardItemModel():from( pPtr_OR_oObj_of_type_QStandardItemModel ) * QStandardItemModel():configure( pPtr_OR_oObj_of_type_QStandardItemModel ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStandardItemModel * $METHODS$ * :appendRow( pItem ) -> NIL * :clear() -> NIL @@ -47,33 +55,25 @@ * :takeVerticalHeaderItem( nRow ) -> pQStandardItem * :verticalHeaderItem( nRow ) -> pQStandardItem * - * $RETURNS$ - * An instance of the object of type QStandardItemModel - * $SEEALSO$ - * QAbstractItemModeL - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractItemModeL - * $ONELINER$ - * Creates a new QStandardItemModel 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/qstandarditemmodel.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/TQStandardItemModel.prg + * C++ wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractItemModeL * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt index 0eebab9239..e9a17659a9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStatusBar() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStatusBar.prg - * C++ wrappers : contrib/hbqt/qtgui/QStatusBar.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstatusbar.html + * $ONELINER$ + * Creates a new QStatusBar object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QStatusBar():new( ... ) * QStatusBar():from( pPtr_OR_oObj_of_type_QStatusBar ) * QStatusBar():configure( pPtr_OR_oObj_of_type_QStatusBar ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStatusBar * $METHODS$ * :addPermanentWidget( pWidget, nStretch ) -> NIL * :addWidget( pWidget, nStretch ) -> NIL @@ -29,33 +37,25 @@ * :clearMessage() -> NIL * :showMessage( cMessage, nTimeout ) -> NIL * - * $RETURNS$ - * An instance of the object of type QStatusBar - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QStatusBar 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/qstatusbar.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/TQStatusBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QStatusBar.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstringlist.txt b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt index 00cd591b08..f4b898de7a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstringlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStringList() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQStringList.prg - * C++ wrappers : contrib/hbqt/qtcore/QStringList.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstringlist.html + * $ONELINER$ + * Creates a new QStringList object. + * $INHERITS$ + * QList * $SYNTAX$ * QStringList():new( ... ) * QStringList():from( pPtr_OR_oObj_of_type_QStringList ) * QStringList():configure( pPtr_OR_oObj_of_type_QStringList ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStringList * $METHODS$ * :append( cValue ) -> NIL * :indexOf( cValue, nFrom ) -> nInt @@ -53,33 +61,25 @@ * :value( nI ) -> cQString * :value_1( nI, cDefaultValue ) -> cQString * - * $RETURNS$ - * An instance of the object of type QStringList - * $SEEALSO$ - * QList - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QList - * $ONELINER$ - * Creates a new QStringList 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/qstringlist.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/TQStringList.prg + * C++ wrappers : contrib/hbqt/qtcore/QStringList.cpp + * Library : hbqtcore + * $SEEALSO$ + * QList * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt index 53de5cd17d..1014d49768 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStringListModel() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStringListModel.prg - * C++ wrappers : contrib/hbqt/qtgui/QStringListModel.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstringlistmodel.html + * $ONELINER$ + * Creates a new QStringListModel object. + * $INHERITS$ + * QAbstractListModel * $SYNTAX$ * QStringListModel():new( ... ) * QStringListModel():from( pPtr_OR_oObj_of_type_QStringListModel ) * QStringListModel():configure( pPtr_OR_oObj_of_type_QStringListModel ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStringListModel * $METHODS$ * :data( pIndex, nRole ) -> pQVariant * :flags( pIndex ) -> nQt::ItemFlags @@ -27,33 +35,25 @@ * :setStringList( pStrings ) -> NIL * :stringList() -> pQStringList * - * $RETURNS$ - * An instance of the object of type QStringListModel - * $SEEALSO$ - * QAbstractListModel - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractListModel - * $ONELINER$ - * Creates a new QStringListModel 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/qstringlistmodel.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/TQStringListModel.prg + * C++ wrappers : contrib/hbqt/qtgui/QStringListModel.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractListModel * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyle.txt b/harbour/contrib/hbqt/doc/en/class_qstyle.txt index cfe99be6de..6a0cb649e7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyle.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyle.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyle() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyle.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyle.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyle.html + * $ONELINER$ + * Creates a new QStyle object. + * $INHERITS$ + * QObject * $SYNTAX$ * QStyle():new( ... ) * QStyle():from( pPtr_OR_oObj_of_type_QStyle ) * QStyle():configure( pPtr_OR_oObj_of_type_QStyle ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyle * $METHODS$ * :combinedLayoutSpacing( nControls1, nControls2, nOrientation, pOption, pWidget ) -> nInt * :drawComplexControl( nControl, pOption, pPainter, pWidget ) -> NIL @@ -48,33 +56,25 @@ * :visualPos( nDirection, pBoundingRectangle, pLogicalPosition ) -> pQPoint * :visualRect( nDirection, pBoundingRectangle, pLogicalRectangle ) -> pQRect * - * $RETURNS$ - * An instance of the object of type QStyle - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QStyle 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/qstyle.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/TQStyle.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyle.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt index 71107cbb9d..7c35c512c4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyledItemDelegate() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyledItemDelegate.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleditemdelegate.html + * $ONELINER$ + * Creates a new QStyledItemDelegate object. + * $INHERITS$ + * * $SYNTAX$ * QStyledItemDelegate():new( ... ) * QStyledItemDelegate():from( pPtr_OR_oObj_of_type_QStyledItemDelegate ) * QStyledItemDelegate():configure( pPtr_OR_oObj_of_type_QStyledItemDelegate ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyledItemDelegate * $METHODS$ * :createEditor( pParent, pOption, pIndex ) -> pQWidget * :displayText( pValue, pLocale ) -> cQString @@ -26,33 +34,25 @@ * :sizeHint( pOption, pIndex ) -> pQSize * :updateEditorGeometry( pEditor, pOption, pIndex ) -> NIL * - * $RETURNS$ - * An instance of the object of type QStyledItemDelegate - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QStyledItemDelegate 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/qstyleditemdelegate.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/TQStyledItemDelegate.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt index d35afb9116..869e407781 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QStyleFactory() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleFactory.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleFactory.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QStyleFactory():new( ... ) - * QStyleFactory():from( pPtr_OR_oObj_of_type_QStyleFactory ) - * QStyleFactory():configure( pPtr_OR_oObj_of_type_QStyleFactory ) - * $METHODS$ - * :create( cKey ) -> pQStyle - * :keys() -> pQStringList - * - * $RETURNS$ - * An instance of the object of type QStyleFactory - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QStyleFactory object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QStyleFactory() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qstylefactory.html + * $ONELINER$ + * Creates a new QStyleFactory object. + * $INHERITS$ + * + * $SYNTAX$ + * QStyleFactory():new( ... ) + * QStyleFactory():from( pPtr_OR_oObj_of_type_QStyleFactory ) + * QStyleFactory():configure( pPtr_OR_oObj_of_type_QStyleFactory ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleFactory + * $METHODS$ + * :create( cKey ) -> pQStyle + * :keys() -> pQStringList + * + * $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/TQStyleFactory.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleFactory.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt index 705390f329..a1b1482d0d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOption() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOption.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOption.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoption.html + * $ONELINER$ + * Creates a new QStyleOption object. + * $INHERITS$ + * * $SYNTAX$ * QStyleOption():new( ... ) * QStyleOption():from( pPtr_OR_oObj_of_type_QStyleOption ) * QStyleOption():configure( pPtr_OR_oObj_of_type_QStyleOption ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOption * $METHODS$ * :initFrom( pWidget ) -> NIL * :direction() -> nQt::LayoutDirection @@ -27,33 +35,25 @@ * :type() -> nInt * :version() -> nInt * - * $RETURNS$ - * An instance of the object of type QStyleOption - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QStyleOption 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/qstyleoption.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/TQStyleOption.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOption.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt index 37657351d6..ceb76478a5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionButton() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionButton.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionbutton.html + * $ONELINER$ + * Creates a new QStyleOptionButton object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionButton():new( ... ) * QStyleOptionButton():from( pPtr_OR_oObj_of_type_QStyleOptionButton ) * QStyleOptionButton():configure( pPtr_OR_oObj_of_type_QStyleOptionButton ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionButton * $METHODS$ * :features() -> nButtonFeatures * :icon() -> pQIcon * :iconSize() -> pQSize * :text() -> cQString * - * $RETURNS$ - * An instance of the object of type QStyleOptionButton - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionButton 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/qstyleoptionbutton.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/TQStyleOptionButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt index 960168274a..5eb3df5423 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionComboBox() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionComboBox.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptioncombobox.html + * $ONELINER$ + * Creates a new QStyleOptionComboBox object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionComboBox():new( ... ) * QStyleOptionComboBox():from( pPtr_OR_oObj_of_type_QStyleOptionComboBox ) * QStyleOptionComboBox():configure( pPtr_OR_oObj_of_type_QStyleOptionComboBox ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionComboBox * $METHODS$ * :currentIcon() -> pQIcon * :currentText() -> cQString @@ -25,33 +33,25 @@ * :iconSize() -> pQSize * :popupRect() -> pQRect * - * $RETURNS$ - * An instance of the object of type QStyleOptionComboBox - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionComboBox 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/qstyleoptioncombobox.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/TQStyleOptionComboBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt index cb73247fae..a1f74523b5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QStyleOptionComplex() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionComplex.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComplex.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QStyleOptionComplex():new( ... ) - * QStyleOptionComplex():from( pPtr_OR_oObj_of_type_QStyleOptionComplex ) - * QStyleOptionComplex():configure( pPtr_OR_oObj_of_type_QStyleOptionComplex ) - * $METHODS$ - * :activeSubControls() -> nQStyle::SubControls - * :subControls() -> nQStyle::SubControls - * - * $RETURNS$ - * An instance of the object of type QStyleOptionComplex - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionComplex object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QStyleOptionComplex() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qstyleoptioncomplex.html + * $ONELINER$ + * Creates a new QStyleOptionComplex object. + * $INHERITS$ + * QStyleOption + * $SYNTAX$ + * QStyleOptionComplex():new( ... ) + * QStyleOptionComplex():from( pPtr_OR_oObj_of_type_QStyleOptionComplex ) + * QStyleOptionComplex():configure( pPtr_OR_oObj_of_type_QStyleOptionComplex ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionComplex + * $METHODS$ + * :activeSubControls() -> nQStyle::SubControls + * :subControls() -> nQStyle::SubControls + * + * $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/TQStyleOptionComplex.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComplex.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt index e96ba17f90..a39f542014 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionDockWidget() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiondockwidget.html + * $ONELINER$ + * Creates a new QStyleOptionDockWidget object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionDockWidget():new( ... ) * QStyleOptionDockWidget():from( pPtr_OR_oObj_of_type_QStyleOptionDockWidget ) * QStyleOptionDockWidget():configure( pPtr_OR_oObj_of_type_QStyleOptionDockWidget ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionDockWidget * $METHODS$ * :closable() -> lBool * :floatable() -> lBool * :movable() -> lBool * :title() -> cQString * - * $RETURNS$ - * An instance of the object of type QStyleOptionDockWidget - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionDockWidget 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/qstyleoptiondockwidget.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/TQStyleOptionDockWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt index 80f58b841d..1d70738709 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt @@ -3,50 +3,50 @@ */ /* $DOC$ - * $NAME$ - * QStyleOptionFocusRect() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QStyleOptionFocusRect():new( ... ) - * QStyleOptionFocusRect():from( pPtr_OR_oObj_of_type_QStyleOptionFocusRect ) - * QStyleOptionFocusRect():configure( pPtr_OR_oObj_of_type_QStyleOptionFocusRect ) - * $METHODS$ - * :backgroundColor() -> pQColor - * - * $RETURNS$ - * An instance of the object of type QStyleOptionFocusRect - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionFocusRect object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QStyleOptionFocusRect() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qstyleoptionfocusrect.html + * $ONELINER$ + * Creates a new QStyleOptionFocusRect object. + * $INHERITS$ + * QStyleOption + * $SYNTAX$ + * QStyleOptionFocusRect():new( ... ) + * QStyleOptionFocusRect():from( pPtr_OR_oObj_of_type_QStyleOptionFocusRect ) + * QStyleOptionFocusRect():configure( pPtr_OR_oObj_of_type_QStyleOptionFocusRect ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionFocusRect + * $METHODS$ + * :backgroundColor() -> pQColor + * + * $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/TQStyleOptionFocusRect.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt index 7ebe1ab515..fb997acefc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QStyleOptionFrame() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionFrame.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFrame.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QStyleOptionFrame():new( ... ) - * QStyleOptionFrame():from( pPtr_OR_oObj_of_type_QStyleOptionFrame ) - * QStyleOptionFrame():configure( pPtr_OR_oObj_of_type_QStyleOptionFrame ) - * $METHODS$ - * :lineWidth() -> nInt - * :midLineWidth() -> nInt - * - * $RETURNS$ - * An instance of the object of type QStyleOptionFrame - * $SEEALSO$ - * qStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * qStyleOption - * $ONELINER$ - * Creates a new QStyleOptionFrame object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QStyleOptionFrame() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qstyleoptionframe.html + * $ONELINER$ + * Creates a new QStyleOptionFrame object. + * $INHERITS$ + * qStyleOption + * $SYNTAX$ + * QStyleOptionFrame():new( ... ) + * QStyleOptionFrame():from( pPtr_OR_oObj_of_type_QStyleOptionFrame ) + * QStyleOptionFrame():configure( pPtr_OR_oObj_of_type_QStyleOptionFrame ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionFrame + * $METHODS$ + * :lineWidth() -> nInt + * :midLineWidth() -> 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/TQStyleOptionFrame.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFrame.cpp + * Library : hbqtgui + * $SEEALSO$ + * qStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt index 9e598a34f0..0eda9f799e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionGroupBox() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiongroupbox.html + * $ONELINER$ + * Creates a new QStyleOptionGroupBox object. + * $INHERITS$ + * QStyleOptionComplex * $SYNTAX$ * QStyleOptionGroupBox():new( ... ) * QStyleOptionGroupBox():from( pPtr_OR_oObj_of_type_QStyleOptionGroupBox ) * QStyleOptionGroupBox():configure( pPtr_OR_oObj_of_type_QStyleOptionGroupBox ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionGroupBox * $METHODS$ * :features() -> nQStyleOptionFrameV2::FrameFeatures * :lineWidth() -> nInt @@ -25,33 +33,25 @@ * :textAlignment() -> nQt::Alignment * :textColor() -> pQColor * - * $RETURNS$ - * An instance of the object of type QStyleOptionGroupBox - * $SEEALSO$ - * QStyleOptionComplex - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOptionComplex - * $ONELINER$ - * Creates a new QStyleOptionGroupBox 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/qstyleoptiongroupbox.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/TQStyleOptionGroupBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOptionComplex * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt index 2b55e3bf56..4c01624d1c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionHeader() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionHeader.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionheader.html + * $ONELINER$ + * Creates a new QStyleOptionHeader object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionHeader():new( ... ) * QStyleOptionHeader():from( pPtr_OR_oObj_of_type_QStyleOptionHeader ) * QStyleOptionHeader():configure( pPtr_OR_oObj_of_type_QStyleOptionHeader ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionHeader * $METHODS$ * :icon() -> pQIcon * :iconAlignment() -> nQt::Alignment @@ -28,33 +36,25 @@ * :text() -> cQString * :textAlignment() -> nQt::Alignment * - * $RETURNS$ - * An instance of the object of type QStyleOptionHeader - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionHeader 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/qstyleoptionheader.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/TQStyleOptionHeader.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt index 57867fcb42..ec4fb22e7e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionMenuItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionmenuitem.html + * $ONELINER$ + * Creates a new QStyleOptionMenuItem object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionMenuItem():new( ... ) * QStyleOptionMenuItem():from( pPtr_OR_oObj_of_type_QStyleOptionMenuItem ) * QStyleOptionMenuItem():configure( pPtr_OR_oObj_of_type_QStyleOptionMenuItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionMenuItem * $METHODS$ * :checkType() -> nCheckType * :checked() -> lBool @@ -29,33 +37,25 @@ * :tabWidth() -> nInt * :text() -> cQString * - * $RETURNS$ - * An instance of the object of type QStyleOptionMenuItem - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionMenuItem 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/qstyleoptionmenuitem.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/TQStyleOptionMenuItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt index e19f2a88b7..b92df05853 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionProgressBar() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionprogressbar.html + * $ONELINER$ + * Creates a new QStyleOptionProgressBar object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionProgressBar():new( ... ) * QStyleOptionProgressBar():from( pPtr_OR_oObj_of_type_QStyleOptionProgressBar ) * QStyleOptionProgressBar():configure( pPtr_OR_oObj_of_type_QStyleOptionProgressBar ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionProgressBar * $METHODS$ * :maximum() -> nInt * :minimum() -> nInt @@ -25,33 +33,25 @@ * :textAlignment() -> nQt::Alignment * :textVisible() -> lBool * - * $RETURNS$ - * An instance of the object of type QStyleOptionProgressBar - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionProgressBar 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/qstyleoptionprogressbar.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/TQStyleOptionProgressBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt index 14f8c6c6ac..e8666733ab 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt @@ -3,50 +3,50 @@ */ /* $DOC$ - * $NAME$ - * QStyleOptionSizeGrip() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QStyleOptionSizeGrip():new( ... ) - * QStyleOptionSizeGrip():from( pPtr_OR_oObj_of_type_QStyleOptionSizeGrip ) - * QStyleOptionSizeGrip():configure( pPtr_OR_oObj_of_type_QStyleOptionSizeGrip ) - * $METHODS$ - * :corner() -> nQt::Corner - * - * $RETURNS$ - * An instance of the object of type QStyleOptionSizeGrip - * $SEEALSO$ - * QStyleOptionComplex - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOptionComplex - * $ONELINER$ - * Creates a new QStyleOptionSizeGrip object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QStyleOptionSizeGrip() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qstyleoptionsizegrip.html + * $ONELINER$ + * Creates a new QStyleOptionSizeGrip object. + * $INHERITS$ + * QStyleOptionComplex + * $SYNTAX$ + * QStyleOptionSizeGrip():new( ... ) + * QStyleOptionSizeGrip():from( pPtr_OR_oObj_of_type_QStyleOptionSizeGrip ) + * QStyleOptionSizeGrip():configure( pPtr_OR_oObj_of_type_QStyleOptionSizeGrip ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionSizeGrip + * $METHODS$ + * :corner() -> nQt::Corner + * + * $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/TQStyleOptionSizeGrip.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOptionComplex * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt index 7af742d9e3..36bac23dec 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionSlider() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionSlider.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionslider.html + * $ONELINER$ + * Creates a new QStyleOptionSlider object. + * $INHERITS$ + * QStyleOptionComplex * $SYNTAX$ * QStyleOptionSlider():new( ... ) * QStyleOptionSlider():from( pPtr_OR_oObj_of_type_QStyleOptionSlider ) * QStyleOptionSlider():configure( pPtr_OR_oObj_of_type_QStyleOptionSlider ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionSlider * $METHODS$ * :dialWrapping() -> lBool * :maximum() -> nInt @@ -31,33 +39,25 @@ * :tickPosition() -> nQSlider::TickPosition * :upsideDown() -> lBool * - * $RETURNS$ - * An instance of the object of type QStyleOptionSlider - * $SEEALSO$ - * QStyleOptionComplex - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOptionComplex - * $ONELINER$ - * Creates a new QStyleOptionSlider 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/qstyleoptionslider.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/TQStyleOptionSlider.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOptionComplex * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt index dd4adc358c..3b290da51e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt @@ -3,52 +3,52 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionSpinBox() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionspinbox.html + * $ONELINER$ + * Creates a new QStyleOptionSpinBox object. + * $INHERITS$ + * QStyleOptionComplex * $SYNTAX$ * QStyleOptionSpinBox():new( ... ) * QStyleOptionSpinBox():from( pPtr_OR_oObj_of_type_QStyleOptionSpinBox ) * QStyleOptionSpinBox():configure( pPtr_OR_oObj_of_type_QStyleOptionSpinBox ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionSpinBox * $METHODS$ * :buttonSymbols() -> nQAbstractSpinBox::ButtonSymbols * :frame() -> lBool * :stepEnabled() -> nQAbstractSpinBox::StepEnabled * - * $RETURNS$ - * An instance of the object of type QStyleOptionSpinBox - * $SEEALSO$ - * QStyleOptionComplex - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOptionComplex - * $ONELINER$ - * Creates a new QStyleOptionSpinBox 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/qstyleoptionspinbox.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/TQStyleOptionSpinBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOptionComplex * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt index f2f62a05b9..3064cd6bd5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionTab() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionTab.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiontab.html + * $ONELINER$ + * Creates a new QStyleOptionTab object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionTab():new( ... ) * QStyleOptionTab():from( pPtr_OR_oObj_of_type_QStyleOptionTab ) * QStyleOptionTab():configure( pPtr_OR_oObj_of_type_QStyleOptionTab ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionTab * $METHODS$ * :cornerWidgets() -> nCornerWidgets * :icon() -> pQIcon @@ -26,33 +34,25 @@ * :shape() -> nQTabBar::Shape * :text() -> cQString * - * $RETURNS$ - * An instance of the object of type QStyleOptionTab - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionTab 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/qstyleoptiontab.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/TQStyleOptionTab.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt index 117962b117..51a73c06e5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt @@ -3,52 +3,52 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionTabBarBase() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiontabbarbase.html + * $ONELINER$ + * Creates a new QStyleOptionTabBarBase object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionTabBarBase():new( ... ) * QStyleOptionTabBarBase():from( pPtr_OR_oObj_of_type_QStyleOptionTabBarBase ) * QStyleOptionTabBarBase():configure( pPtr_OR_oObj_of_type_QStyleOptionTabBarBase ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionTabBarBase * $METHODS$ * :selectedTabRect() -> pQRect * :shape() -> nQTabBar::Shape * :tabBarRect() -> pQRect * - * $RETURNS$ - * An instance of the object of type QStyleOptionTabBarBase - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionTabBarBase 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/qstyleoptiontabbarbase.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/TQStyleOptionTabBarBase.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt index 93ca970046..765a2f750d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionTabWidgetFrame() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiontabwidgetframe.html + * $ONELINER$ + * Creates a new QStyleOptionTabWidgetFrame object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionTabWidgetFrame():new( ... ) * QStyleOptionTabWidgetFrame():from( pPtr_OR_oObj_of_type_QStyleOptionTabWidgetFrame ) * QStyleOptionTabWidgetFrame():configure( pPtr_OR_oObj_of_type_QStyleOptionTabWidgetFrame ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionTabWidgetFrame * $METHODS$ * :leftCornerWidgetSize() -> pQSize * :lineWidth() -> nInt @@ -25,33 +33,25 @@ * :shape() -> nQTabBar::Shape * :tabBarSize() -> pQSize * - * $RETURNS$ - * An instance of the object of type QStyleOptionTabWidgetFrame - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionTabWidgetFrame 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/qstyleoptiontabwidgetframe.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/TQStyleOptionTabWidgetFrame.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt index 10e8d56cfa..fc3eba8c98 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionTitleBar() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiontitlebar.html + * $ONELINER$ + * Creates a new QStyleOptionTitleBar object. + * $INHERITS$ + * QStyleOptionComplex * $SYNTAX$ * QStyleOptionTitleBar():new( ... ) * QStyleOptionTitleBar():from( pPtr_OR_oObj_of_type_QStyleOptionTitleBar ) * QStyleOptionTitleBar():configure( pPtr_OR_oObj_of_type_QStyleOptionTitleBar ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionTitleBar * $METHODS$ * :icon() -> pQIcon * :text() -> cQString * :titleBarFlags() -> nQt::WindowFlags * :titleBarState() -> nInt * - * $RETURNS$ - * An instance of the object of type QStyleOptionTitleBar - * $SEEALSO$ - * QStyleOptionComplex - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOptionComplex - * $ONELINER$ - * Creates a new QStyleOptionTitleBar 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/qstyleoptiontitlebar.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/TQStyleOptionTitleBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOptionComplex * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt index dfdbd62184..85d93d3205 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionToolBar() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionToolBar.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiontoolbar.html + * $ONELINER$ + * Creates a new QStyleOptionToolBar object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionToolBar():new( ... ) * QStyleOptionToolBar():from( pPtr_OR_oObj_of_type_QStyleOptionToolBar ) * QStyleOptionToolBar():configure( pPtr_OR_oObj_of_type_QStyleOptionToolBar ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionToolBar * $METHODS$ * :features() -> nToolBarFeatures * :lineWidth() -> nInt @@ -25,33 +33,25 @@ * :positionWithinLine() -> nToolBarPosition * :toolBarArea() -> nQt::ToolBarArea * - * $RETURNS$ - * An instance of the object of type QStyleOptionToolBar - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionToolBar 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/qstyleoptiontoolbar.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/TQStyleOptionToolBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt index 613d772596..39c09edb97 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QStyleOptionToolBox() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionToolBox.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBox.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QStyleOptionToolBox():new( ... ) - * QStyleOptionToolBox():from( pPtr_OR_oObj_of_type_QStyleOptionToolBox ) - * QStyleOptionToolBox():configure( pPtr_OR_oObj_of_type_QStyleOptionToolBox ) - * $METHODS$ - * :icon() -> pQIcon - * :text() -> cQString - * - * $RETURNS$ - * An instance of the object of type QStyleOptionToolBox - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionToolBox object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QStyleOptionToolBox() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qstyleoptiontoolbox.html + * $ONELINER$ + * Creates a new QStyleOptionToolBox object. + * $INHERITS$ + * QStyleOption + * $SYNTAX$ + * QStyleOptionToolBox():new( ... ) + * QStyleOptionToolBox():from( pPtr_OR_oObj_of_type_QStyleOptionToolBox ) + * QStyleOptionToolBox():configure( pPtr_OR_oObj_of_type_QStyleOptionToolBox ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionToolBox + * $METHODS$ + * :icon() -> pQIcon + * :text() -> cQString + * + * $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/TQStyleOptionToolBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBox.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt index a893778348..44960d612f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionToolButton() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionToolButton.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiontoolbutton.html + * $ONELINER$ + * Creates a new QStyleOptionToolButton object. + * $INHERITS$ + * QStyleOptionComplex * $SYNTAX$ * QStyleOptionToolButton():new( ... ) * QStyleOptionToolButton():from( pPtr_OR_oObj_of_type_QStyleOptionToolButton ) * QStyleOptionToolButton():configure( pPtr_OR_oObj_of_type_QStyleOptionToolButton ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionToolButton * $METHODS$ * :arrowType() -> nQt::ArrowType * :features() -> nToolButtonFeatures @@ -27,33 +35,25 @@ * :text() -> cQString * :toolButtonStyle() -> nQt::ToolButtonStyle * - * $RETURNS$ - * An instance of the object of type QStyleOptionToolButton - * $SEEALSO$ - * QStyleOptionComplex - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOptionComplex - * $ONELINER$ - * Creates a new QStyleOptionToolButton 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/qstyleoptiontoolbutton.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/TQStyleOptionToolButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOptionComplex * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt index dba0d8b2b8..75046f30a2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStyleOptionViewItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStyleOptionViewItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionviewitem.html + * $ONELINER$ + * Creates a new QStyleOptionViewItem object. + * $INHERITS$ + * QStyleOption * $SYNTAX$ * QStyleOptionViewItem():new( ... ) * QStyleOptionViewItem():from( pPtr_OR_oObj_of_type_QStyleOptionViewItem ) * QStyleOptionViewItem():configure( pPtr_OR_oObj_of_type_QStyleOptionViewItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStyleOptionViewItem * $METHODS$ * :decorationAlignment() -> nQt::Alignment * :decorationPosition() -> nPosition @@ -26,33 +34,25 @@ * :showDecorationSelected() -> lBool * :textElideMode() -> nQt::TextElideMode * - * $RETURNS$ - * An instance of the object of type QStyleOptionViewItem - * $SEEALSO$ - * QStyleOption - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QStyleOption - * $ONELINER$ - * Creates a new QStyleOptionViewItem 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/qstyleoptionviewitem.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/TQStyleOptionViewItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * QStyleOption * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt index 92cae2bee7..abcffe2b22 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QStylePainter() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQStylePainter.prg - * C++ wrappers : contrib/hbqt/qtgui/QStylePainter.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstylepainter.html + * $ONELINER$ + * Creates a new QStylePainter object. + * $INHERITS$ + * QPainter * $SYNTAX$ * QStylePainter():new( ... ) * QStylePainter():from( pPtr_OR_oObj_of_type_QStylePainter ) * QStylePainter():configure( pPtr_OR_oObj_of_type_QStylePainter ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QStylePainter * $METHODS$ * :begin( pWidget ) -> lBool * :begin_1( pPd, pWidget ) -> lBool @@ -27,33 +35,25 @@ * :drawPrimitive( nPe, pOption ) -> NIL * :style() -> pQStyle * - * $RETURNS$ - * An instance of the object of type QStylePainter - * $SEEALSO$ - * QPainter - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QPainter - * $ONELINER$ - * Creates a new QStylePainter 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/qstylepainter.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/TQStylePainter.prg + * C++ wrappers : contrib/hbqt/qtgui/QStylePainter.cpp + * Library : hbqtgui + * $SEEALSO$ + * QPainter * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt index 0639923c3b..9a871ef308 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt @@ -3,55 +3,55 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSyntaxHighlighter() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSyntaxHighlighter.prg - * C++ wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsyntaxhighlighter.html + * $ONELINER$ + * Creates a new QSyntaxHighlighter object. + * $INHERITS$ + * QObject * $SYNTAX$ * QSyntaxHighlighter():new( ... ) * QSyntaxHighlighter():from( pPtr_OR_oObj_of_type_QSyntaxHighlighter ) * QSyntaxHighlighter():configure( pPtr_OR_oObj_of_type_QSyntaxHighlighter ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSyntaxHighlighter * $METHODS$ * :document() -> pQTextDocument * :setDocument( pDoc ) -> NIL * :rehighlight() -> NIL * - * $RETURNS$ - * An instance of the object of type QSyntaxHighlighter - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oSynHiliter := HBQSyntaxHighlighter():new( pObject ) * oSynHiliter := HBQSyntaxHighlighter():new( "QTextDocument", pQTextDocument ) * oSynHiliter := HBQSyntaxHighlighter():new( "QTextEdit", pQTextEdit ) * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QSyntaxHighlighter 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/qsyntaxhighlighter.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSyntaxHighlighter.prg + * C++ wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt index 2cc2fb1ea7..611393d6e1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QSystemTrayIcon() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQSystemTrayIcon.prg - * C++ wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsystemtrayicon.html + * $ONELINER$ + * Creates a new QSystemTrayIcon object. + * $INHERITS$ + * QObject * $SYNTAX$ * QSystemTrayIcon():new( ... ) * QSystemTrayIcon():from( pPtr_OR_oObj_of_type_QSystemTrayIcon ) * QSystemTrayIcon():configure( pPtr_OR_oObj_of_type_QSystemTrayIcon ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QSystemTrayIcon * $METHODS$ * :contextMenu() -> pQMenu * :geometry() -> pQRect @@ -33,33 +41,25 @@ * :setVisible( lVisible ) -> NIL * :show() -> NIL * - * $RETURNS$ - * An instance of the object of type QSystemTrayIcon - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QSystemTrayIcon 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/qsystemtrayicon.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/TQSystemTrayIcon.prg + * C++ wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtabbar.txt b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt index fc034b4eea..ac47e6a4e1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtabbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTabBar() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTabBar.prg - * C++ wrappers : contrib/hbqt/qtgui/QTabBar.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtabbar.html + * $ONELINER$ + * Creates a new QTabBar object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QTabBar():new( ... ) * QTabBar():from( pPtr_OR_oObj_of_type_QTabBar ) * QTabBar():configure( pPtr_OR_oObj_of_type_QTabBar ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTabBar * $METHODS$ * :addTab( cText ) -> nInt * :count() -> nInt @@ -63,33 +71,25 @@ * :usesScrollButtons() -> lBool * :setCurrentIndex( nIndex ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTabBar - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QTabBar 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/qtabbar.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/TQTabBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QTabBar.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtableview.txt b/harbour/contrib/hbqt/doc/en/class_qtableview.txt index 7e99714f31..8e2cc78737 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtableview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtableview.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTableView() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTableView.prg - * C++ wrappers : contrib/hbqt/qtgui/QTableView.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtableview.html + * $ONELINER$ + * Creates a new QTableView object. + * $INHERITS$ + * QAbstractItemView * $SYNTAX$ * QTableView():new( ... ) * QTableView():from( pPtr_OR_oObj_of_type_QTableView ) * QTableView():configure( pPtr_OR_oObj_of_type_QTableView ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTableView * $METHODS$ * :clearSpans() -> NIL * :columnAt( nX ) -> nInt @@ -61,33 +69,25 @@ * :showColumn( nColumn ) -> NIL * :showRow( nRow ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTableView - * $SEEALSO$ - * QAbstractItemView - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractItemView - * $ONELINER$ - * Creates a new QTableView 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/qtableview.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/TQTableView.prg + * C++ wrappers : contrib/hbqt/qtgui/QTableView.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractItemView * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt index 2710c2665d..a37ebbf398 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTableWidget() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTableWidget.prg - * C++ wrappers : contrib/hbqt/qtgui/QTableWidget.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtablewidget.html + * $ONELINER$ + * Creates a new QTableWidget object. + * $INHERITS$ + * QTableView * $SYNTAX$ * QTableWidget():new( ... ) * QTableWidget():from( pPtr_OR_oObj_of_type_QTableWidget ) * QTableWidget():configure( pPtr_OR_oObj_of_type_QTableWidget ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTableWidget * $METHODS$ * :cellWidget( nRow, nColumn ) -> pQWidget * :closePersistentEditor( pItem ) -> NIL @@ -68,33 +76,25 @@ * :removeRow( nRow ) -> NIL * :scrollToItem( pItem, nHint ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTableWidget - * $SEEALSO$ - * QTableView - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTableView - * $ONELINER$ - * Creates a new QTableWidget 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/qtablewidget.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/TQTableWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QTableWidget.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTableView * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt index 4c94404423..3306398fd0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTableWidgetItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTableWidgetItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtablewidgetitem.html + * $ONELINER$ + * Creates a new QTableWidgetItem object. + * $INHERITS$ + * * $SYNTAX$ * QTableWidgetItem():new( ... ) * QTableWidgetItem():from( pPtr_OR_oObj_of_type_QTableWidgetItem ) * QTableWidgetItem():configure( pPtr_OR_oObj_of_type_QTableWidgetItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTableWidgetItem * $METHODS$ * :background() -> pQBrush * :checkState() -> nQt::CheckState @@ -53,33 +61,25 @@ * :whatsThis() -> cQString * :write( pOut ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTableWidgetItem - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTableWidgetItem 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/qtablewidgetitem.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/TQTableWidgetItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt index b78e8c40c0..1eabc1b3b0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTableWidgetSelectionRange() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg - * C++ wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtablewidgetselectionrange.html + * $ONELINER$ + * Creates a new QTableWidgetSelectionRange object. + * $INHERITS$ + * * $SYNTAX$ * QTableWidgetSelectionRange():new( ... ) * QTableWidgetSelectionRange():from( pPtr_OR_oObj_of_type_QTableWidgetSelectionRange ) * QTableWidgetSelectionRange():configure( pPtr_OR_oObj_of_type_QTableWidgetSelectionRange ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTableWidgetSelectionRange * $METHODS$ * :bottomRow() -> nInt * :columnCount() -> nInt @@ -25,33 +33,25 @@ * :rowCount() -> nInt * :topRow() -> nInt * - * $RETURNS$ - * An instance of the object of type QTableWidgetSelectionRange - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTableWidgetSelectionRange 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/qtablewidgetselectionrange.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/TQTableWidgetSelectionRange.prg + * C++ wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt index f792a80ff5..e81ebe32fd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTabWidget() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTabWidget.prg - * C++ wrappers : contrib/hbqt/qtgui/QTabWidget.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtabwidget.html + * $ONELINER$ + * Creates a new QTabWidget object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QTabWidget():new( ... ) * QTabWidget():from( pPtr_OR_oObj_of_type_QTabWidget ) * QTabWidget():configure( pPtr_OR_oObj_of_type_QTabWidget ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTabWidget * $METHODS$ * :addTab( pPage, cLabel ) -> nInt * :addTab_1( pPage, cIcon, cLabel ) -> nInt @@ -60,33 +68,25 @@ * :setCurrentIndex( nIndex ) -> NIL * :setCurrentWidget( pWidget ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTabWidget - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QTabWidget 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/qtabwidget.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/TQTabWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QTabWidget.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextblock.txt b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt index b7842227c8..5f5a98d29f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextblock.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextBlock() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextBlock.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextBlock.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextblock.html + * $ONELINER$ + * Creates a new QTextBlock object. + * $INHERITS$ + * * $SYNTAX$ * QTextBlock():new( ... ) * QTextBlock():from( pPtr_OR_oObj_of_type_QTextBlock ) * QTextBlock():configure( pPtr_OR_oObj_of_type_QTextBlock ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextBlock * $METHODS$ * :blockFormat() -> Format * :blockFormatIndex() -> nInt @@ -44,33 +52,25 @@ * :userData() -> pHBQTextBlockUserData * :userState() -> nInt * - * $RETURNS$ - * An instance of the object of type QTextBlock - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextBlock 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/qtextblock.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/TQTextBlock.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextBlock.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt index 785839473a..80e283e227 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextBlockFormat() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextBlockFormat.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextblockformat.html + * $ONELINER$ + * Creates a new QTextBlockFormat object. + * $INHERITS$ + * QTextFormat * $SYNTAX$ * QTextBlockFormat():new( ... ) * QTextBlockFormat():from( pPtr_OR_oObj_of_type_QTextBlockFormat ) * QTextBlockFormat():configure( pPtr_OR_oObj_of_type_QTextBlockFormat ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextBlockFormat * $METHODS$ * :alignment() -> nQt::Alignment * :bottomMargin() -> nQreal @@ -38,33 +46,25 @@ * :textIndent() -> nQreal * :topMargin() -> nQreal * - * $RETURNS$ - * An instance of the object of type QTextBlockFormat - * $SEEALSO$ - * QTextFormat - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextFormat - * $ONELINER$ - * Creates a new QTextBlockFormat 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/qtextblockformat.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/TQTextBlockFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextFormat * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt index 038531586a..1a2ff20887 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextBoundaryFinder() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQTextBoundaryFinder.prg - * C++ wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextboundaryfinder.html + * $ONELINER$ + * Creates a new QTextBoundaryFinder object. + * $INHERITS$ + * * $SYNTAX$ * QTextBoundaryFinder():new( ... ) * QTextBoundaryFinder():from( pPtr_OR_oObj_of_type_QTextBoundaryFinder ) * QTextBoundaryFinder():configure( pPtr_OR_oObj_of_type_QTextBoundaryFinder ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextBoundaryFinder * $METHODS$ * :boundaryReasons() -> nBoundaryReasons * :isAtBoundary() -> lBool @@ -30,33 +38,25 @@ * :toStart() -> NIL * :type() -> nBoundaryType * - * $RETURNS$ - * An instance of the object of type QTextBoundaryFinder - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextBoundaryFinder 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/qtextboundaryfinder.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/TQTextBoundaryFinder.prg + * C++ wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt index ef2e3b9a52..dfaea96e7b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextBrowser() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextBrowser.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextbrowser.html + * $ONELINER$ + * Creates a new QTextBrowser object. + * $INHERITS$ + * QTextEdit * $SYNTAX$ * QTextBrowser():new( ... ) * QTextBrowser():from( pPtr_OR_oObj_of_type_QTextBrowser ) * QTextBrowser():configure( pPtr_OR_oObj_of_type_QTextBrowser ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextBrowser * $METHODS$ * :backwardHistoryCount() -> nInt * :clearHistory() -> NIL @@ -39,33 +47,25 @@ * :reload() -> NIL * :setSource( pName ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTextBrowser - * $SEEALSO$ - * QTextEdit - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextEdit - * $ONELINER$ - * Creates a new QTextBrowser 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/qtextbrowser.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/TQTextBrowser.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextEdit * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt index f8ef5cb87a..88eec4aa88 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextCharFormat() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextCharFormat.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextcharformat.html + * $ONELINER$ + * Creates a new QTextCharFormat object. + * $INHERITS$ + * QTextFormat * $SYNTAX$ * QTextCharFormat():new( ... ) * QTextCharFormat():from( pPtr_OR_oObj_of_type_QTextCharFormat ) * QTextCharFormat():configure( pPtr_OR_oObj_of_type_QTextCharFormat ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextCharFormat * $METHODS$ * :anchorHref() -> cQString * :anchorNames() -> pQStringList @@ -66,33 +74,25 @@ * :underlineStyle() -> nUnderlineStyle * :verticalAlignment() -> nVerticalAlignment * - * $RETURNS$ - * An instance of the object of type QTextCharFormat - * $SEEALSO$ - * QTextFormat - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextFormat - * $ONELINER$ - * Creates a new QTextCharFormat 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/qtextcharformat.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/TQTextCharFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextFormat * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt index cf8b647c8b..e8eecdd31f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextCodec() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQTextCodec.prg - * C++ wrappers : contrib/hbqt/qtcore/QTextCodec.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextcodec.html + * $ONELINER$ + * Creates a new QTextCodec object. + * $INHERITS$ + * * $SYNTAX$ * QTextCodec():new( ... ) * QTextCodec():from( pPtr_OR_oObj_of_type_QTextCodec ) * QTextCodec():configure( pPtr_OR_oObj_of_type_QTextCodec ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextCodec * $METHODS$ * :aliases() -> pQList * :canEncode( pCh ) -> lBool @@ -32,33 +40,25 @@ * :setCodecForLocale( pC ) -> NIL * :setCodecForTr( pC ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTextCodec - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextCodec 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/qtextcodec.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/TQTextCodec.prg + * C++ wrappers : contrib/hbqt/qtcore/QTextCodec.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt index e84115006d..b437488cea 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextCursor() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextCursor.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextCursor.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextcursor.html + * $ONELINER$ + * Creates a new QTextCursor object. + * $INHERITS$ + * * $SYNTAX$ * QTextCursor():new( ... ) * QTextCursor():from( pPtr_OR_oObj_of_type_QTextCursor ) * QTextCursor():configure( pPtr_OR_oObj_of_type_QTextCursor ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextCursor * $METHODS$ * :anchor() -> nInt * :atBlockEnd() -> lBool @@ -77,14 +85,8 @@ * :setVisualNavigation( lB ) -> NIL * :visualNavigation() -> lBool * - * $RETURNS$ - * An instance of the object of type QTextCursor - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt + * $DESCRIPTION$ + * * $EXAMPLES$ * oTextCursor := QTextCursor():new() * oTextCursor := QTextCursor():new( pQTextCursor ) @@ -92,23 +94,21 @@ * oTextCursor := QTextCursor():new( "QTextBlock" , pQTextBlock ) * oTextCursor := QTextCursor():new( "QTextFrame" , pQTextFrame ) * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextCursor 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/qtextcursor.html + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $VERSION$ + * 4.5 or upper + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextCursor.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextCursor.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt index 08a2065957..aefef85ba4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt @@ -3,50 +3,50 @@ */ /* $DOC$ - * $NAME$ - * QTextDecoder() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQTextDecoder.prg - * C++ wrappers : contrib/hbqt/qtcore/QTextDecoder.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QTextDecoder():new( ... ) - * QTextDecoder():from( pPtr_OR_oObj_of_type_QTextDecoder ) - * QTextDecoder():configure( pPtr_OR_oObj_of_type_QTextDecoder ) - * $METHODS$ - * :toUnicode( pChars, nLen ) -> cQString - * - * $RETURNS$ - * An instance of the object of type QTextDecoder - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextDecoder object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QTextDecoder() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qtextdecoder.html + * $ONELINER$ + * Creates a new QTextDecoder object. + * $INHERITS$ + * + * $SYNTAX$ + * QTextDecoder():new( ... ) + * QTextDecoder():from( pPtr_OR_oObj_of_type_QTextDecoder ) + * QTextDecoder():configure( pPtr_OR_oObj_of_type_QTextDecoder ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextDecoder + * $METHODS$ + * :toUnicode( pChars, nLen ) -> cQString + * + * $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/TQTextDecoder.prg + * C++ wrappers : contrib/hbqt/qtcore/QTextDecoder.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt index 6550bb9404..62b4461a82 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextDocument() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextDocument.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextDocument.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextdocument.html + * $ONELINER$ + * Creates a new QTextDocument object. + * $INHERITS$ + * QObject * $SYNTAX$ * QTextDocument():new( ... ) * QTextDocument():from( pPtr_OR_oObj_of_type_QTextDocument ) * QTextDocument():configure( pPtr_OR_oObj_of_type_QTextDocument ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextDocument * $METHODS$ * :addResource( nType, pName, pResource ) -> NIL * :adjustSize() -> NIL @@ -85,33 +93,25 @@ * :setModified( lM ) -> NIL * :undo_1() -> NIL * - * $RETURNS$ - * An instance of the object of type QTextDocument - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QTextDocument 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/qtextdocument.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/TQTextDocument.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextDocument.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt index 8ec5d203ce..2579d6c964 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextDocumentFragment() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextDocumentFragment.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextdocumentfragment.html + * $ONELINER$ + * Creates a new QTextDocumentFragment object. + * $INHERITS$ + * * $SYNTAX$ * QTextDocumentFragment():new( ... ) * QTextDocumentFragment():from( pPtr_OR_oObj_of_type_QTextDocumentFragment ) * QTextDocumentFragment():configure( pPtr_OR_oObj_of_type_QTextDocumentFragment ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextDocumentFragment * $METHODS$ * :isEmpty() -> lBool * :toHtml( pEncoding ) -> cQString * :toHtml_1() -> cQString * :toPlainText() -> cQString * - * $RETURNS$ - * An instance of the object of type QTextDocumentFragment - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextDocumentFragment 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/qtextdocumentfragment.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/TQTextDocumentFragment.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt index dd16540de8..0fe2514fdc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextDocumentWriter() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextDocumentWriter.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextdocumentwriter.html + * $ONELINER$ + * Creates a new QTextDocumentWriter object. + * $INHERITS$ + * * $SYNTAX$ * QTextDocumentWriter():new( ... ) * QTextDocumentWriter():from( pPtr_OR_oObj_of_type_QTextDocumentWriter ) * QTextDocumentWriter():configure( pPtr_OR_oObj_of_type_QTextDocumentWriter ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextDocumentWriter * $METHODS$ * :codec() -> pQTextCodec * :device() -> pQIODevice @@ -29,33 +37,25 @@ * :write( pDocument ) -> lBool * :write_1( pFragment ) -> lBool * - * $RETURNS$ - * An instance of the object of type QTextDocumentWriter - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextDocumentWriter 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/qtextdocumentwriter.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/TQTextDocumentWriter.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextedit.txt b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt index 25c1351ded..1ca5d16de3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextEdit() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextEdit.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextEdit.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextedit.html + * $ONELINER$ + * Creates a new QTextEdit object. + * $INHERITS$ + * QAbstractScrollArea * $SYNTAX$ * QTextEdit():new( ... ) * QTextEdit():from( pPtr_OR_oObj_of_type_QTextEdit ) * QTextEdit():configure( pPtr_OR_oObj_of_type_QTextEdit ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextEdit * $METHODS$ * :acceptRichText() -> lBool * :alignment() -> nQt::Alignment @@ -100,33 +108,25 @@ * :zoomIn( nRange ) -> NIL * :zoomOut( nRange ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTextEdit - * $SEEALSO$ - * QAbstractScrollArea - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractScrollArea - * $ONELINER$ - * Creates a new QTextEdit 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/qtextedit.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/TQTextEdit.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextEdit.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractScrollArea * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt index ee9f95fa93..405b0fe86d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QTextEncoder() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQTextEncoder.prg - * C++ wrappers : contrib/hbqt/qtcore/QTextEncoder.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QTextEncoder():new( ... ) - * QTextEncoder():from( pPtr_OR_oObj_of_type_QTextEncoder ) - * QTextEncoder():configure( pPtr_OR_oObj_of_type_QTextEncoder ) - * $METHODS$ - * :fromUnicode( cStr ) -> pQByteArray - * :fromUnicode_1( pUc, nLen ) -> pQByteArray - * - * $RETURNS$ - * An instance of the object of type QTextEncoder - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextEncoder object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QTextEncoder() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qtextencoder.html + * $ONELINER$ + * Creates a new QTextEncoder object. + * $INHERITS$ + * + * $SYNTAX$ + * QTextEncoder():new( ... ) + * QTextEncoder():from( pPtr_OR_oObj_of_type_QTextEncoder ) + * QTextEncoder():configure( pPtr_OR_oObj_of_type_QTextEncoder ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextEncoder + * $METHODS$ + * :fromUnicode( cStr ) -> pQByteArray + * :fromUnicode_1( pUc, nLen ) -> pQByteArray + * + * $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/TQTextEncoder.prg + * C++ wrappers : contrib/hbqt/qtcore/QTextEncoder.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt index f8181379e2..d5bbb562de 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextFormat() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextFormat.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextFormat.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextformat.html + * $ONELINER$ + * Creates a new QTextFormat object. + * $INHERITS$ + * * $SYNTAX$ * QTextFormat():new( ... ) * QTextFormat():from( pPtr_OR_oObj_of_type_QTextFormat ) * QTextFormat():configure( pPtr_OR_oObj_of_type_QTextFormat ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextFormat * $METHODS$ * :background() -> pQBrush * :boolProperty( nPropertyId ) -> lBool @@ -60,33 +68,25 @@ * :toTableFormat() -> pQTextTableFormat * :type() -> nInt * - * $RETURNS$ - * An instance of the object of type QTextFormat - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextFormat 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/qtextformat.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/TQTextFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextFormat.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt index 755be5690b..69c17475cf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextFragment() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextFragment.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextFragment.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextfragment.html + * $ONELINER$ + * Creates a new QTextFragment object. + * $INHERITS$ + * * $SYNTAX$ * QTextFragment():new( ... ) * QTextFragment():from( pPtr_OR_oObj_of_type_QTextFragment ) * QTextFragment():configure( pPtr_OR_oObj_of_type_QTextFragment ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextFragment * $METHODS$ * :charFormat() -> pQTextCharFormat * :charFormatIndex() -> nInt @@ -26,33 +34,25 @@ * :position() -> nInt * :text() -> cQString * - * $RETURNS$ - * An instance of the object of type QTextFragment - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextFragment 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/qtextfragment.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/TQTextFragment.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextFragment.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextframe.txt b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt index 09d79be6da..2f379c5ba4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextFrame() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextFrame.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextFrame.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextframe.html + * $ONELINER$ + * Creates a new QTextFrame object. + * $INHERITS$ + * QTextObject * $SYNTAX$ * QTextFrame():new( ... ) * QTextFrame():from( pPtr_OR_oObj_of_type_QTextFrame ) * QTextFrame():configure( pPtr_OR_oObj_of_type_QTextFrame ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextFrame * $METHODS$ * :childFrames() -> pQList * :firstCursorPosition() -> pQTextCursor @@ -26,33 +34,25 @@ * :lastPosition() -> nInt * :setFrameFormat( pFormat ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTextFrame - * $SEEALSO$ - * QTextObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextObject - * $ONELINER$ - * Creates a new QTextFrame 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/qtextframe.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/TQTextFrame.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextFrame.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt index 049f1ef14b..80abdb64e6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextFrameFormat() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextFrameFormat.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextframeformat.html + * $ONELINER$ + * Creates a new QTextFrameFormat object. + * $INHERITS$ + * QTextFormat * $SYNTAX$ * QTextFrameFormat():new( ... ) * QTextFrameFormat():from( pPtr_OR_oObj_of_type_QTextFrameFormat ) * QTextFrameFormat():configure( pPtr_OR_oObj_of_type_QTextFrameFormat ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextFrameFormat * $METHODS$ * :border() -> nQreal * :borderBrush() -> pQBrush @@ -48,33 +56,25 @@ * :topMargin() -> nQreal * :width() -> pQTextLength * - * $RETURNS$ - * An instance of the object of type QTextFrameFormat - * $SEEALSO$ - * QTextFormat - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextFormat - * $ONELINER$ - * Creates a new QTextFrameFormat 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/qtextframeformat.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/TQTextFrameFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextFormat * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt index c2cd4ecd2d..b315563222 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextImageFormat() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextImageFormat.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextimageformat.html + * $ONELINER$ + * Creates a new QTextImageFormat object. + * $INHERITS$ + * QTextCharFormat * $SYNTAX$ * QTextImageFormat():new( ... ) * QTextImageFormat():from( pPtr_OR_oObj_of_type_QTextImageFormat ) * QTextImageFormat():configure( pPtr_OR_oObj_of_type_QTextImageFormat ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextImageFormat * $METHODS$ * :height() -> nQreal * :isValid() -> lBool @@ -26,33 +34,25 @@ * :setWidth( nWidth ) -> NIL * :width() -> nQreal * - * $RETURNS$ - * An instance of the object of type QTextImageFormat - * $SEEALSO$ - * QTextCharFormat - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextCharFormat - * $ONELINER$ - * Creates a new QTextImageFormat 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/qtextimageformat.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/TQTextImageFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextCharFormat * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt index d4ab434f1f..49ba421ad1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextInlineObject() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextInlineObject.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextinlineobject.html + * $ONELINER$ + * Creates a new QTextInlineObject object. + * $INHERITS$ + * * $SYNTAX$ * QTextInlineObject():new( ... ) * QTextInlineObject():from( pPtr_OR_oObj_of_type_QTextInlineObject ) * QTextInlineObject():configure( pPtr_OR_oObj_of_type_QTextInlineObject ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextInlineObject * $METHODS$ * :ascent() -> nQreal * :descent() -> nQreal @@ -32,33 +40,25 @@ * :textPosition() -> nInt * :width() -> nQreal * - * $RETURNS$ - * An instance of the object of type QTextInlineObject - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextInlineObject 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/qtextinlineobject.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/TQTextInlineObject.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextitem.txt b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt index f56fd5b0e6..f3b5c76b6b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextitem.html + * $ONELINER$ + * Creates a new QTextItem object. + * $INHERITS$ + * * $SYNTAX$ * QTextItem():new( ... ) * QTextItem():from( pPtr_OR_oObj_of_type_QTextItem ) * QTextItem():configure( pPtr_OR_oObj_of_type_QTextItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextItem * $METHODS$ * :ascent() -> nQreal * :descent() -> nQreal @@ -25,33 +33,25 @@ * :text() -> cQString * :width() -> nQreal * - * $RETURNS$ - * An instance of the object of type QTextItem - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextItem 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/qtextitem.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/TQTextItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt index 17949da85e..9ec65ae3aa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextLayout() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextLayout.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextLayout.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextlayout.html + * $ONELINER$ + * Creates a new QTextLayout object. + * $INHERITS$ + * * $SYNTAX$ * QTextLayout():new( ... ) * QTextLayout():from( pPtr_OR_oObj_of_type_QTextLayout ) * QTextLayout():configure( pPtr_OR_oObj_of_type_QTextLayout ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextLayout * $METHODS$ * :beginLayout() -> NIL * :boundingRect() -> pQRectF @@ -48,33 +56,25 @@ * :text() -> cQString * :textOption() -> pQTextOption * - * $RETURNS$ - * An instance of the object of type QTextLayout - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextLayout 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/qtextlayout.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/TQTextLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextLayout.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlength.txt b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt index ca5d17ff7c..4c6b21a0c4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlength.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt @@ -3,52 +3,52 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextLength() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextLength.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextLength.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextlength.html + * $ONELINER$ + * Creates a new QTextLength object. + * $INHERITS$ + * * $SYNTAX$ * QTextLength():new( ... ) * QTextLength():from( pPtr_OR_oObj_of_type_QTextLength ) * QTextLength():configure( pPtr_OR_oObj_of_type_QTextLength ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextLength * $METHODS$ * :rawValue() -> nQreal * :type() -> nType * :value( nMaximumLength ) -> nQreal * - * $RETURNS$ - * An instance of the object of type QTextLength - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextLength 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/qtextlength.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/TQTextLength.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextLength.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextline.txt b/harbour/contrib/hbqt/doc/en/class_qtextline.txt index 0bef1b079d..e231211759 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextline.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextline.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextLine() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextLine.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextLine.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextline.html + * $ONELINER$ + * Creates a new QTextLine object. + * $INHERITS$ + * * $SYNTAX$ * QTextLine():new( ... ) * QTextLine():from( pPtr_OR_oObj_of_type_QTextLine ) * QTextLine():configure( pPtr_OR_oObj_of_type_QTextLine ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextLine * $METHODS$ * :ascent() -> nQreal * :cursorToX( @nCursorPos, nEdge ) -> nQreal @@ -40,33 +48,25 @@ * :xToCursor( nX, nCpos ) -> nInt * :y() -> nQreal * - * $RETURNS$ - * An instance of the object of type QTextLine - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextLine 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/qtextline.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/TQTextLine.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextLine.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlist.txt b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt index 975fd4c1fc..ba6bbcf9f0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextList() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextList.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextList.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextlist.html + * $ONELINER$ + * Creates a new QTextList object. + * $INHERITS$ + * QTextBlockGroup * $SYNTAX$ * QTextList():new( ... ) * QTextList():from( pPtr_OR_oObj_of_type_QTextList ) * QTextList():configure( pPtr_OR_oObj_of_type_QTextList ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextList * $METHODS$ * :add( pBlock ) -> NIL * :count() -> nInt @@ -28,33 +36,25 @@ * :removeItem( nI ) -> NIL * :setFormat( pFormat ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTextList - * $SEEALSO$ - * QTextBlockGroup - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextBlockGroup - * $ONELINER$ - * Creates a new QTextList 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/qtextlist.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/TQTextList.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextList.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextBlockGroup * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt index 87ae7e6161..2ee9964788 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextListFormat() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextListFormat.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextlistformat.html + * $ONELINER$ + * Creates a new QTextListFormat object. + * $INHERITS$ + * QTextFormat * $SYNTAX$ * QTextListFormat():new( ... ) * QTextListFormat():from( pPtr_OR_oObj_of_type_QTextListFormat ) * QTextListFormat():configure( pPtr_OR_oObj_of_type_QTextListFormat ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextListFormat * $METHODS$ * :indent() -> nInt * :isValid() -> lBool @@ -24,33 +32,25 @@ * :setStyle( nStyle ) -> NIL * :style() -> nStyle * - * $RETURNS$ - * An instance of the object of type QTextListFormat - * $SEEALSO$ - * QTextFormat - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextFormat - * $ONELINER$ - * Creates a new QTextListFormat 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/qtextlistformat.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/TQTextListFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextFormat * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextobject.txt b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt index 162208fc9e..4e9ab03bc1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextObject() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextObject.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextObject.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextobject.html + * $ONELINER$ + * Creates a new QTextObject object. + * $INHERITS$ + * QObject * $SYNTAX$ * QTextObject():new( ... ) * QTextObject():from( pPtr_OR_oObj_of_type_QTextObject ) * QTextObject():configure( pPtr_OR_oObj_of_type_QTextObject ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextObject * $METHODS$ * :document() -> pQTextDocument * :format() -> pQTextFormat * :formatIndex() -> nInt * :objectIndex() -> nInt * - * $RETURNS$ - * An instance of the object of type QTextObject - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QTextObject 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/qtextobject.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/TQTextObject.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextObject.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextoption.txt b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt index f6f27b71ce..f0d69d1a72 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextoption.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextOption() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextOption.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextOption.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextoption.html + * $ONELINER$ + * Creates a new QTextOption object. + * $INHERITS$ + * * $SYNTAX$ * QTextOption():new( ... ) * QTextOption():from( pPtr_OR_oObj_of_type_QTextOption ) * QTextOption():configure( pPtr_OR_oObj_of_type_QTextOption ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextOption * $METHODS$ * :alignment() -> nQt::Alignment * :flags() -> nFlags @@ -32,33 +40,25 @@ * :useDesignMetrics() -> lBool * :wrapMode() -> nWrapMode * - * $RETURNS$ - * An instance of the object of type QTextOption - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextOption 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/qtextoption.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/TQTextOption.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextOption.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextstream.txt b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt index 1bc88ec6c1..368a722fde 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextstream.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextStream() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQTextStream.prg - * C++ wrappers : contrib/hbqt/qtcore/QTextStream.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextstream.html + * $ONELINER$ + * Creates a new QTextStream object. + * $INHERITS$ + * * $SYNTAX$ * QTextStream():new( ... ) * QTextStream():from( pPtr_OR_oObj_of_type_QTextStream ) * QTextStream():configure( pPtr_OR_oObj_of_type_QTextStream ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextStream * $METHODS$ * :padChar() -> pQChar * :atEnd() -> lBool @@ -56,33 +64,25 @@ * :skipWhiteSpace() -> NIL * :status() -> nStatus * - * $RETURNS$ - * An instance of the object of type QTextStream - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTextStream 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/qtextstream.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/TQTextStream.prg + * C++ wrappers : contrib/hbqt/qtcore/QTextStream.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt index feb0af8201..5c529af0b7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTextTableFormat() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTextTableFormat.prg - * C++ wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtexttableformat.html + * $ONELINER$ + * Creates a new QTextTableFormat object. + * $INHERITS$ + * QTextFrameFormat * $SYNTAX$ * QTextTableFormat():new( ... ) * QTextTableFormat():from( pPtr_OR_oObj_of_type_QTextTableFormat ) * QTextTableFormat():configure( pPtr_OR_oObj_of_type_QTextTableFormat ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTextTableFormat * $METHODS$ * :alignment() -> nQt::Alignment * :cellPadding() -> nQreal @@ -30,33 +38,25 @@ * :setCellSpacing( nSpacing ) -> NIL * :setHeaderRowCount( nCount ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTextTableFormat - * $SEEALSO$ - * QTextFrameFormat - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTextFrameFormat - * $ONELINER$ - * Creates a new QTextTableFormat 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/qtexttableformat.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/TQTextTableFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTextFrameFormat * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qthread.txt b/harbour/contrib/hbqt/doc/en/class_qthread.txt index 66da1b555d..35dcd7faa7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qthread.txt +++ b/harbour/contrib/hbqt/doc/en/class_qthread.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QThread() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQThread.prg - * C++ wrappers : contrib/hbqt/qtcore/QThread.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qthread.html + * $ONELINER$ + * Creates a new QThread object. + * $INHERITS$ + * QObject * $SYNTAX$ * QThread():new( ... ) * QThread():from( pPtr_OR_oObj_of_type_QThread ) * QThread():configure( pPtr_OR_oObj_of_type_QThread ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QThread * $METHODS$ * :exit( nReturnCode ) -> NIL * :isFinished() -> lBool @@ -32,33 +40,25 @@ * :start( nPriority ) -> NIL * :terminate() -> NIL * - * $RETURNS$ - * An instance of the object of type QThread - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QThread 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/qthread.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/TQThread.prg + * C++ wrappers : contrib/hbqt/qtcore/QThread.cpp + * Library : hbqtcore + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtime.txt b/harbour/contrib/hbqt/doc/en/class_qtime.txt index 6e056f609e..c46a8d3974 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtime.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtime.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTime() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQTime.prg - * C++ wrappers : contrib/hbqt/qtcore/QTime.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtime.html + * $ONELINER$ + * Creates a new QTime object. + * $INHERITS$ + * * $SYNTAX$ * QTime():new( ... ) * QTime():from( pPtr_OR_oObj_of_type_QTime ) * QTime():configure( pPtr_OR_oObj_of_type_QTime ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTime * $METHODS$ * :elapsed() -> nInt * :hour() -> nInt @@ -34,33 +42,25 @@ * :toString_1( nFormat ) -> cQString * :isValid_1( nH, nM, nS, nMs ) -> lBool * - * $RETURNS$ - * An instance of the object of type QTime - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTime 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/qtime.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/TQTime.prg + * C++ wrappers : contrib/hbqt/qtcore/QTime.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtimer.txt b/harbour/contrib/hbqt/doc/en/class_qtimer.txt index 78e1332f03..f552a8ff3c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtimer.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtimer.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTimer() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQTimer.prg - * C++ wrappers : contrib/hbqt/qtcore/QTimer.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtimer.html + * $ONELINER$ + * Creates a new QTimer object. + * $INHERITS$ + * QObject * $SYNTAX$ * QTimer():new( ... ) * QTimer():from( pPtr_OR_oObj_of_type_QTimer ) * QTimer():configure( pPtr_OR_oObj_of_type_QTimer ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTimer * $METHODS$ * :interval() -> nInt * :isActive() -> lBool @@ -29,33 +37,25 @@ * :stop() -> NIL * :start_1( nMsec ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTimer - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QTimer 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/qtimer.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/TQTimer.prg + * C++ wrappers : contrib/hbqt/qtcore/QTimer.cpp + * Library : hbqtcore + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt index b2e2550d78..dd37d6e049 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QToolBar() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQToolBar.prg - * C++ wrappers : contrib/hbqt/qtgui/QToolBar.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtoolbar.html + * $ONELINER$ + * Creates a new QToolBar object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QToolBar():new( ... ) * QToolBar():from( pPtr_OR_oObj_of_type_QToolBar ) * QToolBar():configure( pPtr_OR_oObj_of_type_QToolBar ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QToolBar * $METHODS$ * :actionAt( pP ) -> pQAction * :actionAt_1( nX, nY ) -> pQAction @@ -47,33 +55,25 @@ * :setIconSize( pIconSize ) -> NIL * :setToolButtonStyle( nToolButtonStyle ) -> NIL * - * $RETURNS$ - * An instance of the object of type QToolBar - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QToolBar 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/qtoolbar.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/TQToolBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QToolBar.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt index d4999d4f0d..ec1fda151a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QToolBox() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQToolBox.prg - * C++ wrappers : contrib/hbqt/qtgui/QToolBox.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtoolbox.html + * $ONELINER$ + * Creates a new QToolBox object. + * $INHERITS$ + * QFrame * $SYNTAX$ * QToolBox():new( ... ) * QToolBox():from( pPtr_OR_oObj_of_type_QToolBox ) * QToolBox():configure( pPtr_OR_oObj_of_type_QToolBox ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QToolBox * $METHODS$ * :addItem( pWidget, cIconSet, cText ) -> nInt * :addItem_1( pW, cText ) -> nInt @@ -39,33 +47,25 @@ * :setCurrentIndex( nIndex ) -> NIL * :setCurrentWidget( pWidget ) -> NIL * - * $RETURNS$ - * An instance of the object of type QToolBox - * $SEEALSO$ - * QFrame - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QFrame - * $ONELINER$ - * Creates a new QToolBox 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/qtoolbox.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/TQToolBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QToolBox.cpp + * Library : hbqtgui + * $SEEALSO$ + * QFrame * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt index fcfed957a9..ab725c247f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QToolButton() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQToolButton.prg - * C++ wrappers : contrib/hbqt/qtgui/QToolButton.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtoolbutton.html + * $ONELINER$ + * Creates a new QToolButton object. + * $INHERITS$ + * QAbstractButton * $SYNTAX$ * QToolButton():new( ... ) * QToolButton():from( pPtr_OR_oObj_of_type_QToolButton ) * QToolButton():configure( pPtr_OR_oObj_of_type_QToolButton ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QToolButton * $METHODS$ * :arrowType() -> nQt::ArrowType * :autoRaise() -> lBool @@ -32,33 +40,25 @@ * :setToolButtonStyle( nStyle ) -> NIL * :showMenu() -> NIL * - * $RETURNS$ - * An instance of the object of type QToolButton - * $SEEALSO$ - * QAbstractButton - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractButton - * $ONELINER$ - * Creates a new QToolButton 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/qtoolbutton.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/TQToolButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QToolButton.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractButton * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtransform.txt b/harbour/contrib/hbqt/doc/en/class_qtransform.txt index fe78710112..6ecbd1eba2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtransform.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtransform.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTransform() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTransform.prg - * C++ wrappers : contrib/hbqt/qtgui/QTransform.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtransform.html + * $ONELINER$ + * Creates a new QTransform object. + * $INHERITS$ + * * $SYNTAX$ * QTransform():new( ... ) * QTransform():from( pPtr_OR_oObj_of_type_QTransform ) * QTransform():configure( pPtr_OR_oObj_of_type_QTransform ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTransform * $METHODS$ * :m11() -> nQreal * :m12() -> nQreal @@ -58,33 +66,25 @@ * :quadToSquare( pQuad, pTrans ) -> lBool * :squareToQuad( pQuad, pTrans ) -> lBool * - * $RETURNS$ - * An instance of the object of type QTransform - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTransform 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/qtransform.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/TQTransform.prg + * C++ wrappers : contrib/hbqt/qtgui/QTransform.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtranslator.txt b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt index d03ac74eb1..dbf00ce96d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtranslator.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTranslator() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQTranslator.prg - * C++ wrappers : contrib/hbqt/qtcore/QTranslator.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtranslator.html + * $ONELINER$ + * Creates a new QTranslator object. + * $INHERITS$ + * QObject * $SYNTAX$ * QTranslator():new( ... ) * QTranslator():from( pPtr_OR_oObj_of_type_QTranslator ) * QTranslator():configure( pPtr_OR_oObj_of_type_QTranslator ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTranslator * $METHODS$ * :isEmpty() -> lBool * :load( cFilename, cDirectory, cSearch_delimiters, cSuffix ) -> lBool * :translate( pContext, pSourceText, pDisambiguation ) -> cQString * :translate_1( pContext, pSourceText, pDisambiguation, nN ) -> cQString * - * $RETURNS$ - * An instance of the object of type QTranslator - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QTranslator 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/qtranslator.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/TQTranslator.prg + * C++ wrappers : contrib/hbqt/qtcore/QTranslator.cpp + * Library : hbqtcore + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreeview.txt b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt index 388909af7d..2049dd6f89 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreeview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTreeView() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTreeView.prg - * C++ wrappers : contrib/hbqt/qtgui/QTreeView.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtreeview.html + * $ONELINER$ + * Creates a new QTreeView object. + * $INHERITS$ + * QAbstractItemView * $SYNTAX$ * QTreeView():new( ... ) * QTreeView():from( pPtr_OR_oObj_of_type_QTreeView ) * QTreeView():configure( pPtr_OR_oObj_of_type_QTreeView ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTreeView * $METHODS$ * :allColumnsShowFocus() -> lBool * :autoExpandDelay() -> nInt @@ -68,33 +76,25 @@ * :resizeColumnToContents( nColumn ) -> NIL * :showColumn( nColumn ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTreeView - * $SEEALSO$ - * QAbstractItemView - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAbstractItemView - * $ONELINER$ - * Creates a new QTreeView 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/qtreeview.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/TQTreeView.prg + * C++ wrappers : contrib/hbqt/qtgui/QTreeView.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAbstractItemView * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt index 90a1cdd16b..a191600711 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTreeWidget() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTreeWidget.prg - * C++ wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtreewidget.html + * $ONELINER$ + * Creates a new QTreeWidget object. + * $INHERITS$ + * QTreeView * $SYNTAX$ * QTreeWidget():new( ... ) * QTreeWidget():from( pPtr_OR_oObj_of_type_QTreeWidget ) * QTreeWidget():configure( pPtr_OR_oObj_of_type_QTreeWidget ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTreeWidget * $METHODS$ * :addTopLevelItem( pItem ) -> NIL * :closePersistentEditor( pItem, nColumn ) -> NIL @@ -58,33 +66,25 @@ * :expandItem( pItem ) -> NIL * :scrollToItem( pItem, nHint ) -> NIL * - * $RETURNS$ - * An instance of the object of type QTreeWidget - * $SEEALSO$ - * QTreeView - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QTreeView - * $ONELINER$ - * Creates a new QTreeWidget 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/qtreewidget.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/TQTreeWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp + * Library : hbqtgui + * $SEEALSO$ + * QTreeView * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt index 5597c8ac07..0b462bc43d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QTreeWidgetItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQTreeWidgetItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtreewidgetitem.html + * $ONELINER$ + * Creates a new QTreeWidgetItem object. + * $INHERITS$ + * * $SYNTAX$ * QTreeWidgetItem():new( ... ) * QTreeWidgetItem():from( pPtr_OR_oObj_of_type_QTreeWidgetItem ) * QTreeWidgetItem():configure( pPtr_OR_oObj_of_type_QTreeWidgetItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QTreeWidgetItem * $METHODS$ * :addChild( pChild ) -> NIL * :background( nColumn ) -> pQBrush @@ -68,33 +76,25 @@ * :type() -> nInt * :whatsThis( nColumn ) -> cQString * - * $RETURNS$ - * An instance of the object of type QTreeWidgetItem - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QTreeWidgetItem 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/qtreewidgetitem.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/TQTreeWidgetItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_quiloader.txt b/harbour/contrib/hbqt/doc/en/class_quiloader.txt index 55050f06ad..8076aff3ae 100644 --- a/harbour/contrib/hbqt/doc/en/class_quiloader.txt +++ b/harbour/contrib/hbqt/doc/en/class_quiloader.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QUiLoader() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQUiLoader.prg - * C++ wrappers : contrib/hbqt/qtgui/QUiLoader.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/quiloader.html + * $ONELINER$ + * Creates a new QUiLoader object. + * $INHERITS$ + * QObject * $SYNTAX$ * QUiLoader():new( ... ) * QUiLoader():from( pPtr_OR_oObj_of_type_QUiLoader ) * QUiLoader():configure( pPtr_OR_oObj_of_type_QUiLoader ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QUiLoader * $METHODS$ * :addPluginPath( cPath ) -> NIL * :availableLayouts() -> pQStringList @@ -33,33 +41,25 @@ * :setWorkingDirectory( pDir ) -> NIL * :workingDirectory() -> pQDir * - * $RETURNS$ - * An instance of the object of type QUiLoader - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QUiLoader 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/quiloader.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/TQUiLoader.prg + * C++ wrappers : contrib/hbqt/qtgui/QUiLoader.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qurl.txt b/harbour/contrib/hbqt/doc/en/class_qurl.txt index f9451d8acd..b48533a2aa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qurl.txt +++ b/harbour/contrib/hbqt/doc/en/class_qurl.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QUrl() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQUrl.prg - * C++ wrappers : contrib/hbqt/qtcore/QUrl.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qurl.html + * $ONELINER$ + * Creates a new QUrl object. + * $INHERITS$ + * QObject * $SYNTAX$ * QUrl():new( ... ) * QUrl():from( pPtr_OR_oObj_of_type_QUrl ) * QUrl():configure( pPtr_OR_oObj_of_type_QUrl ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QUrl * $METHODS$ * :addEncodedQueryItem( pKey, pValue ) -> NIL * :addQueryItem( cKey, cValue ) -> NIL @@ -85,33 +93,25 @@ * :toAce( cDomain ) -> pQByteArray * :toPercentEncoding( cInput, pExclude, pInclude ) -> pQByteArray * - * $RETURNS$ - * An instance of the object of type QUrl - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QUrl 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/qurl.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/TQUrl.prg + * C++ wrappers : contrib/hbqt/qtcore/QUrl.cpp + * Library : hbqtcore + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qvalidator.txt b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt index 842e358d9a..7f17b6a2f5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qvalidator.txt +++ b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QValidator() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQValidator.prg - * C++ wrappers : contrib/hbqt/qtgui/QValidator.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QValidator():new( ... ) - * QValidator():from( pPtr_OR_oObj_of_type_QValidator ) - * QValidator():configure( pPtr_OR_oObj_of_type_QValidator ) - * $METHODS$ - * :locale() -> pQLocale - * :setLocale( pLocale ) -> NIL - * - * $RETURNS$ - * An instance of the object of type QValidator - * $SEEALSO$ - * QObject - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject - * $ONELINER$ - * Creates a new QValidator object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QValidator() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qvalidator.html + * $ONELINER$ + * Creates a new QValidator object. + * $INHERITS$ + * QObject + * $SYNTAX$ + * QValidator():new( ... ) + * QValidator():from( pPtr_OR_oObj_of_type_QValidator ) + * QValidator():configure( pPtr_OR_oObj_of_type_QValidator ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QValidator + * $METHODS$ + * :locale() -> pQLocale + * :setLocale( pLocale ) -> 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/TQValidator.prg + * C++ wrappers : contrib/hbqt/qtgui/QValidator.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qvariant.txt b/harbour/contrib/hbqt/doc/en/class_qvariant.txt index 4293ac4208..997dac1cbf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qvariant.txt +++ b/harbour/contrib/hbqt/doc/en/class_qvariant.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QVariant() - * $FILES$ - * Harbour source: contrib/hbqt/qtcore/TQVariant.prg - * C++ wrappers : contrib/hbqt/qtcore/QVariant.cpp - * Library : hbqtcore - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qvariant.html + * $ONELINER$ + * Creates a new QVariant object. + * $INHERITS$ + * * $SYNTAX$ * QVariant():new( ... ) * QVariant():from( pPtr_OR_oObj_of_type_QVariant ) * QVariant():configure( pPtr_OR_oObj_of_type_QVariant ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QVariant * $METHODS$ * :canConvert( nT ) -> lBool * :canConvert_1( nT ) -> lBool @@ -56,33 +64,25 @@ * :nameToType( pName ) -> nType * :typeToName( nTyp ) -> cChar * - * $RETURNS$ - * An instance of the object of type QVariant - * $SEEALSO$ - * - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * - * $ONELINER$ - * Creates a new QVariant 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/qvariant.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/TQVariant.prg + * C++ wrappers : contrib/hbqt/qtcore/QVariant.cpp + * Library : hbqtcore + * $SEEALSO$ + * * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt b/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt index 1b2ef2c4bf..f4b17f1fb4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QWheelEvent() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQWheelEvent.prg - * C++ wrappers : contrib/hbqt/qtgui/QWheelEvent.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qwheelevent.html + * $ONELINER$ + * Creates a new QWheelEvent object. + * $INHERITS$ + * QInputEvent * $SYNTAX$ * QWheelEvent():new( ... ) * QWheelEvent():from( pPtr_OR_oObj_of_type_QWheelEvent ) * QWheelEvent():configure( pPtr_OR_oObj_of_type_QWheelEvent ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QWheelEvent * $METHODS$ * :buttons() -> nQt::MouseButtons * :delta() -> nInt @@ -28,33 +36,25 @@ * :x() -> nInt * :y() -> nInt * - * $RETURNS$ - * An instance of the object of type QWheelEvent - * $SEEALSO$ - * QInputEvent - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QInputEvent - * $ONELINER$ - * Creates a new QWheelEvent 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/qwheelevent.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/TQWheelEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QWheelEvent.cpp + * Library : hbqtgui + * $SEEALSO$ + * QInputEvent * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidget.txt b/harbour/contrib/hbqt/doc/en/class_qwidget.txt index 1f3ec2b3d1..d962aad566 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidget.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QWidget() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQWidget.prg - * C++ wrappers : contrib/hbqt/qtgui/QWidget.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qwidget.html + * $ONELINER$ + * Creates a new QWidget object. + * $INHERITS$ + * QObject, QPaintDevice * $SYNTAX$ * QWidget():new( ... ) * QWidget():from( pPtr_OR_oObj_of_type_QWidget ) * QWidget():configure( pPtr_OR_oObj_of_type_QWidget ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QWidget * $METHODS$ * :acceptDrops() -> lBool * :actions() -> pQList @@ -215,33 +223,25 @@ * :showNormal() -> NIL * :update_3() -> NIL * - * $RETURNS$ - * An instance of the object of type QWidget - * $SEEALSO$ - * QObject, QPaintDevice - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QObject, QPaintDevice - * $ONELINER$ - * Creates a new QWidget 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/qwidget.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/TQWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QWidget.cpp + * Library : hbqtgui + * $SEEALSO$ + * QObject, QPaintDevice * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt b/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt index 1785e64827..e8e3559890 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt @@ -3,53 +3,53 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QWidgetAction() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQWidgetAction.prg - * C++ wrappers : contrib/hbqt/qtgui/QWidgetAction.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qwidgetaction.html + * $ONELINER$ + * Creates a new QWidgetAction object. + * $INHERITS$ + * QAction * $SYNTAX$ * QWidgetAction():new( ... ) * QWidgetAction():from( pPtr_OR_oObj_of_type_QWidgetAction ) * QWidgetAction():configure( pPtr_OR_oObj_of_type_QWidgetAction ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QWidgetAction * $METHODS$ * :defaultWidget() -> pQWidget * :releaseWidget( pWidget ) -> NIL * :requestWidget( pParent ) -> pQWidget * :setDefaultWidget( pWidget ) -> NIL * - * $RETURNS$ - * An instance of the object of type QWidgetAction - * $SEEALSO$ - * QAction - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QAction - * $ONELINER$ - * Creates a new QWidgetAction 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/qwidgetaction.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/TQWidgetAction.prg + * C++ wrappers : contrib/hbqt/qtgui/QWidgetAction.cpp + * Library : hbqtgui + * $SEEALSO$ + * QAction * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt index 1631c2220b..0b94c80ad8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt @@ -3,51 +3,51 @@ */ /* $DOC$ - * $NAME$ - * QWidgetItem() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQWidgetItem.prg - * C++ wrappers : contrib/hbqt/qtgui/QWidgetItem.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R - * $SYNTAX$ - * QWidgetItem():new( ... ) - * QWidgetItem():from( pPtr_OR_oObj_of_type_QWidgetItem ) - * QWidgetItem():configure( pPtr_OR_oObj_of_type_QWidgetItem ) - * $METHODS$ - * :isEmpty() -> lBool - * :widget() -> pQWidget - * - * $RETURNS$ - * An instance of the object of type QWidgetItem - * $SEEALSO$ - * QLayoutItem - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QLayoutItem - * $ONELINER$ - * Creates a new QWidgetItem object. * $TEMPLATE$ * Class - * $ARGUMENTS$ - * - * $PLATFORMS$ - * Windows, Linux, Mac OS X, OS/2 - * $COMPLIANCE$ - * Not Clipper compatible - * $DESCRIPTION$ - * + * $NAME$ + * QWidgetItem() + * $CATEGORY$ + * Harbour Bindings for Qt * $SUBCATEGORY$ * GUI * $EXTERNALLINK$ * http://doc.trolltech.com/4.5/qwidgetitem.html + * $ONELINER$ + * Creates a new QWidgetItem object. + * $INHERITS$ + * QLayoutItem + * $SYNTAX$ + * QWidgetItem():new( ... ) + * QWidgetItem():from( pPtr_OR_oObj_of_type_QWidgetItem ) + * QWidgetItem():configure( pPtr_OR_oObj_of_type_QWidgetItem ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QWidgetItem + * $METHODS$ + * :isEmpty() -> lBool + * :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/TQWidgetItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QWidgetItem.cpp + * Library : hbqtgui + * $SEEALSO$ + * QLayoutItem * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwizard.txt b/harbour/contrib/hbqt/doc/en/class_qwizard.txt index dede6b8b0c..315f6cf355 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwizard.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwizard.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QWizard() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQWizard.prg - * C++ wrappers : contrib/hbqt/qtgui/QWizard.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qwizard.html + * $ONELINER$ + * Creates a new QWizard object. + * $INHERITS$ + * QDialog * $SYNTAX$ * QWizard():new( ... ) * QWizard():from( pPtr_OR_oObj_of_type_QWizard ) * QWizard():configure( pPtr_OR_oObj_of_type_QWizard ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QWizard * $METHODS$ * :addPage( pPage ) -> nInt * :button( nWhich ) -> pQAbstractButton @@ -54,33 +62,25 @@ * :next() -> NIL * :restart() -> NIL * - * $RETURNS$ - * An instance of the object of type QWizard - * $SEEALSO$ - * QDialog - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QDialog - * $ONELINER$ - * Creates a new QWizard 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/qwizard.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/TQWizard.prg + * C++ wrappers : contrib/hbqt/qtgui/QWizard.cpp + * Library : hbqtgui + * $SEEALSO$ + * QDialog * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt b/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt index cdbd3ba549..91aa93264b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt @@ -3,20 +3,28 @@ */ /* $DOC$ + * $TEMPLATE$ + * Class * $NAME$ * QWizardPage() - * $FILES$ - * Harbour source: contrib/hbqt/qtgui/TQWizardPage.prg - * C++ wrappers : contrib/hbqt/qtgui/QWizardPage.cpp - * Library : hbqtgui - * $TESTS$ - * - * $STATUS$ - * R + * $CATEGORY$ + * Harbour Bindings for Qt + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qwizardpage.html + * $ONELINER$ + * Creates a new QWizardPage object. + * $INHERITS$ + * QWidget * $SYNTAX$ * QWizardPage():new( ... ) * QWizardPage():from( pPtr_OR_oObj_of_type_QWizardPage ) * QWizardPage():configure( pPtr_OR_oObj_of_type_QWizardPage ) + * $ARGUMENTS$ + * + * $RETURNS$ + * An instance of the object of type QWizardPage * $METHODS$ * :buttonText( nWhich ) -> cQString * :cleanupPage() -> NIL @@ -36,33 +44,25 @@ * :title() -> cQString * :validatePage() -> lBool * - * $RETURNS$ - * An instance of the object of type QWizardPage - * $SEEALSO$ - * QWidget - * $VERSION$ - * 4.5 or upper - * $CATEGORY$ - * Harbour Bindings for Qt - * $EXAMPLES$ - * - * $INHERITS$ - * QWidget - * $ONELINER$ - * Creates a new QWizardPage 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/qwizardpage.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/TQWizardPage.prg + * C++ wrappers : contrib/hbqt/qtgui/QWizardPage.cpp + * Library : hbqtgui + * $SEEALSO$ + * QWidget * $END$ */ diff --git a/harbour/contrib/hbqt/generator/hbqtgen.prg b/harbour/contrib/hbqt/generator/hbqtgen.prg index 17cc18cb91..2d10087693 100644 --- a/harbour/contrib/hbqt/generator/hbqtgen.prg +++ b/harbour/contrib/hbqt/generator/hbqtgen.prg @@ -178,15 +178,6 @@ STATIC FUNCTION ManageProject( cProFile, cPathIn, cPathOut, cPathDoc ) LOCAL aWidgetList := {} -#if 0 - hb_fNameSplit( cProFile, @cPath, @cFile, @cExt ) - - IF empty( cPath ) - cFile := cPathIn + hb_ps() + cProFile - ELSE - cFile := cProFile - ENDIF -#endif cFile := cProFile IF ! hb_fileExists( cFile ) RETURN nil @@ -1679,21 +1670,6 @@ STATIC FUNCTION Build_Class( cWidget, cls_, doc_, cPathOut, subCls_ ) aadd( txt_, " ::pPtr := Qt_" + cWidget + "( ... )" ) aadd( txt_, " RETURN Self" ) aadd( txt_, " " ) - #if 0 - aadd( txt_, " " ) - aadd( txt_, "METHOD " + cWidget + ":configure( xObject )" ) - aadd( txt_, " IF hb_isObject( xObject )" ) - aadd( txt_, " ::pPtr := xObject:pPtr" ) - aadd( txt_, " ELSEIF hb_isPointer( xObject )" ) - aadd( txt_, " ::pPtr := xObject" ) - aadd( txt_, " ENDIF" ) - aadd( txt_, " RETURN Self" ) - aadd( txt_, " " ) - aadd( txt_, " " ) - aadd( txt_, "METHOD " + cWidget + ":onError()" ) - aadd( txt_, " RETURN hbqt_showError( __GetMessage() )" ) - aadd( txt_, " " ) - #endif /* Define methods */ FOR i := 1 TO len( mth_ ) aadd( txt_, "" ) diff --git a/harbour/contrib/hbqt/generator/qtcore.qtp b/harbour/contrib/hbqt/generator/qtcore.qtp index cab0802e92..4ed992233f 100644 --- a/harbour/contrib/hbqt/generator/qtcore.qtp +++ b/harbour/contrib/hbqt/generator/qtcore.qtp @@ -7,7 +7,6 @@ -D=../doc HBEvents.qth -HBQAbstractItemModel.qth HBSlots.qth QAbstractItemModel.qth diff --git a/harbour/contrib/hbqt/generator/qtgui.qtp b/harbour/contrib/hbqt/generator/qtgui.qtp index 4c2a22be60..24d8ea0591 100644 --- a/harbour/contrib/hbqt/generator/qtgui.qtp +++ b/harbour/contrib/hbqt/generator/qtgui.qtp @@ -6,6 +6,7 @@ -O=../qtgui -D=../doc +HBQAbstractItemModel.qth HBQMainWindow.qth HBQPlainTextEdit.qth HBQSyntaxHighlighter.qth diff --git a/harbour/contrib/hbqt/hbqt_common.hbm b/harbour/contrib/hbqt/hbqt_common.hbm index 8bfc3654de..4b5a938969 100644 --- a/harbour/contrib/hbqt/hbqt_common.hbm +++ b/harbour/contrib/hbqt/hbqt_common.hbm @@ -2,6 +2,11 @@ # $Id$ # +# --------------------------------------------------------------- +# Copyright 2009 Viktor Szakats (harbour.01 syenar.hu) +# See COPYING for licensing terms. +# --------------------------------------------------------------- + # Common settings for all hbqt subcomponents -hblib diff --git a/harbour/contrib/hbqt/hbqt_errorsys.prg b/harbour/contrib/hbqt/hbqt_errorsys.prg index 7a61d08084..399728719e 100644 --- a/harbour/contrib/hbqt/hbqt_errorsys.prg +++ b/harbour/contrib/hbqt/hbqt_errorsys.prg @@ -53,6 +53,8 @@ #include "common.ch" #include "error.ch" +#include "hbqt.ch" + PROCEDURE hbqt_ErrorSys() ErrorBlock( { | oError | DefError( oError ) } ) @@ -65,7 +67,7 @@ STATIC FUNCTION DefError( oError ) LOCAL aOptions LOCAL nChoice LOCAL n - LOCAL aMsg := {} + LOCAL cMsg := "" // By default, division by zero results in zero IF oError:genCode == EG_ZERODIV .AND. ; @@ -146,19 +148,19 @@ STATIC FUNCTION DefError( oError ) cMessage += " " + cDOSError ENDIF - aadd( aMsg, hb_eol() ) - aadd( aMsg, cMessage ) + cMsg += hb_eol() + cMsg += cMessage n := 1 DO WHILE ! Empty( ProcName( ++n ) ) - aadd( aMsg, hb_eol() ) - aadd( aMsg, "Called from " + ProcName( n ) + ; - "(" + hb_NToS( ProcLine( n ) ) + ") " ) + cMsg += hb_eol() + cMsg += "Called from " + ProcName( n ) + ; + "(" + hb_NToS( ProcLine( n ) ) + ")" ENDDO - hbqt_showError( aMsg ) + hbqt_messageBox( cMsg, NIL, "HBQT Runtime Error", QMessageBox_Critical ) ErrorLevel( 1 ) QUIT @@ -198,3 +200,25 @@ STATIC FUNCTION ErrorMessage( oError ) ENDCASE RETURN cMessage + +/*----------------------------------------------------------------------*/ + +STATIC FUNCTION hbqt_messageBox( cMsg, cInfo, cTitle, nIcon ) + LOCAL oMB + + DEFAULT cTitle TO "Information" + DEFAULT nIcon TO QMessageBox_Information + + oMB := QMessageBox():new() + oMB:setText( cMsg ) + IF !empty( cInfo ) + oMB:setInformativeText( cInfo ) + ENDIF + oMB:setIcon( nIcon ) + oMB:setWindowTitle( cTitle ) + + oMB:exec() + + RETURN nil + +/*----------------------------------------------------------------------*/ diff --git a/harbour/contrib/hbqt/hbqt_misc.prg b/harbour/contrib/hbqt/hbqt_misc.prg index 386bdd23f4..13195bb1f2 100644 --- a/harbour/contrib/hbqt/hbqt_misc.prg +++ b/harbour/contrib/hbqt/hbqt_misc.prg @@ -52,6 +52,7 @@ #include "hbclass.ch" #include "common.ch" +#include "error.ch" #include "hbqt.ch" /*----------------------------------------------------------------------*/ @@ -80,7 +81,29 @@ METHOD HbQtObjectHandler:configure( xObject ) /*----------------------------------------------------------------------*/ METHOD HbQtObjectHandler:onError() - RETURN hbqt_showError( __GetMessage() ) + LOCAL cMsg := __GetMessage() + LOCAL oError + + IF SubStr( cMsg, 1, 1 ) == "_" + cMsg := SubStr( cMsg, 2 ) + ENDIF + cMsg := "Message not found :" + cMsg + + oError := ErrorNew() + + oError:severity := ES_ERROR + oError:genCode := EG_NOMETHOD + oError:subSystem := "HBQT" + oError:subCode := 1000 + oError:canRetry := .F. + oError:canDefault := .F. + oError:Args := hb_AParams() + oError:operation := ProcName() + oError:Description := cMsg + + Eval( ErrorBlock(), oError ) + + RETURN nil /*----------------------------------------------------------------------*/ @@ -104,43 +127,3 @@ FUNCTION hbqt_ptr( xParam ) RETURN xParam /*----------------------------------------------------------------------*/ - -FUNCTION hbqt_messageBox( cMsg, cInfo, cTitle, nIcon ) - LOCAL oMB - - DEFAULT cTitle TO "Information" - DEFAULT nIcon TO QMessageBox_Information - - oMB := QMessageBox():new() - oMB:setText( cMsg ) - IF !empty( cInfo ) - oMB:setInformativeText( cInfo ) - ENDIF - oMB:setIcon( nIcon ) - oMB:setWindowTitle( cTitle ) - - oMB:exec() - - RETURN nil - -/*----------------------------------------------------------------------*/ - -FUNCTION hbqt_showError( cMsg ) - LOCAL s - - IF hb_isArray( cMsg ) - s := "" - aeval( cMsg, {|e| s += e + chr( 13 ) } ) - hbqt_messageBox( s, NIL, "Run-time Error!", QMessageBox_Critical ) - ELSE - IF SubStr( cMsg, 1, 1 ) == "_" - s := SubStr( cMsg, 2 ) - ELSE - s := cMsg - ENDIF - hbqt_messageBox( ":" + s, "Message not found - " + ProcName( 2 ) + ":" + hb_ntos( ProcLine( 2 ) ) ) - ENDIF - - RETURN nil - -/*----------------------------------------------------------------------*/ diff --git a/harbour/contrib/hbqt/hbqtcore.hbc b/harbour/contrib/hbqt/hbqtcore.hbc index 86bfa86f6b..790869dbac 100644 --- a/harbour/contrib/hbqt/hbqtcore.hbc +++ b/harbour/contrib/hbqt/hbqtcore.hbc @@ -2,6 +2,11 @@ # $Id$ # +# --------------------------------------------------------------- +# Copyright 2009 Viktor Szakats (harbour.01 syenar.hu) +# See COPYING for licensing terms. +# --------------------------------------------------------------- + stop={dos|watcom|bcc|pocc|pocc64|poccarm|msvcia64}'hbqt' doesn't support this platform/compiler (${hb_plat}/${hb_comp}). incpaths=. @@ -12,6 +17,7 @@ plugins=hbmk2_plugin_qt.hbs {allwin|os2}libpaths=${HB_WITH_QT}\..\lib +# TOFIX: QtGui is needed by hbqt_hbslots.cpp. This dependency should be removed. {!HB_STATIC_QT}libs=hbqtcore${__HB_DYN__} {!HB_STATIC_QT&(allwin|os2)}libs=QtCore4 QtGui4 {!HB_STATIC_QT&linux}libs=QtCore QtGui diff --git a/harbour/contrib/hbqt/hbqtcore_filelist.hbm b/harbour/contrib/hbqt/hbqtcore_filelist.hbm index 1c71478574..fb85b1c71d 100644 --- a/harbour/contrib/hbqt/hbqtcore_filelist.hbm +++ b/harbour/contrib/hbqt/hbqtcore_filelist.hbm @@ -4,13 +4,10 @@ hbqt_base.cpp hbqt_destruct.cpp -hbqt_hbqabstractitemmodel.cpp hbqt_hbevents.cpp hbqt_hbslots.cpp hbqt_utils.cpp hbqt_misc.prg -hbqt_errorsys.prg -hbqt_hbqabstractitemmodel.h hbqt_hbevents.h hbqt_hbslots.h diff --git a/harbour/contrib/hbqt/hbqtgui_filelist.hbm b/harbour/contrib/hbqt/hbqtgui_filelist.hbm index 604a33253d..8c990a9d4e 100644 --- a/harbour/contrib/hbqt/hbqtgui_filelist.hbm +++ b/harbour/contrib/hbqt/hbqtgui_filelist.hbm @@ -2,14 +2,17 @@ # $Id$ # +hbqt_hbqabstractitemmodel.cpp hbqt_hbqmainwindow.cpp hbqt_hbqplaintextedit.cpp hbqt_hbqsyntaxhighlighter.cpp hbqt_hbqtableview.cpp +hbqt_hbqabstractitemmodel.h hbqt_hbqmainwindow.h hbqt_hbqplaintextedit.h hbqt_hbqsyntaxhighlighter.h hbqt_hbqtableview.h +hbqt_errorsys.prg THbQtUI.prg diff --git a/harbour/contrib/hbqt/qtcore/filelist.hbm b/harbour/contrib/hbqt/qtcore/filelist.hbm index 638ab8a3df..58e71b6833 100644 --- a/harbour/contrib/hbqt/qtcore/filelist.hbm +++ b/harbour/contrib/hbqt/qtcore/filelist.hbm @@ -9,7 +9,6 @@ # -------------------------------------------------------------------- HBEvents.cpp -HBQAbstractItemModel.cpp HBSlots.cpp QAbstractItemModel.cpp QAbstractListModel.cpp @@ -62,7 +61,6 @@ QUrl.cpp QVariant.cpp THBEvents.prg -THBQAbstractItemModel.prg THBSlots.prg TQAbstractItemModel.prg TQAbstractListModel.prg diff --git a/harbour/contrib/hbqt/qtcore/hbqtcore_garbage.h b/harbour/contrib/hbqt/qtcore/hbqtcore_garbage.h index 8d1e2440df..cdb3e38c8c 100644 --- a/harbour/contrib/hbqt/qtcore/hbqtcore_garbage.h +++ b/harbour/contrib/hbqt/qtcore/hbqtcore_garbage.h @@ -11,7 +11,6 @@ #include "../hbqt.h" extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBEvents ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQAbstractItemModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBSlots ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractItemModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractListModel ); @@ -64,7 +63,6 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QUrl ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QVariant ); extern HB_EXPORT void * hbqt_gcAllocate_HBEvents( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_HBQAbstractItemModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_HBSlots( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractItemModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractListModel( void * pObj, bool bNew ); diff --git a/harbour/contrib/hbqt/qtcore/HBQAbstractItemModel.cpp b/harbour/contrib/hbqt/qtgui/HBQAbstractItemModel.cpp similarity index 99% rename from harbour/contrib/hbqt/qtcore/HBQAbstractItemModel.cpp rename to harbour/contrib/hbqt/qtgui/HBQAbstractItemModel.cpp index f39bb3940e..3bfc31a023 100644 --- a/harbour/contrib/hbqt/qtcore/HBQAbstractItemModel.cpp +++ b/harbour/contrib/hbqt/qtgui/HBQAbstractItemModel.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" #include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ diff --git a/harbour/contrib/hbqt/qtcore/THBQAbstractItemModel.prg b/harbour/contrib/hbqt/qtgui/THBQAbstractItemModel.prg similarity index 100% rename from harbour/contrib/hbqt/qtcore/THBQAbstractItemModel.prg rename to harbour/contrib/hbqt/qtgui/THBQAbstractItemModel.prg diff --git a/harbour/contrib/hbqt/qtgui/filelist.hbm b/harbour/contrib/hbqt/qtgui/filelist.hbm index ac6d9fa294..08a0a12000 100644 --- a/harbour/contrib/hbqt/qtgui/filelist.hbm +++ b/harbour/contrib/hbqt/qtgui/filelist.hbm @@ -8,6 +8,7 @@ # or the generator tool itself, and run regenarate. # -------------------------------------------------------------------- +HBQAbstractItemModel.cpp HBQMainWindow.cpp HBQPlainTextEdit.cpp HBQSyntaxHighlighter.cpp @@ -232,6 +233,7 @@ QWizard.cpp QWizardPage.cpp QUiLoader.cpp +THBQAbstractItemModel.prg THBQMainWindow.prg THBQPlainTextEdit.prg THBQSyntaxHighlighter.prg diff --git a/harbour/contrib/hbqt/qtgui/hbqtgui_garbage.h b/harbour/contrib/hbqt/qtgui/hbqtgui_garbage.h index ab02e3511d..796027c2fe 100644 --- a/harbour/contrib/hbqt/qtgui/hbqtgui_garbage.h +++ b/harbour/contrib/hbqt/qtgui/hbqtgui_garbage.h @@ -10,6 +10,7 @@ #include "../hbqt.h" +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQAbstractItemModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQMainWindow ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQPlainTextEdit ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQSyntaxHighlighter ); @@ -234,6 +235,7 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWizard ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWizardPage ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QUiLoader ); +extern HB_EXPORT void * hbqt_gcAllocate_HBQAbstractItemModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_HBQMainWindow( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_HBQPlainTextEdit( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_HBQSyntaxHighlighter( void * pObj, bool bNew );