diff --git a/harbour/ChangeLog b/harbour/ChangeLog index f801aeff2f..1449338ae7 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,113 @@ The license applies to all entries newer than 2009-04-28. */ +2010-08-01 14:09 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * utils/hbmk2/hbmk2.prg + % normalize rebased sources paths (mingw, *nix/gcc). + + - contrib/hbqt/generator/qt45.qtp + + contrib/hbqt/generator/qtcore.qtp + + contrib/hbqt/generator/qtnetwork.qtp + + contrib/hbqt/generator/qtgui.qtp + * Split monolithic .qtp to components. + ! Moved QUiLoader to qtgui (from qtcore) to fix circular component + dependency. + + * contrib/hbqt/generator/hbqtgen.prg + + Rewrote to avoid internal tricks to detect which class belongs to + which component. + + Changed to create GC related functions on a per-component bases + (instead of monolithic hbqt_garbage.h). + * Changed to save documents using core hbdoc API. + % Deleted some unused functions and variables. + ; After these changes the generator doesn't have any hard-coded + information about components, so it can be extended with new + one via new .qth files. + + * contrib/hbqt/qtgui/* + * contrib/hbqt/qtcore/* + * contrib/hbqt/qtnetwork/* + * contrib/hbqt/doc/en/* + * Regenerated. + + - contrib/hbqt/qtcore/TQUiLoader.prg + - contrib/hbqt/qtcore/QUiLoader.cpp + + contrib/hbqt/qtgui/QUiLoader.cpp + + contrib/hbqt/qtgui/TQUiLoader.prg + ! Moved QUiLoader to qtgui (from qtcore) to fix circular component + dependency. + + * contrib/hbqt/qth/QUrl.qth + ! Fixed to not inherit from class present in qtgui. + (fixes dependency) + + * contrib/hbqt/hbqt.h + - contrib/hbqt/hbqt_garbage.h + * contrib/hbqt/hbqt_hbevents.h + * contrib/hbqt/hbqt_hbslots.h + + contrib/hbqt/qtcore/hbqtcore_garbage.h + + contrib/hbqt/qtgui/hbqtgui_garbage.h + + contrib/hbqt/qtnetwork/hbqtnetwork_garbage.h + - Deleted central header for GC functions. + + Added per component GC function header. + + - contrib/hbqt/filelist.hbm + - contrib/hbqt/hbqt.hbc + - contrib/hbqt/hbqt.hbp + - contrib/hbqt/hbqtmain.hbp + - contrib/hbqt/hbqtmains.hbp + - Deleted central hbqt holder project and .hbc file. + + + contrib/hbqt/hbqtcore.hbc + * contrib/hbqt/hbqtcore.hbp + * contrib/hbqt/hbqtcores.hbp + * contrib/hbqt/hbqtgui.hbp + * contrib/hbqt/hbqtguis.hbp + + contrib/hbqt/hbqtgui_filelist.hbm + * contrib/hbqt/hbqtnetwork.hbp + * contrib/hbqt/hbqtnetworks.hbp + + contrib/hbqt/hbqtcore_filelist.hbm + + Merged qtmain lib content to qtcore and qtgui. This finally + drops the need for an additional wrapper lib compared to qt ones, + and it fixes build dependencies. + Formerly libs had circular dependencies, now qtcore is the + main lib and other qt* libs depend on this central one. + + * contrib/hbqt/hbqt_common.hbm + + Added qtcore to header path list. + + * contrib/hbqt/tests/hbmk.hbm + * contrib/hbqt/tests/wvtqt.hbp + * contrib/hbxbp/hbxbp.hbc + * Updated to include per component .hbc files instead of + central hbqt.hbc. + + * contrib/hbplist + * Changed central hbqt project to its three components. + + * contrib/hbxbp/tests/wvtqt.hbp + ! Fixed hbc reference. + + ; After these changes, the qt lib layout is much cleaner and + it makes it possible to build .dll versions of them. Except + still one issue. + + ; TODO: Further cleanup to file layout. Componentize docs, + qth files, move files in central dir to component dirs. + + ; TOFIX: hbqtcore references qtgui in QMESSAGEBOX() which is a + hbqtgui function. This has to be fixed. hbqtcore.dll is + not build because of this. + 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? + + ; 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. + 2010-07-31 23:57 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com) * contrib/gtwvg/wvgscrlb.prg % Reversed the order of structures to comply with current scenario. @@ -31,16 +138,16 @@ * contrib/hbide/idesaveload.prg * contrib/hbide/idetools.prg + Implemented: MDI interface for editing panels. - This implementation is on top of existing one and is switchable - through "Setup->Edits MDI". For now it is "ON" by default just - to give a first-hand experience to the user and show advantages - it has over existing one. + This implementation is on top of existing one and is switchable + through "Setup->Edits MDI". For now it is "ON" by default just + to give a first-hand experience to the user and show advantages + it has over existing one. LAYOUT: Editing area is comprised of : 1. Top toolbar - Collection of actions which affect the presentation of + Collection of actions which affect the presentation of panels, windows hosting them and editors. - + 2. Left toolbar Collection of actions which affect editing instances. @@ -55,16 +162,16 @@ Holds: n number of editing instances each per tab in a tabbed widget. - Every panel has the same behavior as before. + Every panel has the same behavior as before. All features are exactly the same as before. ADVANTAGES: allows to view and edit multiple sources simultaneous. : better organization of sources across logical development units. Regression is possible though every care has been taken for accuracy. - Toggling MDI to Stacked mode is not in-place, hbIDE needs to be exetuted - again to take this change active. - + Toggling MDI to Stacked mode is not in-place, hbIDE needs to be exetuted + again to take this change active. + 2010-07-31 20:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * utils/hbmk2/hbmk2.prg * Changed to not give fatal error if cmdline (or .hbp) diff --git a/harbour/contrib/hbplist b/harbour/contrib/hbplist index cd0aaac696..058ae2c7b2 100644 --- a/harbour/contrib/hbplist +++ b/harbour/contrib/hbplist @@ -30,7 +30,9 @@ hbnetio/utils/hbnetio.hbp hbnf/hbnf.hbp hbodbc/hbodbc.hbp hbpgsql/hbpgsql.hbp -hbqt/hbqt.hbp +hbqt/hbqtcore.hbp +hbqt/hbqtgui.hbp +hbqt/hbqtnetwork.hbp hbsms/hbsms.hbp hbsqlit3/hbsqlit3.hbp # uses: sqlite3 (external) hbssl/hbssl.hbp diff --git a/harbour/contrib/hbqt/doc/en/class_hbevents.txt b/harbour/contrib/hbqt/doc/en/class_hbevents.txt index b22e078c01..cbe4127731 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbevents.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbevents.txt @@ -1,56 +1,54 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - HBEvents() - $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 - - $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/THBEvents.prg - C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * HBEvents() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/THBEvents.prg + * C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * HBEvents():new( ... ) + * HBEvents():from( pPtr_OR_oObj_of_type_HBEvents ) + * HBEvents():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt b/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt index be6d4a69dc..9c8eb71b7c 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt @@ -1,109 +1,107 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - HBQPlainTextEdit() - $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 - :hbLineNumberAreaWidth() -> nInt - :hbGetSpaces() -> nInt - :hbSetSpaces( nNewSpaces ) -> NIL - :hbBookmarks( nBlock ) -> NIL - :hbNextBookmark( nBlock ) -> NIL - :hbPrevBookmark( nBlock ) -> NIL - :hbGotoBookmark( nBlock ) -> NIL - :hbNumberBlockVisible( lB ) -> NIL - :hbNumberBlockVisible_1() -> lBool - :hbHighlightCurrentLine( lB ) -> NIL - :hbHighlightCurrentLine_1() -> lBool - :hbSetEventBlock( xBlock ) -> NIL - :hbUpdateLineNumberAreaWidth( nNewBlockCount ) -> NIL - :hbCaseUpper() -> NIL - :hbCaseLower() -> NIL - :hbEscapeQuotes() -> NIL - :hbEscapeDQuotes() -> NIL - :hbUnescapeQuotes() -> NIL - :hbUnescapeDQuotes() -> NIL - :hbConvertQuotes() -> NIL - :hbConvertDQuotes() -> NIL - :hbBlockComment() -> NIL - :hbStreamComment() -> NIL - :hbDuplicateLine() -> NIL - :hbReplaceSelection( cTxt ) -> NIL - :hbBlockIndent( nSteps ) -> NIL - :hbDeleteLine() -> NIL - :hbMoveLine( nIDirection ) -> NIL - :hbGetSelectedText() -> cQString - :hbTextUnderCursor( lBCodeComplete ) -> cQString - :hbShowPrototype( cTip, nRows, nCols ) -> NIL - :hbSetCompleter( pCompleter ) -> NIL - :hbSetFldsCompleter( pCompleter ) -> NIL - :hbSetCurrentLineColor( pColor ) -> NIL - :hbSetLineAreaBkColor( pColor ) -> NIL - :hbRefresh() -> NIL - :hbCut( nKey ) -> NIL - :hbCopy() -> NIL - :hbPaste() -> NIL - :hbSetSelectionMode( nMode, lOn ) -> NIL - :hbGetSelectionInfo() -> NIL - :hbSetSelectionInfo( xSelectionInfo ) -> NIL - :hbSetSelectionColor( pColor ) -> NIL - :hbSetMatchBraces( lAll ) -> NIL - :hbGetViewportInfo() -> NIL - :hbApplyKey( nKey, nModifiers, cTxt ) -> NIL - :hbHighlightArea( nTop, nLeft, nBottom, nRight, nMode ) -> NIL - :hbTogglePersistentSelection() -> NIL - :hbHorzRulerVisible( lVisible ) -> NIL - :hbSetProtoStyle( cCss ) -> NIL - :hbSelectAll() -> NIL - :hbSetFieldsListActive( lActive ) -> NIL - :hbToggleCodeCompetion() -> NIL - :hbToggleCompetionTips() -> 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/THBQPlainTextEdit.prg - C++ wrappers : contrib/hbqt/qtgui/HBQPlainTextEdit.cpp - Library : hbqtgui - $SEEALSO$ - QPlainTextEdit - $END$ + * $NAME$ + * HBQPlainTextEdit() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/THBQPlainTextEdit.prg + * C++ wrappers : contrib/hbqt/qtgui/HBQPlainTextEdit.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * HBQPlainTextEdit():new( ... ) + * HBQPlainTextEdit():from( pPtr_OR_oObj_of_type_HBQPlainTextEdit ) + * HBQPlainTextEdit():configure( pPtr_OR_oObj_of_type_HBQPlainTextEdit ) + * $METHODS$ + * :hbGetIndex( pCrQTextCursor ) -> nInt + * :hbGetLine( pCrQTextCursor ) -> nInt + * :hbLineNumberAreaWidth() -> nInt + * :hbGetSpaces() -> nInt + * :hbSetSpaces( nNewSpaces ) -> NIL + * :hbBookmarks( nBlock ) -> NIL + * :hbNextBookmark( nBlock ) -> NIL + * :hbPrevBookmark( nBlock ) -> NIL + * :hbGotoBookmark( nBlock ) -> NIL + * :hbNumberBlockVisible( lB ) -> NIL + * :hbNumberBlockVisible_1() -> lBool + * :hbHighlightCurrentLine( lB ) -> NIL + * :hbHighlightCurrentLine_1() -> lBool + * :hbSetEventBlock( xBlock ) -> NIL + * :hbUpdateLineNumberAreaWidth( nNewBlockCount ) -> NIL + * :hbCaseUpper() -> NIL + * :hbCaseLower() -> NIL + * :hbEscapeQuotes() -> NIL + * :hbEscapeDQuotes() -> NIL + * :hbUnescapeQuotes() -> NIL + * :hbUnescapeDQuotes() -> NIL + * :hbConvertQuotes() -> NIL + * :hbConvertDQuotes() -> NIL + * :hbBlockComment() -> NIL + * :hbStreamComment() -> NIL + * :hbDuplicateLine() -> NIL + * :hbReplaceSelection( cTxt ) -> NIL + * :hbBlockIndent( nSteps ) -> NIL + * :hbDeleteLine() -> NIL + * :hbMoveLine( nIDirection ) -> NIL + * :hbGetSelectedText() -> cQString + * :hbTextUnderCursor( lBCodeComplete ) -> cQString + * :hbShowPrototype( cTip, nRows, nCols ) -> NIL + * :hbSetCompleter( pCompleter ) -> NIL + * :hbSetFldsCompleter( pCompleter ) -> NIL + * :hbSetCurrentLineColor( pColor ) -> NIL + * :hbSetLineAreaBkColor( pColor ) -> NIL + * :hbRefresh() -> NIL + * :hbCut( nKey ) -> NIL + * :hbCopy() -> NIL + * :hbPaste() -> NIL + * :hbSetSelectionMode( nMode, lOn ) -> NIL + * :hbGetSelectionInfo() -> NIL + * :hbSetSelectionInfo( xSelectionInfo ) -> NIL + * :hbSetSelectionColor( pColor ) -> NIL + * :hbSetMatchBraces( lAll ) -> NIL + * :hbGetViewportInfo() -> NIL + * :hbApplyKey( nKey, nModifiers, cTxt ) -> NIL + * :hbHighlightArea( nTop, nLeft, nBottom, nRight, nMode ) -> NIL + * :hbTogglePersistentSelection() -> NIL + * :hbHorzRulerVisible( lVisible ) -> NIL + * :hbSetProtoStyle( cCss ) -> NIL + * :hbSelectAll() -> NIL + * :hbSetFieldsListActive( lActive ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt index edf50e67d2..cba28deefe 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - HBQSyntaxHighlighter() - $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 - :hbSetRule( cName, cPattern, pFormat ) -> NIL - :hbSetFormat( cName, pFormat ) -> NIL - :hbSetFormatColumnSelection( nStart, nCount, pColor ) -> NIL - :hbSetRuleWithRegExp( cName, pReg, pFormat ) -> 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/THBQSyntaxHighlighter.prg - C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp - Library : hbqtgui - $SEEALSO$ - QSyntaxHighlighter - $END$ + * $NAME$ + * HBQSyntaxHighlighter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg + * C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * HBQSyntaxHighlighter():new( ... ) + * HBQSyntaxHighlighter():from( pPtr_OR_oObj_of_type_HBQSyntaxHighlighter ) + * HBQSyntaxHighlighter():configure( pPtr_OR_oObj_of_type_HBQSyntaxHighlighter ) + * $METHODS$ + * :hbSetMultiLineCommentFormat( pFormat ) -> NIL + * :hbSetSingleLineCommentFormat( pFormat ) -> NIL + * :hbSetRule( cName, cPattern, pFormat ) -> NIL + * :hbSetFormat( cName, pFormat ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt index f82106c0f4..73c1576bb7 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/hbqtextblockuserdata.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_hbslots.txt b/harbour/contrib/hbqt/doc/en/class_hbslots.txt index 40977cec62..d2e6f432cd 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbslots.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbslots.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - HBSlots() - $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 - - $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/THBSlots.prg - C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * HBSlots() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/THBSlots.prg + * C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * HBSlots():new( ... ) + * HBSlots():from( pPtr_OR_oObj_of_type_HBSlots ) + * HBSlots():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt index 3eccd3c4c4..e4eae0383e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt @@ -1,79 +1,77 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractButton() - $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 - :autoRepeatDelay() -> nInt - :autoRepeatInterval() -> nInt - :group() -> pQButtonGroup - :icon() -> pQIcon - :iconSize() -> pQSize - :isCheckable() -> lBool - :isChecked() -> lBool - :isDown() -> lBool - :setAutoExclusive( lBool ) -> NIL - :setAutoRepeat( lBool ) -> NIL - :setAutoRepeatDelay( nInt ) -> NIL - :setAutoRepeatInterval( nInt ) -> NIL - :setCheckable( lBool ) -> NIL - :setDown( lBool ) -> NIL - :setIcon( cIcon ) -> NIL - :setShortcut( pKey ) -> NIL - :setText( cText ) -> NIL - :shortcut() -> pQKeySequence - :text() -> cQString - :animateClick( nMsec ) -> NIL - :click() -> NIL - :setChecked( lBool ) -> NIL - :setIconSize( pSize ) -> NIL - :toggle() -> 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/TQAbstractButton.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QAbstractButton() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractButton():new( ... ) + * QAbstractButton():from( pPtr_OR_oObj_of_type_QAbstractButton ) + * QAbstractButton():configure( pPtr_OR_oObj_of_type_QAbstractButton ) + * $METHODS$ + * :autoExclusive() -> lBool + * :autoRepeat() -> lBool + * :autoRepeatDelay() -> nInt + * :autoRepeatInterval() -> nInt + * :group() -> pQButtonGroup + * :icon() -> pQIcon + * :iconSize() -> pQSize + * :isCheckable() -> lBool + * :isChecked() -> lBool + * :isDown() -> lBool + * :setAutoExclusive( lBool ) -> NIL + * :setAutoRepeat( lBool ) -> NIL + * :setAutoRepeatDelay( nInt ) -> NIL + * :setAutoRepeatInterval( nInt ) -> NIL + * :setCheckable( lBool ) -> NIL + * :setDown( lBool ) -> NIL + * :setIcon( cIcon ) -> NIL + * :setShortcut( pKey ) -> NIL + * :setText( cText ) -> NIL + * :shortcut() -> pQKeySequence + * :text() -> cQString + * :animateClick( nMsec ) -> NIL + * :click() -> NIL + * :setChecked( lBool ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt index 92e3d15219..04d651f8d5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractItemDelegate() - $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 - :paint( pPainter, pOption, pIndex ) -> NIL - :setEditorData( pEditor, pIndex ) -> NIL - :setModelData( pEditor, pModel, pIndex ) -> NIL - :sizeHint( pOption, pIndex ) -> pQSize - :updateEditorGeometry( pEditor, pOption, pIndex ) -> 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/TQAbstractItemDelegate.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QAbstractItemDelegate() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractItemDelegate.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractItemDelegate():new( ... ) + * QAbstractItemDelegate():from( pPtr_OR_oObj_of_type_QAbstractItemDelegate ) + * QAbstractItemDelegate():configure( pPtr_OR_oObj_of_type_QAbstractItemDelegate ) + * $METHODS$ + * :createEditor( pParent, pOption, pIndex ) -> pQWidget + * :editorEvent( pEvent, pModel, pOption, pIndex ) -> lBool + * :paint( pPainter, pOption, pIndex ) -> NIL + * :setEditorData( pEditor, pIndex ) -> NIL + * :setModelData( pEditor, pModel, pIndex ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt index 0201bbf586..76a0e7caf3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt @@ -1,85 +1,83 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractItemModel() - $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 - :columnCount( pParent ) -> nInt - :data( pIndex, nRole ) -> pQVariant - :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool - :fetchMore( pParent ) -> NIL - :flags( pIndex ) -> nQt::ItemFlags - :hasChildren( pParent ) -> lBool - :hasIndex( nRow, nColumn, pParent ) -> lBool - :headerData( nSection, nOrientation, nRole ) -> pQVariant - :index( nRow, nColumn, pParent ) -> pQModelIndex - :insertColumn( nColumn, pParent ) -> lBool - :insertColumns( nColumn, nCount, pParent ) -> lBool - :insertRow( nRow, pParent ) -> lBool - :insertRows( nRow, nCount, pParent ) -> lBool - :mimeTypes() -> pQStringList - :parent( pIndex ) -> pQModelIndex - :removeColumn( nColumn, pParent ) -> lBool - :removeColumns( nColumn, nCount, pParent ) -> lBool - :removeRow( nRow, pParent ) -> lBool - :removeRows( nRow, nCount, pParent ) -> lBool - :rowCount( pParent ) -> nInt - :setData( pIndex, pValue, nRole ) -> lBool - :setHeaderData( nSection, nOrientation, pValue, nRole ) -> lBool - :setSupportedDragActions( nActions ) -> NIL - :sibling( nRow, nColumn, pIndex ) -> pQModelIndex - :sort( nColumn, nOrder ) -> NIL - :span( pIndex ) -> pQSize - :supportedDragActions() -> nQt::DropActions - :supportedDropActions() -> nQt::DropActions - :revert() -> NIL - :submit() -> 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/qtcore/TQAbstractItemModel.prg - C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QAbstractItemModel() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQAbstractItemModel.prg + * C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractItemModel():new( ... ) + * QAbstractItemModel():from( pPtr_OR_oObj_of_type_QAbstractItemModel ) + * QAbstractItemModel():configure( pPtr_OR_oObj_of_type_QAbstractItemModel ) + * $METHODS$ + * :buddy( pIndex ) -> pQModelIndex + * :canFetchMore( pParent ) -> lBool + * :columnCount( pParent ) -> nInt + * :data( pIndex, nRole ) -> pQVariant + * :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool + * :fetchMore( pParent ) -> NIL + * :flags( pIndex ) -> nQt::ItemFlags + * :hasChildren( pParent ) -> lBool + * :hasIndex( nRow, nColumn, pParent ) -> lBool + * :headerData( nSection, nOrientation, nRole ) -> pQVariant + * :index( nRow, nColumn, pParent ) -> pQModelIndex + * :insertColumn( nColumn, pParent ) -> lBool + * :insertColumns( nColumn, nCount, pParent ) -> lBool + * :insertRow( nRow, pParent ) -> lBool + * :insertRows( nRow, nCount, pParent ) -> lBool + * :mimeTypes() -> pQStringList + * :parent( pIndex ) -> pQModelIndex + * :removeColumn( nColumn, pParent ) -> lBool + * :removeColumns( nColumn, nCount, pParent ) -> lBool + * :removeRow( nRow, pParent ) -> lBool + * :removeRows( nRow, nCount, pParent ) -> lBool + * :rowCount( pParent ) -> nInt + * :setData( pIndex, pValue, nRole ) -> lBool + * :setHeaderData( nSection, nOrientation, pValue, nRole ) -> lBool + * :setSupportedDragActions( nActions ) -> NIL + * :sibling( nRow, nColumn, pIndex ) -> pQModelIndex + * :sort( nColumn, nOrder ) -> NIL + * :span( pIndex ) -> pQSize + * :supportedDragActions() -> nQt::DropActions + * :supportedDropActions() -> nQt::DropActions + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt index 31b86f01ad..2e4b36a61b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt @@ -1,116 +1,114 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractItemView() - $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 - :closePersistentEditor( pIndex ) -> NIL - :currentIndex() -> pQModelIndex - :dragDropMode() -> nDragDropMode - :dragDropOverwriteMode() -> lBool - :dragEnabled() -> lBool - :editTriggers() -> nEditTriggers - :hasAutoScroll() -> lBool - :horizontalScrollMode() -> nScrollMode - :iconSize() -> pQSize - :indexAt( pPoint ) -> pQModelIndex - :indexWidget( pIndex ) -> pQWidget - :itemDelegate() -> pQAbstractItemDelegate - :itemDelegate_1( pIndex ) -> pQAbstractItemDelegate - :itemDelegateForColumn( nColumn ) -> pQAbstractItemDelegate - :itemDelegateForRow( nRow ) -> pQAbstractItemDelegate - :keyboardSearch( cSearch ) -> NIL - :model() -> pQAbstractItemModel - :openPersistentEditor( pIndex ) -> NIL - :rootIndex() -> pQModelIndex - :scrollTo( pIndex, nHint ) -> NIL - :selectionBehavior() -> nQAbstractItemView::SelectionBehavior - :selectionMode() -> nQAbstractItemView::SelectionMode - :selectionModel() -> pQItemSelectionModel - :setAlternatingRowColors( lEnable ) -> NIL - :setAutoScroll( lEnable ) -> NIL - :setAutoScrollMargin( nMargin ) -> NIL - :setDragDropMode( nBehavior ) -> NIL - :setDragDropOverwriteMode( lOverwrite ) -> NIL - :setDragEnabled( lEnable ) -> NIL - :setDropIndicatorShown( lEnable ) -> NIL - :setEditTriggers( nTriggers ) -> NIL - :setHorizontalScrollMode( nMode ) -> NIL - :setIconSize( pSize ) -> NIL - :setIndexWidget( pIndex, pWidget ) -> NIL - :setItemDelegate( pDelegate ) -> NIL - :setItemDelegateForColumn( nColumn, pDelegate ) -> NIL - :setItemDelegateForRow( nRow, pDelegate ) -> NIL - :setModel( pModel ) -> NIL - :setSelectionBehavior( nBehavior ) -> NIL - :setSelectionMode( nMode ) -> NIL - :setSelectionModel( pSelectionModel ) -> NIL - :setTabKeyNavigation( lEnable ) -> NIL - :setTextElideMode( nMode ) -> NIL - :setVerticalScrollMode( nMode ) -> NIL - :showDropIndicator() -> lBool - :sizeHintForColumn( nColumn ) -> nInt - :sizeHintForIndex( pIndex ) -> pQSize - :sizeHintForRow( nRow ) -> nInt - :tabKeyNavigation() -> lBool - :textElideMode() -> nQt::TextElideMode - :verticalScrollMode() -> nScrollMode - :visualRect( pIndex ) -> pQRect - :clearSelection() -> NIL - :edit( pIndex ) -> NIL - :reset() -> NIL - :scrollToBottom() -> NIL - :scrollToTop() -> NIL - :selectAll() -> NIL - :setCurrentIndex( pIndex ) -> NIL - :setRootIndex( pIndex ) -> NIL - :update( pIndex ) -> 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/TQAbstractItemView.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractScrollArea - $END$ + * $NAME$ + * QAbstractItemView() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractItemView.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractItemView():new( ... ) + * QAbstractItemView():from( pPtr_OR_oObj_of_type_QAbstractItemView ) + * QAbstractItemView():configure( pPtr_OR_oObj_of_type_QAbstractItemView ) + * $METHODS$ + * :alternatingRowColors() -> lBool + * :autoScrollMargin() -> nInt + * :closePersistentEditor( pIndex ) -> NIL + * :currentIndex() -> pQModelIndex + * :dragDropMode() -> nDragDropMode + * :dragDropOverwriteMode() -> lBool + * :dragEnabled() -> lBool + * :editTriggers() -> nEditTriggers + * :hasAutoScroll() -> lBool + * :horizontalScrollMode() -> nScrollMode + * :iconSize() -> pQSize + * :indexAt( pPoint ) -> pQModelIndex + * :indexWidget( pIndex ) -> pQWidget + * :itemDelegate() -> pQAbstractItemDelegate + * :itemDelegate_1( pIndex ) -> pQAbstractItemDelegate + * :itemDelegateForColumn( nColumn ) -> pQAbstractItemDelegate + * :itemDelegateForRow( nRow ) -> pQAbstractItemDelegate + * :keyboardSearch( cSearch ) -> NIL + * :model() -> pQAbstractItemModel + * :openPersistentEditor( pIndex ) -> NIL + * :rootIndex() -> pQModelIndex + * :scrollTo( pIndex, nHint ) -> NIL + * :selectionBehavior() -> nQAbstractItemView::SelectionBehavior + * :selectionMode() -> nQAbstractItemView::SelectionMode + * :selectionModel() -> pQItemSelectionModel + * :setAlternatingRowColors( lEnable ) -> NIL + * :setAutoScroll( lEnable ) -> NIL + * :setAutoScrollMargin( nMargin ) -> NIL + * :setDragDropMode( nBehavior ) -> NIL + * :setDragDropOverwriteMode( lOverwrite ) -> NIL + * :setDragEnabled( lEnable ) -> NIL + * :setDropIndicatorShown( lEnable ) -> NIL + * :setEditTriggers( nTriggers ) -> NIL + * :setHorizontalScrollMode( nMode ) -> NIL + * :setIconSize( pSize ) -> NIL + * :setIndexWidget( pIndex, pWidget ) -> NIL + * :setItemDelegate( pDelegate ) -> NIL + * :setItemDelegateForColumn( nColumn, pDelegate ) -> NIL + * :setItemDelegateForRow( nRow, pDelegate ) -> NIL + * :setModel( pModel ) -> NIL + * :setSelectionBehavior( nBehavior ) -> NIL + * :setSelectionMode( nMode ) -> NIL + * :setSelectionModel( pSelectionModel ) -> NIL + * :setTabKeyNavigation( lEnable ) -> NIL + * :setTextElideMode( nMode ) -> NIL + * :setVerticalScrollMode( nMode ) -> NIL + * :showDropIndicator() -> lBool + * :sizeHintForColumn( nColumn ) -> nInt + * :sizeHintForIndex( pIndex ) -> pQSize + * :sizeHintForRow( nRow ) -> nInt + * :tabKeyNavigation() -> lBool + * :textElideMode() -> nQt::TextElideMode + * :verticalScrollMode() -> nScrollMode + * :visualRect( pIndex ) -> pQRect + * :clearSelection() -> NIL + * :edit( pIndex ) -> NIL + * :reset() -> NIL + * :scrollToBottom() -> NIL + * :scrollToTop() -> NIL + * :selectAll() -> NIL + * :setCurrentIndex( pIndex ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt index e765a4ed05..de586620ff 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt @@ -1,54 +1,52 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qabstractlistmodel.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt index 054616b785..a32a4d5455 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractPrintDialog() - $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 - :maxPage() -> nInt - :minPage() -> nInt - :printRange() -> nPrintRange - :printer() -> pQPrinter - :setFromTo( nFrom, nTo ) -> NIL - :setMinMax( nMin, nMax ) -> NIL - :setPrintRange( nRange ) -> NIL - :toPage() -> 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/TQAbstractPrintDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QAbstractPrintDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractPrintDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractPrintDialog():new( ... ) + * QAbstractPrintDialog():from( pPtr_OR_oObj_of_type_QAbstractPrintDialog ) + * QAbstractPrintDialog():configure( pPtr_OR_oObj_of_type_QAbstractPrintDialog ) + * $METHODS$ + * :exec() -> nInt + * :fromPage() -> nInt + * :maxPage() -> nInt + * :minPage() -> nInt + * :printRange() -> nPrintRange + * :printer() -> pQPrinter + * :setFromTo( nFrom, nTo ) -> NIL + * :setMinMax( nMin, nMax ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt index d5b00cdda7..247760c740 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractProxyModel() - $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 - :mapSelectionToSource( pProxySelection ) -> pQItemSelection - :mapToSource( pProxyIndex ) -> pQModelIndex - :setSourceModel( pSourceModel ) -> NIL - :sourceModel() -> pQAbstractItemModel - - $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/TQAbstractProxyModel.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractItemModel - $END$ + * $NAME$ + * QAbstractProxyModel() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractProxyModel.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractProxyModel():new( ... ) + * QAbstractProxyModel():from( pPtr_OR_oObj_of_type_QAbstractProxyModel ) + * QAbstractProxyModel():configure( pPtr_OR_oObj_of_type_QAbstractProxyModel ) + * $METHODS$ + * :mapFromSource( pSourceIndex ) -> pQModelIndex + * :mapSelectionFromSource( pSourceSelection ) -> pQItemSelection + * :mapSelectionToSource( pProxySelection ) -> pQItemSelection + * :mapToSource( pProxyIndex ) -> pQModelIndex + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt index 5e5aedaca9..b367a12d71 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractScrollArea() - $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 - :horizontalScrollBar() -> pQScrollBar - :horizontalScrollBarPolicy() -> nQt::ScrollBarPolicy - :maximumViewportSize() -> pQSize - :setCornerWidget( pWidget ) -> NIL - :setHorizontalScrollBar( pScrollBar ) -> NIL - :setHorizontalScrollBarPolicy( nQt::ScrollBarPolicy ) -> NIL - :setVerticalScrollBar( pScrollBar ) -> NIL - :setVerticalScrollBarPolicy( nQt::ScrollBarPolicy ) -> NIL - :setViewport( pWidget ) -> NIL - :verticalScrollBar() -> pQScrollBar - :verticalScrollBarPolicy() -> nQt::ScrollBarPolicy - :viewport() -> 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/TQAbstractScrollArea.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp - Library : hbqtgui - $SEEALSO$ - QFrame - $END$ + * $NAME$ + * QAbstractScrollArea() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractScrollArea.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractScrollArea():new( ... ) + * QAbstractScrollArea():from( pPtr_OR_oObj_of_type_QAbstractScrollArea ) + * QAbstractScrollArea():configure( pPtr_OR_oObj_of_type_QAbstractScrollArea ) + * $METHODS$ + * :addScrollBarWidget( pWidget, nAlignment ) -> NIL + * :cornerWidget() -> pQWidget + * :horizontalScrollBar() -> pQScrollBar + * :horizontalScrollBarPolicy() -> nQt::ScrollBarPolicy + * :maximumViewportSize() -> pQSize + * :setCornerWidget( pWidget ) -> NIL + * :setHorizontalScrollBar( pScrollBar ) -> NIL + * :setHorizontalScrollBarPolicy( nQt::ScrollBarPolicy ) -> NIL + * :setVerticalScrollBar( pScrollBar ) -> NIL + * :setVerticalScrollBarPolicy( nQt::ScrollBarPolicy ) -> NIL + * :setViewport( pWidget ) -> NIL + * :verticalScrollBar() -> pQScrollBar + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt index 029cd045f1..498197ff39 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt @@ -1,77 +1,75 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractSlider() - $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 - :invertedControls() -> lBool - :isSliderDown() -> lBool - :maximum() -> nInt - :minimum() -> nInt - :orientation() -> nQt::Orientation - :pageStep() -> nInt - :setInvertedAppearance( lBool ) -> NIL - :setInvertedControls( lBool ) -> NIL - :setMaximum( nInt ) -> NIL - :setMinimum( nInt ) -> NIL - :setPageStep( nInt ) -> NIL - :setRange( nMin, nMax ) -> NIL - :setSingleStep( nInt ) -> NIL - :setSliderDown( lBool ) -> NIL - :setSliderPosition( nInt ) -> NIL - :setTracking( lEnable ) -> NIL - :singleStep() -> nInt - :sliderPosition() -> nInt - :triggerAction( nAction ) -> NIL - :value() -> nInt - :setOrientation( nQt::Orientation ) -> NIL - :setValue( nInt ) -> 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/TQAbstractSlider.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QAbstractSlider() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractSlider.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractSlider():new( ... ) + * QAbstractSlider():from( pPtr_OR_oObj_of_type_QAbstractSlider ) + * QAbstractSlider():configure( pPtr_OR_oObj_of_type_QAbstractSlider ) + * $METHODS$ + * :hasTracking() -> lBool + * :invertedAppearance() -> lBool + * :invertedControls() -> lBool + * :isSliderDown() -> lBool + * :maximum() -> nInt + * :minimum() -> nInt + * :orientation() -> nQt::Orientation + * :pageStep() -> nInt + * :setInvertedAppearance( lBool ) -> NIL + * :setInvertedControls( lBool ) -> NIL + * :setMaximum( nInt ) -> NIL + * :setMinimum( nInt ) -> NIL + * :setPageStep( nInt ) -> NIL + * :setRange( nMin, nMax ) -> NIL + * :setSingleStep( nInt ) -> NIL + * :setSliderDown( lBool ) -> NIL + * :setSliderPosition( nInt ) -> NIL + * :setTracking( lEnable ) -> NIL + * :singleStep() -> nInt + * :sliderPosition() -> nInt + * :triggerAction( nAction ) -> NIL + * :value() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt index 96bf1a07d3..2f8a92f7e5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt @@ -1,79 +1,77 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractSpinBox() - $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 - :correctionMode() -> nCorrectionMode - :hasAcceptableInput() -> lBool - :hasFrame() -> lBool - :interpretText() -> NIL - :isAccelerated() -> lBool - :isReadOnly() -> lBool - :keyboardTracking() -> lBool - :setAccelerated( lOn ) -> NIL - :setAlignment( nFlag ) -> NIL - :setButtonSymbols( nBs ) -> NIL - :setCorrectionMode( nCm ) -> NIL - :setFrame( lBool ) -> NIL - :setKeyboardTracking( lKt ) -> NIL - :setReadOnly( lR ) -> NIL - :setSpecialValueText( cTxt ) -> NIL - :setWrapping( lW ) -> NIL - :specialValueText() -> cQString - :stepBy( nSteps ) -> NIL - :text() -> cQString - :wrapping() -> lBool - :clear() -> NIL - :selectAll() -> NIL - :stepDown() -> NIL - :stepUp() -> 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/TQAbstractSpinBox.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QAbstractSpinBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractSpinBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractSpinBox():new( ... ) + * QAbstractSpinBox():from( pPtr_OR_oObj_of_type_QAbstractSpinBox ) + * QAbstractSpinBox():configure( pPtr_OR_oObj_of_type_QAbstractSpinBox ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :buttonSymbols() -> nButtonSymbols + * :correctionMode() -> nCorrectionMode + * :hasAcceptableInput() -> lBool + * :hasFrame() -> lBool + * :interpretText() -> NIL + * :isAccelerated() -> lBool + * :isReadOnly() -> lBool + * :keyboardTracking() -> lBool + * :setAccelerated( lOn ) -> NIL + * :setAlignment( nFlag ) -> NIL + * :setButtonSymbols( nBs ) -> NIL + * :setCorrectionMode( nCm ) -> NIL + * :setFrame( lBool ) -> NIL + * :setKeyboardTracking( lKt ) -> NIL + * :setReadOnly( lR ) -> NIL + * :setSpecialValueText( cTxt ) -> NIL + * :setWrapping( lW ) -> NIL + * :specialValueText() -> cQString + * :stepBy( nSteps ) -> NIL + * :text() -> cQString + * :wrapping() -> lBool + * :clear() -> NIL + * :selectAll() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt index efe0f0a02a..47e913f8b5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt @@ -1,54 +1,52 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qabstracttablemodel.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt index 86e23e3daf..ff0dde44de 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAbstractTextDocumentLayout() - $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 - :document() -> pQTextDocument - :documentSize() -> pQSizeF - :frameBoundingRect( pFrame ) -> pQRectF - :hitTest( pPoint, nAccuracy ) -> nInt - :pageCount() -> nInt - :paintDevice() -> pQPaintDevice - :registerHandler( nObjectType, pComponent ) -> NIL - :setPaintDevice( pDevice ) -> 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/TQAbstractTextDocumentLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QAbstractTextDocumentLayout() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAbstractTextDocumentLayout():new( ... ) + * QAbstractTextDocumentLayout():from( pPtr_OR_oObj_of_type_QAbstractTextDocumentLayout ) + * QAbstractTextDocumentLayout():configure( pPtr_OR_oObj_of_type_QAbstractTextDocumentLayout ) + * $METHODS$ + * :anchorAt( pPosition ) -> cQString + * :blockBoundingRect( pBlock ) -> pQRectF + * :document() -> pQTextDocument + * :documentSize() -> pQSizeF + * :frameBoundingRect( pFrame ) -> pQRectF + * :hitTest( pPoint, nAccuracy ) -> nInt + * :pageCount() -> nInt + * :paintDevice() -> pQPaintDevice + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qaction.txt b/harbour/contrib/hbqt/doc/en/class_qaction.txt index 079aafca60..a3e09ff3b9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qaction.txt +++ b/harbour/contrib/hbqt/doc/en/class_qaction.txt @@ -1,103 +1,101 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QAction() - $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 - :associatedWidgets() -> pQList - :autoRepeat() -> lBool - :data() -> pQVariant - :font() -> pQFont - :icon() -> pQIcon - :iconText() -> cQString - :isCheckable() -> lBool - :isChecked() -> lBool - :isEnabled() -> lBool - :isIconVisibleInMenu() -> lBool - :isSeparator() -> lBool - :isVisible() -> lBool - :menu() -> pQMenu - :menuRole() -> nMenuRole - :parentWidget() -> pQWidget - :setActionGroup( pGroup ) -> NIL - :setAutoRepeat( lBool ) -> NIL - :setCheckable( lBool ) -> NIL - :setData( pUserData ) -> NIL - :setFont( pFont ) -> NIL - :setIcon( cIcon ) -> NIL - :setIconText( cText ) -> NIL - :setIconVisibleInMenu( lVisible ) -> NIL - :setMenu( pMenu ) -> NIL - :setMenuRole( nMenuRole ) -> NIL - :setSeparator( lB ) -> NIL - :setShortcut( pShortcut ) -> NIL - :setShortcutContext( nContext ) -> NIL - :setShortcuts( nKey ) -> NIL - :setStatusTip( cStatusTip ) -> NIL - :setText( cText ) -> NIL - :setToolTip( cTip ) -> NIL - :setWhatsThis( cWhat ) -> NIL - :shortcut() -> pQKeySequence - :shortcutContext() -> nQt::ShortcutContext - :shortcuts() -> pQList - :showStatusText( pWidget ) -> lBool - :statusTip() -> cQString - :text() -> cQString - :toolTip() -> cQString - :whatsThis() -> cQString - :hover() -> NIL - :setChecked( lBool ) -> NIL - :setDisabled( lB ) -> NIL - :setEnabled( lBool ) -> NIL - :setVisible( lBool ) -> NIL - :toggle() -> NIL - :trigger() -> 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/TQAction.prg - C++ wrappers : contrib/hbqt/qtgui/QAction.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QAction() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQAction.prg + * C++ wrappers : contrib/hbqt/qtgui/QAction.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QAction():new( ... ) + * QAction():from( pPtr_OR_oObj_of_type_QAction ) + * QAction():configure( pPtr_OR_oObj_of_type_QAction ) + * $METHODS$ + * :actionGroup() -> Group + * :activate( nEvent ) -> NIL + * :associatedWidgets() -> pQList + * :autoRepeat() -> lBool + * :data() -> pQVariant + * :font() -> pQFont + * :icon() -> pQIcon + * :iconText() -> cQString + * :isCheckable() -> lBool + * :isChecked() -> lBool + * :isEnabled() -> lBool + * :isIconVisibleInMenu() -> lBool + * :isSeparator() -> lBool + * :isVisible() -> lBool + * :menu() -> pQMenu + * :menuRole() -> nMenuRole + * :parentWidget() -> pQWidget + * :setActionGroup( pGroup ) -> NIL + * :setAutoRepeat( lBool ) -> NIL + * :setCheckable( lBool ) -> NIL + * :setData( pUserData ) -> NIL + * :setFont( pFont ) -> NIL + * :setIcon( cIcon ) -> NIL + * :setIconText( cText ) -> NIL + * :setIconVisibleInMenu( lVisible ) -> NIL + * :setMenu( pMenu ) -> NIL + * :setMenuRole( nMenuRole ) -> NIL + * :setSeparator( lB ) -> NIL + * :setShortcut( pShortcut ) -> NIL + * :setShortcutContext( nContext ) -> NIL + * :setShortcuts( nKey ) -> NIL + * :setStatusTip( cStatusTip ) -> NIL + * :setText( cText ) -> NIL + * :setToolTip( cTip ) -> NIL + * :setWhatsThis( cWhat ) -> NIL + * :shortcut() -> pQKeySequence + * :shortcutContext() -> nQt::ShortcutContext + * :shortcuts() -> pQList + * :showStatusText( pWidget ) -> lBool + * :statusTip() -> cQString + * :text() -> cQString + * :toolTip() -> cQString + * :whatsThis() -> cQString + * :hover() -> NIL + * :setChecked( lBool ) -> NIL + * :setDisabled( lB ) -> NIL + * :setEnabled( lBool ) -> NIL + * :setVisible( lBool ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt index 88b78c86ed..884826ef6a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt +++ b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QActionGroup() - $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 - :addAction_1( cText ) -> pQAction - :addAction_2( cIcon, cText ) -> pQAction - :checkedAction() -> pQAction - :isEnabled() -> lBool - :isExclusive() -> lBool - :isVisible() -> lBool - :removeAction( pAction ) -> NIL - :setDisabled( lB ) -> NIL - :setEnabled( lBool ) -> NIL - :setExclusive( lBool ) -> NIL - :setVisible( lBool ) -> 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/TQActionGroup.prg - C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QActionGroup() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQActionGroup.prg + * C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QActionGroup():new( ... ) + * QActionGroup():from( pPtr_OR_oObj_of_type_QActionGroup ) + * QActionGroup():configure( pPtr_OR_oObj_of_type_QActionGroup ) + * $METHODS$ + * :actions() -> pQList + * :addAction( pAction ) -> pQAction + * :addAction_1( cText ) -> pQAction + * :addAction_2( cIcon, cText ) -> pQAction + * :checkedAction() -> pQAction + * :isEnabled() -> lBool + * :isExclusive() -> lBool + * :isVisible() -> lBool + * :removeAction( pAction ) -> NIL + * :setDisabled( lB ) -> NIL + * :setEnabled( lBool ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qapplication.txt b/harbour/contrib/hbqt/doc/en/class_qapplication.txt index a4f4ca0a5a..f4700ae103 100644 --- a/harbour/contrib/hbqt/doc/en/class_qapplication.txt +++ b/harbour/contrib/hbqt/doc/en/class_qapplication.txt @@ -1,127 +1,125 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QApplication() - $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 - :saveState( pManager ) -> NIL - :sessionId() -> cQString - :sessionKey() -> cQString - :styleSheet() -> cQString - :activeModalWidget() -> pQWidget - :activePopupWidget() -> pQWidget - :activeWindow() -> pQWidget - :alert( pWidget, nMsec ) -> NIL - :beep() -> NIL - :changeOverrideCursor( pCursor ) -> NIL - :clipboard() -> pQClipboard - :colorSpec() -> nInt - :cursorFlashTime() -> nInt - :desktop() -> pQDesktopWidget - :desktopSettingsAware() -> lBool - :doubleClickInterval() -> nInt - :exec() -> nInt - :focusWidget() -> pQWidget - :font() -> pQFont - :font_1( pWidget ) -> pQFont - :font_2( pClassName ) -> pQFont - :fontMetrics() -> pQFontMetrics - :globalStrut() -> pQSize - :isEffectEnabled( nEffect ) -> lBool - :isLeftToRight() -> lBool - :isRightToLeft() -> lBool - :keyboardInputDirection() -> nQt::LayoutDirection - :keyboardInputInterval() -> nInt - :keyboardInputLocale() -> pQLocale - :keyboardModifiers() -> nQt::KeyboardModifiers - :layoutDirection() -> nQt::LayoutDirection - :mouseButtons() -> nQt::MouseButtons - :overrideCursor() -> pQCursor - :palette() -> pQPalette - :palette_1( pWidget ) -> pQPalette - :palette_2( pClassName ) -> pQPalette - :quitOnLastWindowClosed() -> lBool - :restoreOverrideCursor() -> NIL - :setActiveWindow( pActive ) -> NIL - :setColorSpec( nSpec ) -> NIL - :setCursorFlashTime( nInt ) -> NIL - :setDesktopSettingsAware( lOn ) -> NIL - :setDoubleClickInterval( nInt ) -> NIL - :setEffectEnabled( nEffect, lEnable ) -> NIL - :setFont( pFont, pClassName ) -> NIL - :setGlobalStrut( pQSize ) -> NIL - :setGraphicsSystem( cSystem ) -> NIL - :setKeyboardInputInterval( nInt ) -> NIL - :setLayoutDirection( nDirection ) -> NIL - :setOverrideCursor( pCursor ) -> NIL - :setPalette( pPalette, pClassName ) -> NIL - :setQuitOnLastWindowClosed( lQuit ) -> NIL - :setStartDragDistance( nL ) -> NIL - :setStartDragTime( nMs ) -> NIL - :setStyle( pStyle ) -> NIL - :setStyle_1( cStyle ) -> pQStyle - :setWheelScrollLines( nInt ) -> NIL - :setWindowIcon( cIcon ) -> NIL - :startDragDistance() -> nInt - :startDragTime() -> nInt - :style() -> pQStyle - :syncX() -> NIL - :topLevelAt( pPoint ) -> pQWidget - :topLevelAt_1( nX, nY ) -> pQWidget - :type() -> nType - :wheelScrollLines() -> nInt - :widgetAt( pPoint ) -> pQWidget - :widgetAt_1( nX, nY ) -> pQWidget - :windowIcon() -> pQIcon - :aboutQt() -> NIL - :closeAllWindows() -> NIL - :setStyleSheet( cSheet ) -> 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/TQApplication.prg - C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp - Library : hbqtgui - $SEEALSO$ - QCoreApplication - $END$ + * $NAME$ + * QApplication() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQApplication.prg + * C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QApplication():new( ... ) + * QApplication():from( pPtr_OR_oObj_of_type_QApplication ) + * QApplication():configure( pPtr_OR_oObj_of_type_QApplication ) + * $METHODS$ + * :commitData( pManager ) -> NIL + * :isSessionRestored() -> lBool + * :saveState( pManager ) -> NIL + * :sessionId() -> cQString + * :sessionKey() -> cQString + * :styleSheet() -> cQString + * :activeModalWidget() -> pQWidget + * :activePopupWidget() -> pQWidget + * :activeWindow() -> pQWidget + * :alert( pWidget, nMsec ) -> NIL + * :beep() -> NIL + * :changeOverrideCursor( pCursor ) -> NIL + * :clipboard() -> pQClipboard + * :colorSpec() -> nInt + * :cursorFlashTime() -> nInt + * :desktop() -> pQDesktopWidget + * :desktopSettingsAware() -> lBool + * :doubleClickInterval() -> nInt + * :exec() -> nInt + * :focusWidget() -> pQWidget + * :font() -> pQFont + * :font_1( pWidget ) -> pQFont + * :font_2( pClassName ) -> pQFont + * :fontMetrics() -> pQFontMetrics + * :globalStrut() -> pQSize + * :isEffectEnabled( nEffect ) -> lBool + * :isLeftToRight() -> lBool + * :isRightToLeft() -> lBool + * :keyboardInputDirection() -> nQt::LayoutDirection + * :keyboardInputInterval() -> nInt + * :keyboardInputLocale() -> pQLocale + * :keyboardModifiers() -> nQt::KeyboardModifiers + * :layoutDirection() -> nQt::LayoutDirection + * :mouseButtons() -> nQt::MouseButtons + * :overrideCursor() -> pQCursor + * :palette() -> pQPalette + * :palette_1( pWidget ) -> pQPalette + * :palette_2( pClassName ) -> pQPalette + * :quitOnLastWindowClosed() -> lBool + * :restoreOverrideCursor() -> NIL + * :setActiveWindow( pActive ) -> NIL + * :setColorSpec( nSpec ) -> NIL + * :setCursorFlashTime( nInt ) -> NIL + * :setDesktopSettingsAware( lOn ) -> NIL + * :setDoubleClickInterval( nInt ) -> NIL + * :setEffectEnabled( nEffect, lEnable ) -> NIL + * :setFont( pFont, pClassName ) -> NIL + * :setGlobalStrut( pQSize ) -> NIL + * :setGraphicsSystem( cSystem ) -> NIL + * :setKeyboardInputInterval( nInt ) -> NIL + * :setLayoutDirection( nDirection ) -> NIL + * :setOverrideCursor( pCursor ) -> NIL + * :setPalette( pPalette, pClassName ) -> NIL + * :setQuitOnLastWindowClosed( lQuit ) -> NIL + * :setStartDragDistance( nL ) -> NIL + * :setStartDragTime( nMs ) -> NIL + * :setStyle( pStyle ) -> NIL + * :setStyle_1( cStyle ) -> pQStyle + * :setWheelScrollLines( nInt ) -> NIL + * :setWindowIcon( cIcon ) -> NIL + * :startDragDistance() -> nInt + * :startDragTime() -> nInt + * :style() -> pQStyle + * :syncX() -> NIL + * :topLevelAt( pPoint ) -> pQWidget + * :topLevelAt_1( nX, nY ) -> pQWidget + * :type() -> nType + * :wheelScrollLines() -> nInt + * :widgetAt( pPoint ) -> pQWidget + * :widgetAt_1( nX, nY ) -> pQWidget + * :windowIcon() -> pQIcon + * :aboutQt() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbitarray.txt b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt index 1d9bb6e471..065f2337c2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbitarray.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt @@ -1,69 +1,67 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QBitArray() - $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 - :clearBit( nI ) -> NIL - :count() -> nInt - :count_1( lOn ) -> nInt - :fill( lValue, nSize ) -> lBool - :fill_1( lValue, nBegin, nEnd ) -> NIL - :isEmpty() -> lBool - :isNull() -> lBool - :resize( nSize ) -> NIL - :setBit( nI ) -> NIL - :setBit_1( nI, lValue ) -> NIL - :size() -> nInt - :testBit( nI ) -> lBool - :toggleBit( nI ) -> lBool - :truncate( nPos ) -> 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/qtcore/TQBitArray.prg - C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QBitArray() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQBitArray.prg + * C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QBitArray():new( ... ) + * QBitArray():from( pPtr_OR_oObj_of_type_QBitArray ) + * QBitArray():configure( pPtr_OR_oObj_of_type_QBitArray ) + * $METHODS$ + * :at( nI ) -> lBool + * :clear() -> NIL + * :clearBit( nI ) -> NIL + * :count() -> nInt + * :count_1( lOn ) -> nInt + * :fill( lValue, nSize ) -> lBool + * :fill_1( lValue, nBegin, nEnd ) -> NIL + * :isEmpty() -> lBool + * :isNull() -> lBool + * :resize( nSize ) -> NIL + * :setBit( nI ) -> NIL + * :setBit_1( nI, lValue ) -> NIL + * :size() -> nInt + * :testBit( nI ) -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbitmap.txt b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt index a8f5536667..ced09856d1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbitmap.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QBitmap() - $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 ) - $ARGUMENTS$ - - $RETURNS$ - An instance of the object of type QBitmap - $METHODS$ - :clear() -> NIL - - $DESCRIPTION$ - - $EXAMPLES$ - oBitmap := QBitmap():new() - oBitmap := QBitmap():new( pBitmap_other ) - oBitmap := QBitmap():new( nWidth, nHeight ) - oBitmap := QBitmap():new( "QPixmap", pQPixmap ) - oBitmap := QBitmap():new( "QSize" , pQSize ) - oBitmap := QBitmap():new( cImageFilename, [ cFormat ] ) - - $TESTS$ - - $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/TQBitmap.prg - C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp - Library : hbqtgui - $SEEALSO$ - QPixmap - $END$ + * $NAME$ + * QBitmap() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQBitmap.prg + * C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QBitmap():new( ... ) + * QBitmap():from( pPtr_OR_oObj_of_type_QBitmap ) + * QBitmap():configure( pPtr_OR_oObj_of_type_QBitmap ) + * $METHODS$ + * :clear() -> NIL + * + * $RETURNS$ + * An instance of the object of type QBitmap + * $SEEALSO$ + * QPixmap + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oBitmap := QBitmap():new() + * oBitmap := QBitmap():new( pBitmap_other ) + * oBitmap := QBitmap():new( nWidth, nHeight ) + * oBitmap := QBitmap():new( "QPixmap", pQPixmap ) + * oBitmap := QBitmap():new( "QSize" , pQSize ) + * oBitmap := QBitmap():new( cImageFilename, [ cFormat ] ) + * + * $INHERITS$ + * QPixmap + * $ONELINER$ + * Creates a new QBitmap object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qbitmap.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt index 2dc668bdb2..a41008cb0d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt @@ -1,73 +1,71 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QBoxLayout() - $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 - :addSpacing( nSize ) -> NIL - :addStretch( nStretch ) -> NIL - :addStrut( nSize ) -> NIL - :addWidget( pWidget, nStretch, nAlignment ) -> NIL - :direction() -> nDirection - :insertLayout( nIndex, pLayout, nStretch ) -> NIL - :insertSpacerItem( nIndex, pSpacerItem ) -> NIL - :insertSpacing( nIndex, nSize ) -> NIL - :insertStretch( nIndex, nStretch ) -> NIL - :insertWidget( nIndex, pWidget, nStretch, nAlignment ) -> NIL - :invalidate() -> NIL - :setDirection( nDirection ) -> NIL - :setSpacing( nSpacing ) -> NIL - :setStretch( nIndex, nStretch ) -> NIL - :setStretchFactor( pWidget, nStretch ) -> lBool - :setStretchFactor_1( pLayout, nStretch ) -> lBool - :spacing() -> nInt - :stretch( nIndex ) -> 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/TQBoxLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp - Library : hbqtgui - $SEEALSO$ - QLayout - $END$ + * $NAME$ + * QBoxLayout() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQBoxLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QBoxLayout():new( ... ) + * QBoxLayout():from( pPtr_OR_oObj_of_type_QBoxLayout ) + * QBoxLayout():configure( pPtr_OR_oObj_of_type_QBoxLayout ) + * $METHODS$ + * :addLayout( pLayout, nStretch ) -> NIL + * :addSpacerItem( pSpacerItem ) -> NIL + * :addSpacing( nSize ) -> NIL + * :addStretch( nStretch ) -> NIL + * :addStrut( nSize ) -> NIL + * :addWidget( pWidget, nStretch, nAlignment ) -> NIL + * :direction() -> nDirection + * :insertLayout( nIndex, pLayout, nStretch ) -> NIL + * :insertSpacerItem( nIndex, pSpacerItem ) -> NIL + * :insertSpacing( nIndex, nSize ) -> NIL + * :insertStretch( nIndex, nStretch ) -> NIL + * :insertWidget( nIndex, pWidget, nStretch, nAlignment ) -> NIL + * :invalidate() -> NIL + * :setDirection( nDirection ) -> NIL + * :setSpacing( nSpacing ) -> NIL + * :setStretch( nIndex, nStretch ) -> NIL + * :setStretchFactor( pWidget, nStretch ) -> lBool + * :setStretchFactor_1( pLayout, nStretch ) -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbrush.txt b/harbour/contrib/hbqt/doc/en/class_qbrush.txt index 912f9ef944..d322e5a393 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbrush.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbrush.txt @@ -1,78 +1,76 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QBrush() - $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 - :matrix() -> pQMatrix - :setColor( pColor ) -> NIL - :setColor_1( nColor ) -> NIL - :setMatrix( pMatrix ) -> NIL - :setStyle( nStyle ) -> NIL - :setTexture( pPixmap ) -> NIL - :setTextureImage( pImage ) -> NIL - :setTransform( pMatrix ) -> NIL - :style() -> nQt::BrushStyle - :texture() -> pQPixmap - :textureImage() -> pQImage - :transform() -> pQTransform - - $DESCRIPTION$ - - $EXAMPLES$ - oBrush := QBrush():new() - oBrush := QBrush():new( pQBrush ) - oBrush := QBrush():new( nQt_GlobalColor ) - oBrush := QBrush():new( nQt_GlobalColor, nQt_BrushStyle ) - oBrush := QBrush():new( pQColor, nQt_BrushStyle ) - oBrush := QBrush():new( pQColor, pQPixmap ) - oBrush := QBrush():new( nQt_GlobalColor, pQPixmap ) - oBrush := QBrush():new( "QPixmap" , pQPixmap ) - oBrush := QBrush():new( "QImage" , pQImage ) - oBrush := QBrush():new( "QGradient", pQGradient ) - oBrush := QBrush():new( "QColor" , pQColor, [ nQt_BrushStyle = Qt_SolidPattern ] ) - - $TESTS$ - - $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/TQBrush.prg - C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QBrush() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQBrush.prg + * C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QBrush():new( ... ) + * QBrush():from( pPtr_OR_oObj_of_type_QBrush ) + * QBrush():configure( pPtr_OR_oObj_of_type_QBrush ) + * $METHODS$ + * :color() -> pQColor + * :isOpaque() -> lBool + * :matrix() -> pQMatrix + * :setColor( pColor ) -> NIL + * :setColor_1( nColor ) -> NIL + * :setMatrix( pMatrix ) -> NIL + * :setStyle( nStyle ) -> NIL + * :setTexture( pPixmap ) -> NIL + * :setTextureImage( pImage ) -> NIL + * :setTransform( pMatrix ) -> NIL + * :style() -> nQt::BrushStyle + * :texture() -> pQPixmap + * :textureImage() -> pQImage + * :transform() -> pQTransform + * + * $RETURNS$ + * An instance of the object of type QBrush + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oBrush := QBrush():new() + * oBrush := QBrush():new( pQBrush ) + * oBrush := QBrush():new( nQt_GlobalColor ) + * oBrush := QBrush():new( nQt_GlobalColor, nQt_BrushStyle ) + * oBrush := QBrush():new( pQColor, nQt_BrushStyle ) + * oBrush := QBrush():new( pQColor, pQPixmap ) + * oBrush := QBrush():new( nQt_GlobalColor, pQPixmap ) + * oBrush := QBrush():new( "QPixmap" , pQPixmap ) + * oBrush := QBrush():new( "QImage" , pQImage ) + * oBrush := QBrush():new( "QGradient", pQGradient ) + * oBrush := QBrush():new( "QColor" , pQColor, [ nQt_BrushStyle = Qt_SolidPattern ] ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QBrush object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qbrush.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbuffer.txt b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt index 0a50979b34..db81a02301 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbuffer.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QBuffer() - $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 - :data() -> pQByteArray - :setBuffer( pByteArray ) -> NIL - :setData( pData, nSize ) -> NIL - :setData_1( pData ) -> 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/qtcore/TQBuffer.prg - C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp - Library : hbqtcore - $SEEALSO$ - QIODevice - $END$ + * $NAME$ + * QBuffer() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQBuffer.prg + * C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QBuffer():new( ... ) + * QBuffer():from( pPtr_OR_oObj_of_type_QBuffer ) + * QBuffer():configure( pPtr_OR_oObj_of_type_QBuffer ) + * $METHODS$ + * :buffer() -> pQByteArray + * :buffer_1() -> pQByteArray + * :data() -> pQByteArray + * :setBuffer( pByteArray ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt index d92cfbfabc..96a03e4c4e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt @@ -1,64 +1,62 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QButtonGroup() - $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 - :button( nId ) -> pQAbstractButton - :buttons() -> pQList - :checkedButton() -> pQAbstractButton - :checkedId() -> nInt - :exclusive() -> lBool - :id( pButton ) -> nInt - :removeButton( pButton ) -> NIL - :setExclusive( lBool ) -> NIL - :setId( pButton, nId ) -> 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/TQButtonGroup.prg - C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QButtonGroup() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQButtonGroup.prg + * C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QButtonGroup():new( ... ) + * QButtonGroup():from( pPtr_OR_oObj_of_type_QButtonGroup ) + * QButtonGroup():configure( pPtr_OR_oObj_of_type_QButtonGroup ) + * $METHODS$ + * :addButton( pButton ) -> NIL + * :addButton_1( pButton, nId ) -> NIL + * :button( nId ) -> pQAbstractButton + * :buttons() -> pQList + * :checkedButton() -> pQAbstractButton + * :checkedId() -> nInt + * :exclusive() -> lBool + * :id( pButton ) -> nInt + * :removeButton( pButton ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qbytearray.txt b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt index f412ef927c..b5084eb1fb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbytearray.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt @@ -1,103 +1,101 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QByteArray() - $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 - :chop( nN ) -> NIL - :clear() -> NIL - :constData() -> cChar - :count( pBa ) -> nInt - :count_1( pStr ) -> nInt - :count_2( cCh ) -> nInt - :count_3() -> nInt - :data() -> cChar - :data_1() -> cChar - :endsWith( pBa ) -> lBool - :endsWith_1( pStr ) -> lBool - :endsWith_2( cCh ) -> lBool - :indexOf( pBa, nFrom ) -> nInt - :indexOf_1( cStr, nFrom ) -> nInt - :indexOf_2( pStr, nFrom ) -> nInt - :indexOf_3( cCh, nFrom ) -> nInt - :isEmpty() -> lBool - :isNull() -> lBool - :lastIndexOf( pBa, nFrom ) -> nInt - :lastIndexOf_1( cStr, nFrom ) -> nInt - :lastIndexOf_2( pStr, nFrom ) -> nInt - :lastIndexOf_3( cCh, nFrom ) -> nInt - :length() -> nInt - :push_back( pOther ) -> NIL - :push_back_1( pStr ) -> NIL - :push_back_2( cCh ) -> NIL - :push_front( pOther ) -> NIL - :push_front_1( pStr ) -> NIL - :push_front_2( cCh ) -> NIL - :reserve( nSize ) -> NIL - :resize( nSize ) -> NIL - :size() -> nInt - :split( cSep ) -> pQList - :squeeze() -> NIL - :startsWith( pBa ) -> lBool - :startsWith_1( pStr ) -> lBool - :startsWith_2( cCh ) -> lBool - :toDouble( @lOk ) -> nDouble - :toFloat( @lOk ) -> nFloat - :toInt( @lOk, nBase ) -> nInt - :toLong( @lOk, nBase ) -> nLong - :toLongLong( @lOk, nBase ) -> nQlonglong - :toShort( @lOk, nBase ) -> nShort - :toUInt( @lOk, nBase ) -> nUint - :toULong( @lOk, nBase ) -> nUlong - :toULongLong( @lOk, nBase ) -> nQulonglong - :toUShort( @lOk, nBase ) -> nUshort - :truncate( nPos ) -> 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/qtcore/TQByteArray.prg - C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QByteArray() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQByteArray.prg + * C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QByteArray():new( ... ) + * QByteArray():from( pPtr_OR_oObj_of_type_QByteArray ) + * QByteArray():configure( pPtr_OR_oObj_of_type_QByteArray ) + * $METHODS$ + * :at( nI ) -> cChar + * :capacity() -> nInt + * :chop( nN ) -> NIL + * :clear() -> NIL + * :constData() -> cChar + * :count( pBa ) -> nInt + * :count_1( pStr ) -> nInt + * :count_2( cCh ) -> nInt + * :count_3() -> nInt + * :data() -> cChar + * :data_1() -> cChar + * :endsWith( pBa ) -> lBool + * :endsWith_1( pStr ) -> lBool + * :endsWith_2( cCh ) -> lBool + * :indexOf( pBa, nFrom ) -> nInt + * :indexOf_1( cStr, nFrom ) -> nInt + * :indexOf_2( pStr, nFrom ) -> nInt + * :indexOf_3( cCh, nFrom ) -> nInt + * :isEmpty() -> lBool + * :isNull() -> lBool + * :lastIndexOf( pBa, nFrom ) -> nInt + * :lastIndexOf_1( cStr, nFrom ) -> nInt + * :lastIndexOf_2( pStr, nFrom ) -> nInt + * :lastIndexOf_3( cCh, nFrom ) -> nInt + * :length() -> nInt + * :push_back( pOther ) -> NIL + * :push_back_1( pStr ) -> NIL + * :push_back_2( cCh ) -> NIL + * :push_front( pOther ) -> NIL + * :push_front_1( pStr ) -> NIL + * :push_front_2( cCh ) -> NIL + * :reserve( nSize ) -> NIL + * :resize( nSize ) -> NIL + * :size() -> nInt + * :split( cSep ) -> pQList + * :squeeze() -> NIL + * :startsWith( pBa ) -> lBool + * :startsWith_1( pStr ) -> lBool + * :startsWith_2( cCh ) -> lBool + * :toDouble( @lOk ) -> nDouble + * :toFloat( @lOk ) -> nFloat + * :toInt( @lOk, nBase ) -> nInt + * :toLong( @lOk, nBase ) -> nLong + * :toLongLong( @lOk, nBase ) -> nQlonglong + * :toShort( @lOk, nBase ) -> nShort + * :toUInt( @lOk, nBase ) -> nUint + * :toULong( @lOk, nBase ) -> nUlong + * :toULongLong( @lOk, nBase ) -> nQulonglong + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt index 377338b305..4d9c5ca950 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt @@ -1,91 +1,89 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QCalendarWidget() - $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 - :firstDayOfWeek() -> nQt::DayOfWeek - :headerTextFormat() -> pQTextCharFormat - :horizontalHeaderFormat() -> nHorizontalHeaderFormat - :isDateEditEnabled() -> lBool - :isGridVisible() -> lBool - :isNavigationBarVisible() -> lBool - :maximumDate() -> pQDate - :minimumDate() -> pQDate - :monthShown() -> nInt - :selectedDate() -> pQDate - :selectionMode() -> nSelectionMode - :setDateEditAcceptDelay( nDelay ) -> NIL - :setDateEditEnabled( lEnable ) -> NIL - :setDateTextFormat( pDate, pFormat ) -> NIL - :setFirstDayOfWeek( nDayOfWeek ) -> NIL - :setHeaderTextFormat( pFormat ) -> NIL - :setHorizontalHeaderFormat( nFormat ) -> NIL - :setMaximumDate( pDate ) -> NIL - :setMinimumDate( pDate ) -> NIL - :setSelectionMode( nMode ) -> NIL - :setVerticalHeaderFormat( nFormat ) -> NIL - :setWeekdayTextFormat( nDayOfWeek, pFormat ) -> NIL - :verticalHeaderFormat() -> nVerticalHeaderFormat - :weekdayTextFormat( nDayOfWeek ) -> pQTextCharFormat - :yearShown() -> nInt - :setCurrentPage( nYear, nMonth ) -> NIL - :setDateRange( pMin, pMax ) -> NIL - :setGridVisible( lShow ) -> NIL - :setNavigationBarVisible( lVisible ) -> NIL - :setSelectedDate( pDate ) -> NIL - :showNextMonth() -> NIL - :showNextYear() -> NIL - :showPreviousMonth() -> NIL - :showPreviousYear() -> NIL - :showSelectedDate() -> NIL - :showToday() -> 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/TQCalendarWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QCalendarWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQCalendarWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QCalendarWidget():new( ... ) + * QCalendarWidget():from( pPtr_OR_oObj_of_type_QCalendarWidget ) + * QCalendarWidget():configure( pPtr_OR_oObj_of_type_QCalendarWidget ) + * $METHODS$ + * :dateEditAcceptDelay() -> nInt + * :dateTextFormat( pDate ) -> pQTextCharFormat + * :firstDayOfWeek() -> nQt::DayOfWeek + * :headerTextFormat() -> pQTextCharFormat + * :horizontalHeaderFormat() -> nHorizontalHeaderFormat + * :isDateEditEnabled() -> lBool + * :isGridVisible() -> lBool + * :isNavigationBarVisible() -> lBool + * :maximumDate() -> pQDate + * :minimumDate() -> pQDate + * :monthShown() -> nInt + * :selectedDate() -> pQDate + * :selectionMode() -> nSelectionMode + * :setDateEditAcceptDelay( nDelay ) -> NIL + * :setDateEditEnabled( lEnable ) -> NIL + * :setDateTextFormat( pDate, pFormat ) -> NIL + * :setFirstDayOfWeek( nDayOfWeek ) -> NIL + * :setHeaderTextFormat( pFormat ) -> NIL + * :setHorizontalHeaderFormat( nFormat ) -> NIL + * :setMaximumDate( pDate ) -> NIL + * :setMinimumDate( pDate ) -> NIL + * :setSelectionMode( nMode ) -> NIL + * :setVerticalHeaderFormat( nFormat ) -> NIL + * :setWeekdayTextFormat( nDayOfWeek, pFormat ) -> NIL + * :verticalHeaderFormat() -> nVerticalHeaderFormat + * :weekdayTextFormat( nDayOfWeek ) -> pQTextCharFormat + * :yearShown() -> nInt + * :setCurrentPage( nYear, nMonth ) -> NIL + * :setDateRange( pMin, pMax ) -> NIL + * :setGridVisible( lShow ) -> NIL + * :setNavigationBarVisible( lVisible ) -> NIL + * :setSelectedDate( pDate ) -> NIL + * :showNextMonth() -> NIL + * :showNextYear() -> NIL + * :showPreviousMonth() -> NIL + * :showPreviousYear() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qchar.txt b/harbour/contrib/hbqt/doc/en/class_qchar.txt index eb6e02d524..6366fab4d6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qchar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qchar.txt @@ -1,81 +1,79 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QChar() - $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 - :decomposition() -> cQString - :decompositionTag() -> nDecomposition - :digitValue() -> nInt - :direction() -> nDirection - :hasMirrored() -> lBool - :isDigit() -> lBool - :isHighSurrogate() -> lBool - :isLetter() -> lBool - :isLetterOrNumber() -> lBool - :isLowSurrogate() -> lBool - :isLower() -> lBool - :isMark() -> lBool - :isNull() -> lBool - :isNumber() -> lBool - :isPrint() -> lBool - :isPunct() -> lBool - :isSpace() -> lBool - :isSymbol() -> lBool - :isTitleCase() -> lBool - :isUpper() -> lBool - :joining() -> nJoining - :toAscii() -> cChar - :toLatin1() -> cChar - :unicode() -> nUshort - :unicode_1() -> nUshort - :unicodeVersion() -> nUnicodeVersion - - $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/TQChar.prg - C++ wrappers : contrib/hbqt/qtcore/QChar.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QChar() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQChar.prg + * C++ wrappers : contrib/hbqt/qtcore/QChar.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QChar():new( ... ) + * QChar():from( pPtr_OR_oObj_of_type_QChar ) + * QChar():configure( pPtr_OR_oObj_of_type_QChar ) + * $METHODS$ + * :category() -> nCategory + * :combiningClass() -> nUnsigned + * :decomposition() -> cQString + * :decompositionTag() -> nDecomposition + * :digitValue() -> nInt + * :direction() -> nDirection + * :hasMirrored() -> lBool + * :isDigit() -> lBool + * :isHighSurrogate() -> lBool + * :isLetter() -> lBool + * :isLetterOrNumber() -> lBool + * :isLowSurrogate() -> lBool + * :isLower() -> lBool + * :isMark() -> lBool + * :isNull() -> lBool + * :isNumber() -> lBool + * :isPrint() -> lBool + * :isPunct() -> lBool + * :isSpace() -> lBool + * :isSymbol() -> lBool + * :isTitleCase() -> lBool + * :isUpper() -> lBool + * :joining() -> nJoining + * :toAscii() -> cChar + * :toLatin1() -> cChar + * :unicode() -> nUshort + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt index e5cf349b9d..54306d76f5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QCheckBox() - $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 - - $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/TQCheckBox.prg - C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractButton - $END$ + * $NAME$ + * QCheckBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQCheckBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QCheckBox():new( ... ) + * QCheckBox():from( pPtr_OR_oObj_of_type_QCheckBox ) + * QCheckBox():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qclipboard.txt b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt index cab9519264..61840a2361 100644 --- a/harbour/contrib/hbqt/doc/en/class_qclipboard.txt +++ b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QClipboard() - $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 - :ownsClipboard() -> lBool - :ownsFindBuffer() -> lBool - :ownsSelection() -> lBool - :pixmap( nMode ) -> pQPixmap - :setImage( pImage, nMode ) -> NIL - :setMimeData( pSrc, nMode ) -> NIL - :setPixmap( pPixmap, nMode ) -> NIL - :setText( cText, nMode ) -> NIL - :supportsFindBuffer() -> lBool - :supportsSelection() -> lBool - :text( nMode ) -> 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/TQClipboard.prg - C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QClipboard() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQClipboard.prg + * C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QClipboard():new( ... ) + * QClipboard():from( pPtr_OR_oObj_of_type_QClipboard ) + * QClipboard():configure( pPtr_OR_oObj_of_type_QClipboard ) + * $METHODS$ + * :clear( nMode ) -> NIL + * :image( nMode ) -> pQImage + * :ownsClipboard() -> lBool + * :ownsFindBuffer() -> lBool + * :ownsSelection() -> lBool + * :pixmap( nMode ) -> pQPixmap + * :setImage( pImage, nMode ) -> NIL + * :setMimeData( pSrc, nMode ) -> NIL + * :setPixmap( pPixmap, nMode ) -> NIL + * :setText( cText, nMode ) -> NIL + * :supportsFindBuffer() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcolor.txt b/harbour/contrib/hbqt/doc/en/class_qcolor.txt index 3f9b02d9bb..7a1ef71ebd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcolor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcolor.txt @@ -1,111 +1,109 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QColor() - $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 - :black() -> nInt - :blackF() -> nQreal - :blue() -> nInt - :blueF() -> nQreal - :cyan() -> nInt - :cyanF() -> nQreal - :getCmyk( @nC, @nM, @nY, @nK, @nA ) -> NIL - :getCmykF( @nC, @nM, @nY, @nK, @nA ) -> NIL - :getHsv( @nH, @nS, @nV, @nA ) -> NIL - :getHsvF( @nH, @nS, @nV, @nA ) -> NIL - :getRgb( @nR, @nG, @nB, @nA ) -> NIL - :getRgbF( @nR, @nG, @nB, @nA ) -> NIL - :green() -> nInt - :greenF() -> nQreal - :hue() -> nInt - :hueF() -> nQreal - :isValid() -> lBool - :magenta() -> nInt - :magentaF() -> nQreal - :name() -> cQString - :red() -> nInt - :redF() -> nQreal - :rgb() -> nQRgb - :rgba() -> nQRgb - :saturation() -> nInt - :saturationF() -> nQreal - :setAlpha( nAlpha ) -> NIL - :setAlphaF( nAlpha ) -> NIL - :setBlue( nBlue ) -> NIL - :setBlueF( nBlue ) -> NIL - :setCmyk( nC, nM, nY, nK, nA ) -> NIL - :setCmykF( nC, nM, nY, nK, nA ) -> NIL - :setGreen( nGreen ) -> NIL - :setGreenF( nGreen ) -> NIL - :setHsv( nH, nS, nV, nA ) -> NIL - :setHsvF( nH, nS, nV, nA ) -> NIL - :setNamedColor( cName ) -> NIL - :setRed( nRed ) -> NIL - :setRedF( nRed ) -> NIL - :setRgb( nRgb ) -> NIL - :setRgb_1( nR, nG, nB, nA ) -> NIL - :setRgba( nRgba ) -> NIL - :setRgbF( nR, nG, nB, nA ) -> NIL - :spec() -> nSpec - :value() -> nInt - :valueF() -> nQreal - :yellow() -> nInt - :yellowF() -> nQreal - :colorNames() -> pQStringList - - $DESCRIPTION$ - - $EXAMPLES$ - oColor := QColor():new() // You will supply other parameter later - oColor := QColor():new( nQt_Color ) // R: hbqt.ch - oColor := QColor():new( nRGB ) // ( nR + ( nG * 256 ) + ( nB * 256 * 256 ) ) - oColor := QColor():new( cColorName ) // #RRGGBB - oColor := QColor():new( pQColor ) // Pointer to previously obtained QColor - oColor := QColor():new( nR, nG, nB ) // Red Green Blue values - oColor := QColor():new( nR, nG, nB, nAlpha ) // Red Green Blue values with Alpha Channel - - $TESTS$ - - $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/TQColor.prg - C++ wrappers : contrib/hbqt/qtgui/QColor.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QColor() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQColor.prg + * C++ wrappers : contrib/hbqt/qtgui/QColor.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QColor():new( ... ) + * QColor():from( pPtr_OR_oObj_of_type_QColor ) + * QColor():configure( pPtr_OR_oObj_of_type_QColor ) + * $METHODS$ + * :alpha() -> nInt + * :alphaF() -> nQreal + * :black() -> nInt + * :blackF() -> nQreal + * :blue() -> nInt + * :blueF() -> nQreal + * :cyan() -> nInt + * :cyanF() -> nQreal + * :getCmyk( @nC, @nM, @nY, @nK, @nA ) -> NIL + * :getCmykF( @nC, @nM, @nY, @nK, @nA ) -> NIL + * :getHsv( @nH, @nS, @nV, @nA ) -> NIL + * :getHsvF( @nH, @nS, @nV, @nA ) -> NIL + * :getRgb( @nR, @nG, @nB, @nA ) -> NIL + * :getRgbF( @nR, @nG, @nB, @nA ) -> NIL + * :green() -> nInt + * :greenF() -> nQreal + * :hue() -> nInt + * :hueF() -> nQreal + * :isValid() -> lBool + * :magenta() -> nInt + * :magentaF() -> nQreal + * :name() -> cQString + * :red() -> nInt + * :redF() -> nQreal + * :rgb() -> nQRgb + * :rgba() -> nQRgb + * :saturation() -> nInt + * :saturationF() -> nQreal + * :setAlpha( nAlpha ) -> NIL + * :setAlphaF( nAlpha ) -> NIL + * :setBlue( nBlue ) -> NIL + * :setBlueF( nBlue ) -> NIL + * :setCmyk( nC, nM, nY, nK, nA ) -> NIL + * :setCmykF( nC, nM, nY, nK, nA ) -> NIL + * :setGreen( nGreen ) -> NIL + * :setGreenF( nGreen ) -> NIL + * :setHsv( nH, nS, nV, nA ) -> NIL + * :setHsvF( nH, nS, nV, nA ) -> NIL + * :setNamedColor( cName ) -> NIL + * :setRed( nRed ) -> NIL + * :setRedF( nRed ) -> NIL + * :setRgb( nRgb ) -> NIL + * :setRgb_1( nR, nG, nB, nA ) -> NIL + * :setRgba( nRgba ) -> NIL + * :setRgbF( nR, nG, nB, nA ) -> NIL + * :spec() -> nSpec + * :value() -> nInt + * :valueF() -> nQreal + * :yellow() -> nInt + * :yellowF() -> nQreal + * :colorNames() -> pQStringList + * + * $RETURNS$ + * An instance of the object of type QColor + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oColor := QColor():new() // You will supply other parameter later + * oColor := QColor():new( nQt_Color ) // R: hbqt.ch + * oColor := QColor():new( nRGB ) // ( nR + ( nG * 256 ) + ( nB * 256 * 256 ) ) + * oColor := QColor():new( cColorName ) // #RRGGBB + * oColor := QColor():new( pQColor ) // Pointer to previously obtained QColor + * 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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qcolor.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt index b6844a5444..88fa93c764 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt @@ -1,68 +1,66 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QColorDialog() - $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 - :options() -> nColorDialogOptions - :selectedColor() -> pQColor - :setCurrentColor( pColor ) -> NIL - :setOption( nOption, lOn ) -> NIL - :setOptions( nOptions ) -> NIL - :setVisible( lVisible ) -> NIL - :testOption( nOption ) -> lBool - :customColor( nIndex ) -> nQRgb - :customCount() -> nInt - :getColor( pInitial, pParent, cTitle, nOptions ) -> pQColor - :getColor_1( pInitial, pParent ) -> pQColor - :setCustomColor( nIndex, nColor ) -> NIL - :setStandardColor( nIndex, nColor ) -> 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/TQColorDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QColorDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQColorDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QColorDialog():new( ... ) + * QColorDialog():from( pPtr_OR_oObj_of_type_QColorDialog ) + * QColorDialog():configure( pPtr_OR_oObj_of_type_QColorDialog ) + * $METHODS$ + * :currentColor() -> pQColor + * :open() -> NIL + * :options() -> nColorDialogOptions + * :selectedColor() -> pQColor + * :setCurrentColor( pColor ) -> NIL + * :setOption( nOption, lOn ) -> NIL + * :setOptions( nOptions ) -> NIL + * :setVisible( lVisible ) -> NIL + * :testOption( nOption ) -> lBool + * :customColor( nIndex ) -> nQRgb + * :customCount() -> nInt + * :getColor( pInitial, pParent, cTitle, nOptions ) -> pQColor + * :getColor_1( pInitial, pParent ) -> pQColor + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcombobox.txt b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt index 250457dabb..41c09a088f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt @@ -1,112 +1,110 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QComboBox() - $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 - :addItems( pTexts ) -> NIL - :completer() -> pQCompleter - :count() -> nInt - :currentIndex() -> nInt - :currentText() -> cQString - :duplicatesEnabled() -> lBool - :findData( pData, nRole, nFlags ) -> nInt - :findText( cText, nFlags ) -> nInt - :hasFrame() -> lBool - :hidePopup() -> NIL - :iconSize() -> pQSize - :insertItem( nIndex, cText, pUserData ) -> NIL - :insertItem_1( nIndex, cIcon, cText, pUserData ) -> NIL - :insertItems( nIndex, pList ) -> NIL - :insertPolicy() -> nInsertPolicy - :insertSeparator( nIndex ) -> NIL - :isEditable() -> lBool - :itemData( nIndex, nRole ) -> pQVariant - :itemDelegate() -> pQAbstractItemDelegate - :itemIcon( nIndex ) -> pQIcon - :itemText( nIndex ) -> cQString - :lineEdit() -> pQLineEdit - :maxCount() -> nInt - :maxVisibleItems() -> nInt - :minimumContentsLength() -> nInt - :model() -> pQAbstractItemModel - :modelColumn() -> nInt - :removeItem( nIndex ) -> NIL - :rootModelIndex() -> pQModelIndex - :setCompleter( pCompleter ) -> NIL - :setDuplicatesEnabled( lEnable ) -> NIL - :setEditable( lEditable ) -> NIL - :setFrame( lBool ) -> NIL - :setIconSize( pSize ) -> NIL - :setInsertPolicy( nPolicy ) -> NIL - :setItemData( nIndex, pValue, nRole ) -> NIL - :setItemDelegate( pDelegate ) -> NIL - :setItemIcon( nIndex, cIcon ) -> NIL - :setItemText( nIndex, cText ) -> NIL - :setLineEdit( pEdit ) -> NIL - :setMaxCount( nMax ) -> NIL - :setMaxVisibleItems( nMaxItems ) -> NIL - :setMinimumContentsLength( nCharacters ) -> NIL - :setModel( pModel ) -> NIL - :setModelColumn( nVisibleColumn ) -> NIL - :setRootModelIndex( pIndex ) -> NIL - :setSizeAdjustPolicy( nPolicy ) -> NIL - :setValidator( pValidator ) -> NIL - :setView( pItemView ) -> NIL - :showPopup() -> NIL - :sizeAdjustPolicy() -> nSizeAdjustPolicy - :validator() -> pQValidator - :view() -> pQAbstractItemView - :clear() -> NIL - :clearEditText() -> NIL - :setCurrentIndex( nIndex ) -> NIL - :setEditText( cText ) -> 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/TQComboBox.prg - C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QComboBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQComboBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QComboBox():new( ... ) + * QComboBox():from( pPtr_OR_oObj_of_type_QComboBox ) + * QComboBox():configure( pPtr_OR_oObj_of_type_QComboBox ) + * $METHODS$ + * :addItem( cText, pUserData ) -> NIL + * :addItem_1( cIcon, cText, pUserData ) -> NIL + * :addItems( pTexts ) -> NIL + * :completer() -> pQCompleter + * :count() -> nInt + * :currentIndex() -> nInt + * :currentText() -> cQString + * :duplicatesEnabled() -> lBool + * :findData( pData, nRole, nFlags ) -> nInt + * :findText( cText, nFlags ) -> nInt + * :hasFrame() -> lBool + * :hidePopup() -> NIL + * :iconSize() -> pQSize + * :insertItem( nIndex, cText, pUserData ) -> NIL + * :insertItem_1( nIndex, cIcon, cText, pUserData ) -> NIL + * :insertItems( nIndex, pList ) -> NIL + * :insertPolicy() -> nInsertPolicy + * :insertSeparator( nIndex ) -> NIL + * :isEditable() -> lBool + * :itemData( nIndex, nRole ) -> pQVariant + * :itemDelegate() -> pQAbstractItemDelegate + * :itemIcon( nIndex ) -> pQIcon + * :itemText( nIndex ) -> cQString + * :lineEdit() -> pQLineEdit + * :maxCount() -> nInt + * :maxVisibleItems() -> nInt + * :minimumContentsLength() -> nInt + * :model() -> pQAbstractItemModel + * :modelColumn() -> nInt + * :removeItem( nIndex ) -> NIL + * :rootModelIndex() -> pQModelIndex + * :setCompleter( pCompleter ) -> NIL + * :setDuplicatesEnabled( lEnable ) -> NIL + * :setEditable( lEditable ) -> NIL + * :setFrame( lBool ) -> NIL + * :setIconSize( pSize ) -> NIL + * :setInsertPolicy( nPolicy ) -> NIL + * :setItemData( nIndex, pValue, nRole ) -> NIL + * :setItemDelegate( pDelegate ) -> NIL + * :setItemIcon( nIndex, cIcon ) -> NIL + * :setItemText( nIndex, cText ) -> NIL + * :setLineEdit( pEdit ) -> NIL + * :setMaxCount( nMax ) -> NIL + * :setMaxVisibleItems( nMaxItems ) -> NIL + * :setMinimumContentsLength( nCharacters ) -> NIL + * :setModel( pModel ) -> NIL + * :setModelColumn( nVisibleColumn ) -> NIL + * :setRootModelIndex( pIndex ) -> NIL + * :setSizeAdjustPolicy( nPolicy ) -> NIL + * :setValidator( pValidator ) -> NIL + * :setView( pItemView ) -> NIL + * :showPopup() -> NIL + * :sizeAdjustPolicy() -> nSizeAdjustPolicy + * :validator() -> pQValidator + * :view() -> pQAbstractItemView + * :clear() -> NIL + * :clearEditText() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt index a08c4360ab..70ecf0f258 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qcommandlinkbutton.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcompleter.txt b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt index f6fae21045..74bdb6744b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcompleter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QCompleter() - $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 - :completionCount() -> nInt - :completionMode() -> nCompletionMode - :completionModel() -> pQAbstractItemModel - :completionPrefix() -> cQString - :completionRole() -> nInt - :currentCompletion() -> cQString - :currentIndex() -> pQModelIndex - :currentRow() -> nInt - :model() -> pQAbstractItemModel - :modelSorting() -> nModelSorting - :pathFromIndex( pIndex ) -> cQString - :popup() -> pQAbstractItemView - :setCaseSensitivity( nCaseSensitivity ) -> NIL - :setCompletionColumn( nColumn ) -> NIL - :setCompletionMode( nMode ) -> NIL - :setCompletionRole( nRole ) -> NIL - :setCurrentRow( nRow ) -> lBool - :setModel( pModel ) -> NIL - :setModelSorting( nSorting ) -> NIL - :setPopup( pPopup ) -> NIL - :setWidget( pWidget ) -> NIL - :splitPath( cPath ) -> pQStringList - :widget() -> pQWidget - :wrapAround() -> lBool - :complete( pRect ) -> NIL - :setCompletionPrefix( cPrefix ) -> NIL - :setWrapAround( lWrap ) -> 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/TQCompleter.prg - C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QCompleter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQCompleter.prg + * C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QCompleter():new( ... ) + * QCompleter():from( pPtr_OR_oObj_of_type_QCompleter ) + * QCompleter():configure( pPtr_OR_oObj_of_type_QCompleter ) + * $METHODS$ + * :caseSensitivity() -> nQt::CaseSensitivity + * :completionColumn() -> nInt + * :completionCount() -> nInt + * :completionMode() -> nCompletionMode + * :completionModel() -> pQAbstractItemModel + * :completionPrefix() -> cQString + * :completionRole() -> nInt + * :currentCompletion() -> cQString + * :currentIndex() -> pQModelIndex + * :currentRow() -> nInt + * :model() -> pQAbstractItemModel + * :modelSorting() -> nModelSorting + * :pathFromIndex( pIndex ) -> cQString + * :popup() -> pQAbstractItemView + * :setCaseSensitivity( nCaseSensitivity ) -> NIL + * :setCompletionColumn( nColumn ) -> NIL + * :setCompletionMode( nMode ) -> NIL + * :setCompletionRole( nRole ) -> NIL + * :setCurrentRow( nRow ) -> lBool + * :setModel( pModel ) -> NIL + * :setModelSorting( nSorting ) -> NIL + * :setPopup( pPopup ) -> NIL + * :setWidget( pWidget ) -> NIL + * :splitPath( cPath ) -> pQStringList + * :widget() -> pQWidget + * :wrapAround() -> lBool + * :complete( pRect ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt index 54c1f896bd..9d54b55c5a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt @@ -1,58 +1,56 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QConicalGradient() - $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 - :setAngle( nAngle ) -> NIL - :setCenter( pCenter ) -> NIL - :setCenter_1( nX, nY ) -> 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/TQConicalGradient.prg - C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp - Library : hbqtgui - $SEEALSO$ - QGradient - $END$ + * $NAME$ + * QConicalGradient() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQConicalGradient.prg + * C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QConicalGradient():new( ... ) + * QConicalGradient():from( pPtr_OR_oObj_of_type_QConicalGradient ) + * QConicalGradient():configure( pPtr_OR_oObj_of_type_QConicalGradient ) + * $METHODS$ + * :angle() -> nQreal + * :center() -> pQPointF + * :setAngle( nAngle ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt index c6d2670188..26b351cb2a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QContextMenuEvent() - $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 - :globalY() -> nInt - :pos() -> pQPoint - :reason() -> nReason - :x() -> nInt - :y() -> 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/TQContextMenuEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp - Library : hbqtgui - $SEEALSO$ - QInputEvent - $END$ + * $NAME$ + * QContextMenuEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQContextMenuEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QContextMenuEvent():new( ... ) + * QContextMenuEvent():from( pPtr_OR_oObj_of_type_QContextMenuEvent ) + * QContextMenuEvent():configure( pPtr_OR_oObj_of_type_QContextMenuEvent ) + * $METHODS$ + * :globalPos() -> pQPoint + * :globalX() -> nInt + * :globalY() -> nInt + * :pos() -> pQPoint + * :reason() -> nReason + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt index 872f160bfd..d3286229f3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt @@ -1,92 +1,90 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QCoreApplication() - $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 - :applicationDirPath() -> cQString - :applicationFilePath() -> cQString - :applicationName() -> cQString - :applicationPid() -> nQint64 - :applicationVersion() -> cQString - :arguments() -> pQStringList - :closingDown() -> lBool - :exec() -> nInt - :exit( nReturnCode ) -> NIL - :flush() -> NIL - :hasPendingEvents() -> lBool - :installTranslator( pTranslationFile ) -> NIL - :libraryPaths() -> pQStringList - :organizationDomain() -> cQString - :organizationName() -> cQString - :postEvent( pReceiver, pEvent ) -> NIL - :postEvent_1( pReceiver, pEvent, nPriority ) -> NIL - :processEvents( nFlags ) -> NIL - :processEvents_1( nFlags, nMaxtime ) -> NIL - :removeLibraryPath( cPath ) -> NIL - :removePostedEvents( pReceiver ) -> NIL - :removePostedEvents_1( pReceiver, nEventType ) -> NIL - :removeTranslator( pTranslationFile ) -> NIL - :sendEvent( pReceiver, pEvent ) -> lBool - :sendPostedEvents( pReceiver, nEvent_type ) -> NIL - :sendPostedEvents_1() -> NIL - :setApplicationName( cApplication ) -> NIL - :setApplicationVersion( cVersion ) -> NIL - :setAttribute( nAttribute, lOn ) -> NIL - :setLibraryPaths( pPaths ) -> NIL - :setOrganizationDomain( cOrgDomain ) -> NIL - :setOrganizationName( cOrgName ) -> NIL - :startingUp() -> lBool - :testAttribute( nAttribute ) -> lBool - :translate( pContext, pSourceText, pDisambiguation, nEncoding, nN ) -> cQString - :translate_1( pContext, pSourceText, pDisambiguation, nEncoding ) -> cQString - :quit() -> 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/qtcore/TQCoreApplication.prg - C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QCoreApplication() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQCoreApplication.prg + * C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QCoreApplication():new( ... ) + * QCoreApplication():from( pPtr_OR_oObj_of_type_QCoreApplication ) + * QCoreApplication():configure( pPtr_OR_oObj_of_type_QCoreApplication ) + * $METHODS$ + * :notify( pReceiver, pEvent ) -> lBool + * :addLibraryPath( cPath ) -> NIL + * :applicationDirPath() -> cQString + * :applicationFilePath() -> cQString + * :applicationName() -> cQString + * :applicationPid() -> nQint64 + * :applicationVersion() -> cQString + * :arguments() -> pQStringList + * :closingDown() -> lBool + * :exec() -> nInt + * :exit( nReturnCode ) -> NIL + * :flush() -> NIL + * :hasPendingEvents() -> lBool + * :installTranslator( pTranslationFile ) -> NIL + * :libraryPaths() -> pQStringList + * :organizationDomain() -> cQString + * :organizationName() -> cQString + * :postEvent( pReceiver, pEvent ) -> NIL + * :postEvent_1( pReceiver, pEvent, nPriority ) -> NIL + * :processEvents( nFlags ) -> NIL + * :processEvents_1( nFlags, nMaxtime ) -> NIL + * :removeLibraryPath( cPath ) -> NIL + * :removePostedEvents( pReceiver ) -> NIL + * :removePostedEvents_1( pReceiver, nEventType ) -> NIL + * :removeTranslator( pTranslationFile ) -> NIL + * :sendEvent( pReceiver, pEvent ) -> lBool + * :sendPostedEvents( pReceiver, nEvent_type ) -> NIL + * :sendPostedEvents_1() -> NIL + * :setApplicationName( cApplication ) -> NIL + * :setApplicationVersion( cVersion ) -> NIL + * :setAttribute( nAttribute, lOn ) -> NIL + * :setLibraryPaths( pPaths ) -> NIL + * :setOrganizationDomain( cOrgDomain ) -> NIL + * :setOrganizationName( cOrgName ) -> NIL + * :startingUp() -> lBool + * :testAttribute( nAttribute ) -> lBool + * :translate( pContext, pSourceText, pDisambiguation, nEncoding, nN ) -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qcursor.txt b/harbour/contrib/hbqt/doc/en/class_qcursor.txt index 38dcb8ac35..4bfa7af75b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcursor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcursor.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QCursor() - $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 - :mask() -> pQBitmap - :pixmap() -> pQPixmap - :setShape( nShape ) -> NIL - :shape() -> nQt::CursorShape - :pos() -> pQPoint - :setPos( nX, nY ) -> NIL - :setPos_1( pP ) -> NIL - - $DESCRIPTION$ - - $EXAMPLES$ - oCursor := QCursor():new() - oCursor := QCursor():new( pQCursor ) - oCursor := QCursor():new( nQt_CursorShape ) - oCursor := QCursor():new( "QPixmap", pQPixmap, [ nHotX = -1 ] , [ nHotY = -1 ] ) - oCursor := QCursor():new( pQBitmap, pQBitmapAsMask, [ nHotX = -1 ], [ nHotY = -1 ] ) - - $TESTS$ - - $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/TQCursor.prg - C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QCursor() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQCursor.prg + * C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QCursor():new( ... ) + * QCursor():from( pPtr_OR_oObj_of_type_QCursor ) + * QCursor():configure( pPtr_OR_oObj_of_type_QCursor ) + * $METHODS$ + * :bitmap() -> pQBitmap + * :hotSpot() -> pQPoint + * :mask() -> pQBitmap + * :pixmap() -> pQPixmap + * :setShape( nShape ) -> NIL + * :shape() -> nQt::CursorShape + * :pos() -> pQPoint + * :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 + * $EXAMPLES$ + * oCursor := QCursor():new() + * oCursor := QCursor():new( pQCursor ) + * oCursor := QCursor():new( nQt_CursorShape ) + * 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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qcursor.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatastream.txt b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt index 5b51cd85b9..49df1d5a06 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatastream.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDataStream() - $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 - :device() -> pQIODevice - :readRawData( cS, nLen ) -> nInt - :resetStatus() -> NIL - :setByteOrder( nBo ) -> NIL - :setDevice( pD ) -> NIL - :setStatus( nStatus ) -> NIL - :setVersion( nV ) -> NIL - :skipRawData( nLen ) -> nInt - :status() -> nStatus - :version() -> nInt - :writeRawData( pS, nLen ) -> 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/qtcore/TQDataStream.prg - C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QDataStream() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQDataStream.prg + * C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDataStream():new( ... ) + * QDataStream():from( pPtr_OR_oObj_of_type_QDataStream ) + * QDataStream():configure( pPtr_OR_oObj_of_type_QDataStream ) + * $METHODS$ + * :atEnd() -> lBool + * :byteOrder() -> nByteOrder + * :device() -> pQIODevice + * :readRawData( cS, nLen ) -> nInt + * :resetStatus() -> NIL + * :setByteOrder( nBo ) -> NIL + * :setDevice( pD ) -> NIL + * :setStatus( nStatus ) -> NIL + * :setVersion( nV ) -> NIL + * :skipRawData( nLen ) -> nInt + * :status() -> nStatus + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdate.txt b/harbour/contrib/hbqt/doc/en/class_qdate.txt index 65343ab8f8..49ed01a77e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdate.txt @@ -1,69 +1,67 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDate() - $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 - :dayOfYear() -> nInt - :daysInMonth() -> nInt - :daysInYear() -> nInt - :daysTo( pD ) -> nInt - :getDate( @nYear, @nMonth, @nDay ) -> NIL - :isNull() -> lBool - :isValid() -> lBool - :month() -> nInt - :setDate( nYear, nMonth, nDay ) -> lBool - :toJulianDay() -> nInt - :toString( cFormat ) -> cQString - :toString_1( nFormat ) -> cQString - :weekNumber( @nYearNumber ) -> nInt - :year() -> 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/qtcore/TQDate.prg - C++ wrappers : contrib/hbqt/qtcore/QDate.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QDate() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQDate.prg + * C++ wrappers : contrib/hbqt/qtcore/QDate.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDate():new( ... ) + * QDate():from( pPtr_OR_oObj_of_type_QDate ) + * QDate():configure( pPtr_OR_oObj_of_type_QDate ) + * $METHODS$ + * :day() -> nInt + * :dayOfWeek() -> nInt + * :dayOfYear() -> nInt + * :daysInMonth() -> nInt + * :daysInYear() -> nInt + * :daysTo( pD ) -> nInt + * :getDate( @nYear, @nMonth, @nDay ) -> NIL + * :isNull() -> lBool + * :isValid() -> lBool + * :month() -> nInt + * :setDate( nYear, nMonth, nDay ) -> lBool + * :toJulianDay() -> nInt + * :toString( cFormat ) -> cQString + * :toString_1( nFormat ) -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatetime.txt b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt index c29fcfc80e..62401ab742 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatetime.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDateTime() - $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 - :isNull() -> lBool - :isValid() -> lBool - :secsTo( pOther ) -> nInt - :setDate( pDate ) -> NIL - :setTime( pTime ) -> NIL - :setTimeSpec( nSpec ) -> NIL - :setTime_t( nSeconds ) -> NIL - :time() -> pQTime - :timeSpec() -> nQt::TimeSpec - :toString( cFormat ) -> cQString - :toString_1( nFormat ) -> cQString - :toTime_t() -> nUint - - $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/TQDateTime.prg - C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QDateTime() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQDateTime.prg + * C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDateTime():new( ... ) + * QDateTime():from( pPtr_OR_oObj_of_type_QDateTime ) + * QDateTime():configure( pPtr_OR_oObj_of_type_QDateTime ) + * $METHODS$ + * :date() -> pQDate + * :daysTo( pOther ) -> nInt + * :isNull() -> lBool + * :isValid() -> lBool + * :secsTo( pOther ) -> nInt + * :setDate( pDate ) -> NIL + * :setTime( pTime ) -> NIL + * :setTimeSpec( nSpec ) -> NIL + * :setTime_t( nSeconds ) -> NIL + * :time() -> pQTime + * :timeSpec() -> nQt::TimeSpec + * :toString( cFormat ) -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt index 7ae7142d84..1372ca138e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt @@ -1,97 +1,95 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDateTimeEdit() - $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 - :clearMaximumDate() -> NIL - :clearMaximumDateTime() -> NIL - :clearMaximumTime() -> NIL - :clearMinimumDate() -> NIL - :clearMinimumDateTime() -> NIL - :clearMinimumTime() -> NIL - :currentSection() -> nSection - :currentSectionIndex() -> nInt - :date() -> pQDate - :dateTime() -> pQDateTime - :displayFormat() -> cQString - :displayedSections() -> nSections - :maximumDate() -> pQDate - :maximumDateTime() -> pQDateTime - :maximumTime() -> pQTime - :minimumDate() -> pQDate - :minimumDateTime() -> pQDateTime - :minimumTime() -> pQTime - :sectionAt( nIndex ) -> nSection - :sectionCount() -> nInt - :sectionText( nSection ) -> cQString - :setCalendarPopup( lEnable ) -> NIL - :setCalendarWidget( pCalendarWidget ) -> NIL - :setCurrentSection( nSection ) -> NIL - :setCurrentSectionIndex( nIndex ) -> NIL - :setDateRange( pMin, pMax ) -> NIL - :setDateTimeRange( pMin, pMax ) -> NIL - :setDisplayFormat( cFormat ) -> NIL - :setMaximumDate( pMax ) -> NIL - :setMaximumDateTime( pDt ) -> NIL - :setMaximumTime( pMax ) -> NIL - :setMinimumDate( pMin ) -> NIL - :setMinimumDateTime( pDt ) -> NIL - :setMinimumTime( pMin ) -> NIL - :setSelectedSection( nSection ) -> NIL - :setTimeRange( pMin, pMax ) -> NIL - :setTimeSpec( nSpec ) -> NIL - :time() -> pQTime - :timeSpec() -> nQt::TimeSpec - :setDate( pDate ) -> NIL - :setDateTime( pDateTime ) -> NIL - :setTime( pTime ) -> 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/TQDateTimeEdit.prg - C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractSpinBox - $END$ + * $NAME$ + * QDateTimeEdit() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDateTimeEdit.prg + * C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDateTimeEdit():new( ... ) + * QDateTimeEdit():from( pPtr_OR_oObj_of_type_QDateTimeEdit ) + * QDateTimeEdit():configure( pPtr_OR_oObj_of_type_QDateTimeEdit ) + * $METHODS$ + * :calendarPopup() -> lBool + * :calendarWidget() -> pQCalendarWidget + * :clearMaximumDate() -> NIL + * :clearMaximumDateTime() -> NIL + * :clearMaximumTime() -> NIL + * :clearMinimumDate() -> NIL + * :clearMinimumDateTime() -> NIL + * :clearMinimumTime() -> NIL + * :currentSection() -> nSection + * :currentSectionIndex() -> nInt + * :date() -> pQDate + * :dateTime() -> pQDateTime + * :displayFormat() -> cQString + * :displayedSections() -> nSections + * :maximumDate() -> pQDate + * :maximumDateTime() -> pQDateTime + * :maximumTime() -> pQTime + * :minimumDate() -> pQDate + * :minimumDateTime() -> pQDateTime + * :minimumTime() -> pQTime + * :sectionAt( nIndex ) -> nSection + * :sectionCount() -> nInt + * :sectionText( nSection ) -> cQString + * :setCalendarPopup( lEnable ) -> NIL + * :setCalendarWidget( pCalendarWidget ) -> NIL + * :setCurrentSection( nSection ) -> NIL + * :setCurrentSectionIndex( nIndex ) -> NIL + * :setDateRange( pMin, pMax ) -> NIL + * :setDateTimeRange( pMin, pMax ) -> NIL + * :setDisplayFormat( cFormat ) -> NIL + * :setMaximumDate( pMax ) -> NIL + * :setMaximumDateTime( pDt ) -> NIL + * :setMaximumTime( pMax ) -> NIL + * :setMinimumDate( pMin ) -> NIL + * :setMinimumDateTime( pDt ) -> NIL + * :setMinimumTime( pMin ) -> NIL + * :setSelectedSection( nSection ) -> NIL + * :setTimeRange( pMin, pMax ) -> NIL + * :setTimeSpec( nSpec ) -> NIL + * :time() -> pQTime + * :timeSpec() -> nQt::TimeSpec + * :setDate( pDate ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt index 158824b56b..958ee53590 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt @@ -1,65 +1,63 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDesktopWidget() - $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 - :availableGeometry_2( pP ) -> pQRect - :isVirtualDesktop() -> lBool - :numScreens() -> nInt - :primaryScreen() -> nInt - :screen( nScreen ) -> pQWidget - :screenGeometry( nScreen ) -> pQRect - :screenGeometry_1( pWidget ) -> pQRect - :screenGeometry_2( pP ) -> pQRect - :screenNumber( pWidget ) -> nInt - :screenNumber_1( pPoint ) -> 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/TQDesktopWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QDesktopWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDesktopWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDesktopWidget():new( ... ) + * QDesktopWidget():from( pPtr_OR_oObj_of_type_QDesktopWidget ) + * QDesktopWidget():configure( pPtr_OR_oObj_of_type_QDesktopWidget ) + * $METHODS$ + * :availableGeometry( nScreen ) -> pQRect + * :availableGeometry_1( pWidget ) -> pQRect + * :availableGeometry_2( pP ) -> pQRect + * :isVirtualDesktop() -> lBool + * :numScreens() -> nInt + * :primaryScreen() -> nInt + * :screen( nScreen ) -> pQWidget + * :screenGeometry( nScreen ) -> pQRect + * :screenGeometry_1( pWidget ) -> pQRect + * :screenGeometry_2( pP ) -> pQRect + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdial.txt b/harbour/contrib/hbqt/doc/en/class_qdial.txt index cd82e02500..65b44f3076 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdial.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdial.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDial() - $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 - :notchesVisible() -> lBool - :setNotchTarget( nTarget ) -> NIL - :wrapping() -> lBool - :setNotchesVisible( lVisible ) -> NIL - :setWrapping( lOn ) -> 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/TQDial.prg - C++ wrappers : contrib/hbqt/qtgui/QDial.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractSlider - $END$ + * $NAME$ + * QDial() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDial.prg + * C++ wrappers : contrib/hbqt/qtgui/QDial.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDial():new( ... ) + * QDial():from( pPtr_OR_oObj_of_type_QDial ) + * QDial():configure( pPtr_OR_oObj_of_type_QDial ) + * $METHODS$ + * :notchSize() -> nInt + * :notchTarget() -> nQreal + * :notchesVisible() -> lBool + * :setNotchTarget( nTarget ) -> NIL + * :wrapping() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdialog.txt b/harbour/contrib/hbqt/doc/en/class_qdialog.txt index ed92defdbf..b0bdcc9828 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdialog.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDialog() - $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 - :setModal( lModal ) -> NIL - :setResult( nI ) -> NIL - :setSizeGripEnabled( lBool ) -> NIL - :accept() -> NIL - :done( nR ) -> NIL - :exec() -> nInt - :open() -> NIL - :reject() -> 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/TQDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDialog():new( ... ) + * QDialog():from( pPtr_OR_oObj_of_type_QDialog ) + * QDialog():configure( pPtr_OR_oObj_of_type_QDialog ) + * $METHODS$ + * :isSizeGripEnabled() -> lBool + * :result() -> nInt + * :setModal( lModal ) -> NIL + * :setResult( nI ) -> NIL + * :setSizeGripEnabled( lBool ) -> NIL + * :accept() -> NIL + * :done( nR ) -> NIL + * :exec() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdir.txt b/harbour/contrib/hbqt/doc/en/class_qdir.txt index 493510e082..403ca359a3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdir.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdir.txt @@ -1,102 +1,100 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDir() - $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 - :canonicalPath() -> cQString - :cd( cDirName ) -> lBool - :cdUp() -> lBool - :count() -> nUint - :dirName() -> cQString - :entryList( pNameFilters, nFilters, nSort ) -> pQStringList - :entryList_1( nFilters, nSort ) -> pQStringList - :exists( cName ) -> lBool - :exists_1() -> lBool - :filePath( cFileName ) -> cQString - :filter() -> nFilters - :isAbsolute() -> lBool - :isReadable() -> lBool - :isRelative() -> lBool - :isRoot() -> lBool - :makeAbsolute() -> lBool - :mkdir( cDirName ) -> lBool - :mkpath( cDirPath ) -> lBool - :nameFilters() -> pQStringList - :path() -> cQString - :refresh() -> NIL - :relativeFilePath( cFileName ) -> cQString - :remove( cFileName ) -> lBool - :rename( cOldName, cNewName ) -> lBool - :rmdir( cDirName ) -> lBool - :rmpath( cDirPath ) -> lBool - :setFilter( nFilters ) -> NIL - :setNameFilters( pNameFilters ) -> NIL - :setPath( cPath ) -> NIL - :setSorting( nSort ) -> NIL - :sorting() -> nSortFlags - :addSearchPath( cPrefix, cPath ) -> NIL - :cleanPath( cPath ) -> cQString - :currentPath() -> cQString - :fromNativeSeparators( cPathName ) -> cQString - :homePath() -> cQString - :isAbsolutePath( cPath ) -> lBool - :isRelativePath( cPath ) -> lBool - :match( cFilter, cFileName ) -> lBool - :match_1( pFilters, cFileName ) -> lBool - :rootPath() -> cQString - :searchPaths( cPrefix ) -> pQStringList - :separator() -> pQChar - :setCurrent( cPath ) -> lBool - :setSearchPaths( cPrefix, pSearchPaths ) -> NIL - :tempPath() -> cQString - :toNativeSeparators( cPathName ) -> 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/TQDir.prg - C++ wrappers : contrib/hbqt/qtcore/QDir.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QDir() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQDir.prg + * C++ wrappers : contrib/hbqt/qtcore/QDir.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDir():new( ... ) + * QDir():from( pPtr_OR_oObj_of_type_QDir ) + * QDir():configure( pPtr_OR_oObj_of_type_QDir ) + * $METHODS$ + * :absoluteFilePath( cFileName ) -> cQString + * :absolutePath() -> cQString + * :canonicalPath() -> cQString + * :cd( cDirName ) -> lBool + * :cdUp() -> lBool + * :count() -> nUint + * :dirName() -> cQString + * :entryList( pNameFilters, nFilters, nSort ) -> pQStringList + * :entryList_1( nFilters, nSort ) -> pQStringList + * :exists( cName ) -> lBool + * :exists_1() -> lBool + * :filePath( cFileName ) -> cQString + * :filter() -> nFilters + * :isAbsolute() -> lBool + * :isReadable() -> lBool + * :isRelative() -> lBool + * :isRoot() -> lBool + * :makeAbsolute() -> lBool + * :mkdir( cDirName ) -> lBool + * :mkpath( cDirPath ) -> lBool + * :nameFilters() -> pQStringList + * :path() -> cQString + * :refresh() -> NIL + * :relativeFilePath( cFileName ) -> cQString + * :remove( cFileName ) -> lBool + * :rename( cOldName, cNewName ) -> lBool + * :rmdir( cDirName ) -> lBool + * :rmpath( cDirPath ) -> lBool + * :setFilter( nFilters ) -> NIL + * :setNameFilters( pNameFilters ) -> NIL + * :setPath( cPath ) -> NIL + * :setSorting( nSort ) -> NIL + * :sorting() -> nSortFlags + * :addSearchPath( cPrefix, cPath ) -> NIL + * :cleanPath( cPath ) -> cQString + * :currentPath() -> cQString + * :fromNativeSeparators( cPathName ) -> cQString + * :homePath() -> cQString + * :isAbsolutePath( cPath ) -> lBool + * :isRelativePath( cPath ) -> lBool + * :match( cFilter, cFileName ) -> lBool + * :match_1( pFilters, cFileName ) -> lBool + * :rootPath() -> cQString + * :searchPaths( cPrefix ) -> pQStringList + * :separator() -> pQChar + * :setCurrent( cPath ) -> lBool + * :setSearchPaths( cPrefix, pSearchPaths ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt index 1957e4acf7..590069aa64 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt @@ -1,90 +1,88 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDirModel() - $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 - :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool - :fileIcon( pIndex ) -> pQIcon - :fileInfo( pIndex ) -> pQFileInfo - :fileName( pIndex ) -> cQString - :filePath( pIndex ) -> cQString - :filter() -> nQDir::Filters - :flags( pIndex ) -> nQt::ItemFlags - :hasChildren( pParent ) -> lBool - :headerData( nSection, nOrientation, nRole ) -> pQVariant - :iconProvider() -> pQFileIconProvider - :index( nRow, nColumn, pParent ) -> pQModelIndex - :index_1( cPath, nColumn ) -> pQModelIndex - :isDir( pIndex ) -> lBool - :isReadOnly() -> lBool - :lazyChildCount() -> lBool - :mimeTypes() -> pQStringList - :mkdir( pParent, cName ) -> pQModelIndex - :nameFilters() -> pQStringList - :parent( pChild ) -> pQModelIndex - :remove( pIndex ) -> lBool - :resolveSymlinks() -> lBool - :rmdir( pIndex ) -> lBool - :rowCount( pParent ) -> nInt - :setData( pIndex, pValue, nRole ) -> lBool - :setFilter( nFilters ) -> NIL - :setIconProvider( pProvider ) -> NIL - :setLazyChildCount( lEnable ) -> NIL - :setNameFilters( pFilters ) -> NIL - :setReadOnly( lEnable ) -> NIL - :setResolveSymlinks( lEnable ) -> NIL - :setSorting( nSort ) -> NIL - :sort( nColumn, nOrder ) -> NIL - :sorting() -> nQDir::SortFlags - :supportedDropActions() -> nQt::DropActions - :refresh( pParent ) -> 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/TQDirModel.prg - C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractItemModel - $END$ + * $NAME$ + * QDirModel() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDirModel.prg + * C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDirModel():new( ... ) + * QDirModel():from( pPtr_OR_oObj_of_type_QDirModel ) + * QDirModel():configure( pPtr_OR_oObj_of_type_QDirModel ) + * $METHODS$ + * :columnCount( pParent ) -> nInt + * :data( pIndex, nRole ) -> pQVariant + * :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool + * :fileIcon( pIndex ) -> pQIcon + * :fileInfo( pIndex ) -> pQFileInfo + * :fileName( pIndex ) -> cQString + * :filePath( pIndex ) -> cQString + * :filter() -> nQDir::Filters + * :flags( pIndex ) -> nQt::ItemFlags + * :hasChildren( pParent ) -> lBool + * :headerData( nSection, nOrientation, nRole ) -> pQVariant + * :iconProvider() -> pQFileIconProvider + * :index( nRow, nColumn, pParent ) -> pQModelIndex + * :index_1( cPath, nColumn ) -> pQModelIndex + * :isDir( pIndex ) -> lBool + * :isReadOnly() -> lBool + * :lazyChildCount() -> lBool + * :mimeTypes() -> pQStringList + * :mkdir( pParent, cName ) -> pQModelIndex + * :nameFilters() -> pQStringList + * :parent( pChild ) -> pQModelIndex + * :remove( pIndex ) -> lBool + * :resolveSymlinks() -> lBool + * :rmdir( pIndex ) -> lBool + * :rowCount( pParent ) -> nInt + * :setData( pIndex, pValue, nRole ) -> lBool + * :setFilter( nFilters ) -> NIL + * :setIconProvider( pProvider ) -> NIL + * :setLazyChildCount( lEnable ) -> NIL + * :setNameFilters( pFilters ) -> NIL + * :setReadOnly( lEnable ) -> NIL + * :setResolveSymlinks( lEnable ) -> NIL + * :setSorting( nSort ) -> NIL + * :sort( nColumn, nOrder ) -> NIL + * :sorting() -> nQDir::SortFlags + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt index 606ff6a875..56b0210f1b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt @@ -1,65 +1,63 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDockWidget() - $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 - :isAreaAllowed( nArea ) -> lBool - :isFloating() -> lBool - :setAllowedAreas( nAreas ) -> NIL - :setFeatures( nFeatures ) -> NIL - :setFloating( lFloating ) -> NIL - :setTitleBarWidget( pWidget ) -> NIL - :setWidget( pWidget ) -> NIL - :titleBarWidget() -> pQWidget - :toggleViewAction() -> pQAction - :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/TQDockWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QDockWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDockWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDockWidget():new( ... ) + * QDockWidget():from( pPtr_OR_oObj_of_type_QDockWidget ) + * QDockWidget():configure( pPtr_OR_oObj_of_type_QDockWidget ) + * $METHODS$ + * :allowedAreas() -> nQt::DockWidgetAreas + * :features() -> nDockWidgetFeatures + * :isAreaAllowed( nArea ) -> lBool + * :isFloating() -> lBool + * :setAllowedAreas( nAreas ) -> NIL + * :setFeatures( nFeatures ) -> NIL + * :setFloating( lFloating ) -> NIL + * :setTitleBarWidget( pWidget ) -> NIL + * :setWidget( pWidget ) -> NIL + * :titleBarWidget() -> pQWidget + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt index a2b7dbf80b..0b24a1fc45 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt @@ -1,71 +1,69 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDoubleSpinBox() - $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 - :maximum() -> nDouble - :minimum() -> nDouble - :prefix() -> cQString - :setDecimals( nPrec ) -> NIL - :setMaximum( nMax ) -> NIL - :setMinimum( nMin ) -> NIL - :setPrefix( cPrefix ) -> NIL - :setRange( nMinimum, nMaximum ) -> NIL - :setSingleStep( nVal ) -> NIL - :setSuffix( cSuffix ) -> NIL - :singleStep() -> nDouble - :suffix() -> cQString - :textFromValue( nValue ) -> cQString - :value() -> nDouble - :valueFromText( cText ) -> nDouble - :setValue( nVal ) -> 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/TQDoubleSpinBox.prg - C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractSpinBox - $END$ + * $NAME$ + * QDoubleSpinBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDoubleSpinBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDoubleSpinBox():new( ... ) + * QDoubleSpinBox():from( pPtr_OR_oObj_of_type_QDoubleSpinBox ) + * QDoubleSpinBox():configure( pPtr_OR_oObj_of_type_QDoubleSpinBox ) + * $METHODS$ + * :cleanText() -> cQString + * :decimals() -> nInt + * :maximum() -> nDouble + * :minimum() -> nDouble + * :prefix() -> cQString + * :setDecimals( nPrec ) -> NIL + * :setMaximum( nMax ) -> NIL + * :setMinimum( nMin ) -> NIL + * :setPrefix( cPrefix ) -> NIL + * :setRange( nMinimum, nMaximum ) -> NIL + * :setSingleStep( nVal ) -> NIL + * :setSuffix( cSuffix ) -> NIL + * :singleStep() -> nDouble + * :suffix() -> cQString + * :textFromValue( nValue ) -> cQString + * :value() -> nDouble + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt index 1a43bae961..cfdd0e601a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt @@ -1,58 +1,56 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDragMoveEvent() - $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 - :answerRect() -> pQRect - :ignore( pRectangle ) -> NIL - :ignore_1() -> 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/TQDragMoveEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp - Library : hbqtgui - $SEEALSO$ - QDropEvent - $END$ + * $NAME$ + * QDragMoveEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDragMoveEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDragMoveEvent():new( ... ) + * QDragMoveEvent():from( pPtr_OR_oObj_of_type_QDragMoveEvent ) + * QDragMoveEvent():configure( pPtr_OR_oObj_of_type_QDragMoveEvent ) + * $METHODS$ + * :accept( pRectangle ) -> NIL + * :accept_1() -> NIL + * :answerRect() -> pQRect + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qdropevent.txt b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt index cf173ad1cb..9782951f79 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdropevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QDropEvent() - $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 - :keyboardModifiers() -> nQt::KeyboardModifiers - :mimeData() -> pQMimeData - :mouseButtons() -> nQt::MouseButtons - :pos() -> pQPoint - :possibleActions() -> nQt::DropActions - :proposedAction() -> nQt::DropAction - :setDropAction( nAction ) -> NIL - :source() -> 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/TQDropEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp - Library : hbqtgui - $SEEALSO$ - QEvent - $END$ + * $NAME$ + * QDropEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQDropEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QDropEvent():new( ... ) + * QDropEvent():from( pPtr_OR_oObj_of_type_QDropEvent ) + * QDropEvent():configure( pPtr_OR_oObj_of_type_QDropEvent ) + * $METHODS$ + * :acceptProposedAction() -> NIL + * :dropAction() -> nQt::DropAction + * :keyboardModifiers() -> nQt::KeyboardModifiers + * :mimeData() -> pQMimeData + * :mouseButtons() -> nQt::MouseButtons + * :pos() -> pQPoint + * :possibleActions() -> nQt::DropActions + * :proposedAction() -> nQt::DropAction + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt index 625b528108..35c7a63545 100644 --- a/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qerrormessage.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qevent.txt b/harbour/contrib/hbqt/doc/en/class_qevent.txt index f5882074f9..a87eeac6a7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qevent.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QEvent() - $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 - :isAccepted() -> lBool - :setAccepted( lAccepted ) -> NIL - :spontaneous() -> lBool - :type() -> nType - :registerEventType( nHint ) -> 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/qtcore/TQEvent.prg - C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQEvent.prg + * C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QEvent():new( ... ) + * QEvent():from( pPtr_OR_oObj_of_type_QEvent ) + * QEvent():configure( pPtr_OR_oObj_of_type_QEvent ) + * $METHODS$ + * :accept() -> NIL + * :ignore() -> NIL + * :isAccepted() -> lBool + * :setAccepted( lAccepted ) -> NIL + * :spontaneous() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qeventloop.txt b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt index f179fc4862..5491420391 100644 --- a/harbour/contrib/hbqt/doc/en/class_qeventloop.txt +++ b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QEventLoop() - $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 - :isRunning() -> lBool - :processEvents( nFlags ) -> lBool - :processEvents_1( nFlags, nMaxTime ) -> NIL - :wakeUp() -> 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/qtcore/TQEventLoop.prg - C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QEventLoop() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQEventLoop.prg + * C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QEventLoop():new( ... ) + * QEventLoop():from( pPtr_OR_oObj_of_type_QEventLoop ) + * QEventLoop():configure( pPtr_OR_oObj_of_type_QEventLoop ) + * $METHODS$ + * :exec( nFlags ) -> nInt + * :exit( nReturnCode ) -> NIL + * :isRunning() -> lBool + * :processEvents( nFlags ) -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfile.txt b/harbour/contrib/hbqt/doc/en/class_qfile.txt index 06f11445ed..f3fc9df74d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfile.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfile.txt @@ -1,87 +1,85 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFile() - $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 - :copy( cNewName ) -> lBool - :error() -> nFileError - :exists() -> lBool - :fileName() -> cQString - :flush() -> lBool - :handle() -> nInt - :isSequential() -> lBool - :link( cLinkName ) -> lBool - :map( nOffset, nSize, nFlags ) -> pUchar - :open( nMode ) -> lBool - :open_1( nFd, nMode ) -> lBool - :permissions() -> nPermissions - :remove() -> lBool - :rename( cNewName ) -> lBool - :resize( nSz ) -> lBool - :setFileName( cName ) -> NIL - :setPermissions( nPermissions ) -> lBool - :size() -> nQint64 - :symLinkTarget() -> cQString - :unsetError() -> NIL - :copy_1( cFileName, cNewName ) -> lBool - :decodeName( pLocalFileName ) -> cQString - :decodeName_1( pLocalFileName ) -> cQString - :encodeName( cFileName ) -> pQByteArray - :exists_1( cFileName ) -> lBool - :link_1( cFileName, cLinkName ) -> lBool - :permissions_1( cFileName ) -> nPermissions - :remove_1( cFileName ) -> lBool - :rename_1( cOldName, cNewName ) -> lBool - :resize_1( cFileName, nSz ) -> lBool - :setPermissions_1( cFileName, nPermissions ) -> lBool - :symLinkTarget_1( cFileName ) -> 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/TQFile.prg - C++ wrappers : contrib/hbqt/qtcore/QFile.cpp - Library : hbqtcore - $SEEALSO$ - QIODevice - $END$ + * $NAME$ + * QFile() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQFile.prg + * C++ wrappers : contrib/hbqt/qtcore/QFile.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFile():new( ... ) + * QFile():from( pPtr_OR_oObj_of_type_QFile ) + * QFile():configure( pPtr_OR_oObj_of_type_QFile ) + * $METHODS$ + * :atEnd() -> lBool + * :close() -> NIL + * :copy( cNewName ) -> lBool + * :error() -> nFileError + * :exists() -> lBool + * :fileName() -> cQString + * :flush() -> lBool + * :handle() -> nInt + * :isSequential() -> lBool + * :link( cLinkName ) -> lBool + * :map( nOffset, nSize, nFlags ) -> pUchar + * :open( nMode ) -> lBool + * :open_1( nFd, nMode ) -> lBool + * :permissions() -> nPermissions + * :remove() -> lBool + * :rename( cNewName ) -> lBool + * :resize( nSz ) -> lBool + * :setFileName( cName ) -> NIL + * :setPermissions( nPermissions ) -> lBool + * :size() -> nQint64 + * :symLinkTarget() -> cQString + * :unsetError() -> NIL + * :copy_1( cFileName, cNewName ) -> lBool + * :decodeName( pLocalFileName ) -> cQString + * :decodeName_1( pLocalFileName ) -> cQString + * :encodeName( cFileName ) -> pQByteArray + * :exists_1( cFileName ) -> lBool + * :link_1( cFileName, cLinkName ) -> lBool + * :permissions_1( cFileName ) -> nPermissions + * :remove_1( cFileName ) -> lBool + * :rename_1( cOldName, cNewName ) -> lBool + * :resize_1( cFileName, nSz ) -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt index 6b9d81d167..3e19533437 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt @@ -1,99 +1,97 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFileDialog() - $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 - :defaultSuffix() -> cQString - :directory() -> pQDir - :fileMode() -> nFileMode - :filter() -> nQDir::Filters - :history() -> pQStringList - :iconProvider() -> pQFileIconProvider - :isNameFilterDetailsVisible() -> lBool - :isReadOnly() -> lBool - :itemDelegate() -> pQAbstractItemDelegate - :labelText( nLabel ) -> cQString - :nameFilters() -> pQStringList - :options() -> nOptions - :proxyModel() -> pQAbstractProxyModel - :resolveSymlinks() -> lBool - :restoreState( pState ) -> lBool - :saveState() -> pQByteArray - :selectFile( cFilename ) -> NIL - :selectNameFilter( cFilter ) -> NIL - :selectedFiles() -> pQStringList - :selectedNameFilter() -> cQString - :setAcceptMode( nMode ) -> NIL - :setConfirmOverwrite( lEnabled ) -> NIL - :setDefaultSuffix( cSuffix ) -> NIL - :setDirectory( cDirectory ) -> NIL - :setDirectory_1( pDirectory ) -> NIL - :setFileMode( nMode ) -> NIL - :setFilter( nFilters ) -> NIL - :setHistory( pPaths ) -> NIL - :setIconProvider( pProvider ) -> NIL - :setItemDelegate( pDelegate ) -> NIL - :setLabelText( nLabel, cText ) -> NIL - :setNameFilter( cFilter ) -> NIL - :setNameFilterDetailsVisible( lEnabled ) -> NIL - :setNameFilters( pFilters ) -> NIL - :setOption( nOption, lOn ) -> NIL - :setOptions( nOptions ) -> NIL - :setProxyModel( pProxyModel ) -> NIL - :setReadOnly( lEnabled ) -> NIL - :setResolveSymlinks( lEnabled ) -> NIL - :setViewMode( nMode ) -> NIL - :sidebarUrls() -> pQList - :testOption( nOption ) -> lBool - :viewMode() -> nViewMode - :getExistingDirectory( pParent, cCaption, cDir, nOptions ) -> 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/TQFileDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QFileDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFileDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFileDialog():new( ... ) + * QFileDialog():from( pPtr_OR_oObj_of_type_QFileDialog ) + * QFileDialog():configure( pPtr_OR_oObj_of_type_QFileDialog ) + * $METHODS$ + * :acceptMode() -> nAcceptMode + * :confirmOverwrite() -> lBool + * :defaultSuffix() -> cQString + * :directory() -> pQDir + * :fileMode() -> nFileMode + * :filter() -> nQDir::Filters + * :history() -> pQStringList + * :iconProvider() -> pQFileIconProvider + * :isNameFilterDetailsVisible() -> lBool + * :isReadOnly() -> lBool + * :itemDelegate() -> pQAbstractItemDelegate + * :labelText( nLabel ) -> cQString + * :nameFilters() -> pQStringList + * :options() -> nOptions + * :proxyModel() -> pQAbstractProxyModel + * :resolveSymlinks() -> lBool + * :restoreState( pState ) -> lBool + * :saveState() -> pQByteArray + * :selectFile( cFilename ) -> NIL + * :selectNameFilter( cFilter ) -> NIL + * :selectedFiles() -> pQStringList + * :selectedNameFilter() -> cQString + * :setAcceptMode( nMode ) -> NIL + * :setConfirmOverwrite( lEnabled ) -> NIL + * :setDefaultSuffix( cSuffix ) -> NIL + * :setDirectory( cDirectory ) -> NIL + * :setDirectory_1( pDirectory ) -> NIL + * :setFileMode( nMode ) -> NIL + * :setFilter( nFilters ) -> NIL + * :setHistory( pPaths ) -> NIL + * :setIconProvider( pProvider ) -> NIL + * :setItemDelegate( pDelegate ) -> NIL + * :setLabelText( nLabel, cText ) -> NIL + * :setNameFilter( cFilter ) -> NIL + * :setNameFilterDetailsVisible( lEnabled ) -> NIL + * :setNameFilters( pFilters ) -> NIL + * :setOption( nOption, lOn ) -> NIL + * :setOptions( nOptions ) -> NIL + * :setProxyModel( pProxyModel ) -> NIL + * :setReadOnly( lEnabled ) -> NIL + * :setResolveSymlinks( lEnabled ) -> NIL + * :setViewMode( nMode ) -> NIL + * :sidebarUrls() -> pQList + * :testOption( nOption ) -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt index 01968659aa..a3f7627bc2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt @@ -1,56 +1,54 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFileIconProvider() - $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 - - $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/TQFileIconProvider.prg - C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QFileIconProvider() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFileIconProvider.prg + * C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFileIconProvider():new( ... ) + * QFileIconProvider():from( pPtr_OR_oObj_of_type_QFileIconProvider ) + * QFileIconProvider():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt index 3e90525007..5ef950b1d1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt @@ -1,97 +1,95 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFileInfo() - $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 - :absolutePath() -> cQString - :baseName() -> cQString - :bundleName() -> cQString - :caching() -> lBool - :canonicalFilePath() -> cQString - :canonicalPath() -> cQString - :completeBaseName() -> cQString - :completeSuffix() -> cQString - :created() -> pQDateTime - :dir() -> pQDir - :exists() -> lBool - :fileName() -> cQString - :filePath() -> cQString - :group() -> cQString - :groupId() -> nUint - :isAbsolute() -> lBool - :isBundle() -> lBool - :isDir() -> lBool - :isExecutable() -> lBool - :isFile() -> lBool - :isHidden() -> lBool - :isReadable() -> lBool - :isRelative() -> lBool - :isRoot() -> lBool - :isSymLink() -> lBool - :isWritable() -> lBool - :lastModified() -> pQDateTime - :lastRead() -> pQDateTime - :makeAbsolute() -> lBool - :owner() -> cQString - :ownerId() -> nUint - :path() -> cQString - :permission( nPermissions ) -> lBool - :permissions() -> nQFile::Permissions - :refresh() -> NIL - :setCaching( lEnable ) -> NIL - :setFile( cFile ) -> NIL - :setFile_1( pFile ) -> NIL - :setFile_2( pDir, cFile ) -> NIL - :size() -> nQint64 - :suffix() -> cQString - :symLinkTarget() -> 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/TQFileInfo.prg - C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QFileInfo() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQFileInfo.prg + * C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFileInfo():new( ... ) + * QFileInfo():from( pPtr_OR_oObj_of_type_QFileInfo ) + * QFileInfo():configure( pPtr_OR_oObj_of_type_QFileInfo ) + * $METHODS$ + * :absoluteDir() -> pQDir + * :absoluteFilePath() -> cQString + * :absolutePath() -> cQString + * :baseName() -> cQString + * :bundleName() -> cQString + * :caching() -> lBool + * :canonicalFilePath() -> cQString + * :canonicalPath() -> cQString + * :completeBaseName() -> cQString + * :completeSuffix() -> cQString + * :created() -> pQDateTime + * :dir() -> pQDir + * :exists() -> lBool + * :fileName() -> cQString + * :filePath() -> cQString + * :group() -> cQString + * :groupId() -> nUint + * :isAbsolute() -> lBool + * :isBundle() -> lBool + * :isDir() -> lBool + * :isExecutable() -> lBool + * :isFile() -> lBool + * :isHidden() -> lBool + * :isReadable() -> lBool + * :isRelative() -> lBool + * :isRoot() -> lBool + * :isSymLink() -> lBool + * :isWritable() -> lBool + * :lastModified() -> pQDateTime + * :lastRead() -> pQDateTime + * :makeAbsolute() -> lBool + * :owner() -> cQString + * :ownerId() -> nUint + * :path() -> cQString + * :permission( nPermissions ) -> lBool + * :permissions() -> nQFile::Permissions + * :refresh() -> NIL + * :setCaching( lEnable ) -> NIL + * :setFile( cFile ) -> NIL + * :setFile_1( pFile ) -> NIL + * :setFile_2( pDir, cFile ) -> NIL + * :size() -> nQint64 + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt index ccb4129d62..c1c3d91644 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFileSystemModel() - $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 - :fileInfo( pIndex ) -> pQFileInfo - :fileName( pIndex ) -> cQString - :filePath( pIndex ) -> cQString - :filter() -> nQDir::Filters - :index( cPath, nColumn ) -> pQModelIndex - :isDir( pIndex ) -> lBool - :isReadOnly() -> lBool - :lastModified( pIndex ) -> pQDateTime - :mimeTypes() -> pQStringList - :mkdir( pParent, cName ) -> pQModelIndex - :myComputer( nRole ) -> pQVariant - :nameFilterDisables() -> lBool - :nameFilters() -> pQStringList - :permissions( pIndex ) -> nQFile::Permissions - :remove( pIndex ) -> lBool - :resolveSymlinks() -> lBool - :rmdir( pIndex ) -> lBool - :rootDirectory() -> pQDir - :rootPath() -> cQString - :setFilter( nFilters ) -> NIL - :setNameFilterDisables( lEnable ) -> NIL - :setNameFilters( pFilters ) -> NIL - :setReadOnly( lEnable ) -> NIL - :setResolveSymlinks( lEnable ) -> NIL - :setRootPath( cNewPath ) -> pQModelIndex - :size( pIndex ) -> nQint64 - :type( pIndex ) -> 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/TQFileSystemModel.prg - C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractItemModel - $END$ + * $NAME$ + * QFileSystemModel() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFileSystemModel.prg + * C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFileSystemModel():new( ... ) + * QFileSystemModel():from( pPtr_OR_oObj_of_type_QFileSystemModel ) + * QFileSystemModel():configure( pPtr_OR_oObj_of_type_QFileSystemModel ) + * $METHODS$ + * :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool + * :fileIcon( pIndex ) -> pQIcon + * :fileInfo( pIndex ) -> pQFileInfo + * :fileName( pIndex ) -> cQString + * :filePath( pIndex ) -> cQString + * :filter() -> nQDir::Filters + * :index( cPath, nColumn ) -> pQModelIndex + * :isDir( pIndex ) -> lBool + * :isReadOnly() -> lBool + * :lastModified( pIndex ) -> pQDateTime + * :mimeTypes() -> pQStringList + * :mkdir( pParent, cName ) -> pQModelIndex + * :myComputer( nRole ) -> pQVariant + * :nameFilterDisables() -> lBool + * :nameFilters() -> pQStringList + * :permissions( pIndex ) -> nQFile::Permissions + * :remove( pIndex ) -> lBool + * :resolveSymlinks() -> lBool + * :rmdir( pIndex ) -> lBool + * :rootDirectory() -> pQDir + * :rootPath() -> cQString + * :setFilter( nFilters ) -> NIL + * :setNameFilterDisables( lEnable ) -> NIL + * :setNameFilters( pFilters ) -> NIL + * :setReadOnly( lEnable ) -> NIL + * :setResolveSymlinks( lEnable ) -> NIL + * :setRootPath( cNewPath ) -> pQModelIndex + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt index f1456b076f..89567a7f69 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt @@ -1,56 +1,54 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFocusEvent() - $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 - - $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/TQFocusEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp - Library : hbqtgui - $SEEALSO$ - QEvent - $END$ + * $NAME$ + * QFocusEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFocusEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFocusEvent():new( ... ) + * QFocusEvent():from( pPtr_OR_oObj_of_type_QFocusEvent ) + * QFocusEvent():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt index bf3588966a..7bdb1a9fa0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qfocusframe.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfont.txt b/harbour/contrib/hbqt/doc/en/class_qfont.txt index adeaf510f1..40f947e527 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfont.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfont.txt @@ -1,118 +1,116 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFont() - $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 - :defaultFamily() -> cQString - :exactMatch() -> lBool - :family() -> cQString - :fixedPitch() -> lBool - :fromString( cDescrip ) -> lBool - :italic() -> lBool - :kerning() -> lBool - :key() -> cQString - :lastResortFamily() -> cQString - :lastResortFont() -> cQString - :letterSpacing() -> nQreal - :letterSpacingType() -> nSpacingType - :overline() -> lBool - :pixelSize() -> nInt - :pointSize() -> nInt - :pointSizeF() -> nQreal - :rawMode() -> lBool - :rawName() -> cQString - :setBold( lEnable ) -> NIL - :setCapitalization( nCaps ) -> NIL - :setFamily( cFamily ) -> NIL - :setFixedPitch( lEnable ) -> NIL - :setItalic( lEnable ) -> NIL - :setKerning( lEnable ) -> NIL - :setLetterSpacing( nType, nSpacing ) -> NIL - :setOverline( lEnable ) -> NIL - :setPixelSize( nPixelSize ) -> NIL - :setPointSize( nPointSize ) -> NIL - :setPointSizeF( nPointSize ) -> NIL - :setRawMode( lEnable ) -> NIL - :setRawName( cName ) -> NIL - :setStretch( nFactor ) -> NIL - :setStrikeOut( lEnable ) -> NIL - :setStyle( nStyle ) -> NIL - :setStyleHint( nHint, nStrategy ) -> NIL - :setStyleStrategy( nS ) -> NIL - :setUnderline( lEnable ) -> NIL - :setWeight( nWeight ) -> NIL - :setWordSpacing( nSpacing ) -> NIL - :stretch() -> nInt - :strikeOut() -> lBool - :style() -> nStyle - :styleHint() -> nStyleHint - :styleStrategy() -> nStyleStrategy - :toString() -> cQString - :underline() -> lBool - :weight() -> nInt - :wordSpacing() -> nQreal - :cleanup() -> NIL - :initialize() -> NIL - :insertSubstitution( cFamilyName, cSubstituteName ) -> NIL - :insertSubstitutions( cFamilyName, pSubstituteNames ) -> NIL - :removeSubstitution( cFamilyName ) -> NIL - :substitute( cFamilyName ) -> cQString - :substitutes( cFamilyName ) -> pQStringList - :substitutions() -> pQStringList - - $DESCRIPTION$ - - $EXAMPLES$ - oFont := QFont():new() - oFont := QFont():new( cFontName ) - oFont := QFont():new( cFontName, nPointSize ) - oFont := QFont():new( cFontName, nPointSize, nWeight ) - oFont := QFont():new( cFontName, nPointSize, nWeight, lItalic ) - oFont := QFont():new( pFont ) - oFont := QFont():new( pFont, pPaintDevice ) - - $TESTS$ - - $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/TQFont.prg - C++ wrappers : contrib/hbqt/qtgui/QFont.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QFont() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFont.prg + * C++ wrappers : contrib/hbqt/qtgui/QFont.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFont():new( ... ) + * QFont():from( pPtr_OR_oObj_of_type_QFont ) + * QFont():configure( pPtr_OR_oObj_of_type_QFont ) + * $METHODS$ + * :bold() -> lBool + * :capitalization() -> nCapitalization + * :defaultFamily() -> cQString + * :exactMatch() -> lBool + * :family() -> cQString + * :fixedPitch() -> lBool + * :fromString( cDescrip ) -> lBool + * :italic() -> lBool + * :kerning() -> lBool + * :key() -> cQString + * :lastResortFamily() -> cQString + * :lastResortFont() -> cQString + * :letterSpacing() -> nQreal + * :letterSpacingType() -> nSpacingType + * :overline() -> lBool + * :pixelSize() -> nInt + * :pointSize() -> nInt + * :pointSizeF() -> nQreal + * :rawMode() -> lBool + * :rawName() -> cQString + * :setBold( lEnable ) -> NIL + * :setCapitalization( nCaps ) -> NIL + * :setFamily( cFamily ) -> NIL + * :setFixedPitch( lEnable ) -> NIL + * :setItalic( lEnable ) -> NIL + * :setKerning( lEnable ) -> NIL + * :setLetterSpacing( nType, nSpacing ) -> NIL + * :setOverline( lEnable ) -> NIL + * :setPixelSize( nPixelSize ) -> NIL + * :setPointSize( nPointSize ) -> NIL + * :setPointSizeF( nPointSize ) -> NIL + * :setRawMode( lEnable ) -> NIL + * :setRawName( cName ) -> NIL + * :setStretch( nFactor ) -> NIL + * :setStrikeOut( lEnable ) -> NIL + * :setStyle( nStyle ) -> NIL + * :setStyleHint( nHint, nStrategy ) -> NIL + * :setStyleStrategy( nS ) -> NIL + * :setUnderline( lEnable ) -> NIL + * :setWeight( nWeight ) -> NIL + * :setWordSpacing( nSpacing ) -> NIL + * :stretch() -> nInt + * :strikeOut() -> lBool + * :style() -> nStyle + * :styleHint() -> nStyleHint + * :styleStrategy() -> nStyleStrategy + * :toString() -> cQString + * :underline() -> lBool + * :weight() -> nInt + * :wordSpacing() -> nQreal + * :cleanup() -> NIL + * :initialize() -> NIL + * :insertSubstitution( cFamilyName, cSubstituteName ) -> NIL + * :insertSubstitutions( cFamilyName, pSubstituteNames ) -> NIL + * :removeSubstitution( cFamilyName ) -> NIL + * :substitute( cFamilyName ) -> cQString + * :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 + * $EXAMPLES$ + * oFont := QFont():new() + * oFont := QFont():new( cFontName ) + * oFont := QFont():new( cFontName, nPointSize ) + * oFont := QFont():new( cFontName, nPointSize, nWeight ) + * oFont := QFont():new( cFontName, nPointSize, nWeight, lItalic ) + * oFont := QFont():new( pFont ) + * oFont := QFont():new( pFont, pPaintDevice ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QFont object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qfont.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt index 27500d91cf..e393957118 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFontComboBox() - $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 - :setFontFilters( nFilters ) -> NIL - :setWritingSystem( nScript ) -> NIL - :writingSystem() -> nQFontDatabase::WritingSystem - :setCurrentFont( pFont ) -> 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/TQFontComboBox.prg - C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp - Library : hbqtgui - $SEEALSO$ - QComboBox - $END$ + * $NAME$ + * QFontComboBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFontComboBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFontComboBox():new( ... ) + * QFontComboBox():from( pPtr_OR_oObj_of_type_QFontComboBox ) + * QFontComboBox():configure( pPtr_OR_oObj_of_type_QFontComboBox ) + * $METHODS$ + * :currentFont() -> pQFont + * :fontFilters() -> nFontFilters + * :setFontFilters( nFilters ) -> NIL + * :setWritingSystem( nScript ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt index b4693a5ac3..9e90ea2417 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt @@ -1,76 +1,74 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFontDatabase() - $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 - :font( cFamily, cStyle, nPointSize ) -> pQFont - :isBitmapScalable( cFamily, cStyle ) -> lBool - :isFixedPitch( cFamily, cStyle ) -> lBool - :isScalable( cFamily, cStyle ) -> lBool - :isSmoothlyScalable( cFamily, cStyle ) -> lBool - :italic( cFamily, cStyle ) -> lBool - :pointSizes( cFamily, cStyle ) -> pQList - :smoothSizes( cFamily, cStyle ) -> pQList - :styleString( pFont ) -> cQString - :styleString_1( pFontInfo ) -> cQString - :styles( cFamily ) -> pQStringList - :weight( cFamily, cStyle ) -> nInt - :addApplicationFont( cFileName ) -> nInt - :addApplicationFontFromData( pFontData ) -> nInt - :applicationFontFamilies( nId ) -> pQStringList - :removeAllApplicationFonts() -> lBool - :removeApplicationFont( nId ) -> lBool - :standardSizes() -> pQList - :supportsThreadedFontRendering() -> lBool - :writingSystemName( nWritingSystem ) -> cQString - :writingSystemSample( nWritingSystem ) -> 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/TQFontDatabase.prg - C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QFontDatabase() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFontDatabase.prg + * C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFontDatabase():new( ... ) + * QFontDatabase():from( pPtr_OR_oObj_of_type_QFontDatabase ) + * QFontDatabase():configure( pPtr_OR_oObj_of_type_QFontDatabase ) + * $METHODS$ + * :bold( cFamily, cStyle ) -> lBool + * :families( nWritingSystem ) -> pQStringList + * :font( cFamily, cStyle, nPointSize ) -> pQFont + * :isBitmapScalable( cFamily, cStyle ) -> lBool + * :isFixedPitch( cFamily, cStyle ) -> lBool + * :isScalable( cFamily, cStyle ) -> lBool + * :isSmoothlyScalable( cFamily, cStyle ) -> lBool + * :italic( cFamily, cStyle ) -> lBool + * :pointSizes( cFamily, cStyle ) -> pQList + * :smoothSizes( cFamily, cStyle ) -> pQList + * :styleString( pFont ) -> cQString + * :styleString_1( pFontInfo ) -> cQString + * :styles( cFamily ) -> pQStringList + * :weight( cFamily, cStyle ) -> nInt + * :addApplicationFont( cFileName ) -> nInt + * :addApplicationFontFromData( pFontData ) -> nInt + * :applicationFontFamilies( nId ) -> pQStringList + * :removeAllApplicationFonts() -> lBool + * :removeApplicationFont( nId ) -> lBool + * :standardSizes() -> pQList + * :supportsThreadedFontRendering() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt index fd5bc15c74..c1e442d2ac 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt @@ -1,65 +1,63 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFontDialog() - $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 - :selectedFont() -> pQFont - :setCurrentFont( pFont ) -> NIL - :setOption( nOption, lOn ) -> NIL - :setOptions( nOptions ) -> NIL - :testOption( nOption ) -> lBool - :getFont( @lOk, pInitial, pParent, cTitle, nOptions ) -> pQFont - :getFont_1( @lOk, pInitial, pParent, pName ) -> pQFont - :getFont_2( @lOk, pInitial, pParent, cTitle ) -> pQFont - :getFont_3( @lOk, pInitial, pParent ) -> pQFont - :getFont_4( @lOk, pParent ) -> pQFont - - $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/TQFontDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QFontDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFontDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFontDialog():new( ... ) + * QFontDialog():from( pPtr_OR_oObj_of_type_QFontDialog ) + * QFontDialog():configure( pPtr_OR_oObj_of_type_QFontDialog ) + * $METHODS$ + * :currentFont() -> pQFont + * :options() -> nFontDialogOptions + * :selectedFont() -> pQFont + * :setCurrentFont( pFont ) -> NIL + * :setOption( nOption, lOn ) -> NIL + * :setOptions( nOptions ) -> NIL + * :testOption( nOption ) -> lBool + * :getFont( @lOk, pInitial, pParent, cTitle, nOptions ) -> pQFont + * :getFont_1( @lOk, pInitial, pParent, pName ) -> pQFont + * :getFont_2( @lOk, pInitial, pParent, cTitle ) -> pQFont + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt index c19a746d70..b6c26e687b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt @@ -1,65 +1,63 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFontInfo() - $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 - :family() -> cQString - :fixedPitch() -> lBool - :italic() -> lBool - :pixelSize() -> nInt - :pointSize() -> nInt - :pointSizeF() -> nQreal - :rawMode() -> lBool - :style() -> nQFont::Style - :styleHint() -> nQFont::StyleHint - :weight() -> 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/TQFontInfo.prg - C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QFontInfo() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFontInfo.prg + * C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFontInfo():new( ... ) + * QFontInfo():from( pPtr_OR_oObj_of_type_QFontInfo ) + * QFontInfo():configure( pPtr_OR_oObj_of_type_QFontInfo ) + * $METHODS$ + * :bold() -> lBool + * :exactMatch() -> lBool + * :family() -> cQString + * :fixedPitch() -> lBool + * :italic() -> lBool + * :pixelSize() -> nInt + * :pointSize() -> nInt + * :pointSizeF() -> nQreal + * :rawMode() -> lBool + * :style() -> nQFont::Style + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt index 10230905f1..58822576d2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFontMetrics() - $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 - :boundingRect( pCh ) -> pQRect - :boundingRect_1( cText ) -> pQRect - :boundingRect_2( nX, nY, nWidth, nHeight, nFlags, cText, nTabStops, @nTabArray ) -> pQRect - :boundingRect_3( pRect, nFlags, cText, nTabStops, @nTabArray ) -> pQRect - :descent() -> nInt - :elidedText( cText, nMode, nWidth, nFlags ) -> cQString - :height() -> nInt - :inFont( pCh ) -> lBool - :leading() -> nInt - :leftBearing( pCh ) -> nInt - :lineSpacing() -> nInt - :lineWidth() -> nInt - :maxWidth() -> nInt - :minLeftBearing() -> nInt - :minRightBearing() -> nInt - :overlinePos() -> nInt - :rightBearing( pCh ) -> nInt - :size( nFlags, cText, nTabStops, @nTabArray ) -> pQSize - :strikeOutPos() -> nInt - :tightBoundingRect( cText ) -> pQRect - :underlinePos() -> nInt - :width( cText, nLen ) -> nInt - :width_1( pCh ) -> nInt - :xHeight() -> nInt - - $DESCRIPTION$ - - $EXAMPLES$ - oFontMetrics := QFontMetrics():new( pQFontMetrics ) - oFontMetrics := QFontMetrics():new( "QFont", pQFont ) - oFontMetrics := QFontMetrics():new( pQFont, pQPaintDevice ) - - $TESTS$ - - $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/TQFontMetrics.prg - C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QFontMetrics() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFontMetrics.prg + * C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFontMetrics():new( ... ) + * QFontMetrics():from( pPtr_OR_oObj_of_type_QFontMetrics ) + * QFontMetrics():configure( pPtr_OR_oObj_of_type_QFontMetrics ) + * $METHODS$ + * :ascent() -> nInt + * :averageCharWidth() -> nInt + * :boundingRect( pCh ) -> pQRect + * :boundingRect_1( cText ) -> pQRect + * :boundingRect_2( nX, nY, nWidth, nHeight, nFlags, cText, nTabStops, @nTabArray ) -> pQRect + * :boundingRect_3( pRect, nFlags, cText, nTabStops, @nTabArray ) -> pQRect + * :descent() -> nInt + * :elidedText( cText, nMode, nWidth, nFlags ) -> cQString + * :height() -> nInt + * :inFont( pCh ) -> lBool + * :leading() -> nInt + * :leftBearing( pCh ) -> nInt + * :lineSpacing() -> nInt + * :lineWidth() -> nInt + * :maxWidth() -> nInt + * :minLeftBearing() -> nInt + * :minRightBearing() -> nInt + * :overlinePos() -> nInt + * :rightBearing( pCh ) -> nInt + * :size( nFlags, cText, nTabStops, @nTabArray ) -> pQSize + * :strikeOutPos() -> nInt + * :tightBoundingRect( cText ) -> pQRect + * :underlinePos() -> nInt + * :width( cText, nLen ) -> nInt + * :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 + * $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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qfontmetrics.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt index 258f2052fa..7c31af52ff 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFontMetricsF() - $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 - :boundingRect( cText ) -> pQRectF - :boundingRect_1( pCh ) -> pQRectF - :boundingRect_2( pRect, nFlags, cText, nTabStops, @nTabArray ) -> pQRectF - :descent() -> nQreal - :elidedText( cText, nMode, nWidth, nFlags ) -> cQString - :height() -> nQreal - :inFont( pCh ) -> lBool - :leading() -> nQreal - :leftBearing( pCh ) -> nQreal - :lineSpacing() -> nQreal - :lineWidth() -> nQreal - :maxWidth() -> nQreal - :minLeftBearing() -> nQreal - :minRightBearing() -> nQreal - :overlinePos() -> nQreal - :rightBearing( pCh ) -> nQreal - :size( nFlags, cText, nTabStops, @nTabArray ) -> pQSizeF - :strikeOutPos() -> nQreal - :tightBoundingRect( cText ) -> pQRectF - :underlinePos() -> nQreal - :width( cText ) -> nQreal - :width_1( pCh ) -> nQreal - :xHeight() -> nQreal - - $DESCRIPTION$ - - $EXAMPLES$ - oFontMetricsF := QFontMetricsF():new( pQFontMetricsF ) - oFontMetricsF := QFontMetricsF():new( "QFontMetrics", pQFontMetrics ) - oFontMetricsF := QFontMetricsF():new( "QFont", pQFont ) - oFontMetricsF := QFontMetricsF():new( pQFont, pQPaintDevice ) - - $TESTS$ - - $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/TQFontMetricsF.prg - C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QFontMetricsF() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFontMetricsF.prg + * C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFontMetricsF():new( ... ) + * QFontMetricsF():from( pPtr_OR_oObj_of_type_QFontMetricsF ) + * QFontMetricsF():configure( pPtr_OR_oObj_of_type_QFontMetricsF ) + * $METHODS$ + * :ascent() -> nQreal + * :averageCharWidth() -> nQreal + * :boundingRect( cText ) -> pQRectF + * :boundingRect_1( pCh ) -> pQRectF + * :boundingRect_2( pRect, nFlags, cText, nTabStops, @nTabArray ) -> pQRectF + * :descent() -> nQreal + * :elidedText( cText, nMode, nWidth, nFlags ) -> cQString + * :height() -> nQreal + * :inFont( pCh ) -> lBool + * :leading() -> nQreal + * :leftBearing( pCh ) -> nQreal + * :lineSpacing() -> nQreal + * :lineWidth() -> nQreal + * :maxWidth() -> nQreal + * :minLeftBearing() -> nQreal + * :minRightBearing() -> nQreal + * :overlinePos() -> nQreal + * :rightBearing( pCh ) -> nQreal + * :size( nFlags, cText, nTabStops, @nTabArray ) -> pQSizeF + * :strikeOutPos() -> nQreal + * :tightBoundingRect( cText ) -> pQRectF + * :underlinePos() -> nQreal + * :width( cText ) -> nQreal + * :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 + * $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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qfontmetricsf.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qformlayout.txt b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt index 7d85d45974..e96fbfaba3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qformlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt @@ -1,89 +1,87 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFormLayout() - $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 - :addRow_2( pWidget ) -> NIL - :addRow_3( cLabelText, pField ) -> NIL - :addRow_4( cLabelText, pField ) -> NIL - :addRow_5( pLayout ) -> NIL - :fieldGrowthPolicy() -> nFieldGrowthPolicy - :formAlignment() -> nQt::Alignment - :getItemPosition( nIndex, @nRowPtr, @nRolePtr ) -> NIL - :getLayoutPosition( pLayout, @nRowPtr, @nRolePtr ) -> NIL - :getWidgetPosition( pWidget, @nRowPtr, @nRolePtr ) -> NIL - :horizontalSpacing() -> nInt - :insertRow( nRow, pLabel, pField ) -> NIL - :insertRow_1( nRow, pLabel, pField ) -> NIL - :insertRow_2( nRow, pWidget ) -> NIL - :insertRow_3( nRow, cLabelText, pField ) -> NIL - :insertRow_4( nRow, cLabelText, pField ) -> NIL - :insertRow_5( nRow, pLayout ) -> NIL - :itemAt( nRow, nRole ) -> pQLayoutItem - :labelAlignment() -> nQt::Alignment - :labelForField( pField ) -> pQWidget - :labelForField_1( pField ) -> pQWidget - :rowCount() -> nInt - :rowWrapPolicy() -> nRowWrapPolicy - :setFieldGrowthPolicy( nPolicy ) -> NIL - :setFormAlignment( nAlignment ) -> NIL - :setHorizontalSpacing( nSpacing ) -> NIL - :setItem( nRow, nRole, pItem ) -> NIL - :setLabelAlignment( nAlignment ) -> NIL - :setLayout( nRow, nRole, pLayout ) -> NIL - :setRowWrapPolicy( nPolicy ) -> NIL - :setSpacing( nSpacing ) -> NIL - :setVerticalSpacing( nSpacing ) -> NIL - :setWidget( nRow, nRole, pWidget ) -> NIL - :spacing() -> nInt - :verticalSpacing() -> 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/TQFormLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp - Library : hbqtgui - $SEEALSO$ - QLayout - $END$ + * $NAME$ + * QFormLayout() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFormLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFormLayout():new( ... ) + * QFormLayout():from( pPtr_OR_oObj_of_type_QFormLayout ) + * QFormLayout():configure( pPtr_OR_oObj_of_type_QFormLayout ) + * $METHODS$ + * :addRow( pLabel, pField ) -> NIL + * :addRow_1( pLabel, pField ) -> NIL + * :addRow_2( pWidget ) -> NIL + * :addRow_3( cLabelText, pField ) -> NIL + * :addRow_4( cLabelText, pField ) -> NIL + * :addRow_5( pLayout ) -> NIL + * :fieldGrowthPolicy() -> nFieldGrowthPolicy + * :formAlignment() -> nQt::Alignment + * :getItemPosition( nIndex, @nRowPtr, @nRolePtr ) -> NIL + * :getLayoutPosition( pLayout, @nRowPtr, @nRolePtr ) -> NIL + * :getWidgetPosition( pWidget, @nRowPtr, @nRolePtr ) -> NIL + * :horizontalSpacing() -> nInt + * :insertRow( nRow, pLabel, pField ) -> NIL + * :insertRow_1( nRow, pLabel, pField ) -> NIL + * :insertRow_2( nRow, pWidget ) -> NIL + * :insertRow_3( nRow, cLabelText, pField ) -> NIL + * :insertRow_4( nRow, cLabelText, pField ) -> NIL + * :insertRow_5( nRow, pLayout ) -> NIL + * :itemAt( nRow, nRole ) -> pQLayoutItem + * :labelAlignment() -> nQt::Alignment + * :labelForField( pField ) -> pQWidget + * :labelForField_1( pField ) -> pQWidget + * :rowCount() -> nInt + * :rowWrapPolicy() -> nRowWrapPolicy + * :setFieldGrowthPolicy( nPolicy ) -> NIL + * :setFormAlignment( nAlignment ) -> NIL + * :setHorizontalSpacing( nSpacing ) -> NIL + * :setItem( nRow, nRole, pItem ) -> NIL + * :setLabelAlignment( nAlignment ) -> NIL + * :setLayout( nRow, nRole, pLayout ) -> NIL + * :setRowWrapPolicy( nPolicy ) -> NIL + * :setSpacing( nSpacing ) -> NIL + * :setVerticalSpacing( nSpacing ) -> NIL + * :setWidget( nRow, nRole, pWidget ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qframe.txt b/harbour/contrib/hbqt/doc/en/class_qframe.txt index 96437c41b5..924903a30e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qframe.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFrame() - $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 - :frameShape() -> nShape - :frameStyle() -> nInt - :frameWidth() -> nInt - :lineWidth() -> nInt - :midLineWidth() -> nInt - :setFrameRect( pQRect ) -> NIL - :setFrameShadow( nShadow ) -> NIL - :setFrameShape( nShape ) -> NIL - :setFrameStyle( nStyle ) -> NIL - :setLineWidth( nInt ) -> NIL - :setMidLineWidth( nInt ) -> 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/TQFrame.prg - C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QFrame() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQFrame.prg + * C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFrame():new( ... ) + * QFrame():from( pPtr_OR_oObj_of_type_QFrame ) + * QFrame():configure( pPtr_OR_oObj_of_type_QFrame ) + * $METHODS$ + * :frameRect() -> pQRect + * :frameShadow() -> nShadow + * :frameShape() -> nShape + * :frameStyle() -> nInt + * :frameWidth() -> nInt + * :lineWidth() -> nInt + * :midLineWidth() -> nInt + * :setFrameRect( pQRect ) -> NIL + * :setFrameShadow( nShadow ) -> NIL + * :setFrameShape( nShape ) -> NIL + * :setFrameStyle( nStyle ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qftp.txt b/harbour/contrib/hbqt/doc/en/class_qftp.txt index 7ca7f77c4d..f95ec69686 100644 --- a/harbour/contrib/hbqt/doc/en/class_qftp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qftp.txt @@ -1,79 +1,77 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QFtp() - $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 - :clearPendingCommands() -> NIL - :close() -> nInt - :connectToHost( cHost, nPort ) -> nInt - :currentCommand() -> nCommand - :currentDevice() -> pQIODevice - :currentId() -> nInt - :error() -> nError - :errorString() -> cQString - :get( cFile, pDev, nType ) -> nInt - :hasPendingCommands() -> lBool - :list( cDir ) -> nInt - :login( cUser, cPassword ) -> nInt - :mkdir( cDir ) -> nInt - :put( pDev, cFile, nType ) -> nInt - :put_1( pData, cFile, nType ) -> nInt - :rawCommand( cCommand ) -> nInt - :readAll() -> pQByteArray - :remove( cFile ) -> nInt - :rename( cOldname, cNewname ) -> nInt - :rmdir( cDir ) -> nInt - :setProxy( cHost, nPort ) -> nInt - :setTransferMode( nMode ) -> nInt - :state() -> nState - :abort() -> 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/qtnetwork/TQFtp.prg - C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp - Library : hbqtnetwork - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QFtp() + * $FILES$ + * Harbour source: contrib/hbqt/qtnetwork/TQFtp.prg + * C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp + * Library : hbqtnetwork + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QFtp():new( ... ) + * QFtp():from( pPtr_OR_oObj_of_type_QFtp ) + * QFtp():configure( pPtr_OR_oObj_of_type_QFtp ) + * $METHODS$ + * :bytesAvailable() -> nQint64 + * :cd( cDir ) -> nInt + * :clearPendingCommands() -> NIL + * :close() -> nInt + * :connectToHost( cHost, nPort ) -> nInt + * :currentCommand() -> nCommand + * :currentDevice() -> pQIODevice + * :currentId() -> nInt + * :error() -> nError + * :errorString() -> cQString + * :get( cFile, pDev, nType ) -> nInt + * :hasPendingCommands() -> lBool + * :list( cDir ) -> nInt + * :login( cUser, cPassword ) -> nInt + * :mkdir( cDir ) -> nInt + * :put( pDev, cFile, nType ) -> nInt + * :put_1( pData, cFile, nType ) -> nInt + * :rawCommand( cCommand ) -> nInt + * :readAll() -> pQByteArray + * :remove( cFile ) -> nInt + * :rename( cOldname, cNewname ) -> nInt + * :rmdir( cDir ) -> nInt + * :setProxy( cHost, nPort ) -> nInt + * :setTransferMode( nMode ) -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qgradient.txt b/harbour/contrib/hbqt/doc/en/class_qgradient.txt index a7573964dc..e881d24784 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgradient.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QGradient() - $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 - :setCoordinateMode( nMode ) -> NIL - :setSpread( nMethod ) -> NIL - :spread() -> nSpread - :type() -> nType - - $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/TQGradient.prg - C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QGradient() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQGradient.prg + * C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QGradient():new( ... ) + * QGradient():from( pPtr_OR_oObj_of_type_QGradient ) + * QGradient():configure( pPtr_OR_oObj_of_type_QGradient ) + * $METHODS$ + * :coordinateMode() -> nCoordinateMode + * :setColorAt( nPosition, pColor ) -> NIL + * :setCoordinateMode( nMode ) -> NIL + * :setSpread( nMethod ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt index 94082956d5..40f2fc9bf8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt @@ -1,79 +1,77 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QGridLayout() - $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 - :addLayout_1( pLayout, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL - :addWidget( pWidget, nRow, nColumn, nAlignment ) -> NIL - :addWidget_1( pWidget, nFromRow, nFromColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL - :cellRect( nRow, nColumn ) -> pQRect - :columnCount() -> nInt - :columnMinimumWidth( nColumn ) -> nInt - :columnStretch( nColumn ) -> nInt - :getItemPosition( nIndex, @nRow, @nColumn, @nRowSpan, @nColumnSpan ) -> NIL - :horizontalSpacing() -> nInt - :itemAtPosition( nRow, nColumn ) -> pQLayoutItem - :originCorner() -> nQt::Corner - :rowCount() -> nInt - :rowMinimumHeight( nRow ) -> nInt - :rowStretch( nRow ) -> nInt - :setColumnMinimumWidth( nColumn, nMinSize ) -> NIL - :setColumnStretch( nColumn, nStretch ) -> NIL - :setHorizontalSpacing( nSpacing ) -> NIL - :setOriginCorner( nCorner ) -> NIL - :setRowMinimumHeight( nRow, nMinSize ) -> NIL - :setRowStretch( nRow, nStretch ) -> NIL - :setSpacing( nSpacing ) -> NIL - :setVerticalSpacing( nSpacing ) -> NIL - :spacing() -> nInt - :verticalSpacing() -> 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/TQGridLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp - Library : hbqtgui - $SEEALSO$ - QLayout - $END$ + * $NAME$ + * QGridLayout() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQGridLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QGridLayout():new( ... ) + * QGridLayout():from( pPtr_OR_oObj_of_type_QGridLayout ) + * QGridLayout():configure( pPtr_OR_oObj_of_type_QGridLayout ) + * $METHODS$ + * :addItem( pItem, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL + * :addLayout( pLayout, nRow, nColumn, nAlignment ) -> NIL + * :addLayout_1( pLayout, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL + * :addWidget( pWidget, nRow, nColumn, nAlignment ) -> NIL + * :addWidget_1( pWidget, nFromRow, nFromColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL + * :cellRect( nRow, nColumn ) -> pQRect + * :columnCount() -> nInt + * :columnMinimumWidth( nColumn ) -> nInt + * :columnStretch( nColumn ) -> nInt + * :getItemPosition( nIndex, @nRow, @nColumn, @nRowSpan, @nColumnSpan ) -> NIL + * :horizontalSpacing() -> nInt + * :itemAtPosition( nRow, nColumn ) -> pQLayoutItem + * :originCorner() -> nQt::Corner + * :rowCount() -> nInt + * :rowMinimumHeight( nRow ) -> nInt + * :rowStretch( nRow ) -> nInt + * :setColumnMinimumWidth( nColumn, nMinSize ) -> NIL + * :setColumnStretch( nColumn, nStretch ) -> NIL + * :setHorizontalSpacing( nSpacing ) -> NIL + * :setOriginCorner( nCorner ) -> NIL + * :setRowMinimumHeight( nRow, nMinSize ) -> NIL + * :setRowStretch( nRow, nStretch ) -> NIL + * :setSpacing( nSpacing ) -> NIL + * :setVerticalSpacing( nSpacing ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt index 79e4e7116d..78f439037b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QGroupBox() - $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 - :isChecked() -> lBool - :isFlat() -> lBool - :setAlignment( nAlignment ) -> NIL - :setCheckable( lCheckable ) -> NIL - :setFlat( lFlat ) -> NIL - :setTitle( cTitle ) -> NIL - :title() -> cQString - :setChecked( lChecked ) -> 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/TQGroupBox.prg - C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QGroupBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQGroupBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QGroupBox():new( ... ) + * QGroupBox():from( pPtr_OR_oObj_of_type_QGroupBox ) + * QGroupBox():configure( pPtr_OR_oObj_of_type_QGroupBox ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :isCheckable() -> lBool + * :isChecked() -> lBool + * :isFlat() -> lBool + * :setAlignment( nAlignment ) -> NIL + * :setCheckable( lCheckable ) -> NIL + * :setFlat( lFlat ) -> NIL + * :setTitle( cTitle ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qheaderview.txt b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt index ad5e516eeb..d55e21c778 100644 --- a/harbour/contrib/hbqt/doc/en/class_qheaderview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt @@ -1,110 +1,108 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QHeaderView() - $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 - :defaultAlignment() -> nQt::Alignment - :defaultSectionSize() -> nInt - :hiddenSectionCount() -> nInt - :hideSection( nLogicalIndex ) -> NIL - :highlightSections() -> lBool - :isClickable() -> lBool - :isMovable() -> lBool - :isSectionHidden( nLogicalIndex ) -> lBool - :isSortIndicatorShown() -> lBool - :length() -> nInt - :logicalIndex( nVisualIndex ) -> nInt - :logicalIndexAt( nPosition ) -> nInt - :logicalIndexAt_1( nX, nY ) -> nInt - :logicalIndexAt_2( pPos ) -> nInt - :minimumSectionSize() -> nInt - :moveSection( nFrom, nTo ) -> NIL - :offset() -> nInt - :orientation() -> nQt::Orientation - :resizeMode( nLogicalIndex ) -> nResizeMode - :resizeSection( nLogicalIndex, nSize ) -> NIL - :resizeSections( nMode ) -> NIL - :restoreState( pState ) -> lBool - :saveState() -> pQByteArray - :sectionPosition( nLogicalIndex ) -> nInt - :sectionSize( nLogicalIndex ) -> nInt - :sectionSizeHint( nLogicalIndex ) -> nInt - :sectionViewportPosition( nLogicalIndex ) -> nInt - :sectionsHidden() -> lBool - :sectionsMoved() -> lBool - :setCascadingSectionResizes( lEnable ) -> NIL - :setClickable( lClickable ) -> NIL - :setDefaultAlignment( nAlignment ) -> NIL - :setDefaultSectionSize( nSize ) -> NIL - :setHighlightSections( lHighlight ) -> NIL - :setMinimumSectionSize( nSize ) -> NIL - :setMovable( lMovable ) -> NIL - :setResizeMode( nMode ) -> NIL - :setResizeMode_1( nLogicalIndex, nMode ) -> NIL - :setSectionHidden( nLogicalIndex, lHide ) -> NIL - :setSortIndicator( nLogicalIndex, nOrder ) -> NIL - :setSortIndicatorShown( lShow ) -> NIL - :setStretchLastSection( lStretch ) -> NIL - :showSection( nLogicalIndex ) -> NIL - :sizeHint() -> pQSize - :sortIndicatorOrder() -> nQt::SortOrder - :sortIndicatorSection() -> nInt - :stretchLastSection() -> lBool - :stretchSectionCount() -> nInt - :swapSections( nFirst, nSecond ) -> NIL - :visualIndex( nLogicalIndex ) -> nInt - :visualIndexAt( nPosition ) -> nInt - :headerDataChanged( nOrientation, nLogicalFirst, nLogicalLast ) -> NIL - :setOffset( nOffset ) -> NIL - :setOffsetToLastSection() -> NIL - :setOffsetToSectionPosition( nVisualIndex ) -> 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/TQHeaderView.prg - C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractItemView - $END$ + * $NAME$ + * QHeaderView() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQHeaderView.prg + * C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QHeaderView():new( ... ) + * QHeaderView():from( pPtr_OR_oObj_of_type_QHeaderView ) + * QHeaderView():configure( pPtr_OR_oObj_of_type_QHeaderView ) + * $METHODS$ + * :cascadingSectionResizes() -> lBool + * :count() -> nInt + * :defaultAlignment() -> nQt::Alignment + * :defaultSectionSize() -> nInt + * :hiddenSectionCount() -> nInt + * :hideSection( nLogicalIndex ) -> NIL + * :highlightSections() -> lBool + * :isClickable() -> lBool + * :isMovable() -> lBool + * :isSectionHidden( nLogicalIndex ) -> lBool + * :isSortIndicatorShown() -> lBool + * :length() -> nInt + * :logicalIndex( nVisualIndex ) -> nInt + * :logicalIndexAt( nPosition ) -> nInt + * :logicalIndexAt_1( nX, nY ) -> nInt + * :logicalIndexAt_2( pPos ) -> nInt + * :minimumSectionSize() -> nInt + * :moveSection( nFrom, nTo ) -> NIL + * :offset() -> nInt + * :orientation() -> nQt::Orientation + * :resizeMode( nLogicalIndex ) -> nResizeMode + * :resizeSection( nLogicalIndex, nSize ) -> NIL + * :resizeSections( nMode ) -> NIL + * :restoreState( pState ) -> lBool + * :saveState() -> pQByteArray + * :sectionPosition( nLogicalIndex ) -> nInt + * :sectionSize( nLogicalIndex ) -> nInt + * :sectionSizeHint( nLogicalIndex ) -> nInt + * :sectionViewportPosition( nLogicalIndex ) -> nInt + * :sectionsHidden() -> lBool + * :sectionsMoved() -> lBool + * :setCascadingSectionResizes( lEnable ) -> NIL + * :setClickable( lClickable ) -> NIL + * :setDefaultAlignment( nAlignment ) -> NIL + * :setDefaultSectionSize( nSize ) -> NIL + * :setHighlightSections( lHighlight ) -> NIL + * :setMinimumSectionSize( nSize ) -> NIL + * :setMovable( lMovable ) -> NIL + * :setResizeMode( nMode ) -> NIL + * :setResizeMode_1( nLogicalIndex, nMode ) -> NIL + * :setSectionHidden( nLogicalIndex, lHide ) -> NIL + * :setSortIndicator( nLogicalIndex, nOrder ) -> NIL + * :setSortIndicatorShown( lShow ) -> NIL + * :setStretchLastSection( lStretch ) -> NIL + * :showSection( nLogicalIndex ) -> NIL + * :sizeHint() -> pQSize + * :sortIndicatorOrder() -> nQt::SortOrder + * :sortIndicatorSection() -> nInt + * :stretchLastSection() -> lBool + * :stretchSectionCount() -> nInt + * :swapSections( nFirst, nSecond ) -> NIL + * :visualIndex( nLogicalIndex ) -> nInt + * :visualIndexAt( nPosition ) -> nInt + * :headerDataChanged( nOrientation, nLogicalFirst, nLogicalLast ) -> NIL + * :setOffset( nOffset ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt index 9512d646fc..cafe845388 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QHelpEvent() - $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 - :globalY() -> nInt - :pos() -> pQPoint - :x() -> nInt - :y() -> 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/TQHelpEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QHelpEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQHelpEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QHelpEvent():new( ... ) + * QHelpEvent():from( pPtr_OR_oObj_of_type_QHelpEvent ) + * QHelpEvent():configure( pPtr_OR_oObj_of_type_QHelpEvent ) + * $METHODS$ + * :globalPos() -> pQPoint + * :globalX() -> nInt + * :globalY() -> nInt + * :pos() -> pQPoint + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttp.txt b/harbour/contrib/hbqt/doc/en/class_qhttp.txt index 7fbb666f0f..1013684bbf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttp.txt @@ -1,77 +1,75 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QHttp() - $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 - :close() -> nInt - :currentDestinationDevice() -> pQIODevice - :currentId() -> nInt - :currentRequest() -> RequestHeader - :currentSourceDevice() -> pQIODevice - :error() -> nError - :errorString() -> cQString - :get( cPath, pTo ) -> nInt - :hasPendingRequests() -> lBool - :head( cPath ) -> nInt - :lastResponse() -> ResponseHeader - :post( cPath, pData, pTo ) -> nInt - :post_1( cPath, pData, pTo ) -> nInt - :readAll() -> pQByteArray - :request( pHeader, pData, pTo ) -> nInt - :request_1( pHeader, pData, pTo ) -> nInt - :setHost( cHostName, nPort ) -> nInt - :setHost_1( cHostName, nMode, nPort ) -> nInt - :setProxy( cHost, nPort, cUsername, cPassword ) -> nInt - :setUser( cUserName, cPassword ) -> nInt - :state() -> nState - :abort() -> 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/qtnetwork/TQHttp.prg - C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp - Library : hbqtnetwork - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QHttp() + * $FILES$ + * Harbour source: contrib/hbqt/qtnetwork/TQHttp.prg + * C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp + * Library : hbqtnetwork + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QHttp():new( ... ) + * QHttp():from( pPtr_OR_oObj_of_type_QHttp ) + * QHttp():configure( pPtr_OR_oObj_of_type_QHttp ) + * $METHODS$ + * :bytesAvailable() -> nQint64 + * :clearPendingRequests() -> NIL + * :close() -> nInt + * :currentDestinationDevice() -> pQIODevice + * :currentId() -> nInt + * :currentRequest() -> RequestHeader + * :currentSourceDevice() -> pQIODevice + * :error() -> nError + * :errorString() -> cQString + * :get( cPath, pTo ) -> nInt + * :hasPendingRequests() -> lBool + * :head( cPath ) -> nInt + * :lastResponse() -> ResponseHeader + * :post( cPath, pData, pTo ) -> nInt + * :post_1( cPath, pData, pTo ) -> nInt + * :readAll() -> pQByteArray + * :request( pHeader, pData, pTo ) -> nInt + * :request_1( pHeader, pData, pTo ) -> nInt + * :setHost( cHostName, nPort ) -> nInt + * :setHost_1( cHostName, nMode, nPort ) -> nInt + * :setProxy( cHost, nPort, cUsername, cPassword ) -> nInt + * :setUser( cUserName, cPassword ) -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt index 891d8b1937..6e13826df3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt @@ -1,71 +1,69 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QHttpHeader() - $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 - :contentLength() -> nUint - :contentType() -> cQString - :hasContentLength() -> lBool - :hasContentType() -> lBool - :hasKey( cKey ) -> lBool - :isValid() -> lBool - :keys() -> pQStringList - :majorVersion() -> nInt - :minorVersion() -> nInt - :removeAllValues( cKey ) -> NIL - :removeValue( cKey ) -> NIL - :setContentLength( nLen ) -> NIL - :setContentType( cType ) -> NIL - :setValue( cKey, cValue ) -> NIL - :toString() -> cQString - :value( cKey ) -> 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/qtnetwork/TQHttpHeader.prg - C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp - Library : hbqtnetwork - $SEEALSO$ - - $END$ + * $NAME$ + * QHttpHeader() + * $FILES$ + * Harbour source: contrib/hbqt/qtnetwork/TQHttpHeader.prg + * C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp + * Library : hbqtnetwork + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QHttpHeader():new( ... ) + * QHttpHeader():from( pPtr_OR_oObj_of_type_QHttpHeader ) + * QHttpHeader():configure( pPtr_OR_oObj_of_type_QHttpHeader ) + * $METHODS$ + * :addValue( cKey, cValue ) -> NIL + * :allValues( cKey ) -> pQStringList + * :contentLength() -> nUint + * :contentType() -> cQString + * :hasContentLength() -> lBool + * :hasContentType() -> lBool + * :hasKey( cKey ) -> lBool + * :isValid() -> lBool + * :keys() -> pQStringList + * :majorVersion() -> nInt + * :minorVersion() -> nInt + * :removeAllValues( cKey ) -> NIL + * :removeValue( cKey ) -> NIL + * :setContentLength( nLen ) -> NIL + * :setContentType( cType ) -> NIL + * :setValue( cKey, cValue ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt index 60230f456e..3547c2250e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt @@ -1,58 +1,56 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QHttpRequestHeader() - $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 - :minorVersion() -> nInt - :path() -> cQString - :setRequest( cMethod, cPath, nMajorVer, nMinorVer ) -> 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/qtnetwork/TQHttpRequestHeader.prg - C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp - Library : hbqtnetwork - $SEEALSO$ - QHttpHeader - $END$ + * $NAME$ + * QHttpRequestHeader() + * $FILES$ + * Harbour source: contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg + * C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp + * Library : hbqtnetwork + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QHttpRequestHeader():new( ... ) + * QHttpRequestHeader():from( pPtr_OR_oObj_of_type_QHttpRequestHeader ) + * QHttpRequestHeader():configure( pPtr_OR_oObj_of_type_QHttpRequestHeader ) + * $METHODS$ + * :majorVersion() -> nInt + * :method() -> cQString + * :minorVersion() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt index b97d050ecf..194e7c9fbd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt @@ -1,58 +1,56 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QHttpResponseHeader() - $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 - :reasonPhrase() -> cQString - :setStatusLine( nCode, cText, nMajorVer, nMinorVer ) -> NIL - :statusCode() -> 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/qtnetwork/TQHttpResponseHeader.prg - C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp - Library : hbqtnetwork - $SEEALSO$ - QHttpHeader - $END$ + * $NAME$ + * QHttpResponseHeader() + * $FILES$ + * Harbour source: contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg + * C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp + * Library : hbqtnetwork + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QHttpResponseHeader():new( ... ) + * QHttpResponseHeader():from( pPtr_OR_oObj_of_type_QHttpResponseHeader ) + * QHttpResponseHeader():configure( pPtr_OR_oObj_of_type_QHttpResponseHeader ) + * $METHODS$ + * :majorVersion() -> nInt + * :minorVersion() -> nInt + * :reasonPhrase() -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qicon.txt b/harbour/contrib/hbqt/doc/en/class_qicon.txt index 4e840b82d4..dbcd685c66 100644 --- a/harbour/contrib/hbqt/doc/en/class_qicon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qicon.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QIcon() - $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 - :addPixmap( pPixmap, nMode, nState ) -> NIL - :availableSizes( nMode, nState ) -> pQList - :cacheKey() -> nQint64 - :isNull() -> lBool - :paint( pPainter, pRect, nAlignment, nMode, nState ) -> NIL - :paint_1( pPainter, nX, nY, nW, nH, nAlignment, nMode, nState ) -> NIL - :pixmap( pSize, nMode, nState ) -> pQPixmap - :pixmap_1( nW, nH, nMode, nState ) -> pQPixmap - :pixmap_2( nExtent, nMode, nState ) -> pQPixmap - - $DESCRIPTION$ - - $EXAMPLES$ - oIcon := QIcon():new() - oIcon := QIcon():new( cFileName ) - oIcon := QIcon():new( pQPixmap ) - - $TESTS$ - - $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/TQIcon.prg - C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QIcon() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQIcon.prg + * C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QIcon():new( ... ) + * QIcon():from( pPtr_OR_oObj_of_type_QIcon ) + * QIcon():configure( pPtr_OR_oObj_of_type_QIcon ) + * $METHODS$ + * :actualSize( pSize, nMode, nState ) -> pQSize + * :addFile( cFileName, pSize, nMode, nState ) -> NIL + * :addPixmap( pPixmap, nMode, nState ) -> NIL + * :availableSizes( nMode, nState ) -> pQList + * :cacheKey() -> nQint64 + * :isNull() -> lBool + * :paint( pPainter, pRect, nAlignment, nMode, nState ) -> NIL + * :paint_1( pPainter, nX, nY, nW, nH, nAlignment, nMode, nState ) -> NIL + * :pixmap( pSize, nMode, nState ) -> pQPixmap + * :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 + * $EXAMPLES$ + * oIcon := QIcon():new() + * oIcon := QIcon():new( cFileName ) + * oIcon := QIcon():new( pQPixmap ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QIcon object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qicon.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qimage.txt b/harbour/contrib/hbqt/doc/en/class_qimage.txt index 5305947dab..b0d65fe728 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimage.txt @@ -1,107 +1,105 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QImage() - $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 - :bits_1() -> pUchar - :bytesPerLine() -> nInt - :cacheKey() -> nQint64 - :color( nI ) -> nQRgb - :depth() -> nInt - :dotsPerMeterX() -> nInt - :dotsPerMeterY() -> nInt - :fill( nPixelValue ) -> NIL - :format() -> nFormat - :hasAlphaChannel() -> lBool - :height() -> nInt - :invertPixels( nMode ) -> NIL - :isGrayscale() -> lBool - :isNull() -> lBool - :load( cFileName, pFormat ) -> lBool - :load_1( pDevice, pFormat ) -> lBool - :loadFromData( pData, pFormat ) -> lBool - :numBytes() -> nInt - :numColors() -> nInt - :offset() -> pQPoint - :pixel( pPosition ) -> nQRgb - :pixel_1( nX, nY ) -> nQRgb - :pixelIndex( pPosition ) -> nInt - :pixelIndex_1( nX, nY ) -> nInt - :rect() -> pQRect - :save( cFileName, pFormat, nQuality ) -> lBool - :save_1( pDevice, pFormat, nQuality ) -> lBool - :scanLine( nI ) -> pUchar - :scanLine_1( nI ) -> pUchar - :setColor( nIndex, nColorValue ) -> NIL - :setDotsPerMeterX( nX ) -> NIL - :setDotsPerMeterY( nY ) -> NIL - :setNumColors( nNumColors ) -> NIL - :setOffset( pOffset ) -> NIL - :setPixel( pPosition, nIndex_or_rgb ) -> NIL - :setPixel_1( nX, nY, nIndex_or_rgb ) -> NIL - :setText( cKey, cText ) -> NIL - :size() -> pQSize - :text( cKey ) -> cQString - :textKeys() -> pQStringList - :valid( pPos ) -> lBool - :valid_1( nX, nY ) -> lBool - :width() -> nInt - - $DESCRIPTION$ - - $EXAMPLES$ - oImage := QImage():new() - oImage := QImage():new( pQSize, cFormat ) - oImage := QImage():new( iWidth, iHeight, cFormat ) - oImage := QImage():new( @cData, iWidth, iHeight, cFormat ) - oImage := QImage():new( cData , iWidth, iHeight, cFormat ) - oImage := QImage():new( @cData, iWidth, iHeight, iBytesPerLine, cFormat ) - oImage := QImage():new( cData , iWidth, iHeight, iBytesPerLine, cFormat ) - oImage := QImage():new( cFileName [, cFormat ] ) - oImage := QImage():new( pQImage ) - - $TESTS$ - - $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/TQImage.prg - C++ wrappers : contrib/hbqt/qtgui/QImage.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QImage() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQImage.prg + * C++ wrappers : contrib/hbqt/qtgui/QImage.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QImage():new( ... ) + * QImage():from( pPtr_OR_oObj_of_type_QImage ) + * QImage():configure( pPtr_OR_oObj_of_type_QImage ) + * $METHODS$ + * :allGray() -> lBool + * :bits() -> pUchar + * :bits_1() -> pUchar + * :bytesPerLine() -> nInt + * :cacheKey() -> nQint64 + * :color( nI ) -> nQRgb + * :depth() -> nInt + * :dotsPerMeterX() -> nInt + * :dotsPerMeterY() -> nInt + * :fill( nPixelValue ) -> NIL + * :format() -> nFormat + * :hasAlphaChannel() -> lBool + * :height() -> nInt + * :invertPixels( nMode ) -> NIL + * :isGrayscale() -> lBool + * :isNull() -> lBool + * :load( cFileName, pFormat ) -> lBool + * :load_1( pDevice, pFormat ) -> lBool + * :loadFromData( pData, pFormat ) -> lBool + * :numBytes() -> nInt + * :numColors() -> nInt + * :offset() -> pQPoint + * :pixel( pPosition ) -> nQRgb + * :pixel_1( nX, nY ) -> nQRgb + * :pixelIndex( pPosition ) -> nInt + * :pixelIndex_1( nX, nY ) -> nInt + * :rect() -> pQRect + * :save( cFileName, pFormat, nQuality ) -> lBool + * :save_1( pDevice, pFormat, nQuality ) -> lBool + * :scanLine( nI ) -> pUchar + * :scanLine_1( nI ) -> pUchar + * :setColor( nIndex, nColorValue ) -> NIL + * :setDotsPerMeterX( nX ) -> NIL + * :setDotsPerMeterY( nY ) -> NIL + * :setNumColors( nNumColors ) -> NIL + * :setOffset( pOffset ) -> NIL + * :setPixel( pPosition, nIndex_or_rgb ) -> NIL + * :setPixel_1( nX, nY, nIndex_or_rgb ) -> NIL + * :setText( cKey, cText ) -> NIL + * :size() -> pQSize + * :text( cKey ) -> cQString + * :textKeys() -> pQStringList + * :valid( pPos ) -> lBool + * :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 + * $EXAMPLES$ + * oImage := QImage():new() + * oImage := QImage():new( pQSize, cFormat ) + * oImage := QImage():new( iWidth, iHeight, cFormat ) + * oImage := QImage():new( @cData, iWidth, iHeight, cFormat ) + * oImage := QImage():new( cData , iWidth, iHeight, cFormat ) + * oImage := QImage():new( @cData, iWidth, iHeight, iBytesPerLine, cFormat ) + * oImage := QImage():new( cData , iWidth, iHeight, iBytesPerLine, cFormat ) + * oImage := QImage():new( cFileName [, cFormat ] ) + * oImage := QImage():new( pQImage ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QImage object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qimage.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qimagereader.txt b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt index 3456448a50..a4d6892f39 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimagereader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt @@ -1,92 +1,90 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QImageReader() - $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 - :canRead() -> lBool - :clipRect() -> pQRect - :currentImageNumber() -> nInt - :currentImageRect() -> pQRect - :device() -> pQIODevice - :error() -> nImageReaderError - :errorString() -> cQString - :fileName() -> cQString - :format() -> pQByteArray - :imageCount() -> nInt - :imageFormat() -> nQImage::Format - :jumpToImage( nImageNumber ) -> lBool - :jumpToNextImage() -> lBool - :loopCount() -> nInt - :nextImageDelay() -> nInt - :quality() -> nInt - :read() -> pQImage - :read_1( pImage ) -> lBool - :scaledClipRect() -> pQRect - :scaledSize() -> pQSize - :setAutoDetectImageFormat( lEnabled ) -> NIL - :setBackgroundColor( pColor ) -> NIL - :setClipRect( pRect ) -> NIL - :setDevice( pDevice ) -> NIL - :setFileName( cFileName ) -> NIL - :setFormat( pFormat ) -> NIL - :setQuality( nQuality ) -> NIL - :setScaledClipRect( pRect ) -> NIL - :setScaledSize( pSize ) -> NIL - :size() -> pQSize - :supportsAnimation() -> lBool - :supportsOption( nOption ) -> lBool - :text( cKey ) -> cQString - :textKeys() -> pQStringList - :imageFormat_1( cFileName ) -> pQByteArray - :imageFormat_2( pDevice ) -> pQByteArray - :supportedImageFormats() -> pQList - - $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/TQImageReader.prg - C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QImageReader() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQImageReader.prg + * C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QImageReader():new( ... ) + * QImageReader():from( pPtr_OR_oObj_of_type_QImageReader ) + * QImageReader():configure( pPtr_OR_oObj_of_type_QImageReader ) + * $METHODS$ + * :autoDetectImageFormat() -> lBool + * :backgroundColor() -> pQColor + * :canRead() -> lBool + * :clipRect() -> pQRect + * :currentImageNumber() -> nInt + * :currentImageRect() -> pQRect + * :device() -> pQIODevice + * :error() -> nImageReaderError + * :errorString() -> cQString + * :fileName() -> cQString + * :format() -> pQByteArray + * :imageCount() -> nInt + * :imageFormat() -> nQImage::Format + * :jumpToImage( nImageNumber ) -> lBool + * :jumpToNextImage() -> lBool + * :loopCount() -> nInt + * :nextImageDelay() -> nInt + * :quality() -> nInt + * :read() -> pQImage + * :read_1( pImage ) -> lBool + * :scaledClipRect() -> pQRect + * :scaledSize() -> pQSize + * :setAutoDetectImageFormat( lEnabled ) -> NIL + * :setBackgroundColor( pColor ) -> NIL + * :setClipRect( pRect ) -> NIL + * :setDevice( pDevice ) -> NIL + * :setFileName( cFileName ) -> NIL + * :setFormat( pFormat ) -> NIL + * :setQuality( nQuality ) -> NIL + * :setScaledClipRect( pRect ) -> NIL + * :setScaledSize( pSize ) -> NIL + * :size() -> pQSize + * :supportsAnimation() -> lBool + * :supportsOption( nOption ) -> lBool + * :text( cKey ) -> cQString + * :textKeys() -> pQStringList + * :imageFormat_1( cFileName ) -> pQByteArray + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt index b6fdfc3786..bd8bce3b90 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt @@ -1,72 +1,70 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QImageWriter() - $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 - :device() -> pQIODevice - :error() -> nImageWriterError - :errorString() -> cQString - :fileName() -> cQString - :format() -> pQByteArray - :gamma() -> nFloat - :quality() -> nInt - :setCompression( nCompression ) -> NIL - :setDevice( pDevice ) -> NIL - :setFileName( cFileName ) -> NIL - :setFormat( pFormat ) -> NIL - :setGamma( nGamma ) -> NIL - :setQuality( nQuality ) -> NIL - :setText( cKey, cText ) -> NIL - :supportsOption( nOption ) -> lBool - :write( pImage ) -> lBool - :supportedImageFormats() -> pQList - - $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/TQImageWriter.prg - C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QImageWriter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQImageWriter.prg + * C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QImageWriter():new( ... ) + * QImageWriter():from( pPtr_OR_oObj_of_type_QImageWriter ) + * QImageWriter():configure( pPtr_OR_oObj_of_type_QImageWriter ) + * $METHODS$ + * :canWrite() -> lBool + * :compression() -> nInt + * :device() -> pQIODevice + * :error() -> nImageWriterError + * :errorString() -> cQString + * :fileName() -> cQString + * :format() -> pQByteArray + * :gamma() -> nFloat + * :quality() -> nInt + * :setCompression( nCompression ) -> NIL + * :setDevice( pDevice ) -> NIL + * :setFileName( cFileName ) -> NIL + * :setFormat( pFormat ) -> NIL + * :setGamma( nGamma ) -> NIL + * :setQuality( nQuality ) -> NIL + * :setText( cKey, cText ) -> NIL + * :supportsOption( nOption ) -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt index 74eb1b5565..48b3b76705 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt @@ -1,97 +1,95 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QInputDialog() - $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 - :done( nResult ) -> NIL - :doubleDecimals() -> nInt - :doubleMaximum() -> nDouble - :doubleMinimum() -> nDouble - :doubleValue() -> nDouble - :inputMode() -> nInputMode - :intMaximum() -> nInt - :intMinimum() -> nInt - :intStep() -> nInt - :intValue() -> nInt - :isComboBoxEditable() -> lBool - :labelText() -> cQString - :okButtonText() -> cQString - :open( pReceiver, pMember ) -> NIL - :options() -> nInputDialogOptions - :setCancelButtonText( cText ) -> NIL - :setComboBoxEditable( lEditable ) -> NIL - :setComboBoxItems( pItems ) -> NIL - :setDoubleDecimals( nDecimals ) -> NIL - :setDoubleMaximum( nMax ) -> NIL - :setDoubleMinimum( nMin ) -> NIL - :setDoubleRange( nMin, nMax ) -> NIL - :setDoubleValue( nValue ) -> NIL - :setInputMode( nMode ) -> NIL - :setIntMaximum( nMax ) -> NIL - :setIntMinimum( nMin ) -> NIL - :setIntRange( nMin, nMax ) -> NIL - :setIntStep( nStep ) -> NIL - :setIntValue( nValue ) -> NIL - :setLabelText( cText ) -> NIL - :setOkButtonText( cText ) -> NIL - :setOption( nOption, lOn ) -> NIL - :setOptions( nOptions ) -> NIL - :setTextEchoMode( nMode ) -> NIL - :setTextValue( cText ) -> NIL - :testOption( nOption ) -> lBool - :textEchoMode() -> nQLineEdit::EchoMode - :textValue() -> cQString - :getDouble( pParent, cTitle, cLabel, nValue, nMin, nMax, nDecimals, @lOk, nFlags ) -> nDouble - :getInt( pParent, cTitle, cLabel, nValue, nMin, nMax, nStep, @lOk, nFlags ) -> nInt - :getItem( pParent, cTitle, cLabel, pItems, nCurrent, lEditable, @lOk, nFlags ) -> cQString - :getText( pParent, cTitle, cLabel, nMode, cText, @lOk, nFlags ) -> 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/TQInputDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QInputDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQInputDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QInputDialog():new( ... ) + * QInputDialog():from( pPtr_OR_oObj_of_type_QInputDialog ) + * QInputDialog():configure( pPtr_OR_oObj_of_type_QInputDialog ) + * $METHODS$ + * :cancelButtonText() -> cQString + * :comboBoxItems() -> pQStringList + * :done( nResult ) -> NIL + * :doubleDecimals() -> nInt + * :doubleMaximum() -> nDouble + * :doubleMinimum() -> nDouble + * :doubleValue() -> nDouble + * :inputMode() -> nInputMode + * :intMaximum() -> nInt + * :intMinimum() -> nInt + * :intStep() -> nInt + * :intValue() -> nInt + * :isComboBoxEditable() -> lBool + * :labelText() -> cQString + * :okButtonText() -> cQString + * :open( pReceiver, pMember ) -> NIL + * :options() -> nInputDialogOptions + * :setCancelButtonText( cText ) -> NIL + * :setComboBoxEditable( lEditable ) -> NIL + * :setComboBoxItems( pItems ) -> NIL + * :setDoubleDecimals( nDecimals ) -> NIL + * :setDoubleMaximum( nMax ) -> NIL + * :setDoubleMinimum( nMin ) -> NIL + * :setDoubleRange( nMin, nMax ) -> NIL + * :setDoubleValue( nValue ) -> NIL + * :setInputMode( nMode ) -> NIL + * :setIntMaximum( nMax ) -> NIL + * :setIntMinimum( nMin ) -> NIL + * :setIntRange( nMin, nMax ) -> NIL + * :setIntStep( nStep ) -> NIL + * :setIntValue( nValue ) -> NIL + * :setLabelText( cText ) -> NIL + * :setOkButtonText( cText ) -> NIL + * :setOption( nOption, lOn ) -> NIL + * :setOptions( nOptions ) -> NIL + * :setTextEchoMode( nMode ) -> NIL + * :setTextValue( cText ) -> NIL + * :testOption( nOption ) -> lBool + * :textEchoMode() -> nQLineEdit::EchoMode + * :textValue() -> cQString + * :getDouble( pParent, cTitle, cLabel, nValue, nMin, nMax, nDecimals, @lOk, nFlags ) -> nDouble + * :getInt( pParent, cTitle, cLabel, nValue, nMin, nMax, nStep, @lOk, nFlags ) -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputevent.txt b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt index 71803a77fc..93a739da08 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt @@ -1,54 +1,52 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qinputevent.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt index b8d9072624..4df5ac7e45 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt @@ -1,58 +1,56 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QInputMethodEvent() - $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 - :replacementLength() -> nInt - :replacementStart() -> nInt - :setCommitString( cCommitString, nReplaceFrom, nReplaceLength ) -> 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/TQInputMethodEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp - Library : hbqtgui - $SEEALSO$ - QEvent - $END$ + * $NAME$ + * QInputMethodEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQInputMethodEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QInputMethodEvent():new( ... ) + * QInputMethodEvent():from( pPtr_OR_oObj_of_type_QInputMethodEvent ) + * QInputMethodEvent():configure( pPtr_OR_oObj_of_type_QInputMethodEvent ) + * $METHODS$ + * :commitString() -> cQString + * :preeditString() -> cQString + * :replacementLength() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qiodevice.txt b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt index 288c8cae37..d9cbe522e7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qiodevice.txt +++ b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt @@ -1,86 +1,84 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QIODevice() - $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 - :bytesToWrite() -> nQint64 - :canReadLine() -> lBool - :close() -> NIL - :errorString() -> cQString - :getChar( cC ) -> lBool - :isOpen() -> lBool - :isReadable() -> lBool - :isSequential() -> lBool - :isTextModeEnabled() -> lBool - :isWritable() -> lBool - :open( nMode ) -> lBool - :openMode() -> nOpenMode - :peek( cData, nMaxSize ) -> nQint64 - :peek_1( nMaxSize ) -> pQByteArray - :pos() -> nQint64 - :putChar( cC ) -> lBool - :read( cData, nMaxSize ) -> nQint64 - :read_1( nMaxSize ) -> pQByteArray - :readAll() -> pQByteArray - :readLine( cData, nMaxSize ) -> nQint64 - :readLine_1( nMaxSize ) -> pQByteArray - :reset() -> lBool - :seek( nPos ) -> lBool - :setTextModeEnabled( lEnabled ) -> NIL - :size() -> nQint64 - :ungetChar( cC ) -> NIL - :waitForBytesWritten( nMsecs ) -> lBool - :waitForReadyRead( nMsecs ) -> lBool - :write( pData, nMaxSize ) -> nQint64 - :write_1( pData ) -> nQint64 - :write_2( pByteArray ) -> nQint64 - - $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/TQIODevice.prg - C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QIODevice() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQIODevice.prg + * C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QIODevice():new( ... ) + * QIODevice():from( pPtr_OR_oObj_of_type_QIODevice ) + * QIODevice():configure( pPtr_OR_oObj_of_type_QIODevice ) + * $METHODS$ + * :atEnd() -> lBool + * :bytesAvailable() -> nQint64 + * :bytesToWrite() -> nQint64 + * :canReadLine() -> lBool + * :close() -> NIL + * :errorString() -> cQString + * :getChar( cC ) -> lBool + * :isOpen() -> lBool + * :isReadable() -> lBool + * :isSequential() -> lBool + * :isTextModeEnabled() -> lBool + * :isWritable() -> lBool + * :open( nMode ) -> lBool + * :openMode() -> nOpenMode + * :peek( cData, nMaxSize ) -> nQint64 + * :peek_1( nMaxSize ) -> pQByteArray + * :pos() -> nQint64 + * :putChar( cC ) -> lBool + * :read( cData, nMaxSize ) -> nQint64 + * :read_1( nMaxSize ) -> pQByteArray + * :readAll() -> pQByteArray + * :readLine( cData, nMaxSize ) -> nQint64 + * :readLine_1( nMaxSize ) -> pQByteArray + * :reset() -> lBool + * :seek( nPos ) -> lBool + * :setTextModeEnabled( lEnabled ) -> NIL + * :size() -> nQint64 + * :ungetChar( cC ) -> NIL + * :waitForBytesWritten( nMsecs ) -> lBool + * :waitForReadyRead( nMsecs ) -> lBool + * :write( pData, nMaxSize ) -> nQint64 + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qitemselection.txt b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt index 77b810a381..940873e417 100644 --- a/harbour/contrib/hbqt/doc/en/class_qitemselection.txt +++ b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt @@ -1,56 +1,54 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QItemSelection() - $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 - - $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/TQItemSelection.prg - C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp - Library : hbqtgui - $SEEALSO$ - QList - $END$ + * $NAME$ + * QItemSelection() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQItemSelection.prg + * C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QItemSelection():new( ... ) + * QItemSelection():from( pPtr_OR_oObj_of_type_QItemSelection ) + * QItemSelection():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt index 130a9b7e12..79944417fa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt @@ -1,68 +1,66 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QItemSelectionModel() - $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 - :hasSelection() -> lBool - :isColumnSelected( nColumn, pParent ) -> lBool - :isRowSelected( nRow, pParent ) -> lBool - :isSelected( pIndex ) -> lBool - :model() -> pQAbstractItemModel - :rowIntersectsSelection( nRow, pParent ) -> lBool - :selection() -> pQItemSelection - :clear() -> NIL - :clearSelection() -> NIL - :reset() -> NIL - :select( pIndex, nCommand ) -> NIL - :select_1( pSelection, nCommand ) -> NIL - :setCurrentIndex( pIndex, nCommand ) -> 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/TQItemSelectionModel.prg - C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QItemSelectionModel() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQItemSelectionModel.prg + * C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QItemSelectionModel():new( ... ) + * QItemSelectionModel():from( pPtr_OR_oObj_of_type_QItemSelectionModel ) + * QItemSelectionModel():configure( pPtr_OR_oObj_of_type_QItemSelectionModel ) + * $METHODS$ + * :columnIntersectsSelection( nColumn, pParent ) -> lBool + * :currentIndex() -> pQModelIndex + * :hasSelection() -> lBool + * :isColumnSelected( nColumn, pParent ) -> lBool + * :isRowSelected( nRow, pParent ) -> lBool + * :isSelected( pIndex ) -> lBool + * :model() -> pQAbstractItemModel + * :rowIntersectsSelection( nRow, pParent ) -> lBool + * :selection() -> pQItemSelection + * :clear() -> NIL + * :clearSelection() -> NIL + * :reset() -> NIL + * :select( pIndex, nCommand ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt index 5ede4ee290..039333ab8c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt @@ -1,62 +1,60 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QKeyEvent() - $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 - :key() -> nInt - :matches( nKey ) -> lBool - :modifiers() -> nQt::KeyboardModifiers - :nativeModifiers() -> nQuint32 - :nativeScanCode() -> nQuint32 - :nativeVirtualKey() -> nQuint32 - :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/TQKeyEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp - Library : hbqtgui - $SEEALSO$ - QInputEvent - $END$ + * $NAME$ + * QKeyEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQKeyEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QKeyEvent():new( ... ) + * QKeyEvent():from( pPtr_OR_oObj_of_type_QKeyEvent ) + * QKeyEvent():configure( pPtr_OR_oObj_of_type_QKeyEvent ) + * $METHODS$ + * :count() -> nInt + * :isAutoRepeat() -> lBool + * :key() -> nInt + * :matches( nKey ) -> lBool + * :modifiers() -> nQt::KeyboardModifiers + * :nativeModifiers() -> nQuint32 + * :nativeScanCode() -> nQuint32 + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt index 43f7509624..fe5b2444c0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt +++ b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt @@ -1,58 +1,56 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QKeySequence() - $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 - :matches( pSeq ) -> nSequenceMatch - :toString( nFormat ) -> cQString - :keyBindings( nKey ) -> pQList - - $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/TQKeySequence.prg - C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QKeySequence() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQKeySequence.prg + * C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QKeySequence():new( ... ) + * QKeySequence():from( pPtr_OR_oObj_of_type_QKeySequence ) + * QKeySequence():configure( pPtr_OR_oObj_of_type_QKeySequence ) + * $METHODS$ + * :count() -> nUint + * :isEmpty() -> lBool + * :matches( pSeq ) -> nSequenceMatch + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlabel.txt b/harbour/contrib/hbqt/doc/en/class_qlabel.txt index 3ad5749768..c6c6cfa6f4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlabel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlabel.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLabel() - $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 - :hasScaledContents() -> lBool - :indent() -> nInt - :margin() -> nInt - :movie() -> pQMovie - :openExternalLinks() -> lBool - :picture() -> pQPicture - :pixmap() -> pQPixmap - :setAlignment( nQt::Alignment ) -> NIL - :setBuddy( pBuddy ) -> NIL - :setIndent( nInt ) -> NIL - :setMargin( nInt ) -> NIL - :setOpenExternalLinks( lOpen ) -> NIL - :setScaledContents( lBool ) -> NIL - :setTextFormat( nQt::TextFormat ) -> NIL - :setTextInteractionFlags( nFlags ) -> NIL - :setWordWrap( lOn ) -> NIL - :text() -> cQString - :textFormat() -> nQt::TextFormat - :textInteractionFlags() -> nQt::TextInteractionFlags - :wordWrap() -> lBool - :clear() -> NIL - :setMovie( pMovie ) -> NIL - :setNum( nNum ) -> NIL - :setNum_1( nNum ) -> NIL - :setPicture( pPicture ) -> NIL - :setPixmap( pQPixmap ) -> NIL - :setText( cQString ) -> 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/TQLabel.prg - C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp - Library : hbqtgui - $SEEALSO$ - QFrame - $END$ + * $NAME$ + * QLabel() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQLabel.prg + * C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLabel():new( ... ) + * QLabel():from( pPtr_OR_oObj_of_type_QLabel ) + * QLabel():configure( pPtr_OR_oObj_of_type_QLabel ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :buddy() -> pQWidget + * :hasScaledContents() -> lBool + * :indent() -> nInt + * :margin() -> nInt + * :movie() -> pQMovie + * :openExternalLinks() -> lBool + * :picture() -> pQPicture + * :pixmap() -> pQPixmap + * :setAlignment( nQt::Alignment ) -> NIL + * :setBuddy( pBuddy ) -> NIL + * :setIndent( nInt ) -> NIL + * :setMargin( nInt ) -> NIL + * :setOpenExternalLinks( lOpen ) -> NIL + * :setScaledContents( lBool ) -> NIL + * :setTextFormat( nQt::TextFormat ) -> NIL + * :setTextInteractionFlags( nFlags ) -> NIL + * :setWordWrap( lOn ) -> NIL + * :text() -> cQString + * :textFormat() -> nQt::TextFormat + * :textInteractionFlags() -> nQt::TextInteractionFlags + * :wordWrap() -> lBool + * :clear() -> NIL + * :setMovie( pMovie ) -> NIL + * :setNum( nNum ) -> NIL + * :setNum_1( nNum ) -> NIL + * :setPicture( pPicture ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt index ad680f79ce..87aa0d9145 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlatin1char.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt index ed24fa6f75..c08e3a604f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt @@ -1,54 +1,52 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlatin1string.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlayout.txt b/harbour/contrib/hbqt/doc/en/class_qlayout.txt index 72b43997e1..7b0f37e010 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlayout.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLayout() - $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 - :addWidget( pW ) -> NIL - :contentsRect() -> pQRect - :count() -> nInt - :expandingDirections() -> nQt::Orientations - :getContentsMargins( @nLeft, @nTop, @nRight, @nBottom ) -> NIL - :indexOf( pWidget ) -> nInt - :isEnabled() -> lBool - :itemAt( nIndex ) -> Item - :maximumSize() -> pQSize - :menuBar() -> pQWidget - :minimumSize() -> pQSize - :parentWidget() -> pQWidget - :removeItem( pItem ) -> NIL - :removeWidget( pWidget ) -> NIL - :setAlignment( pW, nAlignment ) -> lBool - :setAlignment_1( nAlignment ) -> NIL - :setAlignment_2( pL, nAlignment ) -> lBool - :setContentsMargins( nLeft, nTop, nRight, nBottom ) -> NIL - :setEnabled( lEnable ) -> NIL - :setMenuBar( pWidget ) -> NIL - :setSizeConstraint( nSizeConstraint ) -> NIL - :setSpacing( nInt ) -> NIL - :sizeConstraint() -> nSizeConstraint - :spacing() -> nInt - :takeAt( nIndex ) -> Item - :update() -> NIL - :closestAcceptableSize( pWidget, pSize ) -> 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/TQLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp - Library : hbqtgui - $SEEALSO$ - QObject, QLayoutItem - $END$ + * $NAME$ + * QLayout() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLayout():new( ... ) + * QLayout():from( pPtr_OR_oObj_of_type_QLayout ) + * QLayout():configure( pPtr_OR_oObj_of_type_QLayout ) + * $METHODS$ + * :activate() -> lBool + * :addItem( pItem ) -> NIL + * :addWidget( pW ) -> NIL + * :contentsRect() -> pQRect + * :count() -> nInt + * :expandingDirections() -> nQt::Orientations + * :getContentsMargins( @nLeft, @nTop, @nRight, @nBottom ) -> NIL + * :indexOf( pWidget ) -> nInt + * :isEnabled() -> lBool + * :itemAt( nIndex ) -> Item + * :maximumSize() -> pQSize + * :menuBar() -> pQWidget + * :minimumSize() -> pQSize + * :parentWidget() -> pQWidget + * :removeItem( pItem ) -> NIL + * :removeWidget( pWidget ) -> NIL + * :setAlignment( pW, nAlignment ) -> lBool + * :setAlignment_1( nAlignment ) -> NIL + * :setAlignment_2( pL, nAlignment ) -> lBool + * :setContentsMargins( nLeft, nTop, nRight, nBottom ) -> NIL + * :setEnabled( lEnable ) -> NIL + * :setMenuBar( pWidget ) -> NIL + * :setSizeConstraint( nSizeConstraint ) -> NIL + * :setSpacing( nInt ) -> NIL + * :sizeConstraint() -> nSizeConstraint + * :spacing() -> nInt + * :takeAt( nIndex ) -> Item + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt index a374ae4a74..896e6c27bf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt @@ -1,70 +1,68 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLayoutItem() - $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 - :expandingDirections() -> nQt::Orientations - :geometry() -> pQRect - :hasHeightForWidth() -> lBool - :heightForWidth( nW ) -> nInt - :invalidate() -> NIL - :isEmpty() -> lBool - :layout() -> pQLayout - :maximumSize() -> pQSize - :minimumHeightForWidth( nW ) -> nInt - :minimumSize() -> pQSize - :setAlignment( nAlignment ) -> NIL - :setGeometry( pR ) -> NIL - :sizeHint() -> pQSize - :spacerItem() -> pQSpacerItem - :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/TQLayoutItem.prg - C++ wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QLayoutItem() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQLayoutItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLayoutItem():new( ... ) + * QLayoutItem():from( pPtr_OR_oObj_of_type_QLayoutItem ) + * QLayoutItem():configure( pPtr_OR_oObj_of_type_QLayoutItem ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :controlTypes() -> nQSizePolicy::ControlTypes + * :expandingDirections() -> nQt::Orientations + * :geometry() -> pQRect + * :hasHeightForWidth() -> lBool + * :heightForWidth( nW ) -> nInt + * :invalidate() -> NIL + * :isEmpty() -> lBool + * :layout() -> pQLayout + * :maximumSize() -> pQSize + * :minimumHeightForWidth( nW ) -> nInt + * :minimumSize() -> pQSize + * :setAlignment( nAlignment ) -> NIL + * :setGeometry( pR ) -> NIL + * :sizeHint() -> pQSize + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt index b668cf8d31..83ea4e2466 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt @@ -1,72 +1,70 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLCDNumber() - $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 - :intValue() -> nInt - :mode() -> nMode - :numDigits() -> nInt - :segmentStyle() -> nSegmentStyle - :setMode( nMode ) -> NIL - :setNumDigits( nNDigits ) -> NIL - :setSegmentStyle( nSegmentStyle ) -> NIL - :smallDecimalPoint() -> lBool - :value() -> nDouble - :display( cS ) -> NIL - :display_1( nNum ) -> NIL - :display_2( nNum ) -> NIL - :setBinMode() -> NIL - :setDecMode() -> NIL - :setHexMode() -> NIL - :setOctMode() -> NIL - :setSmallDecimalPoint( lBool ) -> 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/TQLCDNumber.prg - C++ wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp - Library : hbqtgui - $SEEALSO$ - QFrame - $END$ + * $NAME$ + * QLCDNumber() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQLCDNumber.prg + * C++ wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLCDNumber():new( ... ) + * QLCDNumber():from( pPtr_OR_oObj_of_type_QLCDNumber ) + * QLCDNumber():configure( pPtr_OR_oObj_of_type_QLCDNumber ) + * $METHODS$ + * :checkOverflow( nNum ) -> lBool + * :checkOverflow_1( nNum ) -> lBool + * :intValue() -> nInt + * :mode() -> nMode + * :numDigits() -> nInt + * :segmentStyle() -> nSegmentStyle + * :setMode( nMode ) -> NIL + * :setNumDigits( nNDigits ) -> NIL + * :setSegmentStyle( nSegmentStyle ) -> NIL + * :smallDecimalPoint() -> lBool + * :value() -> nDouble + * :display( cS ) -> NIL + * :display_1( nNum ) -> NIL + * :display_2( nNum ) -> NIL + * :setBinMode() -> NIL + * :setDecMode() -> NIL + * :setHexMode() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qline.txt b/harbour/contrib/hbqt/doc/en/class_qline.txt index ed57f786ed..7851dc6f50 100644 --- a/harbour/contrib/hbqt/doc/en/class_qline.txt +++ b/harbour/contrib/hbqt/doc/en/class_qline.txt @@ -1,72 +1,70 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLine() - $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 - :x1() -> nInt - :x2() -> nInt - :y1() -> nInt - :y2() -> nInt - :dx() -> nInt - :dy() -> nInt - :isNull() -> lBool - :setP1( pP1 ) -> NIL - :setP2( pP2 ) -> NIL - :setLine( nX1, nY1, nX2, nY2 ) -> NIL - :setPoints( pP1, pP2 ) -> NIL - :translate( pOffset ) -> NIL - :translate_1( nDx, nDy ) -> NIL - - $DESCRIPTION$ - - $EXAMPLES$ - oLine := QLine():new() - oLine := QLine():new( pQLine ) - oLine := QLine():new( pQPoint_p1, pQPoint_p2 ) - oLine := QLine():new( nX1, nY1, nX2, nY2 ) - - $TESTS$ - - $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/TQLine.prg - C++ wrappers : contrib/hbqt/qtcore/QLine.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QLine() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQLine.prg + * C++ wrappers : contrib/hbqt/qtcore/QLine.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLine():new( ... ) + * QLine():from( pPtr_OR_oObj_of_type_QLine ) + * QLine():configure( pPtr_OR_oObj_of_type_QLine ) + * $METHODS$ + * :p1() -> pQPoint + * :p2() -> pQPoint + * :x1() -> nInt + * :x2() -> nInt + * :y1() -> nInt + * :y2() -> nInt + * :dx() -> nInt + * :dy() -> nInt + * :isNull() -> lBool + * :setP1( pP1 ) -> NIL + * :setP2( pP2 ) -> NIL + * :setLine( nX1, nY1, nX2, nY2 ) -> NIL + * :setPoints( pP1, pP2 ) -> NIL + * :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 + * $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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qline.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt index 6c1abea619..e7aa556d87 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLinearGradient() - $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 - :setFinalStop_1( nX, nY ) -> NIL - :setStart( pStart ) -> NIL - :setStart_1( nX, nY ) -> NIL - :start() -> pQPointF - - $DESCRIPTION$ - - $EXAMPLES$ - oLinearGradiant := QLinearGradiant():new() - oLinearGradiant := QLinearGradiant():new( pQLinearGradient ) - oLinearGradiant := QLinearGradiant():new( pQPointF_start, pQPointF_finalStop ) - oLinearGradiant := QLinearGradiant():new( nX1, nY1, nX2, nY2 ) - - $TESTS$ - - $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/TQLinearGradient.prg - C++ wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp - Library : hbqtgui - $SEEALSO$ - QGradient - $END$ + * $NAME$ + * QLinearGradient() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQLinearGradient.prg + * C++ wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLinearGradient():new( ... ) + * QLinearGradient():from( pPtr_OR_oObj_of_type_QLinearGradient ) + * QLinearGradient():configure( pPtr_OR_oObj_of_type_QLinearGradient ) + * $METHODS$ + * :finalStop() -> pQPointF + * :setFinalStop( pStop ) -> NIL + * :setFinalStop_1( nX, nY ) -> NIL + * :setStart( pStart ) -> NIL + * :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 + * $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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qlineargradient.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlineedit.txt b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt index 2453dd74a9..bce1625184 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlineedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt @@ -1,108 +1,106 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLineEdit() - $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 - :completer() -> pQCompleter - :createStandardContextMenu() -> pQMenu - :cursorBackward( lMark, nSteps ) -> NIL - :cursorForward( lMark, nSteps ) -> NIL - :cursorPosition() -> nInt - :cursorPositionAt( pPos ) -> nInt - :cursorWordBackward( lMark ) -> NIL - :cursorWordForward( lMark ) -> NIL - :del() -> NIL - :deselect() -> NIL - :displayText() -> cQString - :dragEnabled() -> lBool - :echoMode() -> nEchoMode - :end( lMark ) -> NIL - :getTextMargins( @nLeft, @nTop, @nRight, @nBottom ) -> NIL - :hasAcceptableInput() -> lBool - :hasFrame() -> lBool - :hasSelectedText() -> lBool - :home( lMark ) -> NIL - :inputMask() -> cQString - :insert( cNewText ) -> NIL - :isModified() -> lBool - :isReadOnly() -> lBool - :isRedoAvailable() -> lBool - :isUndoAvailable() -> lBool - :maxLength() -> nInt - :minimumSizeHint() -> pQSize - :selectedText() -> cQString - :selectionStart() -> nInt - :setAlignment( nFlag ) -> NIL - :setCompleter( pC ) -> NIL - :setCursorPosition( nInt ) -> NIL - :setDragEnabled( lB ) -> NIL - :setEchoMode( nEchoMode ) -> NIL - :setFrame( lBool ) -> NIL - :setInputMask( cInputMask ) -> NIL - :setMaxLength( nInt ) -> NIL - :setModified( lBool ) -> NIL - :setReadOnly( lBool ) -> NIL - :setSelection( nStart, nLength ) -> NIL - :setTextMargins( nLeft, nTop, nRight, nBottom ) -> NIL - :setValidator( pV ) -> NIL - :sizeHint() -> pQSize - :text() -> cQString - :validator() -> pQValidator - :clear() -> NIL - :copy() -> NIL - :cut() -> NIL - :paste() -> NIL - :redo() -> NIL - :selectAll() -> NIL - :setText( cQString ) -> NIL - :undo() -> 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/TQLineEdit.prg - C++ wrappers : contrib/hbqt/qtgui/QLineEdit.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QLineEdit() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQLineEdit.prg + * C++ wrappers : contrib/hbqt/qtgui/QLineEdit.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLineEdit():new( ... ) + * QLineEdit():from( pPtr_OR_oObj_of_type_QLineEdit ) + * QLineEdit():configure( pPtr_OR_oObj_of_type_QLineEdit ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :backspace() -> NIL + * :completer() -> pQCompleter + * :createStandardContextMenu() -> pQMenu + * :cursorBackward( lMark, nSteps ) -> NIL + * :cursorForward( lMark, nSteps ) -> NIL + * :cursorPosition() -> nInt + * :cursorPositionAt( pPos ) -> nInt + * :cursorWordBackward( lMark ) -> NIL + * :cursorWordForward( lMark ) -> NIL + * :del() -> NIL + * :deselect() -> NIL + * :displayText() -> cQString + * :dragEnabled() -> lBool + * :echoMode() -> nEchoMode + * :end( lMark ) -> NIL + * :getTextMargins( @nLeft, @nTop, @nRight, @nBottom ) -> NIL + * :hasAcceptableInput() -> lBool + * :hasFrame() -> lBool + * :hasSelectedText() -> lBool + * :home( lMark ) -> NIL + * :inputMask() -> cQString + * :insert( cNewText ) -> NIL + * :isModified() -> lBool + * :isReadOnly() -> lBool + * :isRedoAvailable() -> lBool + * :isUndoAvailable() -> lBool + * :maxLength() -> nInt + * :minimumSizeHint() -> pQSize + * :selectedText() -> cQString + * :selectionStart() -> nInt + * :setAlignment( nFlag ) -> NIL + * :setCompleter( pC ) -> NIL + * :setCursorPosition( nInt ) -> NIL + * :setDragEnabled( lB ) -> NIL + * :setEchoMode( nEchoMode ) -> NIL + * :setFrame( lBool ) -> NIL + * :setInputMask( cInputMask ) -> NIL + * :setMaxLength( nInt ) -> NIL + * :setModified( lBool ) -> NIL + * :setReadOnly( lBool ) -> NIL + * :setSelection( nStart, nLength ) -> NIL + * :setTextMargins( nLeft, nTop, nRight, nBottom ) -> NIL + * :setValidator( pV ) -> NIL + * :sizeHint() -> pQSize + * :text() -> cQString + * :validator() -> pQValidator + * :clear() -> NIL + * :copy() -> NIL + * :cut() -> NIL + * :paste() -> NIL + * :redo() -> NIL + * :selectAll() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlinef.txt b/harbour/contrib/hbqt/doc/en/class_qlinef.txt index 90d70a8215..09b96bfc9b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlinef.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlinef.txt @@ -1,76 +1,74 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLineF() - $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 - :x1() -> nQreal - :x2() -> nQreal - :y1() -> nQreal - :y2() -> nQreal - :angle() -> nQreal - :angleTo( pLine ) -> nQreal - :dx() -> nQreal - :dy() -> nQreal - :intersect( pLine, pIntersectionPoint ) -> nIntersectType - :isNull() -> lBool - :length() -> nQreal - :pointAt( nT ) -> pQPointF - :setP1( pP1 ) -> NIL - :setP2( pP2 ) -> NIL - :setAngle( nAngle ) -> NIL - :setLength( nLength ) -> NIL - :setLine( nX1, nY1, nX2, nY2 ) -> NIL - :setPoints( pP1, pP2 ) -> NIL - :toLine() -> pQLine - :translate( pOffset ) -> NIL - :translate_1( nDx, nDy ) -> 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/qtcore/TQLineF.prg - C++ wrappers : contrib/hbqt/qtcore/QLineF.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QLineF() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQLineF.prg + * C++ wrappers : contrib/hbqt/qtcore/QLineF.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLineF():new( ... ) + * QLineF():from( pPtr_OR_oObj_of_type_QLineF ) + * QLineF():configure( pPtr_OR_oObj_of_type_QLineF ) + * $METHODS$ + * :p1() -> pQPointF + * :p2() -> pQPointF + * :x1() -> nQreal + * :x2() -> nQreal + * :y1() -> nQreal + * :y2() -> nQreal + * :angle() -> nQreal + * :angleTo( pLine ) -> nQreal + * :dx() -> nQreal + * :dy() -> nQreal + * :intersect( pLine, pIntersectionPoint ) -> nIntersectType + * :isNull() -> lBool + * :length() -> nQreal + * :pointAt( nT ) -> pQPointF + * :setP1( pP1 ) -> NIL + * :setP2( pP2 ) -> NIL + * :setAngle( nAngle ) -> NIL + * :setLength( nLength ) -> NIL + * :setLine( nX1, nY1, nX2, nY2 ) -> NIL + * :setPoints( pP1, pP2 ) -> NIL + * :toLine() -> pQLine + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlist.txt b/harbour/contrib/hbqt/doc/en/class_qlist.txt index 91caf2ba60..99e6ddbf87 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlist.txt @@ -1,93 +1,91 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QList() - $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 - :back() -> pT - :back_1() -> pT - :clear() -> NIL - :count( xValue ) -> nInt - :count_1() -> nInt - :empty() -> lBool - :endsWith( xValue ) -> lBool - :first() -> pT - :first_1() -> pT - :front() -> pT - :front_1() -> pT - :indexOf( xValue, nFrom ) -> nInt - :insert( nI, xValue ) -> NIL - :isEmpty() -> lBool - :last() -> pT - :last_1() -> pT - :lastIndexOf( xValue, nFrom ) -> nInt - :length() -> nInt - :move( nFrom, nTo ) -> NIL - :pop_back() -> NIL - :pop_front() -> NIL - :prepend( xValue ) -> NIL - :push_back( xValue ) -> NIL - :push_front( xValue ) -> NIL - :removeAll( xValue ) -> nInt - :removeAt( nI ) -> NIL - :removeFirst() -> NIL - :removeLast() -> NIL - :removeOne( xValue ) -> lBool - :replace( nI, xValue ) -> NIL - :size() -> nInt - :startsWith( xValue ) -> lBool - :swap( nI, nJ ) -> NIL - :takeAt( nI ) -> pT - :takeFirst() -> pT - :takeLast() -> pT - :value( nI ) -> pT - :value_1( nI, xDefaultValue ) -> pT - - $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/TQList.prg - C++ wrappers : contrib/hbqt/qtcore/QList.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QList() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQList.prg + * C++ wrappers : contrib/hbqt/qtcore/QList.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QList():new( ... ) + * QList():from( pPtr_OR_oObj_of_type_QList ) + * QList():configure( pPtr_OR_oObj_of_type_QList ) + * $METHODS$ + * :append( xValue ) -> NIL + * :at( nI ) -> pT + * :back() -> pT + * :back_1() -> pT + * :clear() -> NIL + * :count( xValue ) -> nInt + * :count_1() -> nInt + * :empty() -> lBool + * :endsWith( xValue ) -> lBool + * :first() -> pT + * :first_1() -> pT + * :front() -> pT + * :front_1() -> pT + * :indexOf( xValue, nFrom ) -> nInt + * :insert( nI, xValue ) -> NIL + * :isEmpty() -> lBool + * :last() -> pT + * :last_1() -> pT + * :lastIndexOf( xValue, nFrom ) -> nInt + * :length() -> nInt + * :move( nFrom, nTo ) -> NIL + * :pop_back() -> NIL + * :pop_front() -> NIL + * :prepend( xValue ) -> NIL + * :push_back( xValue ) -> NIL + * :push_front( xValue ) -> NIL + * :removeAll( xValue ) -> nInt + * :removeAt( nI ) -> NIL + * :removeFirst() -> NIL + * :removeLast() -> NIL + * :removeOne( xValue ) -> lBool + * :replace( nI, xValue ) -> NIL + * :size() -> nInt + * :startsWith( xValue ) -> lBool + * :swap( nI, nJ ) -> NIL + * :takeAt( nI ) -> pT + * :takeFirst() -> pT + * :takeLast() -> pT + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistview.txt b/harbour/contrib/hbqt/doc/en/class_qlistview.txt index c6d6a6f6b7..2091169373 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistview.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QListView() - $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 - :flow() -> nFlow - :gridSize() -> pQSize - :isRowHidden( nRow ) -> lBool - :isSelectionRectVisible() -> lBool - :isWrapping() -> lBool - :layoutMode() -> nLayoutMode - :modelColumn() -> nInt - :movement() -> nMovement - :resizeMode() -> nResizeMode - :setBatchSize( nBatchSize ) -> NIL - :setFlow( nFlow ) -> NIL - :setGridSize( pSize ) -> NIL - :setLayoutMode( nMode ) -> NIL - :setModelColumn( nColumn ) -> NIL - :setMovement( nMovement ) -> NIL - :setResizeMode( nMode ) -> NIL - :setRowHidden( nRow, lHide ) -> NIL - :setSelectionRectVisible( lShow ) -> NIL - :setSpacing( nSpace ) -> NIL - :setUniformItemSizes( lEnable ) -> NIL - :setViewMode( nMode ) -> NIL - :setWordWrap( lOn ) -> NIL - :setWrapping( lEnable ) -> NIL - :spacing() -> nInt - :uniformItemSizes() -> lBool - :viewMode() -> nViewMode - :wordWrap() -> 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/TQListView.prg - C++ wrappers : contrib/hbqt/qtgui/QListView.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractItemView - $END$ + * $NAME$ + * QListView() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQListView.prg + * C++ wrappers : contrib/hbqt/qtgui/QListView.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QListView():new( ... ) + * QListView():from( pPtr_OR_oObj_of_type_QListView ) + * QListView():configure( pPtr_OR_oObj_of_type_QListView ) + * $METHODS$ + * :batchSize() -> nInt + * :clearPropertyFlags() -> NIL + * :flow() -> nFlow + * :gridSize() -> pQSize + * :isRowHidden( nRow ) -> lBool + * :isSelectionRectVisible() -> lBool + * :isWrapping() -> lBool + * :layoutMode() -> nLayoutMode + * :modelColumn() -> nInt + * :movement() -> nMovement + * :resizeMode() -> nResizeMode + * :setBatchSize( nBatchSize ) -> NIL + * :setFlow( nFlow ) -> NIL + * :setGridSize( pSize ) -> NIL + * :setLayoutMode( nMode ) -> NIL + * :setModelColumn( nColumn ) -> NIL + * :setMovement( nMovement ) -> NIL + * :setResizeMode( nMode ) -> NIL + * :setRowHidden( nRow, lHide ) -> NIL + * :setSelectionRectVisible( lShow ) -> NIL + * :setSpacing( nSpace ) -> NIL + * :setUniformItemSizes( lEnable ) -> NIL + * :setViewMode( nMode ) -> NIL + * :setWordWrap( lOn ) -> NIL + * :setWrapping( lEnable ) -> NIL + * :spacing() -> nInt + * :uniformItemSizes() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt index ba7a3daade..e9c1f9e316 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt @@ -1,85 +1,83 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QListWidget() - $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 - :addItems( pLabels ) -> NIL - :closePersistentEditor( pItem ) -> NIL - :count() -> nInt - :currentItem() -> Item - :currentRow() -> nInt - :editItem( pItem ) -> NIL - :findItems( cText, nFlags ) -> pQList - :insertItem( nRow, pItem ) -> NIL - :insertItem_1( nRow, cLabel ) -> NIL - :insertItems( nRow, pLabels ) -> NIL - :isSortingEnabled() -> lBool - :item( nRow ) -> Item - :itemAt( pP ) -> Item - :itemAt_1( nX, nY ) -> Item - :itemWidget( pItem ) -> pQWidget - :openPersistentEditor( pItem ) -> NIL - :removeItemWidget( pItem ) -> NIL - :row( pItem ) -> nInt - :selectedItems() -> pQList - :setCurrentItem( pItem ) -> NIL - :setCurrentItem_1( pItem, nCommand ) -> NIL - :setCurrentRow( nRow ) -> NIL - :setCurrentRow_1( nRow, nCommand ) -> NIL - :setItemWidget( pItem, pWidget ) -> NIL - :setSortingEnabled( lEnable ) -> NIL - :sortItems( nOrder ) -> NIL - :takeItem( nRow ) -> Item - :visualItemRect( pItem ) -> pQRect - :clear() -> NIL - :scrollToItem( pItem, nHint ) -> 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/TQListWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QListWidget.cpp - Library : hbqtgui - $SEEALSO$ - QListView - $END$ + * $NAME$ + * QListWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQListWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QListWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QListWidget():new( ... ) + * QListWidget():from( pPtr_OR_oObj_of_type_QListWidget ) + * QListWidget():configure( pPtr_OR_oObj_of_type_QListWidget ) + * $METHODS$ + * :addItem( cLabel ) -> NIL + * :addItem_1( pItem ) -> NIL + * :addItems( pLabels ) -> NIL + * :closePersistentEditor( pItem ) -> NIL + * :count() -> nInt + * :currentItem() -> Item + * :currentRow() -> nInt + * :editItem( pItem ) -> NIL + * :findItems( cText, nFlags ) -> pQList + * :insertItem( nRow, pItem ) -> NIL + * :insertItem_1( nRow, cLabel ) -> NIL + * :insertItems( nRow, pLabels ) -> NIL + * :isSortingEnabled() -> lBool + * :item( nRow ) -> Item + * :itemAt( pP ) -> Item + * :itemAt_1( nX, nY ) -> Item + * :itemWidget( pItem ) -> pQWidget + * :openPersistentEditor( pItem ) -> NIL + * :removeItemWidget( pItem ) -> NIL + * :row( pItem ) -> nInt + * :selectedItems() -> pQList + * :setCurrentItem( pItem ) -> NIL + * :setCurrentItem_1( pItem, nCommand ) -> NIL + * :setCurrentRow( nRow ) -> NIL + * :setCurrentRow_1( nRow, nCommand ) -> NIL + * :setItemWidget( pItem, pWidget ) -> NIL + * :setSortingEnabled( lEnable ) -> NIL + * :sortItems( nOrder ) -> NIL + * :takeItem( nRow ) -> Item + * :visualItemRect( pItem ) -> pQRect + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt index 1a1425bbd0..83066b7004 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt @@ -1,87 +1,85 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QListWidgetItem() - $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 - :data( nRole ) -> pQVariant - :flags() -> nQt::ItemFlags - :font() -> pQFont - :foreground() -> pQBrush - :icon() -> pQIcon - :isHidden() -> lBool - :isSelected() -> lBool - :listWidget() -> pQListWidget - :read( pIn ) -> NIL - :setBackground( pBrush ) -> NIL - :setCheckState( nState ) -> NIL - :setData( nRole, pValue ) -> NIL - :setFlags( nFlags ) -> NIL - :setFont( pFont ) -> NIL - :setForeground( pBrush ) -> NIL - :setHidden( lHide ) -> NIL - :setIcon( cIcon ) -> NIL - :setSelected( lSelect ) -> NIL - :setSizeHint( pSize ) -> NIL - :setStatusTip( cStatusTip ) -> NIL - :setText( cText ) -> NIL - :setTextAlignment( nAlignment ) -> NIL - :setToolTip( cToolTip ) -> NIL - :setWhatsThis( cWhatsThis ) -> NIL - :sizeHint() -> pQSize - :statusTip() -> cQString - :text() -> cQString - :textAlignment() -> nInt - :toolTip() -> cQString - :type() -> nInt - :whatsThis() -> cQString - :write( pOut ) -> 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/TQListWidgetItem.prg - C++ wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QListWidgetItem() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQListWidgetItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QListWidgetItem():new( ... ) + * QListWidgetItem():from( pPtr_OR_oObj_of_type_QListWidgetItem ) + * QListWidgetItem():configure( pPtr_OR_oObj_of_type_QListWidgetItem ) + * $METHODS$ + * :background() -> pQBrush + * :checkState() -> nQt::CheckState + * :data( nRole ) -> pQVariant + * :flags() -> nQt::ItemFlags + * :font() -> pQFont + * :foreground() -> pQBrush + * :icon() -> pQIcon + * :isHidden() -> lBool + * :isSelected() -> lBool + * :listWidget() -> pQListWidget + * :read( pIn ) -> NIL + * :setBackground( pBrush ) -> NIL + * :setCheckState( nState ) -> NIL + * :setData( nRole, pValue ) -> NIL + * :setFlags( nFlags ) -> NIL + * :setFont( pFont ) -> NIL + * :setForeground( pBrush ) -> NIL + * :setHidden( lHide ) -> NIL + * :setIcon( cIcon ) -> NIL + * :setSelected( lSelect ) -> NIL + * :setSizeHint( pSize ) -> NIL + * :setStatusTip( cStatusTip ) -> NIL + * :setText( cText ) -> NIL + * :setTextAlignment( nAlignment ) -> NIL + * :setToolTip( cToolTip ) -> NIL + * :setWhatsThis( cWhatsThis ) -> NIL + * :sizeHint() -> pQSize + * :statusTip() -> cQString + * :text() -> cQString + * :textAlignment() -> nInt + * :toolTip() -> cQString + * :type() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qlocale.txt b/harbour/contrib/hbqt/doc/en/class_qlocale.txt index be401d979e..ef08e5a1b9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlocale.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlocale.txt @@ -1,106 +1,104 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QLocale() - $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 - :dateFormat( nFormat ) -> cQString - :dateTimeFormat( nFormat ) -> cQString - :dayName( nDay, nType ) -> cQString - :decimalPoint() -> pQChar - :exponential() -> pQChar - :groupSeparator() -> pQChar - :language() -> nLanguage - :measurementSystem() -> nMeasurementSystem - :monthName( nMonth, nType ) -> cQString - :name() -> cQString - :negativeSign() -> pQChar - :numberOptions() -> nNumberOptions - :percent() -> pQChar - :pmText() -> cQString - :positiveSign() -> pQChar - :setNumberOptions( nOptions ) -> NIL - :standaloneDayName( nDay, nType ) -> cQString - :standaloneMonthName( nMonth, nType ) -> cQString - :timeFormat( nFormat ) -> cQString - :toDate( cString, nFormat ) -> pQDate - :toDate_1( cString, cFormat ) -> pQDate - :toDateTime( cString, nFormat ) -> pQDateTime - :toDateTime_1( cString, cFormat ) -> pQDateTime - :toDouble( cS, @lOk ) -> nDouble - :toFloat( cS, @lOk ) -> nFloat - :toInt( cS, @lOk, nBase ) -> nInt - :toLongLong( cS, @lOk, nBase ) -> nQlonglong - :toShort( cS, @lOk, nBase ) -> nShort - :toString( nI ) -> cQString - :toString_1( pDate, cFormat ) -> cQString - :toString_2( pDate, nFormat ) -> cQString - :toString_3( pTime, cFormat ) -> cQString - :toString_4( pTime, nFormat ) -> cQString - :toString_5( pDateTime, nFormat ) -> cQString - :toString_6( pDateTime, cFormat ) -> cQString - :toString_7( nI ) -> cQString - :toString_8( nI, cF, nPrec ) -> cQString - :toString_9( nI ) -> cQString - :toString_10( nI ) -> cQString - :toString_11( nI ) -> cQString - :toString_12( nI ) -> cQString - :toString_13( nI, cF, nPrec ) -> cQString - :toTime( cString, nFormat ) -> pQTime - :toTime_1( cString, cFormat ) -> pQTime - :toUInt( cS, @lOk, nBase ) -> nUint - :toULongLong( cS, @lOk, nBase ) -> nQlonglong - :toUShort( cS, @lOk, nBase ) -> nUshort - :zeroDigit() -> pQChar - :countryToString( nCountry ) -> cQString - :languageToString( nLanguage ) -> cQString - :setDefault( 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/qtcore/TQLocale.prg - C++ wrappers : contrib/hbqt/qtcore/QLocale.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QLocale() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQLocale.prg + * C++ wrappers : contrib/hbqt/qtcore/QLocale.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QLocale():new( ... ) + * QLocale():from( pPtr_OR_oObj_of_type_QLocale ) + * QLocale():configure( pPtr_OR_oObj_of_type_QLocale ) + * $METHODS$ + * :amText() -> cQString + * :country() -> nCountry + * :dateFormat( nFormat ) -> cQString + * :dateTimeFormat( nFormat ) -> cQString + * :dayName( nDay, nType ) -> cQString + * :decimalPoint() -> pQChar + * :exponential() -> pQChar + * :groupSeparator() -> pQChar + * :language() -> nLanguage + * :measurementSystem() -> nMeasurementSystem + * :monthName( nMonth, nType ) -> cQString + * :name() -> cQString + * :negativeSign() -> pQChar + * :numberOptions() -> nNumberOptions + * :percent() -> pQChar + * :pmText() -> cQString + * :positiveSign() -> pQChar + * :setNumberOptions( nOptions ) -> NIL + * :standaloneDayName( nDay, nType ) -> cQString + * :standaloneMonthName( nMonth, nType ) -> cQString + * :timeFormat( nFormat ) -> cQString + * :toDate( cString, nFormat ) -> pQDate + * :toDate_1( cString, cFormat ) -> pQDate + * :toDateTime( cString, nFormat ) -> pQDateTime + * :toDateTime_1( cString, cFormat ) -> pQDateTime + * :toDouble( cS, @lOk ) -> nDouble + * :toFloat( cS, @lOk ) -> nFloat + * :toInt( cS, @lOk, nBase ) -> nInt + * :toLongLong( cS, @lOk, nBase ) -> nQlonglong + * :toShort( cS, @lOk, nBase ) -> nShort + * :toString( nI ) -> cQString + * :toString_1( pDate, cFormat ) -> cQString + * :toString_2( pDate, nFormat ) -> cQString + * :toString_3( pTime, cFormat ) -> cQString + * :toString_4( pTime, nFormat ) -> cQString + * :toString_5( pDateTime, nFormat ) -> cQString + * :toString_6( pDateTime, cFormat ) -> cQString + * :toString_7( nI ) -> cQString + * :toString_8( nI, cF, nPrec ) -> cQString + * :toString_9( nI ) -> cQString + * :toString_10( nI ) -> cQString + * :toString_11( nI ) -> cQString + * :toString_12( nI ) -> cQString + * :toString_13( nI, cF, nPrec ) -> cQString + * :toTime( cString, nFormat ) -> pQTime + * :toTime_1( cString, cFormat ) -> pQTime + * :toUInt( cS, @lOk, nBase ) -> nUint + * :toULongLong( cS, @lOk, nBase ) -> nQlonglong + * :toUShort( cS, @lOk, nBase ) -> nUshort + * :zeroDigit() -> pQChar + * :countryToString( nCountry ) -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt index 7b37e17063..79624e4feb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt @@ -1,102 +1,100 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMainWindow() - $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 - :addToolBar( nArea, pToolbar ) -> NIL - :addToolBar_1( pToolbar ) -> NIL - :addToolBar_2( cTitle ) -> pQToolBar - :addToolBarBreak( nArea ) -> NIL - :centralWidget() -> pQWidget - :corner( nCorner ) -> nQt::DockWidgetArea - :createPopupMenu() -> pQMenu - :dockOptions() -> nDockOptions - :dockWidgetArea( pDockwidget ) -> nQt::DockWidgetArea - :documentMode() -> lBool - :iconSize() -> pQSize - :insertToolBar( pBefore, pToolbar ) -> NIL - :insertToolBarBreak( pBefore ) -> NIL - :isAnimated() -> lBool - :isDockNestingEnabled() -> lBool - :menuBar() -> pQMenuBar - :menuWidget() -> pQWidget - :removeDockWidget( pDockwidget ) -> NIL - :removeToolBar( pToolbar ) -> NIL - :removeToolBarBreak( pBefore ) -> NIL - :restoreDockWidget( pDockwidget ) -> lBool - :restoreState( pState, nVersion ) -> lBool - :saveState( nVersion ) -> pQByteArray - :setCentralWidget( pWidget ) -> NIL - :setCorner( nCorner, nArea ) -> NIL - :setDockOptions( nOptions ) -> NIL - :setDocumentMode( lEnabled ) -> NIL - :setIconSize( pIconSize ) -> NIL - :setMenuBar( pMenuBar ) -> NIL - :setMenuWidget( pMenuBar ) -> NIL - :setStatusBar( pStatusbar ) -> NIL - :setTabPosition( nAreas, nTabPosition ) -> NIL - :setTabShape( nTabShape ) -> NIL - :setToolButtonStyle( nToolButtonStyle ) -> NIL - :setUnifiedTitleAndToolBarOnMac( lSet ) -> NIL - :splitDockWidget( pFirst, pSecond, nOrientation ) -> NIL - :statusBar() -> pQStatusBar - :tabPosition( nArea ) -> nQTabWidget::TabPosition - :tabShape() -> nQTabWidget::TabShape - :tabifiedDockWidgets( pDockwidget ) -> pQList - :tabifyDockWidget( pFirst, pSecond ) -> NIL - :toolBarArea( pToolbar ) -> nQt::ToolBarArea - :toolBarBreak( pToolbar ) -> lBool - :toolButtonStyle() -> nQt::ToolButtonStyle - :unifiedTitleAndToolBarOnMac() -> lBool - :setAnimated( lEnabled ) -> NIL - :setDockNestingEnabled( lEnabled ) -> 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/TQMainWindow.prg - C++ wrappers : contrib/hbqt/qtgui/QMainWindow.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QMainWindow() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMainWindow.prg + * C++ wrappers : contrib/hbqt/qtgui/QMainWindow.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMainWindow():new( ... ) + * QMainWindow():from( pPtr_OR_oObj_of_type_QMainWindow ) + * QMainWindow():configure( pPtr_OR_oObj_of_type_QMainWindow ) + * $METHODS$ + * :addDockWidget( nArea, pDockwidget ) -> NIL + * :addDockWidget_1( nArea, pDockwidget, nOrientation ) -> NIL + * :addToolBar( nArea, pToolbar ) -> NIL + * :addToolBar_1( pToolbar ) -> NIL + * :addToolBar_2( cTitle ) -> pQToolBar + * :addToolBarBreak( nArea ) -> NIL + * :centralWidget() -> pQWidget + * :corner( nCorner ) -> nQt::DockWidgetArea + * :createPopupMenu() -> pQMenu + * :dockOptions() -> nDockOptions + * :dockWidgetArea( pDockwidget ) -> nQt::DockWidgetArea + * :documentMode() -> lBool + * :iconSize() -> pQSize + * :insertToolBar( pBefore, pToolbar ) -> NIL + * :insertToolBarBreak( pBefore ) -> NIL + * :isAnimated() -> lBool + * :isDockNestingEnabled() -> lBool + * :menuBar() -> pQMenuBar + * :menuWidget() -> pQWidget + * :removeDockWidget( pDockwidget ) -> NIL + * :removeToolBar( pToolbar ) -> NIL + * :removeToolBarBreak( pBefore ) -> NIL + * :restoreDockWidget( pDockwidget ) -> lBool + * :restoreState( pState, nVersion ) -> lBool + * :saveState( nVersion ) -> pQByteArray + * :setCentralWidget( pWidget ) -> NIL + * :setCorner( nCorner, nArea ) -> NIL + * :setDockOptions( nOptions ) -> NIL + * :setDocumentMode( lEnabled ) -> NIL + * :setIconSize( pIconSize ) -> NIL + * :setMenuBar( pMenuBar ) -> NIL + * :setMenuWidget( pMenuBar ) -> NIL + * :setStatusBar( pStatusbar ) -> NIL + * :setTabPosition( nAreas, nTabPosition ) -> NIL + * :setTabShape( nTabShape ) -> NIL + * :setToolButtonStyle( nToolButtonStyle ) -> NIL + * :setUnifiedTitleAndToolBarOnMac( lSet ) -> NIL + * :splitDockWidget( pFirst, pSecond, nOrientation ) -> NIL + * :statusBar() -> pQStatusBar + * :tabPosition( nArea ) -> nQTabWidget::TabPosition + * :tabShape() -> nQTabWidget::TabShape + * :tabifiedDockWidgets( pDockwidget ) -> pQList + * :tabifyDockWidget( pFirst, pSecond ) -> NIL + * :toolBarArea( pToolbar ) -> nQt::ToolBarArea + * :toolBarBreak( pToolbar ) -> lBool + * :toolButtonStyle() -> nQt::ToolButtonStyle + * :unifiedTitleAndToolBarOnMac() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmatrix.txt b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt index fe99cfffdb..43f22a8b34 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmatrix.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt @@ -1,77 +1,75 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMatrix() - $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 - :m21() -> nQreal - :m22() -> nQreal - :det() -> nQreal - :dx() -> nQreal - :dy() -> nQreal - :isIdentity() -> lBool - :isInvertible() -> lBool - :map( nX, nY, @nTx, @nTy ) -> NIL - :map_1( nX, nY, @nTx, @nTy ) -> NIL - :map_2( pPoint ) -> pQPointF - :map_3( pPoint ) -> pQPoint - :map_4( pLine ) -> pQLineF - :map_5( pLine ) -> pQLine - :map_6( pPolygon ) -> pQPolygonF - :map_7( pPolygon ) -> pQPolygon - :map_8( pRegion ) -> pQRegion - :map_9( pPath ) -> pQPainterPath - :mapRect( pRectangle ) -> pQRectF - :mapRect_1( pRectangle ) -> pQRect - :mapToPolygon( pRectangle ) -> pQPolygon - :reset() -> NIL - :setMatrix( nM11, nM12, nM21, nM22, nDx, nDy ) -> 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/TQMatrix.prg - C++ wrappers : contrib/hbqt/qtgui/QMatrix.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QMatrix() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMatrix.prg + * C++ wrappers : contrib/hbqt/qtgui/QMatrix.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMatrix():new( ... ) + * QMatrix():from( pPtr_OR_oObj_of_type_QMatrix ) + * QMatrix():configure( pPtr_OR_oObj_of_type_QMatrix ) + * $METHODS$ + * :m11() -> nQreal + * :m12() -> nQreal + * :m21() -> nQreal + * :m22() -> nQreal + * :det() -> nQreal + * :dx() -> nQreal + * :dy() -> nQreal + * :isIdentity() -> lBool + * :isInvertible() -> lBool + * :map( nX, nY, @nTx, @nTy ) -> NIL + * :map_1( nX, nY, @nTx, @nTy ) -> NIL + * :map_2( pPoint ) -> pQPointF + * :map_3( pPoint ) -> pQPoint + * :map_4( pLine ) -> pQLineF + * :map_5( pLine ) -> pQLine + * :map_6( pPolygon ) -> pQPolygonF + * :map_7( pPolygon ) -> pQPolygon + * :map_8( pRegion ) -> pQRegion + * :map_9( pPath ) -> pQPainterPath + * :mapRect( pRectangle ) -> pQRectF + * :mapRect_1( pRectangle ) -> pQRect + * :mapToPolygon( pRectangle ) -> pQPolygon + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt index 6211c7e8cb..ae3f527745 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt @@ -1,79 +1,77 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMdiArea() - $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 - :addSubWindow( pWidget, nWindowFlags ) -> pQMdiSubWindow - :background() -> pQBrush - :currentSubWindow() -> pQMdiSubWindow - :documentMode() -> lBool - :removeSubWindow( pWidget ) -> NIL - :setActivationOrder( nOrder ) -> NIL - :setBackground( pBackground ) -> NIL - :setDocumentMode( lEnabled ) -> NIL - :setOption( nOption, lOn ) -> NIL - :setTabPosition( nPosition ) -> NIL - :setTabShape( nShape ) -> NIL - :setViewMode( nMode ) -> NIL - :subWindowList( nOrder ) -> pQList - :tabPosition() -> nQTabWidget::TabPosition - :tabShape() -> nQTabWidget::TabShape - :testOption( nOption ) -> lBool - :viewMode() -> nViewMode - :activateNextSubWindow() -> NIL - :activatePreviousSubWindow() -> NIL - :cascadeSubWindows() -> NIL - :closeActiveSubWindow() -> NIL - :closeAllSubWindows() -> NIL - :setActiveSubWindow( pWindow ) -> NIL - :tileSubWindows() -> 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/TQMdiArea.prg - C++ wrappers : contrib/hbqt/qtgui/QMdiArea.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractScrollArea - $END$ + * $NAME$ + * QMdiArea() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMdiArea.prg + * C++ wrappers : contrib/hbqt/qtgui/QMdiArea.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMdiArea():new( ... ) + * QMdiArea():from( pPtr_OR_oObj_of_type_QMdiArea ) + * QMdiArea():configure( pPtr_OR_oObj_of_type_QMdiArea ) + * $METHODS$ + * :activationOrder() -> nWindowOrder + * :activeSubWindow() -> pQMdiSubWindow + * :addSubWindow( pWidget, nWindowFlags ) -> pQMdiSubWindow + * :background() -> pQBrush + * :currentSubWindow() -> pQMdiSubWindow + * :documentMode() -> lBool + * :removeSubWindow( pWidget ) -> NIL + * :setActivationOrder( nOrder ) -> NIL + * :setBackground( pBackground ) -> NIL + * :setDocumentMode( lEnabled ) -> NIL + * :setOption( nOption, lOn ) -> NIL + * :setTabPosition( nPosition ) -> NIL + * :setTabShape( nShape ) -> NIL + * :setViewMode( nMode ) -> NIL + * :subWindowList( nOrder ) -> pQList + * :tabPosition() -> nQTabWidget::TabPosition + * :tabShape() -> nQTabWidget::TabShape + * :testOption( nOption ) -> lBool + * :viewMode() -> nViewMode + * :activateNextSubWindow() -> NIL + * :activatePreviousSubWindow() -> NIL + * :cascadeSubWindows() -> NIL + * :closeActiveSubWindow() -> NIL + * :closeAllSubWindows() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt index 3dcab3328a..8d036f5b6b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMdiSubWindow() - $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 - :keyboardSingleStep() -> nInt - :mdiArea() -> pQMdiArea - :setKeyboardPageStep( nStep ) -> NIL - :setKeyboardSingleStep( nStep ) -> NIL - :setOption( nOption, lOn ) -> NIL - :setSystemMenu( pSystemMenu ) -> NIL - :setWidget( pWidget ) -> NIL - :systemMenu() -> pQMenu - :testOption( nOption ) -> lBool - :widget() -> pQWidget - :showShaded() -> NIL - :showSystemMenu() -> 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/TQMdiSubWindow.prg - C++ wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QMdiSubWindow() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMdiSubWindow.prg + * C++ wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMdiSubWindow():new( ... ) + * QMdiSubWindow():from( pPtr_OR_oObj_of_type_QMdiSubWindow ) + * QMdiSubWindow():configure( pPtr_OR_oObj_of_type_QMdiSubWindow ) + * $METHODS$ + * :isShaded() -> lBool + * :keyboardPageStep() -> nInt + * :keyboardSingleStep() -> nInt + * :mdiArea() -> pQMdiArea + * :setKeyboardPageStep( nStep ) -> NIL + * :setKeyboardSingleStep( nStep ) -> NIL + * :setOption( nOption, lOn ) -> NIL + * :setSystemMenu( pSystemMenu ) -> NIL + * :setWidget( pWidget ) -> NIL + * :systemMenu() -> pQMenu + * :testOption( nOption ) -> lBool + * :widget() -> pQWidget + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmenu.txt b/harbour/contrib/hbqt/doc/en/class_qmenu.txt index c36ca66061..c57644941e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmenu.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmenu.txt @@ -1,84 +1,82 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMenu() - $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 - :activeAction() -> pQAction - :addAction( cText ) -> pQAction - :addAction_1( cIcon, cText ) -> pQAction - :addAction_2( cText, pReceiver, pMember, pShortcut ) -> pQAction - :addAction_3( cIcon, cText, pReceiver, pMember, pShortcut ) -> pQAction - :addAction_4( pAction ) -> NIL - :addMenu( pMenu ) -> pQAction - :addSeparator() -> pQAction - :clear() -> NIL - :defaultAction() -> pQAction - :exec() -> pQAction - :exec_1( pP, pAction ) -> pQAction - :hideTearOffMenu() -> NIL - :icon() -> pQIcon - :insertMenu( pBefore, pMenu ) -> pQAction - :insertSeparator( pBefore ) -> pQAction - :isEmpty() -> lBool - :isTearOffEnabled() -> lBool - :isTearOffMenuVisible() -> lBool - :menuAction() -> pQAction - :popup( pP, pAtAction ) -> NIL - :separatorsCollapsible() -> lBool - :setActiveAction( pAct ) -> NIL - :setDefaultAction( pAct ) -> NIL - :setIcon( cIcon ) -> NIL - :setSeparatorsCollapsible( lCollapse ) -> NIL - :setTearOffEnabled( lBool ) -> NIL - :setTitle( cTitle ) -> NIL - :title() -> 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/TQMenu.prg - C++ wrappers : contrib/hbqt/qtgui/QMenu.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QMenu() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMenu.prg + * C++ wrappers : contrib/hbqt/qtgui/QMenu.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMenu():new( ... ) + * QMenu():from( pPtr_OR_oObj_of_type_QMenu ) + * QMenu():configure( pPtr_OR_oObj_of_type_QMenu ) + * $METHODS$ + * :actionAt( pPt ) -> pQAction + * :actionGeometry( pAct ) -> pQRect + * :activeAction() -> pQAction + * :addAction( cText ) -> pQAction + * :addAction_1( cIcon, cText ) -> pQAction + * :addAction_2( cText, pReceiver, pMember, pShortcut ) -> pQAction + * :addAction_3( cIcon, cText, pReceiver, pMember, pShortcut ) -> pQAction + * :addAction_4( pAction ) -> NIL + * :addMenu( pMenu ) -> pQAction + * :addSeparator() -> pQAction + * :clear() -> NIL + * :defaultAction() -> pQAction + * :exec() -> pQAction + * :exec_1( pP, pAction ) -> pQAction + * :hideTearOffMenu() -> NIL + * :icon() -> pQIcon + * :insertMenu( pBefore, pMenu ) -> pQAction + * :insertSeparator( pBefore ) -> pQAction + * :isEmpty() -> lBool + * :isTearOffEnabled() -> lBool + * :isTearOffMenuVisible() -> lBool + * :menuAction() -> pQAction + * :popup( pP, pAtAction ) -> NIL + * :separatorsCollapsible() -> lBool + * :setActiveAction( pAct ) -> NIL + * :setDefaultAction( pAct ) -> NIL + * :setIcon( cIcon ) -> NIL + * :setSeparatorsCollapsible( lCollapse ) -> NIL + * :setTearOffEnabled( lBool ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmenubar.txt b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt index eeccdce3e2..d7b7e14d56 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmenubar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMenuBar() - $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 - :addAction_1( cText, pReceiver, pMember ) -> pQAction - :addAction_2( pAction ) -> NIL - :addMenu( pMenu ) -> pQAction - :addMenu_1( cTitle ) -> pQMenu - :addMenu_2( cIcon, cTitle ) -> pQMenu - :addSeparator() -> pQAction - :clear() -> NIL - :insertMenu( pBefore, pMenu ) -> pQAction - :insertSeparator( pBefore ) -> pQAction - :isDefaultUp() -> lBool - :setActiveAction( pAct ) -> NIL - :setDefaultUp( lBool ) -> 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/TQMenuBar.prg - C++ wrappers : contrib/hbqt/qtgui/QMenuBar.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QMenuBar() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMenuBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QMenuBar.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMenuBar():new( ... ) + * QMenuBar():from( pPtr_OR_oObj_of_type_QMenuBar ) + * QMenuBar():configure( pPtr_OR_oObj_of_type_QMenuBar ) + * $METHODS$ + * :activeAction() -> pQAction + * :addAction( cText ) -> pQAction + * :addAction_1( cText, pReceiver, pMember ) -> pQAction + * :addAction_2( pAction ) -> NIL + * :addMenu( pMenu ) -> pQAction + * :addMenu_1( cTitle ) -> pQMenu + * :addMenu_2( cIcon, cTitle ) -> pQMenu + * :addSeparator() -> pQAction + * :clear() -> NIL + * :insertMenu( pBefore, pMenu ) -> pQAction + * :insertSeparator( pBefore ) -> pQAction + * :isDefaultUp() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt index 719089bbde..3871271f2d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt @@ -1,92 +1,90 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMessageBox() - $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 - :addButton_2( nButton ) -> pQPushButton - :button( nWhich ) -> pQAbstractButton - :buttonRole( pButton ) -> nButtonRole - :buttons() -> pQList - :clickedButton() -> pQAbstractButton - :defaultButton() -> pQPushButton - :detailedText() -> cQString - :escapeButton() -> pQAbstractButton - :icon() -> nIcon - :iconPixmap() -> pQPixmap - :informativeText() -> cQString - :open( pReceiver, pMember ) -> NIL - :removeButton( pButton ) -> NIL - :setDefaultButton( pButton ) -> NIL - :setDefaultButton_1( nButton ) -> NIL - :setDetailedText( cText ) -> NIL - :setEscapeButton( pButton ) -> NIL - :setEscapeButton_1( nButton ) -> NIL - :setIcon( nIcon ) -> NIL - :setIconPixmap( pPixmap ) -> NIL - :setInformativeText( cText ) -> NIL - :setStandardButtons( nButtons ) -> NIL - :setText( cText ) -> NIL - :setTextFormat( nFormat ) -> NIL - :setWindowModality( nWindowModality ) -> NIL - :setWindowTitle( cTitle ) -> NIL - :standardButton( pButton ) -> nStandardButton - :standardButtons() -> nStandardButtons - :text() -> cQString - :textFormat() -> nQt::TextFormat - :about( pParent, cTitle, cText ) -> NIL - :aboutQt( pParent, cTitle ) -> NIL - :critical( pParent, cTitle, cText, nButtons, nDefaultButton ) -> nStandardButton - :information( pParent, cTitle, cText, nButtons, nDefaultButton ) -> nStandardButton - :question( pParent, cTitle, cText, nButtons, nDefaultButton ) -> nStandardButton - :warning( pParent, cTitle, cText, nButtons, nDefaultButton ) -> nStandardButton - :exec() -> 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/TQMessageBox.prg - C++ wrappers : contrib/hbqt/qtgui/QMessageBox.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QMessageBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMessageBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QMessageBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMessageBox():new( ... ) + * QMessageBox():from( pPtr_OR_oObj_of_type_QMessageBox ) + * QMessageBox():configure( pPtr_OR_oObj_of_type_QMessageBox ) + * $METHODS$ + * :addButton( pButton, nRole ) -> NIL + * :addButton_1( cText, nRole ) -> pQPushButton + * :addButton_2( nButton ) -> pQPushButton + * :button( nWhich ) -> pQAbstractButton + * :buttonRole( pButton ) -> nButtonRole + * :buttons() -> pQList + * :clickedButton() -> pQAbstractButton + * :defaultButton() -> pQPushButton + * :detailedText() -> cQString + * :escapeButton() -> pQAbstractButton + * :icon() -> nIcon + * :iconPixmap() -> pQPixmap + * :informativeText() -> cQString + * :open( pReceiver, pMember ) -> NIL + * :removeButton( pButton ) -> NIL + * :setDefaultButton( pButton ) -> NIL + * :setDefaultButton_1( nButton ) -> NIL + * :setDetailedText( cText ) -> NIL + * :setEscapeButton( pButton ) -> NIL + * :setEscapeButton_1( nButton ) -> NIL + * :setIcon( nIcon ) -> NIL + * :setIconPixmap( pPixmap ) -> NIL + * :setInformativeText( cText ) -> NIL + * :setStandardButtons( nButtons ) -> NIL + * :setText( cText ) -> NIL + * :setTextFormat( nFormat ) -> NIL + * :setWindowModality( nWindowModality ) -> NIL + * :setWindowTitle( cTitle ) -> NIL + * :standardButton( pButton ) -> nStandardButton + * :standardButtons() -> nStandardButtons + * :text() -> cQString + * :textFormat() -> nQt::TextFormat + * :about( pParent, cTitle, cText ) -> NIL + * :aboutQt( pParent, cTitle ) -> NIL + * :critical( pParent, cTitle, cText, nButtons, nDefaultButton ) -> nStandardButton + * :information( pParent, cTitle, cText, nButtons, nDefaultButton ) -> nStandardButton + * :question( pParent, cTitle, cText, nButtons, nDefaultButton ) -> nStandardButton + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmimedata.txt b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt index 0ab295a732..f816c7ff60 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmimedata.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt @@ -1,74 +1,72 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMimeData() - $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 - :data( cMimeType ) -> pQByteArray - :formats() -> pQStringList - :hasColor() -> lBool - :hasFormat( cMimeType ) -> lBool - :hasHtml() -> lBool - :hasImage() -> lBool - :hasText() -> lBool - :hasUrls() -> lBool - :html() -> cQString - :imageData() -> pQVariant - :removeFormat( cMimeType ) -> NIL - :setColorData( pColor ) -> NIL - :setData( cMimeType, pData ) -> NIL - :setHtml( cHtml ) -> NIL - :setImageData( pImage ) -> NIL - :setText( cText ) -> NIL - :text() -> cQString - :urls() -> pQList - :hbUrlList() -> 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/qtcore/TQMimeData.prg - C++ wrappers : contrib/hbqt/qtcore/QMimeData.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QMimeData() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQMimeData.prg + * C++ wrappers : contrib/hbqt/qtcore/QMimeData.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMimeData():new( ... ) + * QMimeData():from( pPtr_OR_oObj_of_type_QMimeData ) + * QMimeData():configure( pPtr_OR_oObj_of_type_QMimeData ) + * $METHODS$ + * :clear() -> NIL + * :colorData() -> pQVariant + * :data( cMimeType ) -> pQByteArray + * :formats() -> pQStringList + * :hasColor() -> lBool + * :hasFormat( cMimeType ) -> lBool + * :hasHtml() -> lBool + * :hasImage() -> lBool + * :hasText() -> lBool + * :hasUrls() -> lBool + * :html() -> cQString + * :imageData() -> pQVariant + * :removeFormat( cMimeType ) -> NIL + * :setColorData( pColor ) -> NIL + * :setData( cMimeType, pData ) -> NIL + * :setHtml( cHtml ) -> NIL + * :setImageData( pImage ) -> NIL + * :setText( cText ) -> NIL + * :text() -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt index 56999a15a7..dcc0d91805 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt @@ -1,61 +1,59 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QModelIndex() - $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 - :flags() -> nQt::ItemFlags - :internalId() -> nQint64 - :internalPointer() -> NIL - :isValid() -> lBool - :model() -> pQAbstractItemModel - :row() -> 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/qtcore/TQModelIndex.prg - C++ wrappers : contrib/hbqt/qtcore/QModelIndex.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QModelIndex() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQModelIndex.prg + * C++ wrappers : contrib/hbqt/qtcore/QModelIndex.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QModelIndex():new( ... ) + * QModelIndex():from( pPtr_OR_oObj_of_type_QModelIndex ) + * QModelIndex():configure( pPtr_OR_oObj_of_type_QModelIndex ) + * $METHODS$ + * :column() -> nInt + * :data( nRole ) -> pQVariant + * :flags() -> nQt::ItemFlags + * :internalId() -> nQint64 + * :internalPointer() -> NIL + * :isValid() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt index 8f52749a24..b577a673f6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt @@ -1,62 +1,60 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMouseEvent() - $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 - :globalPos() -> pQPoint - :globalX() -> nInt - :globalY() -> nInt - :pos() -> pQPoint - :posF() -> pQPointF - :x() -> nInt - :y() -> 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/TQMouseEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp - Library : hbqtgui - $SEEALSO$ - QInputEvent - $END$ + * $NAME$ + * QMouseEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMouseEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMouseEvent():new( ... ) + * QMouseEvent():from( pPtr_OR_oObj_of_type_QMouseEvent ) + * QMouseEvent():configure( pPtr_OR_oObj_of_type_QMouseEvent ) + * $METHODS$ + * :button() -> nQt::MouseButton + * :buttons() -> nQt::MouseButtons + * :globalPos() -> pQPoint + * :globalX() -> nInt + * :globalY() -> nInt + * :pos() -> pQPoint + * :posF() -> pQPointF + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt index 9a10384066..26b471501d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qmoveevent.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qmovie.txt b/harbour/contrib/hbqt/doc/en/class_qmovie.txt index bfe07d3d73..9fa4463f51 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmovie.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmovie.txt @@ -1,81 +1,79 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QMovie() - $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 - :currentFrameNumber() -> nInt - :currentImage() -> pQImage - :currentPixmap() -> pQPixmap - :device() -> pQIODevice - :fileName() -> cQString - :format() -> pQByteArray - :frameCount() -> nInt - :frameRect() -> pQRect - :isValid() -> lBool - :jumpToFrame( nFrameNumber ) -> lBool - :loopCount() -> nInt - :nextFrameDelay() -> nInt - :scaledSize() -> pQSize - :setBackgroundColor( pColor ) -> NIL - :setCacheMode( nMode ) -> NIL - :setDevice( pDevice ) -> NIL - :setFileName( cFileName ) -> NIL - :setFormat( pFormat ) -> NIL - :setScaledSize( pSize ) -> NIL - :speed() -> nInt - :state() -> nMovieState - :jumpToNextFrame() -> lBool - :setPaused( lPaused ) -> NIL - :setSpeed( nPercentSpeed ) -> NIL - :start() -> NIL - :stop() -> 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/TQMovie.prg - C++ wrappers : contrib/hbqt/qtgui/QMovie.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QMovie() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQMovie.prg + * C++ wrappers : contrib/hbqt/qtgui/QMovie.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QMovie():new( ... ) + * QMovie():from( pPtr_OR_oObj_of_type_QMovie ) + * QMovie():configure( pPtr_OR_oObj_of_type_QMovie ) + * $METHODS$ + * :backgroundColor() -> pQColor + * :cacheMode() -> nCacheMode + * :currentFrameNumber() -> nInt + * :currentImage() -> pQImage + * :currentPixmap() -> pQPixmap + * :device() -> pQIODevice + * :fileName() -> cQString + * :format() -> pQByteArray + * :frameCount() -> nInt + * :frameRect() -> pQRect + * :isValid() -> lBool + * :jumpToFrame( nFrameNumber ) -> lBool + * :loopCount() -> nInt + * :nextFrameDelay() -> nInt + * :scaledSize() -> pQSize + * :setBackgroundColor( pColor ) -> NIL + * :setCacheMode( nMode ) -> NIL + * :setDevice( pDevice ) -> NIL + * :setFileName( cFileName ) -> NIL + * :setFormat( pFormat ) -> NIL + * :setScaledSize( pSize ) -> NIL + * :speed() -> nInt + * :state() -> nMovieState + * :jumpToNextFrame() -> lBool + * :setPaused( lPaused ) -> NIL + * :setSpeed( nPercentSpeed ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt index b323d2282a..0d4a943778 100644 --- a/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt +++ b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QNetworkRequest() - $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 - :header( nHeader ) -> pQVariant - :rawHeader( pHeaderName ) -> pQByteArray - :rawHeaderList() -> pQList - :setAttribute( nCode, pValue ) -> NIL - :setHeader( nHeader, pValue ) -> NIL - :setRawHeader( pHeaderName, pHeaderValue ) -> NIL - :setUrl( pUrl ) -> NIL - :url() -> pQUrl - - $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/qtnetwork/TQNetworkRequest.prg - C++ wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp - Library : hbqtnetwork - $SEEALSO$ - - $END$ + * $NAME$ + * QNetworkRequest() + * $FILES$ + * Harbour source: contrib/hbqt/qtnetwork/TQNetworkRequest.prg + * C++ wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp + * Library : hbqtnetwork + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QNetworkRequest():new( ... ) + * QNetworkRequest():from( pPtr_OR_oObj_of_type_QNetworkRequest ) + * QNetworkRequest():configure( pPtr_OR_oObj_of_type_QNetworkRequest ) + * $METHODS$ + * :attribute( nCode, pDefaultValue ) -> pQVariant + * :hasRawHeader( pHeaderName ) -> lBool + * :header( nHeader ) -> pQVariant + * :rawHeader( pHeaderName ) -> pQByteArray + * :rawHeaderList() -> pQList + * :setAttribute( nCode, pValue ) -> NIL + * :setHeader( nHeader, pValue ) -> NIL + * :setRawHeader( pHeaderName, pHeaderValue ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qobject.txt b/harbour/contrib/hbqt/doc/en/class_qobject.txt index 3946ebb75e..344bc6ba72 100644 --- a/harbour/contrib/hbqt/doc/en/class_qobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qobject.txt @@ -1,81 +1,79 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QObject() - $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 - :disconnect( pSignal, pReceiver, pMethod ) -> lBool - :disconnect_1( pReceiver, pMethod ) -> lBool - :dumpObjectInfo() -> NIL - :dumpObjectTree() -> NIL - :dynamicPropertyNames() -> pQList - :event( pE ) -> lBool - :eventFilter( pWatched, pEvent ) -> lBool - :inherits( pClassName ) -> lBool - :installEventFilter( pFilterObj ) -> NIL - :isWidgetType() -> lBool - :killTimer( nId ) -> NIL - :moveToThread( pTargetThread ) -> NIL - :objectName() -> cQString - :property( pName ) -> pQVariant - :removeEventFilter( pObj ) -> NIL - :setObjectName( cName ) -> NIL - :setParent( pParent ) -> NIL - :setProperty( pName, pValue ) -> lBool - :signalsBlocked() -> lBool - :startTimer( nInterval ) -> nInt - :thread() -> pQThread - :connect_1( pSender, pSignal, pReceiver, pMethod, nType ) -> lBool - :disconnect_2( pSender, pSignal, pReceiver, pMethod ) -> lBool - :tr( pSourceText, pDisambiguation, nN ) -> cQString - :trUtf8( pSourceText, pDisambiguation, nN ) -> cQString - :deleteLater() -> 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/qtcore/TQObject.prg - C++ wrappers : contrib/hbqt/qtcore/QObject.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QObject() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQObject.prg + * C++ wrappers : contrib/hbqt/qtcore/QObject.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QObject():new( ... ) + * QObject():from( pPtr_OR_oObj_of_type_QObject ) + * QObject():configure( pPtr_OR_oObj_of_type_QObject ) + * $METHODS$ + * :blockSignals( lBlock ) -> lBool + * :connect( pSender, pSignal, pMethod, nType ) -> lBool + * :disconnect( pSignal, pReceiver, pMethod ) -> lBool + * :disconnect_1( pReceiver, pMethod ) -> lBool + * :dumpObjectInfo() -> NIL + * :dumpObjectTree() -> NIL + * :dynamicPropertyNames() -> pQList + * :event( pE ) -> lBool + * :eventFilter( pWatched, pEvent ) -> lBool + * :inherits( pClassName ) -> lBool + * :installEventFilter( pFilterObj ) -> NIL + * :isWidgetType() -> lBool + * :killTimer( nId ) -> NIL + * :moveToThread( pTargetThread ) -> NIL + * :objectName() -> cQString + * :property( pName ) -> pQVariant + * :removeEventFilter( pObj ) -> NIL + * :setObjectName( cName ) -> NIL + * :setParent( pParent ) -> NIL + * :setProperty( pName, pValue ) -> lBool + * :signalsBlocked() -> lBool + * :startTimer( nInterval ) -> nInt + * :thread() -> pQThread + * :connect_1( pSender, pSignal, pReceiver, pMethod, nType ) -> lBool + * :disconnect_2( pSender, pSignal, pReceiver, pMethod ) -> lBool + * :tr( pSourceText, pDisambiguation, nN ) -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt index 3dd84fe0d4..17f2720c82 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt @@ -1,61 +1,59 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPageSetupDialog() - $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 - :options() -> nPageSetupDialogOptions - :printer() -> pQPrinter - :setOption( nOption, lOn ) -> NIL - :setOptions( nOptions ) -> NIL - :setVisible( lVisible ) -> NIL - :testOption( nOption ) -> 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/TQPageSetupDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QPageSetupDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPageSetupDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPageSetupDialog():new( ... ) + * QPageSetupDialog():from( pPtr_OR_oObj_of_type_QPageSetupDialog ) + * QPageSetupDialog():configure( pPtr_OR_oObj_of_type_QPageSetupDialog ) + * $METHODS$ + * :exec() -> nInt + * :open( pReceiver, pMember ) -> NIL + * :options() -> nPageSetupDialogOptions + * :printer() -> pQPrinter + * :setOption( nOption, lOn ) -> NIL + * :setOptions( nOptions ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt index a1751a9ad7..07eada27ca 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt @@ -1,65 +1,63 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPaintDevice() - $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 - :heightMM() -> nInt - :logicalDpiX() -> nInt - :logicalDpiY() -> nInt - :numColors() -> nInt - :paintEngine() -> pQPaintEngine - :paintingActive() -> lBool - :physicalDpiX() -> nInt - :physicalDpiY() -> nInt - :width() -> nInt - :widthMM() -> 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/TQPaintDevice.prg - C++ wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPaintDevice() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPaintDevice.prg + * C++ wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPaintDevice():new( ... ) + * QPaintDevice():from( pPtr_OR_oObj_of_type_QPaintDevice ) + * QPaintDevice():configure( pPtr_OR_oObj_of_type_QPaintDevice ) + * $METHODS$ + * :depth() -> nInt + * :height() -> nInt + * :heightMM() -> nInt + * :logicalDpiX() -> nInt + * :logicalDpiY() -> nInt + * :numColors() -> nInt + * :paintEngine() -> pQPaintEngine + * :paintingActive() -> lBool + * :physicalDpiX() -> nInt + * :physicalDpiY() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt index 067bf304ee..6cf425a4d4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt @@ -1,77 +1,75 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPaintEngine() - $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 - :drawEllipse_1( pRect ) -> NIL - :drawImage( pRectangle, pImage, pSr, nFlags ) -> NIL - :drawLines( pLines, nLineCount ) -> NIL - :drawLines_1( pLines, nLineCount ) -> NIL - :drawPath( pPath ) -> NIL - :drawPixmap( pR, pPm, pSr ) -> NIL - :drawPoints( pPoints, nPointCount ) -> NIL - :drawPoints_1( pPoints, nPointCount ) -> NIL - :drawPolygon( pPoints, nPointCount, nMode ) -> NIL - :drawPolygon_1( pPoints, nPointCount, nMode ) -> NIL - :drawRects( pRects, nRectCount ) -> NIL - :drawRects_1( pRects, nRectCount ) -> NIL - :drawTextItem( pP, pTextItem ) -> NIL - :drawTiledPixmap( pRect, pPixmap, pP ) -> NIL - :end() -> lBool - :hasFeature( nFeature ) -> lBool - :isActive() -> lBool - :paintDevice() -> pQPaintDevice - :painter() -> pQPainter - :setActive( lState ) -> NIL - :type() -> nType - :updateState( pState ) -> 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/TQPaintEngine.prg - C++ wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPaintEngine() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPaintEngine.prg + * C++ wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPaintEngine():new( ... ) + * QPaintEngine():from( pPtr_OR_oObj_of_type_QPaintEngine ) + * QPaintEngine():configure( pPtr_OR_oObj_of_type_QPaintEngine ) + * $METHODS$ + * :begin( pPdev ) -> lBool + * :drawEllipse( pRect ) -> NIL + * :drawEllipse_1( pRect ) -> NIL + * :drawImage( pRectangle, pImage, pSr, nFlags ) -> NIL + * :drawLines( pLines, nLineCount ) -> NIL + * :drawLines_1( pLines, nLineCount ) -> NIL + * :drawPath( pPath ) -> NIL + * :drawPixmap( pR, pPm, pSr ) -> NIL + * :drawPoints( pPoints, nPointCount ) -> NIL + * :drawPoints_1( pPoints, nPointCount ) -> NIL + * :drawPolygon( pPoints, nPointCount, nMode ) -> NIL + * :drawPolygon_1( pPoints, nPointCount, nMode ) -> NIL + * :drawRects( pRects, nRectCount ) -> NIL + * :drawRects_1( pRects, nRectCount ) -> NIL + * :drawTextItem( pP, pTextItem ) -> NIL + * :drawTiledPixmap( pRect, pPixmap, pP ) -> NIL + * :end() -> lBool + * :hasFeature( nFeature ) -> lBool + * :isActive() -> lBool + * :paintDevice() -> pQPaintDevice + * :painter() -> pQPainter + * :setActive( lState ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpainter.txt b/harbour/contrib/hbqt/doc/en/class_qpainter.txt index 22477c8409..27e122f40e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpainter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpainter.txt @@ -1,235 +1,233 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPainter() - $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 - :begin( pDevice ) -> lBool - :boundingRect( pRectangle, nFlags, cText ) -> pQRectF - :boundingRect_1( pRectangle, nFlags, cText ) -> pQRect - :boundingRect_2( nX, nY, nW, nH, nFlags, cText ) -> pQRect - :boundingRect_3( pRectangle, cText, pOption ) -> pQRectF - :brush() -> pQBrush - :brushOrigin() -> pQPoint - :clipPath() -> Path - :clipRegion() -> pQRegion - :combinedMatrix() -> pQMatrix - :combinedTransform() -> pQTransform - :compositionMode() -> nCompositionMode - :device() -> pQPaintDevice - :deviceMatrix() -> pQMatrix - :deviceTransform() -> pQTransform - :drawArc( pRectangle, nStartAngle, nSpanAngle ) -> NIL - :drawArc_1( pRectangle, nStartAngle, nSpanAngle ) -> NIL - :drawArc_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle ) -> NIL - :drawChord( pRectangle, nStartAngle, nSpanAngle ) -> NIL - :drawChord_1( pRectangle, nStartAngle, nSpanAngle ) -> NIL - :drawChord_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle ) -> NIL - :drawConvexPolygon( pPoints, nPointCount ) -> NIL - :drawConvexPolygon_1( pPoints, nPointCount ) -> NIL - :drawConvexPolygon_2( pPolygon ) -> NIL - :drawConvexPolygon_3( pPolygon ) -> NIL - :drawEllipse( pRectangle ) -> NIL - :drawEllipse_1( pRectangle ) -> NIL - :drawEllipse_2( nX, nY, nWidth, nHeight ) -> NIL - :drawEllipse_3( pCenter, nRx, nRy ) -> NIL - :drawEllipse_4( pCenter, nRx, nRy ) -> NIL - :drawImage( pTarget, pImage, pSource, nFlags ) -> NIL - :drawImage_1( pTarget, pImage, pSource, nFlags ) -> NIL - :drawImage_2( pPoint, pImage ) -> NIL - :drawImage_3( pPoint, pImage ) -> NIL - :drawImage_4( pPoint, pImage, pSource, nFlags ) -> NIL - :drawImage_5( pPoint, pImage, pSource, nFlags ) -> NIL - :drawImage_6( pRectangle, pImage ) -> NIL - :drawImage_7( pRectangle, pImage ) -> NIL - :drawImage_8( nX, nY, pImage, nSx, nSy, nSw, nSh, nFlags ) -> NIL - :drawLine( pLine ) -> NIL - :drawLine_1( pLine ) -> NIL - :drawLine_2( pP1, pP2 ) -> NIL - :drawLine_3( pP1, pP2 ) -> NIL - :drawLine_4( nX1, nY1, nX2, nY2 ) -> NIL - :drawLines( pLines, nLineCount ) -> NIL - :drawLines_1( pLines, nLineCount ) -> NIL - :drawLines_2( pPointPairs, nLineCount ) -> NIL - :drawLines_3( pPointPairs, nLineCount ) -> NIL - :drawPath( pPath ) -> NIL - :drawPicture( pPoint, pPicture ) -> NIL - :drawPicture_1( pPoint, pPicture ) -> NIL - :drawPicture_2( nX, nY, pPicture ) -> NIL - :drawPie( pRectangle, nStartAngle, nSpanAngle ) -> NIL - :drawPie_1( pRectangle, nStartAngle, nSpanAngle ) -> NIL - :drawPie_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle ) -> NIL - :drawPixmap( pTarget, pPixmap, pSource ) -> NIL - :drawPixmap_1( pTarget, pPixmap, pSource ) -> NIL - :drawPixmap_2( pPoint, pPixmap, pSource ) -> NIL - :drawPixmap_3( pPoint, pPixmap, pSource ) -> NIL - :drawPixmap_4( pPoint, pPixmap ) -> NIL - :drawPixmap_5( pPoint, pPixmap ) -> NIL - :drawPixmap_6( nX, nY, pPixmap ) -> NIL - :drawPixmap_7( pRectangle, pPixmap ) -> NIL - :drawPixmap_8( nX, nY, nWidth, nHeight, pPixmap ) -> NIL - :drawPixmap_9( nX, nY, nW, nH, pPixmap, nSx, nSy, nSw, nSh ) -> NIL - :drawPixmap_10( nX, nY, pPixmap, nSx, nSy, nSw, nSh ) -> NIL - :drawPoint( pPosition ) -> NIL - :drawPoint_1( pPosition ) -> NIL - :drawPoint_2( nX, nY ) -> NIL - :drawPoints( pPoints, nPointCount ) -> NIL - :drawPoints_1( pPoints, nPointCount ) -> NIL - :drawPoints_2( pPoints ) -> NIL - :drawPoints_3( pPoints ) -> NIL - :drawPolygon( pPoints, nPointCount, nFillRule ) -> NIL - :drawPolygon_1( pPoints, nPointCount, nFillRule ) -> NIL - :drawPolygon_2( pPoints, nFillRule ) -> NIL - :drawPolygon_3( pPoints, nFillRule ) -> NIL - :drawPolyline( pPoints, nPointCount ) -> NIL - :drawPolyline_1( pPoints, nPointCount ) -> NIL - :drawPolyline_2( pPoints ) -> NIL - :drawPolyline_3( pPoints ) -> NIL - :drawRect( pRectangle ) -> NIL - :drawRect_1( pRectangle ) -> NIL - :drawRect_2( nX, nY, nWidth, nHeight ) -> NIL - :drawRects( pRectangles, nRectCount ) -> NIL - :drawRects_1( pRectangles, nRectCount ) -> NIL - :drawRoundedRect( pRect, nXRadius, nYRadius, nMode ) -> NIL - :drawRoundedRect_1( pRect, nXRadius, nYRadius, nMode ) -> NIL - :drawRoundedRect_2( nX, nY, nW, nH, nXRadius, nYRadius, nMode ) -> NIL - :drawText( pPosition, cText ) -> NIL - :drawText_1( pPosition, cText ) -> NIL - :drawText_2( pRectangle, nFlags, cText, pBoundingRect ) -> NIL - :drawText_3( pRectangle, nFlags, cText, pBoundingRect ) -> NIL - :drawText_4( nX, nY, cText ) -> NIL - :drawText_5( nX, nY, nWidth, nHeight, nFlags, cText, pBoundingRect ) -> NIL - :drawText_6( pRectangle, cText, pOption ) -> NIL - :drawTiledPixmap( pRectangle, pPixmap, pPosition ) -> NIL - :drawTiledPixmap_1( pRectangle, pPixmap, pPosition ) -> NIL - :drawTiledPixmap_2( nX, nY, nWidth, nHeight, pPixmap, nSx, nSy ) -> NIL - :end() -> lBool - :eraseRect( pRectangle ) -> NIL - :eraseRect_1( pRectangle ) -> NIL - :eraseRect_2( nX, nY, nWidth, nHeight ) -> NIL - :fillPath( pPath, pBrush ) -> NIL - :fillRect( pRectangle, pBrush ) -> NIL - :fillRect_1( nX, nY, nWidth, nHeight, nStyle ) -> NIL - :fillRect_2( pRectangle, nStyle ) -> NIL - :fillRect_3( pRectangle, nStyle ) -> NIL - :fillRect_4( pRectangle, pBrush ) -> NIL - :fillRect_5( pRectangle, pColor ) -> NIL - :fillRect_6( pRectangle, pColor ) -> NIL - :fillRect_7( nX, nY, nWidth, nHeight, pBrush ) -> NIL - :fillRect_8( nX, nY, nWidth, nHeight, pColor ) -> NIL - :fillRect_9( nX, nY, nWidth, nHeight, nColor ) -> NIL - :fillRect_10( pRectangle, nColor ) -> NIL - :fillRect_11( pRectangle, nColor ) -> NIL - :font() -> pQFont - :fontInfo() -> pQFontInfo - :fontMetrics() -> pQFontMetrics - :hasClipping() -> lBool - :initFrom( pWidget ) -> NIL - :isActive() -> lBool - :layoutDirection() -> nQt::LayoutDirection - :opacity() -> nQreal - :paintEngine() -> pQPaintEngine - :pen() -> pQPen - :renderHints() -> nRenderHints - :resetMatrix() -> NIL - :resetTransform() -> NIL - :restore() -> NIL - :rotate( nAngle ) -> NIL - :save() -> NIL - :scale( nSx, nSy ) -> NIL - :setBackground( pBrush ) -> NIL - :setBackgroundMode( nMode ) -> NIL - :setBrush( pBrush ) -> NIL - :setBrush_1( nStyle ) -> NIL - :setBrushOrigin( pPosition ) -> NIL - :setBrushOrigin_1( pPosition ) -> NIL - :setBrushOrigin_2( nX, nY ) -> NIL - :setClipPath( pPath, nOperation ) -> NIL - :setClipRect( pRectangle, nOperation ) -> NIL - :setClipRect_1( nX, nY, nWidth, nHeight, nOperation ) -> NIL - :setClipRect_2( pRectangle, nOperation ) -> NIL - :setClipRegion( pRegion, nOperation ) -> NIL - :setClipping( lEnable ) -> NIL - :setCompositionMode( nMode ) -> NIL - :setFont( pFont ) -> NIL - :setLayoutDirection( nDirection ) -> NIL - :setOpacity( nOpacity ) -> NIL - :setPen( pPen ) -> NIL - :setPen_1( pColor ) -> NIL - :setPen_2( nStyle ) -> NIL - :setRenderHint( nHint, lOn ) -> NIL - :setRenderHints( nHints, lOn ) -> NIL - :setTransform( pTransform, lCombine ) -> NIL - :setViewTransformEnabled( lEnable ) -> NIL - :setViewport( pRectangle ) -> NIL - :setViewport_1( nX, nY, nWidth, nHeight ) -> NIL - :setWindow( pRectangle ) -> NIL - :setWindow_1( nX, nY, nWidth, nHeight ) -> NIL - :setWorldMatrix( pMatrix, lCombine ) -> NIL - :setWorldMatrixEnabled( lEnable ) -> NIL - :setWorldTransform( pMatrix, lCombine ) -> NIL - :shear( nSh, nSv ) -> NIL - :strokePath( pPath, pPen ) -> NIL - :testRenderHint( nHint ) -> lBool - :transform() -> pQTransform - :translate( pOffset ) -> NIL - :translate_1( pOffset ) -> NIL - :translate_2( nDx, nDy ) -> NIL - :viewTransformEnabled() -> lBool - :viewport() -> pQRect - :window() -> pQRect - :worldMatrix() -> pQMatrix - :worldMatrixEnabled() -> lBool - :worldTransform() -> pQTransform - :redirected( pDevice, pOffset ) -> pQPaintDevice - :restoreRedirected( pDevice ) -> NIL - :setRedirected( pDevice, pReplacement, pOffset ) -> 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/TQPainter.prg - C++ wrappers : contrib/hbqt/qtgui/QPainter.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPainter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPainter.prg + * C++ wrappers : contrib/hbqt/qtgui/QPainter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPainter():new( ... ) + * QPainter():from( pPtr_OR_oObj_of_type_QPainter ) + * QPainter():configure( pPtr_OR_oObj_of_type_QPainter ) + * $METHODS$ + * :background() -> pQBrush + * :backgroundMode() -> nQt::BGMode + * :begin( pDevice ) -> lBool + * :boundingRect( pRectangle, nFlags, cText ) -> pQRectF + * :boundingRect_1( pRectangle, nFlags, cText ) -> pQRect + * :boundingRect_2( nX, nY, nW, nH, nFlags, cText ) -> pQRect + * :boundingRect_3( pRectangle, cText, pOption ) -> pQRectF + * :brush() -> pQBrush + * :brushOrigin() -> pQPoint + * :clipPath() -> Path + * :clipRegion() -> pQRegion + * :combinedMatrix() -> pQMatrix + * :combinedTransform() -> pQTransform + * :compositionMode() -> nCompositionMode + * :device() -> pQPaintDevice + * :deviceMatrix() -> pQMatrix + * :deviceTransform() -> pQTransform + * :drawArc( pRectangle, nStartAngle, nSpanAngle ) -> NIL + * :drawArc_1( pRectangle, nStartAngle, nSpanAngle ) -> NIL + * :drawArc_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle ) -> NIL + * :drawChord( pRectangle, nStartAngle, nSpanAngle ) -> NIL + * :drawChord_1( pRectangle, nStartAngle, nSpanAngle ) -> NIL + * :drawChord_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle ) -> NIL + * :drawConvexPolygon( pPoints, nPointCount ) -> NIL + * :drawConvexPolygon_1( pPoints, nPointCount ) -> NIL + * :drawConvexPolygon_2( pPolygon ) -> NIL + * :drawConvexPolygon_3( pPolygon ) -> NIL + * :drawEllipse( pRectangle ) -> NIL + * :drawEllipse_1( pRectangle ) -> NIL + * :drawEllipse_2( nX, nY, nWidth, nHeight ) -> NIL + * :drawEllipse_3( pCenter, nRx, nRy ) -> NIL + * :drawEllipse_4( pCenter, nRx, nRy ) -> NIL + * :drawImage( pTarget, pImage, pSource, nFlags ) -> NIL + * :drawImage_1( pTarget, pImage, pSource, nFlags ) -> NIL + * :drawImage_2( pPoint, pImage ) -> NIL + * :drawImage_3( pPoint, pImage ) -> NIL + * :drawImage_4( pPoint, pImage, pSource, nFlags ) -> NIL + * :drawImage_5( pPoint, pImage, pSource, nFlags ) -> NIL + * :drawImage_6( pRectangle, pImage ) -> NIL + * :drawImage_7( pRectangle, pImage ) -> NIL + * :drawImage_8( nX, nY, pImage, nSx, nSy, nSw, nSh, nFlags ) -> NIL + * :drawLine( pLine ) -> NIL + * :drawLine_1( pLine ) -> NIL + * :drawLine_2( pP1, pP2 ) -> NIL + * :drawLine_3( pP1, pP2 ) -> NIL + * :drawLine_4( nX1, nY1, nX2, nY2 ) -> NIL + * :drawLines( pLines, nLineCount ) -> NIL + * :drawLines_1( pLines, nLineCount ) -> NIL + * :drawLines_2( pPointPairs, nLineCount ) -> NIL + * :drawLines_3( pPointPairs, nLineCount ) -> NIL + * :drawPath( pPath ) -> NIL + * :drawPicture( pPoint, pPicture ) -> NIL + * :drawPicture_1( pPoint, pPicture ) -> NIL + * :drawPicture_2( nX, nY, pPicture ) -> NIL + * :drawPie( pRectangle, nStartAngle, nSpanAngle ) -> NIL + * :drawPie_1( pRectangle, nStartAngle, nSpanAngle ) -> NIL + * :drawPie_2( nX, nY, nWidth, nHeight, nStartAngle, nSpanAngle ) -> NIL + * :drawPixmap( pTarget, pPixmap, pSource ) -> NIL + * :drawPixmap_1( pTarget, pPixmap, pSource ) -> NIL + * :drawPixmap_2( pPoint, pPixmap, pSource ) -> NIL + * :drawPixmap_3( pPoint, pPixmap, pSource ) -> NIL + * :drawPixmap_4( pPoint, pPixmap ) -> NIL + * :drawPixmap_5( pPoint, pPixmap ) -> NIL + * :drawPixmap_6( nX, nY, pPixmap ) -> NIL + * :drawPixmap_7( pRectangle, pPixmap ) -> NIL + * :drawPixmap_8( nX, nY, nWidth, nHeight, pPixmap ) -> NIL + * :drawPixmap_9( nX, nY, nW, nH, pPixmap, nSx, nSy, nSw, nSh ) -> NIL + * :drawPixmap_10( nX, nY, pPixmap, nSx, nSy, nSw, nSh ) -> NIL + * :drawPoint( pPosition ) -> NIL + * :drawPoint_1( pPosition ) -> NIL + * :drawPoint_2( nX, nY ) -> NIL + * :drawPoints( pPoints, nPointCount ) -> NIL + * :drawPoints_1( pPoints, nPointCount ) -> NIL + * :drawPoints_2( pPoints ) -> NIL + * :drawPoints_3( pPoints ) -> NIL + * :drawPolygon( pPoints, nPointCount, nFillRule ) -> NIL + * :drawPolygon_1( pPoints, nPointCount, nFillRule ) -> NIL + * :drawPolygon_2( pPoints, nFillRule ) -> NIL + * :drawPolygon_3( pPoints, nFillRule ) -> NIL + * :drawPolyline( pPoints, nPointCount ) -> NIL + * :drawPolyline_1( pPoints, nPointCount ) -> NIL + * :drawPolyline_2( pPoints ) -> NIL + * :drawPolyline_3( pPoints ) -> NIL + * :drawRect( pRectangle ) -> NIL + * :drawRect_1( pRectangle ) -> NIL + * :drawRect_2( nX, nY, nWidth, nHeight ) -> NIL + * :drawRects( pRectangles, nRectCount ) -> NIL + * :drawRects_1( pRectangles, nRectCount ) -> NIL + * :drawRoundedRect( pRect, nXRadius, nYRadius, nMode ) -> NIL + * :drawRoundedRect_1( pRect, nXRadius, nYRadius, nMode ) -> NIL + * :drawRoundedRect_2( nX, nY, nW, nH, nXRadius, nYRadius, nMode ) -> NIL + * :drawText( pPosition, cText ) -> NIL + * :drawText_1( pPosition, cText ) -> NIL + * :drawText_2( pRectangle, nFlags, cText, pBoundingRect ) -> NIL + * :drawText_3( pRectangle, nFlags, cText, pBoundingRect ) -> NIL + * :drawText_4( nX, nY, cText ) -> NIL + * :drawText_5( nX, nY, nWidth, nHeight, nFlags, cText, pBoundingRect ) -> NIL + * :drawText_6( pRectangle, cText, pOption ) -> NIL + * :drawTiledPixmap( pRectangle, pPixmap, pPosition ) -> NIL + * :drawTiledPixmap_1( pRectangle, pPixmap, pPosition ) -> NIL + * :drawTiledPixmap_2( nX, nY, nWidth, nHeight, pPixmap, nSx, nSy ) -> NIL + * :end() -> lBool + * :eraseRect( pRectangle ) -> NIL + * :eraseRect_1( pRectangle ) -> NIL + * :eraseRect_2( nX, nY, nWidth, nHeight ) -> NIL + * :fillPath( pPath, pBrush ) -> NIL + * :fillRect( pRectangle, pBrush ) -> NIL + * :fillRect_1( nX, nY, nWidth, nHeight, nStyle ) -> NIL + * :fillRect_2( pRectangle, nStyle ) -> NIL + * :fillRect_3( pRectangle, nStyle ) -> NIL + * :fillRect_4( pRectangle, pBrush ) -> NIL + * :fillRect_5( pRectangle, pColor ) -> NIL + * :fillRect_6( pRectangle, pColor ) -> NIL + * :fillRect_7( nX, nY, nWidth, nHeight, pBrush ) -> NIL + * :fillRect_8( nX, nY, nWidth, nHeight, pColor ) -> NIL + * :fillRect_9( nX, nY, nWidth, nHeight, nColor ) -> NIL + * :fillRect_10( pRectangle, nColor ) -> NIL + * :fillRect_11( pRectangle, nColor ) -> NIL + * :font() -> pQFont + * :fontInfo() -> pQFontInfo + * :fontMetrics() -> pQFontMetrics + * :hasClipping() -> lBool + * :initFrom( pWidget ) -> NIL + * :isActive() -> lBool + * :layoutDirection() -> nQt::LayoutDirection + * :opacity() -> nQreal + * :paintEngine() -> pQPaintEngine + * :pen() -> pQPen + * :renderHints() -> nRenderHints + * :resetMatrix() -> NIL + * :resetTransform() -> NIL + * :restore() -> NIL + * :rotate( nAngle ) -> NIL + * :save() -> NIL + * :scale( nSx, nSy ) -> NIL + * :setBackground( pBrush ) -> NIL + * :setBackgroundMode( nMode ) -> NIL + * :setBrush( pBrush ) -> NIL + * :setBrush_1( nStyle ) -> NIL + * :setBrushOrigin( pPosition ) -> NIL + * :setBrushOrigin_1( pPosition ) -> NIL + * :setBrushOrigin_2( nX, nY ) -> NIL + * :setClipPath( pPath, nOperation ) -> NIL + * :setClipRect( pRectangle, nOperation ) -> NIL + * :setClipRect_1( nX, nY, nWidth, nHeight, nOperation ) -> NIL + * :setClipRect_2( pRectangle, nOperation ) -> NIL + * :setClipRegion( pRegion, nOperation ) -> NIL + * :setClipping( lEnable ) -> NIL + * :setCompositionMode( nMode ) -> NIL + * :setFont( pFont ) -> NIL + * :setLayoutDirection( nDirection ) -> NIL + * :setOpacity( nOpacity ) -> NIL + * :setPen( pPen ) -> NIL + * :setPen_1( pColor ) -> NIL + * :setPen_2( nStyle ) -> NIL + * :setRenderHint( nHint, lOn ) -> NIL + * :setRenderHints( nHints, lOn ) -> NIL + * :setTransform( pTransform, lCombine ) -> NIL + * :setViewTransformEnabled( lEnable ) -> NIL + * :setViewport( pRectangle ) -> NIL + * :setViewport_1( nX, nY, nWidth, nHeight ) -> NIL + * :setWindow( pRectangle ) -> NIL + * :setWindow_1( nX, nY, nWidth, nHeight ) -> NIL + * :setWorldMatrix( pMatrix, lCombine ) -> NIL + * :setWorldMatrixEnabled( lEnable ) -> NIL + * :setWorldTransform( pMatrix, lCombine ) -> NIL + * :shear( nSh, nSv ) -> NIL + * :strokePath( pPath, pPen ) -> NIL + * :testRenderHint( nHint ) -> lBool + * :transform() -> pQTransform + * :translate( pOffset ) -> NIL + * :translate_1( pOffset ) -> NIL + * :translate_2( nDx, nDy ) -> NIL + * :viewTransformEnabled() -> lBool + * :viewport() -> pQRect + * :window() -> pQRect + * :worldMatrix() -> pQMatrix + * :worldMatrixEnabled() -> lBool + * :worldTransform() -> pQTransform + * :redirected( pDevice, pOffset ) -> pQPaintDevice + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt index ffcf1ce48a..4c27eb01a5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt @@ -1,103 +1,101 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPainterPath() - $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 - :addEllipse_2( pCenter, nRx, nRy ) -> NIL - :addPath( pPath ) -> NIL - :addPolygon( pPolygon ) -> NIL - :addRect( pRectangle ) -> NIL - :addRect_1( nX, nY, nWidth, nHeight ) -> NIL - :addRegion( pRegion ) -> NIL - :addRoundedRect( pRect, nXRadius, nYRadius, nMode ) -> NIL - :addRoundedRect_1( nX, nY, nW, nH, nXRadius, nYRadius, nMode ) -> NIL - :addText( pPoint, pFont, cText ) -> NIL - :addText_1( nX, nY, pFont, cText ) -> NIL - :angleAtPercent( nT ) -> nQreal - :arcMoveTo( pRectangle, nAngle ) -> NIL - :arcMoveTo_1( nX, nY, nWidth, nHeight, nAngle ) -> NIL - :arcTo( pRectangle, nStartAngle, nSweepLength ) -> NIL - :arcTo_1( nX, nY, nWidth, nHeight, nStartAngle, nSweepLength ) -> NIL - :boundingRect() -> pQRectF - :closeSubpath() -> NIL - :connectPath( pPath ) -> NIL - :contains( pPoint ) -> lBool - :contains_1( pRectangle ) -> lBool - :contains_2( pP ) -> lBool - :controlPointRect() -> pQRectF - :cubicTo( pC1, pC2, pEndPoint ) -> NIL - :cubicTo_1( nC1X, nC1Y, nC2X, nC2Y, nEndPointX, nEndPointY ) -> NIL - :currentPosition() -> pQPointF - :elementCount() -> nInt - :fillRule() -> nQt::FillRule - :intersects( pRectangle ) -> lBool - :intersects_1( pP ) -> lBool - :isEmpty() -> lBool - :length() -> nQreal - :lineTo( pEndPoint ) -> NIL - :lineTo_1( nX, nY ) -> NIL - :moveTo( pPoint ) -> NIL - :moveTo_1( nX, nY ) -> NIL - :percentAtLength( nLen ) -> nQreal - :pointAtPercent( nT ) -> pQPointF - :quadTo( pC, pEndPoint ) -> NIL - :quadTo_1( nCx, nCy, nEndPointX, nEndPointY ) -> NIL - :setElementPositionAt( nIndex, nX, nY ) -> NIL - :setFillRule( nFillRule ) -> NIL - :slopeAtPercent( nT ) -> nQreal - :toFillPolygon( pMatrix ) -> pQPolygonF - :toFillPolygon_1( pMatrix ) -> pQPolygonF - :toFillPolygons( pMatrix ) -> pQList - :toFillPolygons_1( pMatrix ) -> pQList - :toSubpathPolygons( pMatrix ) -> pQList - :toSubpathPolygons_1( pMatrix ) -> pQList - - $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/TQPainterPath.prg - C++ wrappers : contrib/hbqt/qtgui/QPainterPath.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPainterPath() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPainterPath.prg + * C++ wrappers : contrib/hbqt/qtgui/QPainterPath.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPainterPath():new( ... ) + * QPainterPath():from( pPtr_OR_oObj_of_type_QPainterPath ) + * QPainterPath():configure( pPtr_OR_oObj_of_type_QPainterPath ) + * $METHODS$ + * :addEllipse( pBoundingRectangle ) -> NIL + * :addEllipse_1( nX, nY, nWidth, nHeight ) -> NIL + * :addEllipse_2( pCenter, nRx, nRy ) -> NIL + * :addPath( pPath ) -> NIL + * :addPolygon( pPolygon ) -> NIL + * :addRect( pRectangle ) -> NIL + * :addRect_1( nX, nY, nWidth, nHeight ) -> NIL + * :addRegion( pRegion ) -> NIL + * :addRoundedRect( pRect, nXRadius, nYRadius, nMode ) -> NIL + * :addRoundedRect_1( nX, nY, nW, nH, nXRadius, nYRadius, nMode ) -> NIL + * :addText( pPoint, pFont, cText ) -> NIL + * :addText_1( nX, nY, pFont, cText ) -> NIL + * :angleAtPercent( nT ) -> nQreal + * :arcMoveTo( pRectangle, nAngle ) -> NIL + * :arcMoveTo_1( nX, nY, nWidth, nHeight, nAngle ) -> NIL + * :arcTo( pRectangle, nStartAngle, nSweepLength ) -> NIL + * :arcTo_1( nX, nY, nWidth, nHeight, nStartAngle, nSweepLength ) -> NIL + * :boundingRect() -> pQRectF + * :closeSubpath() -> NIL + * :connectPath( pPath ) -> NIL + * :contains( pPoint ) -> lBool + * :contains_1( pRectangle ) -> lBool + * :contains_2( pP ) -> lBool + * :controlPointRect() -> pQRectF + * :cubicTo( pC1, pC2, pEndPoint ) -> NIL + * :cubicTo_1( nC1X, nC1Y, nC2X, nC2Y, nEndPointX, nEndPointY ) -> NIL + * :currentPosition() -> pQPointF + * :elementCount() -> nInt + * :fillRule() -> nQt::FillRule + * :intersects( pRectangle ) -> lBool + * :intersects_1( pP ) -> lBool + * :isEmpty() -> lBool + * :length() -> nQreal + * :lineTo( pEndPoint ) -> NIL + * :lineTo_1( nX, nY ) -> NIL + * :moveTo( pPoint ) -> NIL + * :moveTo_1( nX, nY ) -> NIL + * :percentAtLength( nLen ) -> nQreal + * :pointAtPercent( nT ) -> pQPointF + * :quadTo( pC, pEndPoint ) -> NIL + * :quadTo_1( nCx, nCy, nEndPointX, nEndPointY ) -> NIL + * :setElementPositionAt( nIndex, nX, nY ) -> NIL + * :setFillRule( nFillRule ) -> NIL + * :slopeAtPercent( nT ) -> nQreal + * :toFillPolygon( pMatrix ) -> pQPolygonF + * :toFillPolygon_1( pMatrix ) -> pQPolygonF + * :toFillPolygons( pMatrix ) -> pQList + * :toFillPolygons_1( pMatrix ) -> pQList + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt index 35ee273720..5c61d77ecc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpaintevent.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpalette.txt b/harbour/contrib/hbqt/doc/en/class_qpalette.txt index bd26dc9003..e50a5c8da9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpalette.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpalette.txt @@ -1,96 +1,94 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPalette() - $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 - :brightText() -> pQBrush - :brush( nGroup, nRole ) -> pQBrush - :brush_1( nRole ) -> pQBrush - :button() -> pQBrush - :buttonText() -> pQBrush - :cacheKey() -> nQint64 - :color( nGroup, nRole ) -> pQColor - :color_1( nRole ) -> pQColor - :currentColorGroup() -> nColorGroup - :dark() -> pQBrush - :highlight() -> pQBrush - :highlightedText() -> pQBrush - :isBrushSet( nCg, nCr ) -> lBool - :isCopyOf( pP ) -> lBool - :isEqual( nCg1, nCg2 ) -> lBool - :light() -> pQBrush - :link() -> pQBrush - :linkVisited() -> pQBrush - :mid() -> pQBrush - :midlight() -> pQBrush - :setBrush( nRole, pBrush ) -> NIL - :setBrush_1( nGroup, nRole, pBrush ) -> NIL - :setColor( nRole, pColor ) -> NIL - :setColor_1( nGroup, nRole, pColor ) -> NIL - :setColorGroup( nCg, pWindowText, pButton, pLight, pDark, pMid, pText, pBright_text, pBase, pWindow ) -> NIL - :setCurrentColorGroup( nCg ) -> NIL - :shadow() -> pQBrush - :text() -> pQBrush - :toolTipBase() -> pQBrush - :toolTipText() -> pQBrush - :window() -> pQBrush - :windowText() -> pQBrush - - $DESCRIPTION$ - - $EXAMPLES$ - oPalette := QPalette():new() - oPalette := QPalette():new( nQt_color ) - oPalette := QPalette():new( pQPalette ) - oPalette := QPalette():new( pQColorButton, pQColorWindow ) - /* TODO - * oPalette := QPalette():new( pQBrush_windowText, pQBrush_button, pQBrush_light, pQBrush_dark, ; - * pQBrush_mid, pQBrush_text, pQBrush_bright_text, pQBrush_base, ; - * pQBrush_window ) - */ - - $TESTS$ - - $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/TQPalette.prg - C++ wrappers : contrib/hbqt/qtgui/QPalette.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPalette() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPalette.prg + * C++ wrappers : contrib/hbqt/qtgui/QPalette.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPalette():new( ... ) + * QPalette():from( pPtr_OR_oObj_of_type_QPalette ) + * QPalette():configure( pPtr_OR_oObj_of_type_QPalette ) + * $METHODS$ + * :alternateBase() -> pQBrush + * :base() -> pQBrush + * :brightText() -> pQBrush + * :brush( nGroup, nRole ) -> pQBrush + * :brush_1( nRole ) -> pQBrush + * :button() -> pQBrush + * :buttonText() -> pQBrush + * :cacheKey() -> nQint64 + * :color( nGroup, nRole ) -> pQColor + * :color_1( nRole ) -> pQColor + * :currentColorGroup() -> nColorGroup + * :dark() -> pQBrush + * :highlight() -> pQBrush + * :highlightedText() -> pQBrush + * :isBrushSet( nCg, nCr ) -> lBool + * :isCopyOf( pP ) -> lBool + * :isEqual( nCg1, nCg2 ) -> lBool + * :light() -> pQBrush + * :link() -> pQBrush + * :linkVisited() -> pQBrush + * :mid() -> pQBrush + * :midlight() -> pQBrush + * :setBrush( nRole, pBrush ) -> NIL + * :setBrush_1( nGroup, nRole, pBrush ) -> NIL + * :setColor( nRole, pColor ) -> NIL + * :setColor_1( nGroup, nRole, pColor ) -> NIL + * :setColorGroup( nCg, pWindowText, pButton, pLight, pDark, pMid, pText, pBright_text, pBase, pWindow ) -> NIL + * :setCurrentColorGroup( nCg ) -> NIL + * :shadow() -> pQBrush + * :text() -> pQBrush + * :toolTipBase() -> pQBrush + * :toolTipText() -> pQBrush + * :window() -> pQBrush + * :windowText() -> pQBrush + * + * $RETURNS$ + * An instance of the object of type QPalette + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oPalette := QPalette():new() + * oPalette := QPalette():new( nQt_color ) + * oPalette := QPalette():new( pQPalette ) + * oPalette := QPalette():new( pQColorButton, pQColorWindow ) + * /* TODO + * * oPalette := QPalette():new( pQBrush_windowText, pQBrush_button, pQBrush_light, pQBrush_dark, ; + * * pQBrush_mid, pQBrush_text, pQBrush_bright_text, pQBrush_base, ; + * * pQBrush_window ) + * */ + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QPalette object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpalette.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpen.txt b/harbour/contrib/hbqt/doc/en/class_qpen.txt index c790aa0c21..33b3b42b33 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpen.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpen.txt @@ -1,84 +1,82 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPen() - $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 - :color() -> pQColor - :dashOffset() -> nQreal - :isCosmetic() -> lBool - :isSolid() -> lBool - :joinStyle() -> nQt::PenJoinStyle - :miterLimit() -> nQreal - :setBrush( pBrush ) -> NIL - :setCapStyle( nStyle ) -> NIL - :setColor( pColor ) -> NIL - :setCosmetic( lCosmetic ) -> NIL - :setDashOffset( nOffset ) -> NIL - :setJoinStyle( nStyle ) -> NIL - :setMiterLimit( nLimit ) -> NIL - :setStyle( nStyle ) -> NIL - :setWidth( nWidth ) -> NIL - :setWidthF( nWidth ) -> NIL - :style() -> nQt::PenStyle - :width() -> nInt - :widthF() -> nQreal - - $DESCRIPTION$ - - $EXAMPLES$ - oPen := QPen():new() - oPen := QPen():new( pQPen_other ) - oPen := QPen():new( nQt_PenStyle ) - oPen := QPen():new( "QColor", pQColor ) - oPen := QPen():new( pQBrush, nWidth, [ nQt_PenStyle = Qt_SolidLine ], ; - [ nQt_CapStyle = Qt_SquareCap ], ; - [ nQt_PenJointStyle = Qt_BevelJoin ] ) - /* TODO - * oPen := QPen():new( pQPen ) - */ - - $TESTS$ - - $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/TQPen.prg - C++ wrappers : contrib/hbqt/qtgui/QPen.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPen() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPen.prg + * C++ wrappers : contrib/hbqt/qtgui/QPen.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPen():new( ... ) + * QPen():from( pPtr_OR_oObj_of_type_QPen ) + * QPen():configure( pPtr_OR_oObj_of_type_QPen ) + * $METHODS$ + * :brush() -> pQBrush + * :capStyle() -> nQt::PenCapStyle + * :color() -> pQColor + * :dashOffset() -> nQreal + * :isCosmetic() -> lBool + * :isSolid() -> lBool + * :joinStyle() -> nQt::PenJoinStyle + * :miterLimit() -> nQreal + * :setBrush( pBrush ) -> NIL + * :setCapStyle( nStyle ) -> NIL + * :setColor( pColor ) -> NIL + * :setCosmetic( lCosmetic ) -> NIL + * :setDashOffset( nOffset ) -> NIL + * :setJoinStyle( nStyle ) -> NIL + * :setMiterLimit( nLimit ) -> NIL + * :setStyle( nStyle ) -> NIL + * :setWidth( nWidth ) -> NIL + * :setWidthF( nWidth ) -> NIL + * :style() -> nQt::PenStyle + * :width() -> nInt + * :widthF() -> nQreal + * + * $RETURNS$ + * An instance of the object of type QPen + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oPen := QPen():new() + * oPen := QPen():new( pQPen_other ) + * oPen := QPen():new( nQt_PenStyle ) + * oPen := QPen():new( "QColor", pQColor ) + * oPen := QPen():new( pQBrush, nWidth, [ nQt_PenStyle = Qt_SolidLine ], ; + * [ nQt_CapStyle = Qt_SquareCap ], ; + * [ nQt_PenJointStyle = Qt_BevelJoin ] ) + * /* TODO + * * oPen := QPen():new( pQPen ) + * */ + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QPen object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpen.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpicture.txt b/harbour/contrib/hbqt/doc/en/class_qpicture.txt index b0bebbdc28..cbf11bf725 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpicture.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpicture.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPicture() - $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 - :isNull() -> lBool - :load( cFileName, pFormat ) -> lBool - :load_1( pDev, pFormat ) -> lBool - :play( pPainter ) -> lBool - :save( cFileName, pFormat ) -> lBool - :save_1( pDev, pFormat ) -> lBool - :setBoundingRect( pR ) -> NIL - :setData( pData, nSize ) -> NIL - :size() -> nUint - - $DESCRIPTION$ - - $EXAMPLES$ - oPicture := QPicture():new() - oPicture := QPicture():new( nFormatVersion ) - oPicture := QPicture():new( pQPicture ) - - $TESTS$ - - $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/TQPicture.prg - C++ wrappers : contrib/hbqt/qtgui/QPicture.cpp - Library : hbqtgui - $SEEALSO$ - QPaintDevice - $END$ + * $NAME$ + * QPicture() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPicture.prg + * C++ wrappers : contrib/hbqt/qtgui/QPicture.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPicture():new( ... ) + * QPicture():from( pPtr_OR_oObj_of_type_QPicture ) + * QPicture():configure( pPtr_OR_oObj_of_type_QPicture ) + * $METHODS$ + * :boundingRect() -> pQRect + * :data() -> cChar + * :isNull() -> lBool + * :load( cFileName, pFormat ) -> lBool + * :load_1( pDev, pFormat ) -> lBool + * :play( pPainter ) -> lBool + * :save( cFileName, pFormat ) -> lBool + * :save_1( pDev, pFormat ) -> lBool + * :setBoundingRect( pR ) -> NIL + * :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 + * $EXAMPLES$ + * oPicture := QPicture():new() + * oPicture := QPicture():new( nFormatVersion ) + * oPicture := QPicture():new( pQPicture ) + * + * $INHERITS$ + * QPaintDevice + * $ONELINER$ + * Creates a new QPicture object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpicture.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpixmap.txt b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt index 5285ecbca6..60446ae902 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpixmap.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt @@ -1,85 +1,83 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPixmap() - $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 - :createMaskFromColor( pMaskColor, nMode ) -> pQBitmap - :createMaskFromColor_1( pMaskColor ) -> pQBitmap - :depth() -> nInt - :detach() -> NIL - :fill( pColor ) -> NIL - :fill_1( pWidget, pOffset ) -> NIL - :fill_2( pWidget, nX, nY ) -> NIL - :hasAlpha() -> lBool - :hasAlphaChannel() -> lBool - :height() -> nInt - :isNull() -> lBool - :isQBitmap() -> lBool - :load( cFileName, pFormat, nFlags ) -> lBool - :loadFromData( pData, pFormat, nFlags ) -> lBool - :mask() -> pQBitmap - :rect() -> pQRect - :save( cFileName, pFormat, nQuality ) -> lBool - :save_1( pDevice, pFormat, nQuality ) -> lBool - :setAlphaChannel( pAlphaChannel ) -> NIL - :setMask( pMask ) -> NIL - :size() -> pQSize - :toImage() -> pQImage - :width() -> nInt - :defaultDepth() -> nInt - :trueMatrix( pMatrix, nWidth, nHeight ) -> pQTransform - :trueMatrix_1( pM, nW, nH ) -> pQMatrix - - $DESCRIPTION$ - - $EXAMPLES$ - oPixmap := QPixmap():new() - oPixmap := QPixmap():new( nWidth, nHeight ) - oPixmap := QPixmap():new( cImageFilename ) - oPixmap := QPixmap():new( pQPixmap ) - - $TESTS$ - - $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/TQPixmap.prg - C++ wrappers : contrib/hbqt/qtgui/QPixmap.cpp - Library : hbqtgui - $SEEALSO$ - QPaintDevice - $END$ + * $NAME$ + * QPixmap() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPixmap.prg + * C++ wrappers : contrib/hbqt/qtgui/QPixmap.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPixmap():new( ... ) + * QPixmap():from( pPtr_OR_oObj_of_type_QPixmap ) + * QPixmap():configure( pPtr_OR_oObj_of_type_QPixmap ) + * $METHODS$ + * :cacheKey() -> nQint64 + * :createHeuristicMask( lClipTight ) -> pQBitmap + * :createMaskFromColor( pMaskColor, nMode ) -> pQBitmap + * :createMaskFromColor_1( pMaskColor ) -> pQBitmap + * :depth() -> nInt + * :detach() -> NIL + * :fill( pColor ) -> NIL + * :fill_1( pWidget, pOffset ) -> NIL + * :fill_2( pWidget, nX, nY ) -> NIL + * :hasAlpha() -> lBool + * :hasAlphaChannel() -> lBool + * :height() -> nInt + * :isNull() -> lBool + * :isQBitmap() -> lBool + * :load( cFileName, pFormat, nFlags ) -> lBool + * :loadFromData( pData, pFormat, nFlags ) -> lBool + * :mask() -> pQBitmap + * :rect() -> pQRect + * :save( cFileName, pFormat, nQuality ) -> lBool + * :save_1( pDevice, pFormat, nQuality ) -> lBool + * :setAlphaChannel( pAlphaChannel ) -> NIL + * :setMask( pMask ) -> NIL + * :size() -> pQSize + * :toImage() -> pQImage + * :width() -> nInt + * :defaultDepth() -> nInt + * :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 + * $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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpixmap.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt index 88a96f722e..dc51781702 100644 --- a/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPlainTextDocumentLayout() - $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 - - $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/TQPlainTextDocumentLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractTextDocumentLayout - $END$ + * $NAME$ + * QPlainTextDocumentLayout() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPlainTextDocumentLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPlainTextDocumentLayout():new( ... ) + * QPlainTextDocumentLayout():from( pPtr_OR_oObj_of_type_QPlainTextDocumentLayout ) + * QPlainTextDocumentLayout():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt index 808ede6cdc..9ae17252e3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt @@ -1,110 +1,108 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPlainTextEdit() - $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 - :canPaste() -> lBool - :centerOnScroll() -> lBool - :createStandardContextMenu() -> pQMenu - :currentCharFormat() -> pQTextCharFormat - :cursorForPosition( pPos ) -> pQTextCursor - :cursorRect( pCursor ) -> pQRect - :cursorRect_1() -> pQRect - :cursorWidth() -> nInt - :document() -> pQTextDocument - :documentTitle() -> cQString - :ensureCursorVisible() -> NIL - :find( cExp, nOptions ) -> lBool - :isReadOnly() -> lBool - :isUndoRedoEnabled() -> lBool - :lineWrapMode() -> nLineWrapMode - :loadResource( nType, pName ) -> pQVariant - :maximumBlockCount() -> nInt - :mergeCurrentCharFormat( pModifier ) -> NIL - :moveCursor( nOperation, nMode ) -> NIL - :overwriteMode() -> lBool - :print( pPrinter ) -> NIL - :setBackgroundVisible( lVisible ) -> NIL - :setCenterOnScroll( lEnabled ) -> NIL - :setCurrentCharFormat( pFormat ) -> NIL - :setCursorWidth( nWidth ) -> NIL - :setDocument( pDocument ) -> NIL - :setDocumentTitle( cTitle ) -> NIL - :setLineWrapMode( nMode ) -> NIL - :setMaximumBlockCount( nMaximum ) -> NIL - :setOverwriteMode( lOverwrite ) -> NIL - :setReadOnly( lRo ) -> NIL - :setTabChangesFocus( lB ) -> NIL - :setTabStopWidth( nWidth ) -> NIL - :setTextCursor( pCursor ) -> NIL - :setTextInteractionFlags( nFlags ) -> NIL - :setUndoRedoEnabled( lEnable ) -> NIL - :setWordWrapMode( nPolicy ) -> NIL - :tabChangesFocus() -> lBool - :tabStopWidth() -> nInt - :textCursor() -> pQTextCursor - :textInteractionFlags() -> nQt::TextInteractionFlags - :toPlainText() -> cQString - :wordWrapMode() -> nQTextOption::WrapMode - :appendHtml( cHtml ) -> NIL - :appendPlainText( cText ) -> NIL - :centerCursor() -> NIL - :clear() -> NIL - :copy() -> NIL - :cut() -> NIL - :insertPlainText( cText ) -> NIL - :paste() -> NIL - :redo() -> NIL - :selectAll() -> NIL - :setPlainText( cText ) -> NIL - :undo() -> 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/TQPlainTextEdit.prg - C++ wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractScrollArea - $END$ + * $NAME$ + * QPlainTextEdit() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPlainTextEdit.prg + * C++ wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPlainTextEdit():new( ... ) + * QPlainTextEdit():from( pPtr_OR_oObj_of_type_QPlainTextEdit ) + * QPlainTextEdit():configure( pPtr_OR_oObj_of_type_QPlainTextEdit ) + * $METHODS$ + * :backgroundVisible() -> lBool + * :blockCount() -> nInt + * :canPaste() -> lBool + * :centerOnScroll() -> lBool + * :createStandardContextMenu() -> pQMenu + * :currentCharFormat() -> pQTextCharFormat + * :cursorForPosition( pPos ) -> pQTextCursor + * :cursorRect( pCursor ) -> pQRect + * :cursorRect_1() -> pQRect + * :cursorWidth() -> nInt + * :document() -> pQTextDocument + * :documentTitle() -> cQString + * :ensureCursorVisible() -> NIL + * :find( cExp, nOptions ) -> lBool + * :isReadOnly() -> lBool + * :isUndoRedoEnabled() -> lBool + * :lineWrapMode() -> nLineWrapMode + * :loadResource( nType, pName ) -> pQVariant + * :maximumBlockCount() -> nInt + * :mergeCurrentCharFormat( pModifier ) -> NIL + * :moveCursor( nOperation, nMode ) -> NIL + * :overwriteMode() -> lBool + * :print( pPrinter ) -> NIL + * :setBackgroundVisible( lVisible ) -> NIL + * :setCenterOnScroll( lEnabled ) -> NIL + * :setCurrentCharFormat( pFormat ) -> NIL + * :setCursorWidth( nWidth ) -> NIL + * :setDocument( pDocument ) -> NIL + * :setDocumentTitle( cTitle ) -> NIL + * :setLineWrapMode( nMode ) -> NIL + * :setMaximumBlockCount( nMaximum ) -> NIL + * :setOverwriteMode( lOverwrite ) -> NIL + * :setReadOnly( lRo ) -> NIL + * :setTabChangesFocus( lB ) -> NIL + * :setTabStopWidth( nWidth ) -> NIL + * :setTextCursor( pCursor ) -> NIL + * :setTextInteractionFlags( nFlags ) -> NIL + * :setUndoRedoEnabled( lEnable ) -> NIL + * :setWordWrapMode( nPolicy ) -> NIL + * :tabChangesFocus() -> lBool + * :tabStopWidth() -> nInt + * :textCursor() -> pQTextCursor + * :textInteractionFlags() -> nQt::TextInteractionFlags + * :toPlainText() -> cQString + * :wordWrapMode() -> nQTextOption::WrapMode + * :appendHtml( cHtml ) -> NIL + * :appendPlainText( cText ) -> NIL + * :centerCursor() -> NIL + * :clear() -> NIL + * :copy() -> NIL + * :cut() -> NIL + * :insertPlainText( cText ) -> NIL + * :paste() -> NIL + * :redo() -> NIL + * :selectAll() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpoint.txt b/harbour/contrib/hbqt/doc/en/class_qpoint.txt index 08d3e6c947..fe80eb5977 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpoint.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpoint.txt @@ -1,64 +1,62 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPoint() - $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 - :rx() -> nInt - :ry() -> nInt - :setX( nX ) -> NIL - :setY( nY ) -> NIL - :x() -> nInt - :y() -> nInt - - $DESCRIPTION$ - - $EXAMPLES$ - oPoint := QPoint():new() - oPoint := QPoint():new( nX, nY ) - oPoint := QPoint():new( pQPoint ) - - $TESTS$ - - $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/TQPoint.prg - C++ wrappers : contrib/hbqt/qtcore/QPoint.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QPoint() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQPoint.prg + * C++ wrappers : contrib/hbqt/qtcore/QPoint.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPoint():new( ... ) + * QPoint():from( pPtr_OR_oObj_of_type_QPoint ) + * QPoint():configure( pPtr_OR_oObj_of_type_QPoint ) + * $METHODS$ + * :isNull() -> lBool + * :manhattanLength() -> nInt + * :rx() -> nInt + * :ry() -> nInt + * :setX( nX ) -> NIL + * :setY( nY ) -> NIL + * :x() -> nInt + * :y() -> nInt + * + * $RETURNS$ + * An instance of the object of type QPoint + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oPoint := QPoint():new() + * oPoint := QPoint():new( nX, nY ) + * oPoint := QPoint():new( pQPoint ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QPoint object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpoint.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpointf.txt b/harbour/contrib/hbqt/doc/en/class_qpointf.txt index a59cce9f5c..5642f9ae7c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpointf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpointf.txt @@ -1,64 +1,62 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPointF() - $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 - :ry() -> nQreal - :setX( nX ) -> NIL - :setY( nY ) -> NIL - :toPoint() -> pQPoint - :x() -> nQreal - :y() -> nQreal - - $DESCRIPTION$ - - $EXAMPLES$ - oPointF := QPointF():new() - oPointF := QPointF():new( nX, nY ) - oPointF := QPointF():new( pQPoint ) - - $TESTS$ - - $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/TQPointF.prg - C++ wrappers : contrib/hbqt/qtcore/QPointF.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QPointF() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQPointF.prg + * C++ wrappers : contrib/hbqt/qtcore/QPointF.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPointF():new( ... ) + * QPointF():from( pPtr_OR_oObj_of_type_QPointF ) + * QPointF():configure( pPtr_OR_oObj_of_type_QPointF ) + * $METHODS$ + * :isNull() -> lBool + * :rx() -> nQreal + * :ry() -> nQreal + * :setX( nX ) -> NIL + * :setY( nY ) -> NIL + * :toPoint() -> pQPoint + * :x() -> nQreal + * :y() -> nQreal + * + * $RETURNS$ + * An instance of the object of type QPointF + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oPointF := QPointF():new() + * oPointF := QPointF():new( nX, nY ) + * oPointF := QPointF():new( pQPoint ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QPointF object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qpointf.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpolygon.txt b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt index bcea489d07..c4978a0d4f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpolygon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPolygon() - $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 - :point( nIndex, @nX, @nY ) -> NIL - :point_1( nIndex ) -> pQPoint - :putPoints( nIndex, nNPoints, pFromPolygon, nFromIndex ) -> NIL - :setPoint( nIndex, nX, nY ) -> NIL - :setPoint_1( nIndex, pPoint ) -> NIL - :setPoints( nNPoints, @nPoints ) -> NIL - :translate( nDx, nDy ) -> NIL - :translate_1( pOffset ) -> 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/TQPolygon.prg - C++ wrappers : contrib/hbqt/qtgui/QPolygon.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPolygon() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPolygon.prg + * C++ wrappers : contrib/hbqt/qtgui/QPolygon.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPolygon():new( ... ) + * QPolygon():from( pPtr_OR_oObj_of_type_QPolygon ) + * QPolygon():configure( pPtr_OR_oObj_of_type_QPolygon ) + * $METHODS$ + * :boundingRect() -> pQRect + * :containsPoint( pPoint, nFillRule ) -> lBool + * :point( nIndex, @nX, @nY ) -> NIL + * :point_1( nIndex ) -> pQPoint + * :putPoints( nIndex, nNPoints, pFromPolygon, nFromIndex ) -> NIL + * :setPoint( nIndex, nX, nY ) -> NIL + * :setPoint_1( nIndex, pPoint ) -> NIL + * :setPoints( nNPoints, @nPoints ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt index 8fffa0396d..045c957fd6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPolygonF() - $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 - :isClosed() -> lBool - :toPolygon() -> pQPolygon - :translate( pOffset ) -> NIL - :translate_1( nDx, nDy ) -> 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/TQPolygonF.prg - C++ wrappers : contrib/hbqt/qtgui/QPolygonF.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPolygonF() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPolygonF.prg + * C++ wrappers : contrib/hbqt/qtgui/QPolygonF.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPolygonF():new( ... ) + * QPolygonF():from( pPtr_OR_oObj_of_type_QPolygonF ) + * QPolygonF():configure( pPtr_OR_oObj_of_type_QPolygonF ) + * $METHODS$ + * :boundingRect() -> pQRectF + * :containsPoint( pPoint, nFillRule ) -> lBool + * :isClosed() -> lBool + * :toPolygon() -> pQPolygon + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt index 0b0a8d97ee..962e295eb2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt @@ -1,62 +1,60 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPrintDialog() - $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 - :options() -> nPrintDialogOptions - :printer() -> pQPrinter - :printer_1() -> pQPrinter - :setOption( nOption, lOn ) -> NIL - :setOptions( nOptions ) -> NIL - :setVisible( lVisible ) -> NIL - :testOption( nOption ) -> 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/TQPrintDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractPrintDialog - $END$ + * $NAME$ + * QPrintDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPrintDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPrintDialog():new( ... ) + * QPrintDialog():from( pPtr_OR_oObj_of_type_QPrintDialog ) + * QPrintDialog():configure( pPtr_OR_oObj_of_type_QPrintDialog ) + * $METHODS$ + * :done( nResult ) -> NIL + * :open( pReceiver, pMember ) -> NIL + * :options() -> nPrintDialogOptions + * :printer() -> pQPrinter + * :printer_1() -> pQPrinter + * :setOption( nOption, lOn ) -> NIL + * :setOptions( nOptions ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintengine.txt b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt index 383355f0fb..7fade339f4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintengine.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPrintEngine() - $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 - :newPage() -> lBool - :printerState() -> nQPrinter::PrinterState - :property( nKey ) -> pQVariant - :setProperty( nKey, pValue ) -> 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/TQPrintEngine.prg - C++ wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QPrintEngine() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPrintEngine.prg + * C++ wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPrintEngine():new( ... ) + * QPrintEngine():from( pPtr_OR_oObj_of_type_QPrintEngine ) + * QPrintEngine():configure( pPtr_OR_oObj_of_type_QPrintEngine ) + * $METHODS$ + * :abort() -> lBool + * :metric( nId ) -> nInt + * :newPage() -> lBool + * :printerState() -> nQPrinter::PrinterState + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprinter.txt b/harbour/contrib/hbqt/doc/en/class_qprinter.txt index d0897503ef..2909faeb44 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprinter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprinter.txt @@ -1,109 +1,107 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPrinter() - $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 - :colorMode() -> nColorMode - :creator() -> cQString - :docName() -> cQString - :doubleSidedPrinting() -> lBool - :duplex() -> nDuplexMode - :fontEmbeddingEnabled() -> lBool - :fromPage() -> nInt - :fullPage() -> lBool - :getPageMargins( @nLeft, @nTop, @nRight, @nBottom, nUnit ) -> NIL - :isValid() -> lBool - :newPage() -> lBool - :numCopies() -> nInt - :orientation() -> nOrientation - :outputFileName() -> cQString - :outputFormat() -> nOutputFormat - :pageOrder() -> nPageOrder - :pageRect() -> pQRect - :pageRect_1( nUnit ) -> pQRectF - :paintEngine() -> pQPaintEngine - :paperRect() -> pQRect - :paperRect_1( nUnit ) -> pQRectF - :paperSize() -> nPaperSize - :paperSize_1( nUnit ) -> pQSizeF - :paperSource() -> nPaperSource - :printEngine() -> pQPrintEngine - :printProgram() -> cQString - :printRange() -> nPrintRange - :printerName() -> cQString - :printerState() -> nPrinterState - :resolution() -> nInt - :setCollateCopies( lCollate ) -> NIL - :setColorMode( nNewColorMode ) -> NIL - :setCreator( cCreator ) -> NIL - :setDocName( cName ) -> NIL - :setDoubleSidedPrinting( lDoubleSided ) -> NIL - :setDuplex( nDuplex ) -> NIL - :setFontEmbeddingEnabled( lEnable ) -> NIL - :setFromTo( nFrom, nTo ) -> NIL - :setFullPage( lFp ) -> NIL - :setNumCopies( nNumCopies ) -> NIL - :setOrientation( nOrientation ) -> NIL - :setOutputFileName( cFileName ) -> NIL - :setOutputFormat( nFormat ) -> NIL - :setPageMargins( nLeft, nTop, nRight, nBottom, nUnit ) -> NIL - :setPageOrder( nPageOrder ) -> NIL - :setPaperSize( nNewPaperSize ) -> NIL - :setPaperSize_1( pPaperSize, nUnit ) -> NIL - :setPaperSource( nSource ) -> NIL - :setPrintProgram( cPrintProg ) -> NIL - :setPrintRange( nRange ) -> NIL - :setPrinterName( cName ) -> NIL - :setResolution( nDpi ) -> NIL - :supportedResolutions() -> pQList - :toPage() -> 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/TQPrinter.prg - C++ wrappers : contrib/hbqt/qtgui/QPrinter.cpp - Library : hbqtgui - $SEEALSO$ - QPaintDevice - $END$ + * $NAME$ + * QPrinter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPrinter.prg + * C++ wrappers : contrib/hbqt/qtgui/QPrinter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPrinter():new( ... ) + * QPrinter():from( pPtr_OR_oObj_of_type_QPrinter ) + * QPrinter():configure( pPtr_OR_oObj_of_type_QPrinter ) + * $METHODS$ + * :abort() -> lBool + * :collateCopies() -> lBool + * :colorMode() -> nColorMode + * :creator() -> cQString + * :docName() -> cQString + * :doubleSidedPrinting() -> lBool + * :duplex() -> nDuplexMode + * :fontEmbeddingEnabled() -> lBool + * :fromPage() -> nInt + * :fullPage() -> lBool + * :getPageMargins( @nLeft, @nTop, @nRight, @nBottom, nUnit ) -> NIL + * :isValid() -> lBool + * :newPage() -> lBool + * :numCopies() -> nInt + * :orientation() -> nOrientation + * :outputFileName() -> cQString + * :outputFormat() -> nOutputFormat + * :pageOrder() -> nPageOrder + * :pageRect() -> pQRect + * :pageRect_1( nUnit ) -> pQRectF + * :paintEngine() -> pQPaintEngine + * :paperRect() -> pQRect + * :paperRect_1( nUnit ) -> pQRectF + * :paperSize() -> nPaperSize + * :paperSize_1( nUnit ) -> pQSizeF + * :paperSource() -> nPaperSource + * :printEngine() -> pQPrintEngine + * :printProgram() -> cQString + * :printRange() -> nPrintRange + * :printerName() -> cQString + * :printerState() -> nPrinterState + * :resolution() -> nInt + * :setCollateCopies( lCollate ) -> NIL + * :setColorMode( nNewColorMode ) -> NIL + * :setCreator( cCreator ) -> NIL + * :setDocName( cName ) -> NIL + * :setDoubleSidedPrinting( lDoubleSided ) -> NIL + * :setDuplex( nDuplex ) -> NIL + * :setFontEmbeddingEnabled( lEnable ) -> NIL + * :setFromTo( nFrom, nTo ) -> NIL + * :setFullPage( lFp ) -> NIL + * :setNumCopies( nNumCopies ) -> NIL + * :setOrientation( nOrientation ) -> NIL + * :setOutputFileName( cFileName ) -> NIL + * :setOutputFormat( nFormat ) -> NIL + * :setPageMargins( nLeft, nTop, nRight, nBottom, nUnit ) -> NIL + * :setPageOrder( nPageOrder ) -> NIL + * :setPaperSize( nNewPaperSize ) -> NIL + * :setPaperSize_1( pPaperSize, nUnit ) -> NIL + * :setPaperSource( nSource ) -> NIL + * :setPrintProgram( cPrintProg ) -> NIL + * :setPrintRange( nRange ) -> NIL + * :setPrinterName( cName ) -> NIL + * :setResolution( nDpi ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt index e441615e50..93ea8dace5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qprintpreviewdialog.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprocess.txt b/harbour/contrib/hbqt/doc/en/class_qprocess.txt index 9a283ad22f..28949c4ea7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprocess.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprocess.txt @@ -1,86 +1,84 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QProcess() - $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 - :closeWriteChannel() -> NIL - :environment() -> pQStringList - :error() -> nQProcess::ProcessError - :exitCode() -> nInt - :exitStatus() -> nQProcess::ExitStatus - :processChannelMode() -> nProcessChannelMode - :readAllStandardError() -> pQByteArray - :readAllStandardOutput() -> pQByteArray - :readChannel() -> nProcessChannel - :setEnvironment( pEnvironment ) -> NIL - :setProcessChannelMode( nMode ) -> NIL - :setReadChannel( nChannel ) -> NIL - :setStandardErrorFile( cFileName, nMode ) -> NIL - :setStandardInputFile( cFileName ) -> NIL - :setStandardOutputFile( cFileName, nMode ) -> NIL - :setStandardOutputProcess( pDestination ) -> NIL - :setWorkingDirectory( cDir ) -> NIL - :start( cProgram, pArguments, nMode ) -> NIL - :start_1( cProgram, nMode ) -> NIL - :state() -> nQProcess::ProcessState - :waitForFinished( nMsecs ) -> lBool - :waitForStarted( nMsecs ) -> lBool - :workingDirectory() -> cQString - :execute( cProgram, pArguments ) -> nInt - :execute_1( cProgram ) -> nInt - :startDetached( cProgram, pArguments, cWorkingDirectory, @nPid ) -> lBool - :startDetached_1( cProgram, pArguments ) -> lBool - :startDetached_2( cProgram ) -> lBool - :systemEnvironment() -> pQStringList - :kill() -> NIL - :terminate() -> 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/qtcore/TQProcess.prg - C++ wrappers : contrib/hbqt/qtcore/QProcess.cpp - Library : hbqtcore - $SEEALSO$ - QIODevice - $END$ + * $NAME$ + * QProcess() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQProcess.prg + * C++ wrappers : contrib/hbqt/qtcore/QProcess.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QProcess():new( ... ) + * QProcess():from( pPtr_OR_oObj_of_type_QProcess ) + * QProcess():configure( pPtr_OR_oObj_of_type_QProcess ) + * $METHODS$ + * :close() -> NIL + * :closeReadChannel( nChannel ) -> NIL + * :closeWriteChannel() -> NIL + * :environment() -> pQStringList + * :error() -> nQProcess::ProcessError + * :exitCode() -> nInt + * :exitStatus() -> nQProcess::ExitStatus + * :processChannelMode() -> nProcessChannelMode + * :readAllStandardError() -> pQByteArray + * :readAllStandardOutput() -> pQByteArray + * :readChannel() -> nProcessChannel + * :setEnvironment( pEnvironment ) -> NIL + * :setProcessChannelMode( nMode ) -> NIL + * :setReadChannel( nChannel ) -> NIL + * :setStandardErrorFile( cFileName, nMode ) -> NIL + * :setStandardInputFile( cFileName ) -> NIL + * :setStandardOutputFile( cFileName, nMode ) -> NIL + * :setStandardOutputProcess( pDestination ) -> NIL + * :setWorkingDirectory( cDir ) -> NIL + * :start( cProgram, pArguments, nMode ) -> NIL + * :start_1( cProgram, nMode ) -> NIL + * :state() -> nQProcess::ProcessState + * :waitForFinished( nMsecs ) -> lBool + * :waitForStarted( nMsecs ) -> lBool + * :workingDirectory() -> cQString + * :execute( cProgram, pArguments ) -> nInt + * :execute_1( cProgram ) -> nInt + * :startDetached( cProgram, pArguments, cWorkingDirectory, @nPid ) -> lBool + * :startDetached_1( cProgram, pArguments ) -> lBool + * :startDetached_2( cProgram ) -> lBool + * :systemEnvironment() -> pQStringList + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt index c041750b79..83dc40d16d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt @@ -1,74 +1,72 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QProgressBar() - $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 - :invertedAppearance() -> lBool - :isTextVisible() -> lBool - :maximum() -> nInt - :minimum() -> nInt - :orientation() -> nQt::Orientation - :setAlignment( nAlignment ) -> NIL - :setFormat( cFormat ) -> NIL - :setInvertedAppearance( lInvert ) -> NIL - :setTextDirection( nTextDirection ) -> NIL - :setTextVisible( lVisible ) -> NIL - :text() -> cQString - :textDirection() -> nQProgressBar::Direction - :value() -> nInt - :reset() -> NIL - :setMaximum( nMaximum ) -> NIL - :setMinimum( nMinimum ) -> NIL - :setOrientation( nQt::Orientation ) -> NIL - :setRange( nMinimum, nMaximum ) -> NIL - :setValue( nValue ) -> 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/TQProgressBar.prg - C++ wrappers : contrib/hbqt/qtgui/QProgressBar.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QProgressBar() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQProgressBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QProgressBar.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QProgressBar():new( ... ) + * QProgressBar():from( pPtr_OR_oObj_of_type_QProgressBar ) + * QProgressBar():configure( pPtr_OR_oObj_of_type_QProgressBar ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :format() -> cQString + * :invertedAppearance() -> lBool + * :isTextVisible() -> lBool + * :maximum() -> nInt + * :minimum() -> nInt + * :orientation() -> nQt::Orientation + * :setAlignment( nAlignment ) -> NIL + * :setFormat( cFormat ) -> NIL + * :setInvertedAppearance( lInvert ) -> NIL + * :setTextDirection( nTextDirection ) -> NIL + * :setTextVisible( lVisible ) -> NIL + * :text() -> cQString + * :textDirection() -> nQProgressBar::Direction + * :value() -> nInt + * :reset() -> NIL + * :setMaximum( nMaximum ) -> NIL + * :setMinimum( nMinimum ) -> NIL + * :setOrientation( nQt::Orientation ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt index a3d79ad53a..e9eb89d9af 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt @@ -1,77 +1,75 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QProgressDialog() - $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 - :labelText() -> cQString - :maximum() -> nInt - :minimum() -> nInt - :minimumDuration() -> nInt - :open( pReceiver, pMember ) -> NIL - :setAutoClose( lClose ) -> NIL - :setAutoReset( lReset ) -> NIL - :setBar( pBar ) -> NIL - :setCancelButton( pCancelButton ) -> NIL - :setLabel( pLabel ) -> NIL - :sizeHint() -> pQSize - :value() -> nInt - :wasCanceled() -> lBool - :cancel() -> NIL - :reset() -> NIL - :setCancelButtonText( cCancelButtonText ) -> NIL - :setLabelText( cText ) -> NIL - :setMaximum( nMaximum ) -> NIL - :setMinimum( nMinimum ) -> NIL - :setMinimumDuration( nMs ) -> NIL - :setRange( nMinimum, nMaximum ) -> NIL - :setValue( nProgress ) -> 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/TQProgressDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QProgressDialog() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQProgressDialog.prg + * C++ wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QProgressDialog():new( ... ) + * QProgressDialog():from( pPtr_OR_oObj_of_type_QProgressDialog ) + * QProgressDialog():configure( pPtr_OR_oObj_of_type_QProgressDialog ) + * $METHODS$ + * :autoClose() -> lBool + * :autoReset() -> lBool + * :labelText() -> cQString + * :maximum() -> nInt + * :minimum() -> nInt + * :minimumDuration() -> nInt + * :open( pReceiver, pMember ) -> NIL + * :setAutoClose( lClose ) -> NIL + * :setAutoReset( lReset ) -> NIL + * :setBar( pBar ) -> NIL + * :setCancelButton( pCancelButton ) -> NIL + * :setLabel( pLabel ) -> NIL + * :sizeHint() -> pQSize + * :value() -> nInt + * :wasCanceled() -> lBool + * :cancel() -> NIL + * :reset() -> NIL + * :setCancelButtonText( cCancelButtonText ) -> NIL + * :setLabelText( cText ) -> NIL + * :setMaximum( nMaximum ) -> NIL + * :setMinimum( nMinimum ) -> NIL + * :setMinimumDuration( nMs ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt index 7b34071d25..e3e9391491 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt @@ -1,62 +1,60 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QPushButton() - $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 - :isFlat() -> lBool - :menu() -> pQMenu - :setAutoDefault( lBool ) -> NIL - :setDefault( lBool ) -> NIL - :setFlat( lBool ) -> NIL - :setMenu( pMenu ) -> NIL - :showMenu() -> 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/TQPushButton.prg - C++ wrappers : contrib/hbqt/qtgui/QPushButton.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractButton - $END$ + * $NAME$ + * QPushButton() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQPushButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QPushButton.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QPushButton():new( ... ) + * QPushButton():from( pPtr_OR_oObj_of_type_QPushButton ) + * QPushButton():configure( pPtr_OR_oObj_of_type_QPushButton ) + * $METHODS$ + * :autoDefault() -> lBool + * :isDefault() -> lBool + * :isFlat() -> lBool + * :menu() -> pQMenu + * :setAutoDefault( lBool ) -> NIL + * :setDefault( lBool ) -> NIL + * :setFlat( lBool ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt index b443d7b0a6..d3c1c0ee5b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QRadialGradient() - $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 - :radius() -> nQreal - :setCenter( pCenter ) -> NIL - :setCenter_1( nX, nY ) -> NIL - :setFocalPoint( pFocalPoint ) -> NIL - :setFocalPoint_1( nX, nY ) -> NIL - :setRadius( nRadius ) -> NIL - - $DESCRIPTION$ - - $EXAMPLES$ - oRadialGradient := QRadialGradient():new() - oRadialGradient := QRadialGradient():new( pQRadialGradient ) - oRadialGradient := QRadialGradient():new( pQPointF_center, nRadius ) - oRadialGradient := QRadialGradient():new( pQPointF_center, nRadius, pQPointF_focalPoint ) - oRadialGradient := QRadialGradient():new( nCx, nCy, nRadius, nFx, nFy ) - - $TESTS$ - - $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/TQRadialGradient.prg - C++ wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp - Library : hbqtgui - $SEEALSO$ - QGradient - $END$ + * $NAME$ + * QRadialGradient() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQRadialGradient.prg + * C++ wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QRadialGradient():new( ... ) + * QRadialGradient():from( pPtr_OR_oObj_of_type_QRadialGradient ) + * QRadialGradient():configure( pPtr_OR_oObj_of_type_QRadialGradient ) + * $METHODS$ + * :center() -> pQPointF + * :focalPoint() -> pQPointF + * :radius() -> nQreal + * :setCenter( pCenter ) -> NIL + * :setCenter_1( nX, nY ) -> NIL + * :setFocalPoint( pFocalPoint ) -> NIL + * :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 + * $EXAMPLES$ + * oRadialGradient := QRadialGradient():new() + * oRadialGradient := QRadialGradient():new( pQRadialGradient ) + * oRadialGradient := QRadialGradient():new( pQPointF_center, nRadius ) + * 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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qradialgradient.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qrect.txt b/harbour/contrib/hbqt/doc/en/class_qrect.txt index d5757b8655..d98d684fdd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qrect.txt +++ b/harbour/contrib/hbqt/doc/en/class_qrect.txt @@ -1,114 +1,112 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QRect() - $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 - :bottomLeft() -> pQPoint - :bottomRight() -> pQPoint - :center() -> pQPoint - :contains( pPoint, lProper ) -> lBool - :contains_1( nX, nY, lProper ) -> lBool - :contains_2( nX, nY ) -> lBool - :contains_3( pRectangle, lProper ) -> lBool - :getCoords( @nX1, @nY1, @nX2, @nY2 ) -> NIL - :getRect( @nX, @nY, @nWidth, @nHeight ) -> NIL - :height() -> nInt - :intersects( pRectangle ) -> lBool - :isEmpty() -> lBool - :isNull() -> lBool - :isValid() -> lBool - :left() -> nInt - :moveBottom( nY ) -> NIL - :moveBottomLeft( pPosition ) -> NIL - :moveBottomRight( pPosition ) -> NIL - :moveCenter( pPosition ) -> NIL - :moveLeft( nX ) -> NIL - :moveRight( nX ) -> NIL - :moveTo( nX, nY ) -> NIL - :moveTo_1( pPosition ) -> NIL - :moveTop( nY ) -> NIL - :moveTopLeft( pPosition ) -> NIL - :moveTopRight( pPosition ) -> NIL - :right() -> nInt - :setBottom( nY ) -> NIL - :setBottomLeft( pPosition ) -> NIL - :setBottomRight( pPosition ) -> NIL - :setCoords( nX1, nY1, nX2, nY2 ) -> NIL - :setHeight( nHeight ) -> NIL - :setLeft( nX ) -> NIL - :setRect( nX, nY, nWidth, nHeight ) -> NIL - :setRight( nX ) -> NIL - :setSize( pSize ) -> NIL - :setTop( nY ) -> NIL - :setTopLeft( pPosition ) -> NIL - :setTopRight( pPosition ) -> NIL - :setWidth( nWidth ) -> NIL - :setX( nX ) -> NIL - :setY( nY ) -> NIL - :size() -> pQSize - :top() -> nInt - :topLeft() -> pQPoint - :topRight() -> pQPoint - :translate( nDx, nDy ) -> NIL - :translate_1( pOffset ) -> NIL - :width() -> nInt - :x() -> nInt - :y() -> nInt - - $DESCRIPTION$ - - $EXAMPLES$ - oRect := QRect():new() - oRect := QRect():new( pQRect_other ) - oRect := QRect():new( pQPoint_topLeft, pQPoint_bottomRight ) - oRect := QRect():new( nX, nY, nWidth, nHeight ) - /* TODO: - * - * oRect := QRect():new( pQPoint_topLeft, pQSize_size ) - */ - - $TESTS$ - - $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/TQRect.prg - C++ wrappers : contrib/hbqt/qtcore/QRect.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QRect() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQRect.prg + * C++ wrappers : contrib/hbqt/qtcore/QRect.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QRect():new( ... ) + * QRect():from( pPtr_OR_oObj_of_type_QRect ) + * QRect():configure( pPtr_OR_oObj_of_type_QRect ) + * $METHODS$ + * :adjust( nDx1, nDy1, nDx2, nDy2 ) -> NIL + * :bottom() -> nInt + * :bottomLeft() -> pQPoint + * :bottomRight() -> pQPoint + * :center() -> pQPoint + * :contains( pPoint, lProper ) -> lBool + * :contains_1( nX, nY, lProper ) -> lBool + * :contains_2( nX, nY ) -> lBool + * :contains_3( pRectangle, lProper ) -> lBool + * :getCoords( @nX1, @nY1, @nX2, @nY2 ) -> NIL + * :getRect( @nX, @nY, @nWidth, @nHeight ) -> NIL + * :height() -> nInt + * :intersects( pRectangle ) -> lBool + * :isEmpty() -> lBool + * :isNull() -> lBool + * :isValid() -> lBool + * :left() -> nInt + * :moveBottom( nY ) -> NIL + * :moveBottomLeft( pPosition ) -> NIL + * :moveBottomRight( pPosition ) -> NIL + * :moveCenter( pPosition ) -> NIL + * :moveLeft( nX ) -> NIL + * :moveRight( nX ) -> NIL + * :moveTo( nX, nY ) -> NIL + * :moveTo_1( pPosition ) -> NIL + * :moveTop( nY ) -> NIL + * :moveTopLeft( pPosition ) -> NIL + * :moveTopRight( pPosition ) -> NIL + * :right() -> nInt + * :setBottom( nY ) -> NIL + * :setBottomLeft( pPosition ) -> NIL + * :setBottomRight( pPosition ) -> NIL + * :setCoords( nX1, nY1, nX2, nY2 ) -> NIL + * :setHeight( nHeight ) -> NIL + * :setLeft( nX ) -> NIL + * :setRect( nX, nY, nWidth, nHeight ) -> NIL + * :setRight( nX ) -> NIL + * :setSize( pSize ) -> NIL + * :setTop( nY ) -> NIL + * :setTopLeft( pPosition ) -> NIL + * :setTopRight( pPosition ) -> NIL + * :setWidth( nWidth ) -> NIL + * :setX( nX ) -> NIL + * :setY( nY ) -> NIL + * :size() -> pQSize + * :top() -> nInt + * :topLeft() -> pQPoint + * :topRight() -> pQPoint + * :translate( nDx, nDy ) -> NIL + * :translate_1( pOffset ) -> NIL + * :width() -> nInt + * :x() -> nInt + * :y() -> nInt + * + * $RETURNS$ + * An instance of the object of type QRect + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oRect := QRect():new() + * oRect := QRect():new( pQRect_other ) + * oRect := QRect():new( pQPoint_topLeft, pQPoint_bottomRight ) + * oRect := QRect():new( nX, nY, nWidth, nHeight ) + * /* TODO: + * * + * * oRect := QRect():new( pQPoint_topLeft, pQSize_size ) + * */ + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QRect object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qrect.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qrectf.txt b/harbour/contrib/hbqt/doc/en/class_qrectf.txt index ae10f02ec5..14d05ae33a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qrectf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qrectf.txt @@ -1,115 +1,113 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QRectF() - $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 - :bottomLeft() -> pQPointF - :bottomRight() -> pQPointF - :center() -> pQPointF - :contains( pPoint ) -> lBool - :contains_1( nX, nY ) -> lBool - :contains_2( pRectangle ) -> lBool - :getCoords( @nX1, @nY1, @nX2, @nY2 ) -> NIL - :getRect( @nX, @nY, @nWidth, @nHeight ) -> NIL - :height() -> nQreal - :intersects( pRectangle ) -> lBool - :isEmpty() -> lBool - :isNull() -> lBool - :isValid() -> lBool - :left() -> nQreal - :moveBottom( nY ) -> NIL - :moveBottomLeft( pPosition ) -> NIL - :moveBottomRight( pPosition ) -> NIL - :moveCenter( pPosition ) -> NIL - :moveLeft( nX ) -> NIL - :moveRight( nX ) -> NIL - :moveTo( nX, nY ) -> NIL - :moveTo_1( pPosition ) -> NIL - :moveTop( nY ) -> NIL - :moveTopLeft( pPosition ) -> NIL - :moveTopRight( pPosition ) -> NIL - :right() -> nQreal - :setBottom( nY ) -> NIL - :setBottomLeft( pPosition ) -> NIL - :setBottomRight( pPosition ) -> NIL - :setCoords( nX1, nY1, nX2, nY2 ) -> NIL - :setHeight( nHeight ) -> NIL - :setLeft( nX ) -> NIL - :setRect( nX, nY, nWidth, nHeight ) -> NIL - :setRight( nX ) -> NIL - :setSize( pSize ) -> NIL - :setTop( nY ) -> NIL - :setTopLeft( pPosition ) -> NIL - :setTopRight( pPosition ) -> NIL - :setWidth( nWidth ) -> NIL - :setX( nX ) -> NIL - :setY( nY ) -> NIL - :size() -> pQSizeF - :toAlignedRect() -> pQRect - :toRect() -> pQRect - :top() -> nQreal - :topLeft() -> pQPointF - :topRight() -> pQPointF - :translate( nDx, nDy ) -> NIL - :translate_1( pOffset ) -> NIL - :width() -> nQreal - :x() -> nQreal - :y() -> nQreal - - $DESCRIPTION$ - - $EXAMPLES$ - oRectF := QRectF():new() - oRectF := QRectF():new( pQRectF_other ) - oRectF := QRectF():new( pQPoint_topLeft, pQPoint_bottomRight ) - oRectF := QRectF():new( nX, nY, nWidth, nHeight ) - /* TODO: - * - * oRect := QRectF():new( pQPoint_topLeft, pQSize_size ) - */ - - $TESTS$ - - $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/TQRectF.prg - C++ wrappers : contrib/hbqt/qtcore/QRectF.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QRectF() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQRectF.prg + * C++ wrappers : contrib/hbqt/qtcore/QRectF.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QRectF():new( ... ) + * QRectF():from( pPtr_OR_oObj_of_type_QRectF ) + * QRectF():configure( pPtr_OR_oObj_of_type_QRectF ) + * $METHODS$ + * :adjust( nDx1, nDy1, nDx2, nDy2 ) -> NIL + * :bottom() -> nQreal + * :bottomLeft() -> pQPointF + * :bottomRight() -> pQPointF + * :center() -> pQPointF + * :contains( pPoint ) -> lBool + * :contains_1( nX, nY ) -> lBool + * :contains_2( pRectangle ) -> lBool + * :getCoords( @nX1, @nY1, @nX2, @nY2 ) -> NIL + * :getRect( @nX, @nY, @nWidth, @nHeight ) -> NIL + * :height() -> nQreal + * :intersects( pRectangle ) -> lBool + * :isEmpty() -> lBool + * :isNull() -> lBool + * :isValid() -> lBool + * :left() -> nQreal + * :moveBottom( nY ) -> NIL + * :moveBottomLeft( pPosition ) -> NIL + * :moveBottomRight( pPosition ) -> NIL + * :moveCenter( pPosition ) -> NIL + * :moveLeft( nX ) -> NIL + * :moveRight( nX ) -> NIL + * :moveTo( nX, nY ) -> NIL + * :moveTo_1( pPosition ) -> NIL + * :moveTop( nY ) -> NIL + * :moveTopLeft( pPosition ) -> NIL + * :moveTopRight( pPosition ) -> NIL + * :right() -> nQreal + * :setBottom( nY ) -> NIL + * :setBottomLeft( pPosition ) -> NIL + * :setBottomRight( pPosition ) -> NIL + * :setCoords( nX1, nY1, nX2, nY2 ) -> NIL + * :setHeight( nHeight ) -> NIL + * :setLeft( nX ) -> NIL + * :setRect( nX, nY, nWidth, nHeight ) -> NIL + * :setRight( nX ) -> NIL + * :setSize( pSize ) -> NIL + * :setTop( nY ) -> NIL + * :setTopLeft( pPosition ) -> NIL + * :setTopRight( pPosition ) -> NIL + * :setWidth( nWidth ) -> NIL + * :setX( nX ) -> NIL + * :setY( nY ) -> NIL + * :size() -> pQSizeF + * :toAlignedRect() -> pQRect + * :toRect() -> pQRect + * :top() -> nQreal + * :topLeft() -> pQPointF + * :topRight() -> pQPointF + * :translate( nDx, nDy ) -> NIL + * :translate_1( pOffset ) -> NIL + * :width() -> nQreal + * :x() -> nQreal + * :y() -> nQreal + * + * $RETURNS$ + * An instance of the object of type QRectF + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oRectF := QRectF():new() + * oRectF := QRectF():new( pQRectF_other ) + * oRectF := QRectF():new( pQPoint_topLeft, pQPoint_bottomRight ) + * oRectF := QRectF():new( nX, nY, nWidth, nHeight ) + * /* TODO: + * * + * * oRect := QRectF():new( pQPoint_topLeft, pQSize_size ) + * */ + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QRectF object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qrectf.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qregexp.txt b/harbour/contrib/hbqt/doc/en/class_qregexp.txt index 4f9bc51e8a..0a33d42ad4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qregexp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qregexp.txt @@ -1,72 +1,70 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QRegExp() - $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 - :caseSensitivity() -> nQt::CaseSensitivity - :errorString() -> cQString - :exactMatch( cStr ) -> lBool - :indexIn( cStr, nOffset, nCaretMode ) -> nInt - :isEmpty() -> lBool - :isMinimal() -> lBool - :isValid() -> lBool - :lastIndexIn( cStr, nOffset, nCaretMode ) -> nInt - :matchedLength() -> nInt - :numCaptures() -> nInt - :pattern() -> cQString - :patternSyntax() -> nPatternSyntax - :pos( nNth ) -> nInt - :setCaseSensitivity( nCs ) -> NIL - :setMinimal( lMinimal ) -> NIL - :setPattern( cPattern ) -> NIL - :setPatternSyntax( nSyntax ) -> 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/qtcore/TQRegExp.prg - C++ wrappers : contrib/hbqt/qtcore/QRegExp.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QRegExp() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQRegExp.prg + * C++ wrappers : contrib/hbqt/qtcore/QRegExp.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QRegExp():new( ... ) + * QRegExp():from( pPtr_OR_oObj_of_type_QRegExp ) + * QRegExp():configure( pPtr_OR_oObj_of_type_QRegExp ) + * $METHODS$ + * :cap( nNth ) -> cQString + * :capturedTexts() -> pQStringList + * :caseSensitivity() -> nQt::CaseSensitivity + * :errorString() -> cQString + * :exactMatch( cStr ) -> lBool + * :indexIn( cStr, nOffset, nCaretMode ) -> nInt + * :isEmpty() -> lBool + * :isMinimal() -> lBool + * :isValid() -> lBool + * :lastIndexIn( cStr, nOffset, nCaretMode ) -> nInt + * :matchedLength() -> nInt + * :numCaptures() -> nInt + * :pattern() -> cQString + * :patternSyntax() -> nPatternSyntax + * :pos( nNth ) -> nInt + * :setCaseSensitivity( nCs ) -> NIL + * :setMinimal( lMinimal ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qregion.txt b/harbour/contrib/hbqt/doc/en/class_qregion.txt index 71ef239d5c..7f1ad30baa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qregion.txt +++ b/harbour/contrib/hbqt/doc/en/class_qregion.txt @@ -1,70 +1,68 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QRegion() - $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 - :contains_1( pR ) -> lBool - :intersects( pRegion ) -> lBool - :intersects_1( pRect ) -> lBool - :isEmpty() -> lBool - :numRects() -> nInt - :setRects( pRects, nNumber ) -> NIL - :translate( nDx, nDy ) -> NIL - :translate_1( pPoint ) -> NIL - - $DESCRIPTION$ - - $EXAMPLES$ - oRegion := QRegion():new() - oRegion := QRegion():new( pQRegion_other ) - oRegion := QRegion():new( nX, nY, nW, nH, [ nQRegion_RegionType = QRegion_Rectangle ] ) - oRegion := QRegion():new( "QPolygon", pQPolygon, [ nQt_FillRule = Qt_OddEvenFill ] ) - oRegion := QRegion():new( "QBitmap" , pQBitmap ) - oRegion := QRegion():new( "QRect" , pQRect, [ nQRegion_RegionType = QRegion_Rectangle ] ) ) - oRegion := QRegion():new( pQRect, nQRegion_RegionType ) - - $TESTS$ - - $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/TQRegion.prg - C++ wrappers : contrib/hbqt/qtgui/QRegion.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QRegion() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQRegion.prg + * C++ wrappers : contrib/hbqt/qtgui/QRegion.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QRegion():new( ... ) + * QRegion():from( pPtr_OR_oObj_of_type_QRegion ) + * QRegion():configure( pPtr_OR_oObj_of_type_QRegion ) + * $METHODS$ + * :boundingRect() -> pQRect + * :contains( pP ) -> lBool + * :contains_1( pR ) -> lBool + * :intersects( pRegion ) -> lBool + * :intersects_1( pRect ) -> lBool + * :isEmpty() -> lBool + * :numRects() -> nInt + * :setRects( pRects, nNumber ) -> NIL + * :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 + * $EXAMPLES$ + * oRegion := QRegion():new() + * oRegion := QRegion():new( pQRegion_other ) + * oRegion := QRegion():new( nX, nY, nW, nH, [ nQRegion_RegionType = QRegion_Rectangle ] ) + * oRegion := QRegion():new( "QPolygon", pQPolygon, [ nQt_FillRule = Qt_OddEvenFill ] ) + * oRegion := QRegion():new( "QBitmap" , pQBitmap ) + * 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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qregion.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt index 6ec4a8984e..a6cf5cc459 100644 --- a/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qresizeevent.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qresource.txt b/harbour/contrib/hbqt/doc/en/class_qresource.txt index 3a804d31c6..363d777c55 100644 --- a/harbour/contrib/hbqt/doc/en/class_qresource.txt +++ b/harbour/contrib/hbqt/doc/en/class_qresource.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QResource() - $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 - :fileName() -> cQString - :isCompressed() -> lBool - :isValid() -> lBool - :locale() -> pQLocale - :setFileName( cFile ) -> NIL - :setLocale( pLocale ) -> NIL - :size() -> nQint64 - :registerResource( cRccFileName, cMapRoot ) -> lBool - :registerResource_1( pRccData, cMapRoot ) -> lBool - :searchPaths() -> pQStringList - :unregisterResource( cRccFileName, cMapRoot ) -> lBool - :unregisterResource_1( pRccData, cMapRoot ) -> 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/qtcore/TQResource.prg - C++ wrappers : contrib/hbqt/qtcore/QResource.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QResource() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQResource.prg + * C++ wrappers : contrib/hbqt/qtcore/QResource.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QResource():new( ... ) + * QResource():from( pPtr_OR_oObj_of_type_QResource ) + * QResource():configure( pPtr_OR_oObj_of_type_QResource ) + * $METHODS$ + * :absoluteFilePath() -> cQString + * :data() -> pUchar + * :fileName() -> cQString + * :isCompressed() -> lBool + * :isValid() -> lBool + * :locale() -> pQLocale + * :setFileName( cFile ) -> NIL + * :setLocale( pLocale ) -> NIL + * :size() -> nQint64 + * :registerResource( cRccFileName, cMapRoot ) -> lBool + * :registerResource_1( pRccData, cMapRoot ) -> lBool + * :searchPaths() -> pQStringList + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt index e9a170875b..61f083321d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt @@ -1,62 +1,60 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QScrollArea() - $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 - :ensureWidgetVisible( pChildWidget, nXmargin, nYmargin ) -> NIL - :setAlignment( nQt::Alignment ) -> NIL - :setWidget( pWidget ) -> NIL - :setWidgetResizable( lResizable ) -> NIL - :takeWidget() -> pQWidget - :widget() -> pQWidget - :widgetResizable() -> 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/TQScrollArea.prg - C++ wrappers : contrib/hbqt/qtgui/QScrollArea.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractScrollArea - $END$ + * $NAME$ + * QScrollArea() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQScrollArea.prg + * C++ wrappers : contrib/hbqt/qtgui/QScrollArea.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QScrollArea():new( ... ) + * QScrollArea():from( pPtr_OR_oObj_of_type_QScrollArea ) + * QScrollArea():configure( pPtr_OR_oObj_of_type_QScrollArea ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :ensureVisible( nX, nY, nXmargin, nYmargin ) -> NIL + * :ensureWidgetVisible( pChildWidget, nXmargin, nYmargin ) -> NIL + * :setAlignment( nQt::Alignment ) -> NIL + * :setWidget( pWidget ) -> NIL + * :setWidgetResizable( lResizable ) -> NIL + * :takeWidget() -> pQWidget + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt index f6b899d0f7..b0d5ebef62 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt @@ -1,69 +1,67 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSessionManager() - $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 - :cancel() -> NIL - :discardCommand() -> pQStringList - :isPhase2() -> lBool - :release() -> NIL - :requestPhase2() -> NIL - :restartCommand() -> pQStringList - :restartHint() -> nRestartHint - :sessionId() -> cQString - :sessionKey() -> cQString - :setDiscardCommand( pList ) -> NIL - :setManagerProperty( cName, pValue ) -> NIL - :setManagerProperty_1( cName, cValue ) -> NIL - :setRestartCommand( pCommand ) -> NIL - :setRestartHint( nHint ) -> 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/TQSessionManager.prg - C++ wrappers : contrib/hbqt/qtgui/QSessionManager.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QSessionManager() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSessionManager.prg + * C++ wrappers : contrib/hbqt/qtgui/QSessionManager.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSessionManager():new( ... ) + * QSessionManager():from( pPtr_OR_oObj_of_type_QSessionManager ) + * QSessionManager():configure( pPtr_OR_oObj_of_type_QSessionManager ) + * $METHODS$ + * :allowsErrorInteraction() -> lBool + * :allowsInteraction() -> lBool + * :cancel() -> NIL + * :discardCommand() -> pQStringList + * :isPhase2() -> lBool + * :release() -> NIL + * :requestPhase2() -> NIL + * :restartCommand() -> pQStringList + * :restartHint() -> nRestartHint + * :sessionId() -> cQString + * :sessionKey() -> cQString + * :setDiscardCommand( pList ) -> NIL + * :setManagerProperty( cName, pValue ) -> NIL + * :setManagerProperty_1( cName, cValue ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsettings.txt b/harbour/contrib/hbqt/doc/en/class_qsettings.txt index 8f88bcb9b2..3f9120b804 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsettings.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsettings.txt @@ -1,84 +1,82 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSettings() - $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 - :beginGroup( cPrefix ) -> NIL - :beginReadArray( cPrefix ) -> nInt - :beginWriteArray( cPrefix, nSize ) -> NIL - :childGroups() -> pQStringList - :childKeys() -> pQStringList - :clear() -> NIL - :contains( cKey ) -> lBool - :endArray() -> NIL - :endGroup() -> NIL - :fallbacksEnabled() -> lBool - :fileName() -> cQString - :format() -> nFormat - :group() -> cQString - :iniCodec() -> pQTextCodec - :isWritable() -> lBool - :organizationName() -> cQString - :remove( cKey ) -> NIL - :scope() -> nScope - :setArrayIndex( nI ) -> NIL - :setFallbacksEnabled( lB ) -> NIL - :setIniCodec( pCodec ) -> NIL - :setIniCodec_1( pCodecName ) -> NIL - :setValue( cKey, pValue ) -> NIL - :status() -> nStatus - :sync() -> NIL - :value( cKey, pDefaultValue ) -> pQVariant - :defaultFormat() -> nFormat - :setDefaultFormat( nFormat ) -> NIL - :setPath( nFormat, nScope, cPath ) -> 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/qtcore/TQSettings.prg - C++ wrappers : contrib/hbqt/qtcore/QSettings.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QSettings() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQSettings.prg + * C++ wrappers : contrib/hbqt/qtcore/QSettings.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSettings():new( ... ) + * QSettings():from( pPtr_OR_oObj_of_type_QSettings ) + * QSettings():configure( pPtr_OR_oObj_of_type_QSettings ) + * $METHODS$ + * :allKeys() -> pQStringList + * :applicationName() -> cQString + * :beginGroup( cPrefix ) -> NIL + * :beginReadArray( cPrefix ) -> nInt + * :beginWriteArray( cPrefix, nSize ) -> NIL + * :childGroups() -> pQStringList + * :childKeys() -> pQStringList + * :clear() -> NIL + * :contains( cKey ) -> lBool + * :endArray() -> NIL + * :endGroup() -> NIL + * :fallbacksEnabled() -> lBool + * :fileName() -> cQString + * :format() -> nFormat + * :group() -> cQString + * :iniCodec() -> pQTextCodec + * :isWritable() -> lBool + * :organizationName() -> cQString + * :remove( cKey ) -> NIL + * :scope() -> nScope + * :setArrayIndex( nI ) -> NIL + * :setFallbacksEnabled( lB ) -> NIL + * :setIniCodec( pCodec ) -> NIL + * :setIniCodec_1( pCodecName ) -> NIL + * :setValue( cKey, pValue ) -> NIL + * :status() -> nStatus + * :sync() -> NIL + * :value( cKey, pDefaultValue ) -> pQVariant + * :defaultFormat() -> nFormat + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt index 56f19187e1..067c5dbeed 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt @@ -1,64 +1,62 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSignalMapper() - $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 - :mapping_2( pWidget ) -> pQObject - :mapping_3( pObject ) -> pQObject - :removeMappings( pSender ) -> NIL - :setMapping( pSender, nId ) -> NIL - :setMapping_1( pSender, cText ) -> NIL - :setMapping_2( pSender, pWidget ) -> NIL - :setMapping_3( pSender, pObject ) -> NIL - :map() -> NIL - :map_1( pSender ) -> 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/qtcore/TQSignalMapper.prg - C++ wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QSignalMapper() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQSignalMapper.prg + * C++ wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSignalMapper():new( ... ) + * QSignalMapper():from( pPtr_OR_oObj_of_type_QSignalMapper ) + * QSignalMapper():configure( pPtr_OR_oObj_of_type_QSignalMapper ) + * $METHODS$ + * :mapping( nId ) -> pQObject + * :mapping_1( cId ) -> pQObject + * :mapping_2( pWidget ) -> pQObject + * :mapping_3( pObject ) -> pQObject + * :removeMappings( pSender ) -> NIL + * :setMapping( pSender, nId ) -> NIL + * :setMapping_1( pSender, cText ) -> NIL + * :setMapping_2( pSender, pWidget ) -> NIL + * :setMapping_3( pSender, pObject ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsize.txt b/harbour/contrib/hbqt/doc/en/class_qsize.txt index b1ce746fb8..40ce89098c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsize.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsize.txt @@ -1,68 +1,66 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSize() - $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 - :isNull() -> lBool - :isValid() -> lBool - :rheight() -> nInt - :rwidth() -> nInt - :scale( nWidth, nHeight, nMode ) -> NIL - :scale_1( pSize, nMode ) -> NIL - :setHeight( nHeight ) -> NIL - :setWidth( nWidth ) -> NIL - :transpose() -> NIL - :width() -> nInt - - $DESCRIPTION$ - - $EXAMPLES$ - oSize := QSize():new() - oSize := QSize():new( pSize ) - oSize := QSize():new( nWidth, nHeight ) - - $TESTS$ - - $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/TQSize.prg - C++ wrappers : contrib/hbqt/qtcore/QSize.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QSize() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQSize.prg + * C++ wrappers : contrib/hbqt/qtcore/QSize.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSize():new( ... ) + * QSize():from( pPtr_OR_oObj_of_type_QSize ) + * QSize():configure( pPtr_OR_oObj_of_type_QSize ) + * $METHODS$ + * :height() -> nInt + * :isEmpty() -> lBool + * :isNull() -> lBool + * :isValid() -> lBool + * :rheight() -> nInt + * :rwidth() -> nInt + * :scale( nWidth, nHeight, nMode ) -> NIL + * :scale_1( pSize, nMode ) -> NIL + * :setHeight( nHeight ) -> NIL + * :setWidth( nWidth ) -> NIL + * :transpose() -> NIL + * :width() -> nInt + * + * $RETURNS$ + * An instance of the object of type QSize + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oSize := QSize():new() + * oSize := QSize():new( pSize ) + * oSize := QSize():new( nWidth, nHeight ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QSize object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsize.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsizef.txt b/harbour/contrib/hbqt/doc/en/class_qsizef.txt index 6d7a2481cd..5d5b38e600 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsizef.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsizef.txt @@ -1,68 +1,66 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSizeF() - $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 - :isNull() -> lBool - :isValid() -> lBool - :rheight() -> nQreal - :rwidth() -> nQreal - :scale( nWidth, nHeight, nMode ) -> NIL - :scale_1( pSize, nMode ) -> NIL - :setHeight( nHeight ) -> NIL - :setWidth( nWidth ) -> NIL - :toSize() -> pQSize - :transpose() -> NIL - :width() -> nQreal - - $DESCRIPTION$ - - $EXAMPLES$ - oSizeF := QSizeF():new() - oSizeF := QSizeF():new( nWidth, nHeight ) - - $TESTS$ - - $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/TQSizeF.prg - C++ wrappers : contrib/hbqt/qtcore/QSizeF.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QSizeF() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQSizeF.prg + * C++ wrappers : contrib/hbqt/qtcore/QSizeF.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSizeF():new( ... ) + * QSizeF():from( pPtr_OR_oObj_of_type_QSizeF ) + * QSizeF():configure( pPtr_OR_oObj_of_type_QSizeF ) + * $METHODS$ + * :height() -> nQreal + * :isEmpty() -> lBool + * :isNull() -> lBool + * :isValid() -> lBool + * :rheight() -> nQreal + * :rwidth() -> nQreal + * :scale( nWidth, nHeight, nMode ) -> NIL + * :scale_1( pSize, nMode ) -> NIL + * :setHeight( nHeight ) -> NIL + * :setWidth( nWidth ) -> NIL + * :toSize() -> pQSize + * :transpose() -> NIL + * :width() -> nQreal + * + * $RETURNS$ + * An instance of the object of type QSizeF + * $SEEALSO$ + * + * $VERSION$ + * 4.5 or upper + * $CATEGORY$ + * Harbour Bindings for Qt + * $EXAMPLES$ + * oSizeF := QSizeF():new() + * oSizeF := QSizeF():new( nWidth, nHeight ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QSizeF object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsizef.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt index 12e2861e43..4faa0a9355 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSizePolicy() - $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 - :hasHeightForWidth() -> lBool - :horizontalPolicy() -> nPolicy - :horizontalStretch() -> nInt - :setControlType( nType ) -> NIL - :setHeightForWidth( lDependent ) -> NIL - :setHorizontalPolicy( nPolicy ) -> NIL - :setHorizontalStretch( nStretchFactor ) -> NIL - :setVerticalPolicy( nPolicy ) -> NIL - :setVerticalStretch( nStretchFactor ) -> NIL - :transpose() -> NIL - :verticalPolicy() -> nPolicy - :verticalStretch() -> 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/TQSizePolicy.prg - C++ wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QSizePolicy() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSizePolicy.prg + * C++ wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSizePolicy():new( ... ) + * QSizePolicy():from( pPtr_OR_oObj_of_type_QSizePolicy ) + * QSizePolicy():configure( pPtr_OR_oObj_of_type_QSizePolicy ) + * $METHODS$ + * :controlType() -> nControlType + * :expandingDirections() -> nQt::Orientations + * :hasHeightForWidth() -> lBool + * :horizontalPolicy() -> nPolicy + * :horizontalStretch() -> nInt + * :setControlType( nType ) -> NIL + * :setHeightForWidth( lDependent ) -> NIL + * :setHorizontalPolicy( nPolicy ) -> NIL + * :setHorizontalStretch( nStretchFactor ) -> NIL + * :setVerticalPolicy( nPolicy ) -> NIL + * :setVerticalStretch( nStretchFactor ) -> NIL + * :transpose() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qslider.txt b/harbour/contrib/hbqt/doc/en/class_qslider.txt index 50e115d862..49852c0e80 100644 --- a/harbour/contrib/hbqt/doc/en/class_qslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qslider.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSlider() - $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 - - $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/TQSlider.prg - C++ wrappers : contrib/hbqt/qtgui/QSlider.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractSlider - $END$ + * $NAME$ + * QSlider() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSlider.prg + * C++ wrappers : contrib/hbqt/qtgui/QSlider.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSlider():new( ... ) + * QSlider():from( pPtr_OR_oObj_of_type_QSlider ) + * QSlider():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsound.txt b/harbour/contrib/hbqt/doc/en/class_qsound.txt index 426db157d0..1e6b42f540 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsound.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsound.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSound() - $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 - :loops() -> nInt - :loopsRemaining() -> nInt - :setLoops( nNumber ) -> NIL - :isAvailable() -> lBool - :play( cFilename ) -> 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/TQSound.prg - C++ wrappers : contrib/hbqt/qtgui/QSound.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QSound() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSound.prg + * C++ wrappers : contrib/hbqt/qtgui/QSound.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSound():new( ... ) + * QSound():from( pPtr_OR_oObj_of_type_QSound ) + * QSound():configure( pPtr_OR_oObj_of_type_QSound ) + * $METHODS$ + * :fileName() -> cQString + * :isFinished() -> lBool + * :loops() -> nInt + * :loopsRemaining() -> nInt + * :setLoops( nNumber ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt index 2fc4d37ecc..8cd2f08e57 100644 --- a/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qspaceritem.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt index 60c4eeac09..c9fa42a32e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSpinBox() - $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 - :minimum() -> nInt - :prefix() -> cQString - :setMaximum( nMax ) -> NIL - :setMinimum( nMin ) -> NIL - :setPrefix( cPrefix ) -> NIL - :setRange( nMinimum, nMaximum ) -> NIL - :setSingleStep( nVal ) -> NIL - :setSuffix( cSuffix ) -> NIL - :singleStep() -> nInt - :suffix() -> cQString - :value() -> nInt - :setValue( nVal ) -> 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/TQSpinBox.prg - C++ wrappers : contrib/hbqt/qtgui/QSpinBox.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractSpinBox - $END$ + * $NAME$ + * QSpinBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSpinBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QSpinBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSpinBox():new( ... ) + * QSpinBox():from( pPtr_OR_oObj_of_type_QSpinBox ) + * QSpinBox():configure( pPtr_OR_oObj_of_type_QSpinBox ) + * $METHODS$ + * :cleanText() -> cQString + * :maximum() -> nInt + * :minimum() -> nInt + * :prefix() -> cQString + * :setMaximum( nMax ) -> NIL + * :setMinimum( nMin ) -> NIL + * :setPrefix( cPrefix ) -> NIL + * :setRange( nMinimum, nMaximum ) -> NIL + * :setSingleStep( nVal ) -> NIL + * :setSuffix( cSuffix ) -> NIL + * :singleStep() -> nInt + * :suffix() -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt index f41b0fec17..5c591eb364 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSplashScreen() - $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 - :repaint() -> NIL - :setPixmap( pPixmap ) -> NIL - :clearMessage() -> NIL - :showMessage( cMessage, nAlignment, pColor ) -> 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/TQSplashScreen.prg - C++ wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QSplashScreen() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSplashScreen.prg + * C++ wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSplashScreen():new( ... ) + * QSplashScreen():from( pPtr_OR_oObj_of_type_QSplashScreen ) + * QSplashScreen():configure( pPtr_OR_oObj_of_type_QSplashScreen ) + * $METHODS$ + * :finish( pMainWin ) -> NIL + * :pixmap() -> pQPixmap + * :repaint() -> NIL + * :setPixmap( pPixmap ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsplitter.txt b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt index df32c95480..43955c5959 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsplitter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt @@ -1,74 +1,72 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSplitter() - $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 - :count() -> nInt - :getRange( nIndex, @nMin, @nMax ) -> NIL - :handleWidth() -> nInt - :indexOf( pWidget ) -> nInt - :insertWidget( nIndex, pWidget ) -> NIL - :isCollapsible( nIndex ) -> lBool - :opaqueResize() -> lBool - :orientation() -> nQt::Orientation - :refresh() -> NIL - :restoreState( pState ) -> lBool - :saveState() -> pQByteArray - :setChildrenCollapsible( lBool ) -> NIL - :setCollapsible( nIndex, lCollapse ) -> NIL - :setHandleWidth( nInt ) -> NIL - :setOpaqueResize( lOpaque ) -> NIL - :setOrientation( nQt::Orientation ) -> NIL - :setStretchFactor( nIndex, nStretch ) -> NIL - :sizes() -> pQList - :widget( nIndex ) -> 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/TQSplitter.prg - C++ wrappers : contrib/hbqt/qtgui/QSplitter.cpp - Library : hbqtgui - $SEEALSO$ - QFrame - $END$ + * $NAME$ + * QSplitter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSplitter.prg + * C++ wrappers : contrib/hbqt/qtgui/QSplitter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSplitter():new( ... ) + * QSplitter():from( pPtr_OR_oObj_of_type_QSplitter ) + * QSplitter():configure( pPtr_OR_oObj_of_type_QSplitter ) + * $METHODS$ + * :addWidget( pWidget ) -> NIL + * :childrenCollapsible() -> lBool + * :count() -> nInt + * :getRange( nIndex, @nMin, @nMax ) -> NIL + * :handleWidth() -> nInt + * :indexOf( pWidget ) -> nInt + * :insertWidget( nIndex, pWidget ) -> NIL + * :isCollapsible( nIndex ) -> lBool + * :opaqueResize() -> lBool + * :orientation() -> nQt::Orientation + * :refresh() -> NIL + * :restoreState( pState ) -> lBool + * :saveState() -> pQByteArray + * :setChildrenCollapsible( lBool ) -> NIL + * :setCollapsible( nIndex, lCollapse ) -> NIL + * :setHandleWidth( nInt ) -> NIL + * :setOpaqueResize( lOpaque ) -> NIL + * :setOrientation( nQt::Orientation ) -> NIL + * :setStretchFactor( nIndex, nStretch ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt index e58794c632..ed7824e58a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStackedWidget() - $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 - :currentIndex() -> nInt - :currentWidget() -> pQWidget - :indexOf( pWidget ) -> nInt - :insertWidget( nIndex, pWidget ) -> nInt - :removeWidget( pWidget ) -> NIL - :widget( nIndex ) -> pQWidget - :setCurrentIndex( nIndex ) -> NIL - :setCurrentWidget( pWidget ) -> 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/TQStackedWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp - Library : hbqtgui - $SEEALSO$ - QFrame - $END$ + * $NAME$ + * QStackedWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStackedWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStackedWidget():new( ... ) + * QStackedWidget():from( pPtr_OR_oObj_of_type_QStackedWidget ) + * QStackedWidget():configure( pPtr_OR_oObj_of_type_QStackedWidget ) + * $METHODS$ + * :addWidget( pWidget ) -> nInt + * :count() -> nInt + * :currentIndex() -> nInt + * :currentWidget() -> pQWidget + * :indexOf( pWidget ) -> nInt + * :insertWidget( nIndex, pWidget ) -> nInt + * :removeWidget( pWidget ) -> NIL + * :widget( nIndex ) -> pQWidget + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt index a988b24866..8dc96266a7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt @@ -1,122 +1,120 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStandardItem() - $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 - :appendRow( pItem ) -> NIL - :background() -> pQBrush - :checkState() -> nQt::CheckState - :column() -> nInt - :columnCount() -> nInt - :data( nRole ) -> pQVariant - :flags() -> nQt::ItemFlags - :font() -> pQFont - :foreground() -> pQBrush - :hasChildren() -> lBool - :icon() -> pQIcon - :index() -> pQModelIndex - :insertColumns( nColumn, nCount ) -> NIL - :insertRow( nRow, pItem ) -> NIL - :insertRows( nRow, nCount ) -> NIL - :isCheckable() -> lBool - :isDragEnabled() -> lBool - :isDropEnabled() -> lBool - :isEditable() -> lBool - :isEnabled() -> lBool - :isSelectable() -> lBool - :isTristate() -> lBool - :model() -> Model - :read( pIn ) -> NIL - :removeColumn( nColumn ) -> NIL - :removeColumns( nColumn, nCount ) -> NIL - :removeRow( nRow ) -> NIL - :removeRows( nRow, nCount ) -> NIL - :row() -> nInt - :rowCount() -> nInt - :setAccessibleDescription( cAccessibleDescription ) -> NIL - :setAccessibleText( cAccessibleText ) -> NIL - :setBackground( pBrush ) -> NIL - :setCheckState( nState ) -> NIL - :setCheckable( lCheckable ) -> NIL - :setChild( nRow, nColumn, pItem ) -> NIL - :setChild_1( nRow, pItem ) -> NIL - :setColumnCount( nColumns ) -> NIL - :setData( pValue, nRole ) -> NIL - :setDragEnabled( lDragEnabled ) -> NIL - :setDropEnabled( lDropEnabled ) -> NIL - :setEditable( lEditable ) -> NIL - :setEnabled( lEnabled ) -> NIL - :setFlags( nFlags ) -> NIL - :setFont( pFont ) -> NIL - :setForeground( pBrush ) -> NIL - :setIcon( cIcon ) -> NIL - :setRowCount( nRows ) -> NIL - :setSelectable( lSelectable ) -> NIL - :setSizeHint( pSize ) -> NIL - :setStatusTip( cStatusTip ) -> NIL - :setText( cText ) -> NIL - :setTextAlignment( nAlignment ) -> NIL - :setToolTip( cToolTip ) -> NIL - :setTristate( lTristate ) -> NIL - :setWhatsThis( cWhatsThis ) -> NIL - :sizeHint() -> pQSize - :sortChildren( nColumn, nOrder ) -> NIL - :statusTip() -> cQString - :takeColumn( nColumn ) -> pQList - :takeRow( nRow ) -> pQList - :text() -> cQString - :textAlignment() -> nQt::Alignment - :toolTip() -> cQString - :type() -> nInt - :whatsThis() -> cQString - :write( pOut ) -> 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/TQStandardItem.prg - C++ wrappers : contrib/hbqt/qtgui/QStandardItem.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QStandardItem() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStandardItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QStandardItem.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStandardItem():new( ... ) + * QStandardItem():from( pPtr_OR_oObj_of_type_QStandardItem ) + * QStandardItem():configure( pPtr_OR_oObj_of_type_QStandardItem ) + * $METHODS$ + * :accessibleDescription() -> cQString + * :accessibleText() -> cQString + * :appendRow( pItem ) -> NIL + * :background() -> pQBrush + * :checkState() -> nQt::CheckState + * :column() -> nInt + * :columnCount() -> nInt + * :data( nRole ) -> pQVariant + * :flags() -> nQt::ItemFlags + * :font() -> pQFont + * :foreground() -> pQBrush + * :hasChildren() -> lBool + * :icon() -> pQIcon + * :index() -> pQModelIndex + * :insertColumns( nColumn, nCount ) -> NIL + * :insertRow( nRow, pItem ) -> NIL + * :insertRows( nRow, nCount ) -> NIL + * :isCheckable() -> lBool + * :isDragEnabled() -> lBool + * :isDropEnabled() -> lBool + * :isEditable() -> lBool + * :isEnabled() -> lBool + * :isSelectable() -> lBool + * :isTristate() -> lBool + * :model() -> Model + * :read( pIn ) -> NIL + * :removeColumn( nColumn ) -> NIL + * :removeColumns( nColumn, nCount ) -> NIL + * :removeRow( nRow ) -> NIL + * :removeRows( nRow, nCount ) -> NIL + * :row() -> nInt + * :rowCount() -> nInt + * :setAccessibleDescription( cAccessibleDescription ) -> NIL + * :setAccessibleText( cAccessibleText ) -> NIL + * :setBackground( pBrush ) -> NIL + * :setCheckState( nState ) -> NIL + * :setCheckable( lCheckable ) -> NIL + * :setChild( nRow, nColumn, pItem ) -> NIL + * :setChild_1( nRow, pItem ) -> NIL + * :setColumnCount( nColumns ) -> NIL + * :setData( pValue, nRole ) -> NIL + * :setDragEnabled( lDragEnabled ) -> NIL + * :setDropEnabled( lDropEnabled ) -> NIL + * :setEditable( lEditable ) -> NIL + * :setEnabled( lEnabled ) -> NIL + * :setFlags( nFlags ) -> NIL + * :setFont( pFont ) -> NIL + * :setForeground( pBrush ) -> NIL + * :setIcon( cIcon ) -> NIL + * :setRowCount( nRows ) -> NIL + * :setSelectable( lSelectable ) -> NIL + * :setSizeHint( pSize ) -> NIL + * :setStatusTip( cStatusTip ) -> NIL + * :setText( cText ) -> NIL + * :setTextAlignment( nAlignment ) -> NIL + * :setToolTip( cToolTip ) -> NIL + * :setTristate( lTristate ) -> NIL + * :setWhatsThis( cWhatsThis ) -> NIL + * :sizeHint() -> pQSize + * :sortChildren( nColumn, nOrder ) -> NIL + * :statusTip() -> cQString + * :takeColumn( nColumn ) -> pQList + * :takeRow( nRow ) -> pQList + * :text() -> cQString + * :textAlignment() -> nQt::Alignment + * :toolTip() -> cQString + * :type() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt index 408cd7a75f..64d2af703f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt @@ -1,81 +1,79 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStandardItemModel() - $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 - :findItems( cText, nFlags, nColumn ) -> pQList - :horizontalHeaderItem( nColumn ) -> pQStandardItem - :indexFromItem( pItem ) -> pQModelIndex - :insertColumn( nColumn, pParent ) -> lBool - :insertRow( nRow, pParent ) -> lBool - :insertRow_1( nRow, pItem ) -> NIL - :invisibleRootItem() -> pQStandardItem - :item( nRow, nColumn ) -> pQStandardItem - :itemFromIndex( pIndex ) -> pQStandardItem - :setColumnCount( nColumns ) -> NIL - :setHorizontalHeaderItem( nColumn, pItem ) -> NIL - :setHorizontalHeaderLabels( pLabels ) -> NIL - :setItem( nRow, nColumn, pItem ) -> NIL - :setItem_1( nRow, pItem ) -> NIL - :setItemPrototype( pItem ) -> NIL - :setRowCount( nRows ) -> NIL - :setSortRole( nRole ) -> NIL - :setVerticalHeaderItem( nRow, pItem ) -> NIL - :setVerticalHeaderLabels( pLabels ) -> NIL - :sortRole() -> nInt - :takeColumn( nColumn ) -> pQList - :takeHorizontalHeaderItem( nColumn ) -> pQStandardItem - :takeItem( nRow, nColumn ) -> pQStandardItem - :takeRow( nRow ) -> pQList - :takeVerticalHeaderItem( nRow ) -> pQStandardItem - :verticalHeaderItem( nRow ) -> pQStandardItem - - $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/TQStandardItemModel.prg - C++ wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractItemModeL - $END$ + * $NAME$ + * QStandardItemModel() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStandardItemModel.prg + * C++ wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStandardItemModel():new( ... ) + * QStandardItemModel():from( pPtr_OR_oObj_of_type_QStandardItemModel ) + * QStandardItemModel():configure( pPtr_OR_oObj_of_type_QStandardItemModel ) + * $METHODS$ + * :appendRow( pItem ) -> NIL + * :clear() -> NIL + * :findItems( cText, nFlags, nColumn ) -> pQList + * :horizontalHeaderItem( nColumn ) -> pQStandardItem + * :indexFromItem( pItem ) -> pQModelIndex + * :insertColumn( nColumn, pParent ) -> lBool + * :insertRow( nRow, pParent ) -> lBool + * :insertRow_1( nRow, pItem ) -> NIL + * :invisibleRootItem() -> pQStandardItem + * :item( nRow, nColumn ) -> pQStandardItem + * :itemFromIndex( pIndex ) -> pQStandardItem + * :setColumnCount( nColumns ) -> NIL + * :setHorizontalHeaderItem( nColumn, pItem ) -> NIL + * :setHorizontalHeaderLabels( pLabels ) -> NIL + * :setItem( nRow, nColumn, pItem ) -> NIL + * :setItem_1( nRow, pItem ) -> NIL + * :setItemPrototype( pItem ) -> NIL + * :setRowCount( nRows ) -> NIL + * :setSortRole( nRole ) -> NIL + * :setVerticalHeaderItem( nRow, pItem ) -> NIL + * :setVerticalHeaderLabels( pLabels ) -> NIL + * :sortRole() -> nInt + * :takeColumn( nColumn ) -> pQList + * :takeHorizontalHeaderItem( nColumn ) -> pQStandardItem + * :takeItem( nRow, nColumn ) -> pQStandardItem + * :takeRow( nRow ) -> pQList + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt index 7eeea5dae2..0eebab9239 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStatusBar() - $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 - :currentMessage() -> cQString - :insertPermanentWidget( nIndex, pWidget, nStretch ) -> nInt - :insertWidget( nIndex, pWidget, nStretch ) -> nInt - :isSizeGripEnabled() -> lBool - :removeWidget( pWidget ) -> NIL - :setSizeGripEnabled( lBool ) -> NIL - :clearMessage() -> NIL - :showMessage( cMessage, nTimeout ) -> 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/TQStatusBar.prg - C++ wrappers : contrib/hbqt/qtgui/QStatusBar.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QStatusBar() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStatusBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QStatusBar.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStatusBar():new( ... ) + * QStatusBar():from( pPtr_OR_oObj_of_type_QStatusBar ) + * QStatusBar():configure( pPtr_OR_oObj_of_type_QStatusBar ) + * $METHODS$ + * :addPermanentWidget( pWidget, nStretch ) -> NIL + * :addWidget( pWidget, nStretch ) -> NIL + * :currentMessage() -> cQString + * :insertPermanentWidget( nIndex, pWidget, nStretch ) -> nInt + * :insertWidget( nIndex, pWidget, nStretch ) -> nInt + * :isSizeGripEnabled() -> lBool + * :removeWidget( pWidget ) -> NIL + * :setSizeGripEnabled( lBool ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstringlist.txt b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt index 16afa1b5da..00cd591b08 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstringlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt @@ -1,87 +1,85 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStringList() - $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 - :indexOf_1( pRx, nFrom ) -> nInt - :indexOf_2( pRx, nFrom ) -> nInt - :join( cSeparator ) -> cQString - :lastIndexOf( pRx, nFrom ) -> nInt - :lastIndexOf_1( cValue, nFrom ) -> nInt - :lastIndexOf_2( pRx, nFrom ) -> nInt - :removeDuplicates() -> nInt - :sort() -> NIL - :at( nI ) -> cQString - :back() -> cQString - :count( cValue ) -> nInt - :endsWith( cValue ) -> lBool - :first() -> cQString - :first_1() -> cQString - :front() -> cQString - :front_1() -> cQString - :insert( nI, cValue ) -> NIL - :last() -> cQString - :last_1() -> cQString - :mid( nPos, nLength ) -> pQList - :prepend( cValue ) -> NIL - :push_back( cValue ) -> NIL - :push_front( cValue ) -> NIL - :removeAll( cValue ) -> nInt - :removeOne( cValue ) -> lBool - :replace( nI, cValue ) -> NIL - :startsWith( cValue ) -> lBool - :takeAt( nI ) -> cQString - :takeFirst() -> cQString - :takeLast() -> cQString - :value( nI ) -> cQString - :value_1( nI, cDefaultValue ) -> 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/TQStringList.prg - C++ wrappers : contrib/hbqt/qtcore/QStringList.cpp - Library : hbqtcore - $SEEALSO$ - QList - $END$ + * $NAME$ + * QStringList() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQStringList.prg + * C++ wrappers : contrib/hbqt/qtcore/QStringList.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStringList():new( ... ) + * QStringList():from( pPtr_OR_oObj_of_type_QStringList ) + * QStringList():configure( pPtr_OR_oObj_of_type_QStringList ) + * $METHODS$ + * :append( cValue ) -> NIL + * :indexOf( cValue, nFrom ) -> nInt + * :indexOf_1( pRx, nFrom ) -> nInt + * :indexOf_2( pRx, nFrom ) -> nInt + * :join( cSeparator ) -> cQString + * :lastIndexOf( pRx, nFrom ) -> nInt + * :lastIndexOf_1( cValue, nFrom ) -> nInt + * :lastIndexOf_2( pRx, nFrom ) -> nInt + * :removeDuplicates() -> nInt + * :sort() -> NIL + * :at( nI ) -> cQString + * :back() -> cQString + * :count( cValue ) -> nInt + * :endsWith( cValue ) -> lBool + * :first() -> cQString + * :first_1() -> cQString + * :front() -> cQString + * :front_1() -> cQString + * :insert( nI, cValue ) -> NIL + * :last() -> cQString + * :last_1() -> cQString + * :mid( nPos, nLength ) -> pQList + * :prepend( cValue ) -> NIL + * :push_back( cValue ) -> NIL + * :push_front( cValue ) -> NIL + * :removeAll( cValue ) -> nInt + * :removeOne( cValue ) -> lBool + * :replace( nI, cValue ) -> NIL + * :startsWith( cValue ) -> lBool + * :takeAt( nI ) -> cQString + * :takeFirst() -> cQString + * :takeLast() -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt index 0cfedcc72b..53de5cd17d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt @@ -1,61 +1,59 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStringListModel() - $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 - :insertRows( nRow, nCount, pParent ) -> lBool - :removeRows( nRow, nCount, pParent ) -> lBool - :rowCount( pParent ) -> nInt - :setData( pIndex, pValue, nRole ) -> lBool - :setStringList( pStrings ) -> NIL - :stringList() -> 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/TQStringListModel.prg - C++ wrappers : contrib/hbqt/qtgui/QStringListModel.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractListModel - $END$ + * $NAME$ + * QStringListModel() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStringListModel.prg + * C++ wrappers : contrib/hbqt/qtgui/QStringListModel.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStringListModel():new( ... ) + * QStringListModel():from( pPtr_OR_oObj_of_type_QStringListModel ) + * QStringListModel():configure( pPtr_OR_oObj_of_type_QStringListModel ) + * $METHODS$ + * :data( pIndex, nRole ) -> pQVariant + * :flags( pIndex ) -> nQt::ItemFlags + * :insertRows( nRow, nCount, pParent ) -> lBool + * :removeRows( nRow, nCount, pParent ) -> lBool + * :rowCount( pParent ) -> nInt + * :setData( pIndex, pValue, nRole ) -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyle.txt b/harbour/contrib/hbqt/doc/en/class_qstyle.txt index bc216fee29..cfe99be6de 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyle.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyle.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyle() - $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 - :drawControl( nElement, pOption, pPainter, pWidget ) -> NIL - :drawItemPixmap( pPainter, pRectangle, nAlignment, pPixmap ) -> NIL - :drawItemText( pPainter, pRectangle, nAlignment, pPalette, lEnabled, cText, nTextRole ) -> NIL - :drawPrimitive( nElement, pOption, pPainter, pWidget ) -> NIL - :generatedIconPixmap( nIconMode, pPixmap, pOption ) -> pQPixmap - :hitTestComplexControl( nControl, pOption, pPosition, pWidget ) -> nSubControl - :itemPixmapRect( pRectangle, nAlignment, pPixmap ) -> pQRect - :itemTextRect( pMetrics, pRectangle, nAlignment, lEnabled, cText ) -> pQRect - :layoutSpacing( nControl1, nControl2, nOrientation, pOption, pWidget ) -> nInt - :pixelMetric( nMetric, pOption, pWidget ) -> nInt - :polish( pWidget ) -> NIL - :polish_1( pApplication ) -> NIL - :polish_2( pPalette ) -> NIL - :sizeFromContents( nType, pOption, pContentsSize, pWidget ) -> pQSize - :standardIcon( nStandardIcon, pOption, pWidget ) -> pQIcon - :standardPalette() -> pQPalette - :styleHint( nHint, pOption, pWidget, pReturnData ) -> nInt - :subControlRect( nControl, pOption, nSubControl, pWidget ) -> pQRect - :subElementRect( nElement, pOption, pWidget ) -> pQRect - :unpolish( pWidget ) -> NIL - :unpolish_1( pApplication ) -> NIL - :alignedRect( nDirection, nAlignment, pSize, pRectangle ) -> pQRect - :sliderPositionFromValue( nMin, nMax, nLogicalValue, nSpan, lUpsideDown ) -> nInt - :sliderValueFromPosition( nMin, nMax, nPosition, nSpan, lUpsideDown ) -> nInt - :visualAlignment( nDirection, nAlignment ) -> nQt::Alignment - :visualPos( nDirection, pBoundingRectangle, pLogicalPosition ) -> pQPoint - :visualRect( nDirection, pBoundingRectangle, pLogicalRectangle ) -> pQRect - - $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/TQStyle.prg - C++ wrappers : contrib/hbqt/qtgui/QStyle.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QStyle() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyle.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyle.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyle():new( ... ) + * QStyle():from( pPtr_OR_oObj_of_type_QStyle ) + * QStyle():configure( pPtr_OR_oObj_of_type_QStyle ) + * $METHODS$ + * :combinedLayoutSpacing( nControls1, nControls2, nOrientation, pOption, pWidget ) -> nInt + * :drawComplexControl( nControl, pOption, pPainter, pWidget ) -> NIL + * :drawControl( nElement, pOption, pPainter, pWidget ) -> NIL + * :drawItemPixmap( pPainter, pRectangle, nAlignment, pPixmap ) -> NIL + * :drawItemText( pPainter, pRectangle, nAlignment, pPalette, lEnabled, cText, nTextRole ) -> NIL + * :drawPrimitive( nElement, pOption, pPainter, pWidget ) -> NIL + * :generatedIconPixmap( nIconMode, pPixmap, pOption ) -> pQPixmap + * :hitTestComplexControl( nControl, pOption, pPosition, pWidget ) -> nSubControl + * :itemPixmapRect( pRectangle, nAlignment, pPixmap ) -> pQRect + * :itemTextRect( pMetrics, pRectangle, nAlignment, lEnabled, cText ) -> pQRect + * :layoutSpacing( nControl1, nControl2, nOrientation, pOption, pWidget ) -> nInt + * :pixelMetric( nMetric, pOption, pWidget ) -> nInt + * :polish( pWidget ) -> NIL + * :polish_1( pApplication ) -> NIL + * :polish_2( pPalette ) -> NIL + * :sizeFromContents( nType, pOption, pContentsSize, pWidget ) -> pQSize + * :standardIcon( nStandardIcon, pOption, pWidget ) -> pQIcon + * :standardPalette() -> pQPalette + * :styleHint( nHint, pOption, pWidget, pReturnData ) -> nInt + * :subControlRect( nControl, pOption, nSubControl, pWidget ) -> pQRect + * :subElementRect( nElement, pOption, pWidget ) -> pQRect + * :unpolish( pWidget ) -> NIL + * :unpolish_1( pApplication ) -> NIL + * :alignedRect( nDirection, nAlignment, pSize, pRectangle ) -> pQRect + * :sliderPositionFromValue( nMin, nMax, nLogicalValue, nSpan, lUpsideDown ) -> nInt + * :sliderValueFromPosition( nMin, nMax, nPosition, nSpan, lUpsideDown ) -> nInt + * :visualAlignment( nDirection, nAlignment ) -> nQt::Alignment + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt index 5acec1983a..71107cbb9d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyledItemDelegate() - $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 - :paint( pPainter, pOption, pIndex ) -> NIL - :setEditorData( pEditor, pIndex ) -> NIL - :setModelData( pEditor, pModel, pIndex ) -> NIL - :sizeHint( pOption, pIndex ) -> pQSize - :updateEditorGeometry( pEditor, pOption, pIndex ) -> 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/TQStyledItemDelegate.prg - C++ wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QStyledItemDelegate() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyledItemDelegate.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyledItemDelegate():new( ... ) + * QStyledItemDelegate():from( pPtr_OR_oObj_of_type_QStyledItemDelegate ) + * QStyledItemDelegate():configure( pPtr_OR_oObj_of_type_QStyledItemDelegate ) + * $METHODS$ + * :createEditor( pParent, pOption, pIndex ) -> pQWidget + * :displayText( pValue, pLocale ) -> cQString + * :paint( pPainter, pOption, pIndex ) -> NIL + * :setEditorData( pEditor, pIndex ) -> NIL + * :setModelData( pEditor, pModel, pIndex ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt index 335a869965..d35afb9116 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstylefactory.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt index 8e73069dc2..705390f329 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt @@ -1,61 +1,59 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOption() - $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 - :fontMetrics() -> pQFontMetrics - :palette() -> pQPalette - :rect() -> pQRect - :state() -> nQStyle::State - :type() -> nInt - :version() -> 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/TQStyleOption.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOption.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QStyleOption() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOption.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOption.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOption():new( ... ) + * QStyleOption():from( pPtr_OR_oObj_of_type_QStyleOption ) + * QStyleOption():configure( pPtr_OR_oObj_of_type_QStyleOption ) + * $METHODS$ + * :initFrom( pWidget ) -> NIL + * :direction() -> nQt::LayoutDirection + * :fontMetrics() -> pQFontMetrics + * :palette() -> pQPalette + * :rect() -> pQRect + * :state() -> nQStyle::State + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt index 7fc643ce26..37657351d6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionButton() - $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 - - $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/TQStyleOptionButton.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionButton() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionButton():new( ... ) + * QStyleOptionButton():from( pPtr_OR_oObj_of_type_QStyleOptionButton ) + * QStyleOptionButton():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt index 66f2654c4a..960168274a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionComboBox() - $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 - :editable() -> lBool - :frame() -> lBool - :iconSize() -> pQSize - :popupRect() -> pQRect - - $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/TQStyleOptionComboBox.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionComboBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionComboBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionComboBox():new( ... ) + * QStyleOptionComboBox():from( pPtr_OR_oObj_of_type_QStyleOptionComboBox ) + * QStyleOptionComboBox():configure( pPtr_OR_oObj_of_type_QStyleOptionComboBox ) + * $METHODS$ + * :currentIcon() -> pQIcon + * :currentText() -> cQString + * :editable() -> lBool + * :frame() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt index 5774a6f67d..cb73247fae 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptioncomplex.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt index 101920f47c..e96ba17f90 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionDockWidget() - $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 - - $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/TQStyleOptionDockWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionDockWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionDockWidget():new( ... ) + * QStyleOptionDockWidget():from( pPtr_OR_oObj_of_type_QStyleOptionDockWidget ) + * QStyleOptionDockWidget():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt index 66b97bcafc..80f58b841d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt @@ -1,54 +1,52 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionfocusrect.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt index 83ccf44062..7ebe1ab515 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionframe.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt index 00db19dfd7..9e598a34f0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionGroupBox() - $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 - :midLineWidth() -> nInt - :text() -> cQString - :textAlignment() -> nQt::Alignment - :textColor() -> 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/TQStyleOptionGroupBox.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOptionComplex - $END$ + * $NAME$ + * QStyleOptionGroupBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionGroupBox():new( ... ) + * QStyleOptionGroupBox():from( pPtr_OR_oObj_of_type_QStyleOptionGroupBox ) + * QStyleOptionGroupBox():configure( pPtr_OR_oObj_of_type_QStyleOptionGroupBox ) + * $METHODS$ + * :features() -> nQStyleOptionFrameV2::FrameFeatures + * :lineWidth() -> nInt + * :midLineWidth() -> nInt + * :text() -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt index dbc64911e4..2b55e3bf56 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt @@ -1,62 +1,60 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionHeader() - $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 - :orientation() -> nQt::Orientation - :position() -> nSectionPosition - :section() -> nInt - :selectedPosition() -> nSelectedPosition - :sortIndicator() -> nSortIndicator - :text() -> cQString - :textAlignment() -> nQt::Alignment - - $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/TQStyleOptionHeader.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionHeader() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionHeader.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionHeader():new( ... ) + * QStyleOptionHeader():from( pPtr_OR_oObj_of_type_QStyleOptionHeader ) + * QStyleOptionHeader():configure( pPtr_OR_oObj_of_type_QStyleOptionHeader ) + * $METHODS$ + * :icon() -> pQIcon + * :iconAlignment() -> nQt::Alignment + * :orientation() -> nQt::Orientation + * :position() -> nSectionPosition + * :section() -> nInt + * :selectedPosition() -> nSelectedPosition + * :sortIndicator() -> nSortIndicator + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt index 556c534a7e..57867fcb42 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionMenuItem() - $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 - :font() -> pQFont - :icon() -> pQIcon - :maxIconWidth() -> nInt - :menuHasCheckableItems() -> lBool - :menuItemType() -> nMenuItemType - :menuRect() -> pQRect - :tabWidth() -> nInt - :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/TQStyleOptionMenuItem.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionMenuItem() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionMenuItem():new( ... ) + * QStyleOptionMenuItem():from( pPtr_OR_oObj_of_type_QStyleOptionMenuItem ) + * QStyleOptionMenuItem():configure( pPtr_OR_oObj_of_type_QStyleOptionMenuItem ) + * $METHODS$ + * :checkType() -> nCheckType + * :checked() -> lBool + * :font() -> pQFont + * :icon() -> pQIcon + * :maxIconWidth() -> nInt + * :menuHasCheckableItems() -> lBool + * :menuItemType() -> nMenuItemType + * :menuRect() -> pQRect + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt index c9d50c13d8..e19f2a88b7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionProgressBar() - $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 - :progress() -> nInt - :text() -> cQString - :textAlignment() -> nQt::Alignment - :textVisible() -> 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/TQStyleOptionProgressBar.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionProgressBar() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionProgressBar():new( ... ) + * QStyleOptionProgressBar():from( pPtr_OR_oObj_of_type_QStyleOptionProgressBar ) + * QStyleOptionProgressBar():configure( pPtr_OR_oObj_of_type_QStyleOptionProgressBar ) + * $METHODS$ + * :maximum() -> nInt + * :minimum() -> nInt + * :progress() -> nInt + * :text() -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt index 9f734352a8..14f8c6c6ac 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt @@ -1,54 +1,52 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptionsizegrip.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt index bbb61e64a9..7af742d9e3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt @@ -1,65 +1,63 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionSlider() - $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 - :minimum() -> nInt - :notchTarget() -> nQreal - :orientation() -> nQt::Orientation - :pageStep() -> nInt - :singleStep() -> nInt - :sliderPosition() -> nInt - :sliderValue() -> nInt - :tickInterval() -> nInt - :tickPosition() -> nQSlider::TickPosition - :upsideDown() -> 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/TQStyleOptionSlider.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOptionComplex - $END$ + * $NAME$ + * QStyleOptionSlider() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionSlider.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionSlider():new( ... ) + * QStyleOptionSlider():from( pPtr_OR_oObj_of_type_QStyleOptionSlider ) + * QStyleOptionSlider():configure( pPtr_OR_oObj_of_type_QStyleOptionSlider ) + * $METHODS$ + * :dialWrapping() -> lBool + * :maximum() -> nInt + * :minimum() -> nInt + * :notchTarget() -> nQreal + * :orientation() -> nQt::Orientation + * :pageStep() -> nInt + * :singleStep() -> nInt + * :sliderPosition() -> nInt + * :sliderValue() -> nInt + * :tickInterval() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt index 4bf0449739..dd4adc358c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt @@ -1,56 +1,54 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionSpinBox() - $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 - - $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/TQStyleOptionSpinBox.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOptionComplex - $END$ + * $NAME$ + * QStyleOptionSpinBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionSpinBox():new( ... ) + * QStyleOptionSpinBox():from( pPtr_OR_oObj_of_type_QStyleOptionSpinBox ) + * QStyleOptionSpinBox():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt index 169dbddcc2..f2f62a05b9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionTab() - $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 - :position() -> nTabPosition - :row() -> nInt - :selectedPosition() -> nSelectedPosition - :shape() -> nQTabBar::Shape - :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/TQStyleOptionTab.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionTab() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionTab.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionTab():new( ... ) + * QStyleOptionTab():from( pPtr_OR_oObj_of_type_QStyleOptionTab ) + * QStyleOptionTab():configure( pPtr_OR_oObj_of_type_QStyleOptionTab ) + * $METHODS$ + * :cornerWidgets() -> nCornerWidgets + * :icon() -> pQIcon + * :position() -> nTabPosition + * :row() -> nInt + * :selectedPosition() -> nSelectedPosition + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt index 3ac83d141d..117962b117 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt @@ -1,56 +1,54 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionTabBarBase() - $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 - - $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/TQStyleOptionTabBarBase.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionTabBarBase() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionTabBarBase():new( ... ) + * QStyleOptionTabBarBase():from( pPtr_OR_oObj_of_type_QStyleOptionTabBarBase ) + * QStyleOptionTabBarBase():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt index f542a00d81..93ca970046 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionTabWidgetFrame() - $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 - :midLineWidth() -> nInt - :rightCornerWidgetSize() -> pQSize - :shape() -> nQTabBar::Shape - :tabBarSize() -> 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/TQStyleOptionTabWidgetFrame.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionTabWidgetFrame() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionTabWidgetFrame():new( ... ) + * QStyleOptionTabWidgetFrame():from( pPtr_OR_oObj_of_type_QStyleOptionTabWidgetFrame ) + * QStyleOptionTabWidgetFrame():configure( pPtr_OR_oObj_of_type_QStyleOptionTabWidgetFrame ) + * $METHODS$ + * :leftCornerWidgetSize() -> pQSize + * :lineWidth() -> nInt + * :midLineWidth() -> nInt + * :rightCornerWidgetSize() -> pQSize + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt index 0060d29e6c..10e8d56cfa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionTitleBar() - $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 - - $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/TQStyleOptionTitleBar.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOptionComplex - $END$ + * $NAME$ + * QStyleOptionTitleBar() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionTitleBar():new( ... ) + * QStyleOptionTitleBar():from( pPtr_OR_oObj_of_type_QStyleOptionTitleBar ) + * QStyleOptionTitleBar():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt index d0cb86937b..dfdbd62184 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionToolBar() - $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 - :midLineWidth() -> nInt - :positionOfLine() -> nToolBarPosition - :positionWithinLine() -> nToolBarPosition - :toolBarArea() -> nQt::ToolBarArea - - $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/TQStyleOptionToolBar.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionToolBar() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionToolBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionToolBar():new( ... ) + * QStyleOptionToolBar():from( pPtr_OR_oObj_of_type_QStyleOptionToolBar ) + * QStyleOptionToolBar():configure( pPtr_OR_oObj_of_type_QStyleOptionToolBar ) + * $METHODS$ + * :features() -> nToolBarFeatures + * :lineWidth() -> nInt + * :midLineWidth() -> nInt + * :positionOfLine() -> nToolBarPosition + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt index 9f83abf71c..613d772596 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qstyleoptiontoolbox.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt index ee6dfd124e..a893778348 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt @@ -1,61 +1,59 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionToolButton() - $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 - :font() -> pQFont - :icon() -> pQIcon - :iconSize() -> pQSize - :pos() -> pQPoint - :text() -> cQString - :toolButtonStyle() -> nQt::ToolButtonStyle - - $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/TQStyleOptionToolButton.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOptionComplex - $END$ + * $NAME$ + * QStyleOptionToolButton() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionToolButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionToolButton():new( ... ) + * QStyleOptionToolButton():from( pPtr_OR_oObj_of_type_QStyleOptionToolButton ) + * QStyleOptionToolButton():configure( pPtr_OR_oObj_of_type_QStyleOptionToolButton ) + * $METHODS$ + * :arrowType() -> nQt::ArrowType + * :features() -> nToolButtonFeatures + * :font() -> pQFont + * :icon() -> pQIcon + * :iconSize() -> pQSize + * :pos() -> pQPoint + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt index cd5573f536..dba0d8b2b8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStyleOptionViewItem() - $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 - :decorationSize() -> pQSize - :displayAlignment() -> nQt::Alignment - :font() -> pQFont - :showDecorationSelected() -> lBool - :textElideMode() -> nQt::TextElideMode - - $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/TQStyleOptionViewItem.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp - Library : hbqtgui - $SEEALSO$ - QStyleOption - $END$ + * $NAME$ + * QStyleOptionViewItem() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStyleOptionViewItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStyleOptionViewItem():new( ... ) + * QStyleOptionViewItem():from( pPtr_OR_oObj_of_type_QStyleOptionViewItem ) + * QStyleOptionViewItem():configure( pPtr_OR_oObj_of_type_QStyleOptionViewItem ) + * $METHODS$ + * :decorationAlignment() -> nQt::Alignment + * :decorationPosition() -> nPosition + * :decorationSize() -> pQSize + * :displayAlignment() -> nQt::Alignment + * :font() -> pQFont + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt index 7b5c9b7b4f..92cae2bee7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt @@ -1,61 +1,59 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QStylePainter() - $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 - :drawComplexControl( nCc, pOption ) -> NIL - :drawControl( nCe, pOption ) -> NIL - :drawItemPixmap( pRect, nFlags, pPixmap ) -> NIL - :drawItemText( pRect, nFlags, pPal, lEnabled, cText, nTextRole ) -> NIL - :drawPrimitive( nPe, pOption ) -> NIL - :style() -> pQStyle - - $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/TQStylePainter.prg - C++ wrappers : contrib/hbqt/qtgui/QStylePainter.cpp - Library : hbqtgui - $SEEALSO$ - QPainter - $END$ + * $NAME$ + * QStylePainter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQStylePainter.prg + * C++ wrappers : contrib/hbqt/qtgui/QStylePainter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QStylePainter():new( ... ) + * QStylePainter():from( pPtr_OR_oObj_of_type_QStylePainter ) + * QStylePainter():configure( pPtr_OR_oObj_of_type_QStylePainter ) + * $METHODS$ + * :begin( pWidget ) -> lBool + * :begin_1( pPd, pWidget ) -> lBool + * :drawComplexControl( nCc, pOption ) -> NIL + * :drawControl( nCe, pOption ) -> NIL + * :drawItemPixmap( pRect, nFlags, pPixmap ) -> NIL + * :drawItemText( pRect, nFlags, pPal, lEnabled, cText, nTextRole ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt index 1e8db4bd45..0639923c3b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSyntaxHighlighter() - $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 - - $DESCRIPTION$ - - $EXAMPLES$ - oSynHiliter := HBQSyntaxHighlighter():new( pObject ) - oSynHiliter := HBQSyntaxHighlighter():new( "QTextDocument", pQTextDocument ) - oSynHiliter := HBQSyntaxHighlighter():new( "QTextEdit", pQTextEdit ) - - $TESTS$ - - $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/TQSyntaxHighlighter.prg - C++ wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QSyntaxHighlighter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSyntaxHighlighter.prg + * C++ wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSyntaxHighlighter():new( ... ) + * QSyntaxHighlighter():from( pPtr_OR_oObj_of_type_QSyntaxHighlighter ) + * QSyntaxHighlighter():configure( pPtr_OR_oObj_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 + * $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$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qsyntaxhighlighter.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt index 98b00e640d..2cc2fb1ea7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QSystemTrayIcon() - $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 - :icon() -> pQIcon - :isVisible() -> lBool - :setContextMenu( pMenu ) -> NIL - :setIcon( cIcon ) -> NIL - :setToolTip( cTip ) -> NIL - :showMessage( cTitle, cMessage, nIcon, nMillisecondsTimeoutHint ) -> NIL - :toolTip() -> cQString - :isSystemTrayAvailable() -> lBool - :supportsMessages() -> lBool - :hide() -> NIL - :setVisible( lVisible ) -> NIL - :show() -> 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/TQSystemTrayIcon.prg - C++ wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QSystemTrayIcon() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQSystemTrayIcon.prg + * C++ wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QSystemTrayIcon():new( ... ) + * QSystemTrayIcon():from( pPtr_OR_oObj_of_type_QSystemTrayIcon ) + * QSystemTrayIcon():configure( pPtr_OR_oObj_of_type_QSystemTrayIcon ) + * $METHODS$ + * :contextMenu() -> pQMenu + * :geometry() -> pQRect + * :icon() -> pQIcon + * :isVisible() -> lBool + * :setContextMenu( pMenu ) -> NIL + * :setIcon( cIcon ) -> NIL + * :setToolTip( cTip ) -> NIL + * :showMessage( cTitle, cMessage, nIcon, nMillisecondsTimeoutHint ) -> NIL + * :toolTip() -> cQString + * :isSystemTrayAvailable() -> lBool + * :supportsMessages() -> lBool + * :hide() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtabbar.txt b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt index 0794e1d4ba..fc034b4eea 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtabbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt @@ -1,97 +1,95 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTabBar() - $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 - :currentIndex() -> nInt - :documentMode() -> lBool - :drawBase() -> lBool - :elideMode() -> nQt::TextElideMode - :expanding() -> lBool - :iconSize() -> pQSize - :insertTab( nIndex, cText ) -> nInt - :isMovable() -> lBool - :isTabEnabled( nIndex ) -> lBool - :moveTab( nFrom, nTo ) -> NIL - :removeTab( nIndex ) -> NIL - :selectionBehaviorOnRemove() -> nSelectionBehavior - :setDocumentMode( lSet ) -> NIL - :setDrawBase( lDrawTheBase ) -> NIL - :setElideMode( nQt::TextElideMode ) -> NIL - :setExpanding( lEnabled ) -> NIL - :setIconSize( pSize ) -> NIL - :setMovable( lMovable ) -> NIL - :setSelectionBehaviorOnRemove( nBehavior ) -> NIL - :setShape( nShape ) -> NIL - :setTabButton( nIndex, nPosition, pWidget ) -> NIL - :setTabData( nIndex, pData ) -> NIL - :setTabEnabled( nIndex, lEnabled ) -> NIL - :setTabText( nIndex, cText ) -> NIL - :setTabTextColor( nIndex, pColor ) -> NIL - :setTabToolTip( nIndex, cTip ) -> NIL - :setTabWhatsThis( nIndex, cText ) -> NIL - :setTabsClosable( lClosable ) -> NIL - :setUsesScrollButtons( lUseButtons ) -> NIL - :shape() -> nShape - :tabAt( pPosition ) -> nInt - :tabButton( nIndex, nPosition ) -> pQWidget - :tabData( nIndex ) -> pQVariant - :tabIcon( nIndex ) -> pQIcon - :tabRect( nIndex ) -> pQRect - :tabText( nIndex ) -> cQString - :tabTextColor( nIndex ) -> pQColor - :tabToolTip( nIndex ) -> cQString - :tabWhatsThis( nIndex ) -> cQString - :tabsClosable() -> lBool - :usesScrollButtons() -> lBool - :setCurrentIndex( nIndex ) -> 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/TQTabBar.prg - C++ wrappers : contrib/hbqt/qtgui/QTabBar.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QTabBar() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTabBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QTabBar.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTabBar():new( ... ) + * QTabBar():from( pPtr_OR_oObj_of_type_QTabBar ) + * QTabBar():configure( pPtr_OR_oObj_of_type_QTabBar ) + * $METHODS$ + * :addTab( cText ) -> nInt + * :count() -> nInt + * :currentIndex() -> nInt + * :documentMode() -> lBool + * :drawBase() -> lBool + * :elideMode() -> nQt::TextElideMode + * :expanding() -> lBool + * :iconSize() -> pQSize + * :insertTab( nIndex, cText ) -> nInt + * :isMovable() -> lBool + * :isTabEnabled( nIndex ) -> lBool + * :moveTab( nFrom, nTo ) -> NIL + * :removeTab( nIndex ) -> NIL + * :selectionBehaviorOnRemove() -> nSelectionBehavior + * :setDocumentMode( lSet ) -> NIL + * :setDrawBase( lDrawTheBase ) -> NIL + * :setElideMode( nQt::TextElideMode ) -> NIL + * :setExpanding( lEnabled ) -> NIL + * :setIconSize( pSize ) -> NIL + * :setMovable( lMovable ) -> NIL + * :setSelectionBehaviorOnRemove( nBehavior ) -> NIL + * :setShape( nShape ) -> NIL + * :setTabButton( nIndex, nPosition, pWidget ) -> NIL + * :setTabData( nIndex, pData ) -> NIL + * :setTabEnabled( nIndex, lEnabled ) -> NIL + * :setTabText( nIndex, cText ) -> NIL + * :setTabTextColor( nIndex, pColor ) -> NIL + * :setTabToolTip( nIndex, cTip ) -> NIL + * :setTabWhatsThis( nIndex, cText ) -> NIL + * :setTabsClosable( lClosable ) -> NIL + * :setUsesScrollButtons( lUseButtons ) -> NIL + * :shape() -> nShape + * :tabAt( pPosition ) -> nInt + * :tabButton( nIndex, nPosition ) -> pQWidget + * :tabData( nIndex ) -> pQVariant + * :tabIcon( nIndex ) -> pQIcon + * :tabRect( nIndex ) -> pQRect + * :tabText( nIndex ) -> cQString + * :tabTextColor( nIndex ) -> pQColor + * :tabToolTip( nIndex ) -> cQString + * :tabWhatsThis( nIndex ) -> cQString + * :tabsClosable() -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtableview.txt b/harbour/contrib/hbqt/doc/en/class_qtableview.txt index 38a71a85c5..7e99714f31 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtableview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtableview.txt @@ -1,95 +1,93 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTableView() - $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 - :columnSpan( nRow, nColumn ) -> nInt - :columnViewportPosition( nColumn ) -> nInt - :columnWidth( nColumn ) -> nInt - :gridStyle() -> nQt::PenStyle - :horizontalHeader() -> pQHeaderView - :indexAt( pPos ) -> pQModelIndex - :isColumnHidden( nColumn ) -> lBool - :isCornerButtonEnabled() -> lBool - :isRowHidden( nRow ) -> lBool - :isSortingEnabled() -> lBool - :rowAt( nY ) -> nInt - :rowHeight( nRow ) -> nInt - :rowSpan( nRow, nColumn ) -> nInt - :rowViewportPosition( nRow ) -> nInt - :setColumnHidden( nColumn, lHide ) -> NIL - :setColumnWidth( nColumn, nWidth ) -> NIL - :setCornerButtonEnabled( lEnable ) -> NIL - :setGridStyle( nStyle ) -> NIL - :setHorizontalHeader( pHeader ) -> NIL - :setRowHeight( nRow, nHeight ) -> NIL - :setRowHidden( nRow, lHide ) -> NIL - :setSortingEnabled( lEnable ) -> NIL - :setSpan( nRow, nColumn, nRowSpanCount, nColumnSpanCount ) -> NIL - :setVerticalHeader( pHeader ) -> NIL - :setWordWrap( lOn ) -> NIL - :showGrid() -> lBool - :sortByColumn( nColumn, nOrder ) -> NIL - :verticalHeader() -> pQHeaderView - :wordWrap() -> lBool - :hideColumn( nColumn ) -> NIL - :hideRow( nRow ) -> NIL - :resizeColumnToContents( nColumn ) -> NIL - :resizeColumnsToContents() -> NIL - :resizeRowToContents( nRow ) -> NIL - :resizeRowsToContents() -> NIL - :selectColumn( nColumn ) -> NIL - :selectRow( nRow ) -> NIL - :setShowGrid( lShow ) -> NIL - :showColumn( nColumn ) -> NIL - :showRow( nRow ) -> 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/TQTableView.prg - C++ wrappers : contrib/hbqt/qtgui/QTableView.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractItemView - $END$ + * $NAME$ + * QTableView() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTableView.prg + * C++ wrappers : contrib/hbqt/qtgui/QTableView.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTableView():new( ... ) + * QTableView():from( pPtr_OR_oObj_of_type_QTableView ) + * QTableView():configure( pPtr_OR_oObj_of_type_QTableView ) + * $METHODS$ + * :clearSpans() -> NIL + * :columnAt( nX ) -> nInt + * :columnSpan( nRow, nColumn ) -> nInt + * :columnViewportPosition( nColumn ) -> nInt + * :columnWidth( nColumn ) -> nInt + * :gridStyle() -> nQt::PenStyle + * :horizontalHeader() -> pQHeaderView + * :indexAt( pPos ) -> pQModelIndex + * :isColumnHidden( nColumn ) -> lBool + * :isCornerButtonEnabled() -> lBool + * :isRowHidden( nRow ) -> lBool + * :isSortingEnabled() -> lBool + * :rowAt( nY ) -> nInt + * :rowHeight( nRow ) -> nInt + * :rowSpan( nRow, nColumn ) -> nInt + * :rowViewportPosition( nRow ) -> nInt + * :setColumnHidden( nColumn, lHide ) -> NIL + * :setColumnWidth( nColumn, nWidth ) -> NIL + * :setCornerButtonEnabled( lEnable ) -> NIL + * :setGridStyle( nStyle ) -> NIL + * :setHorizontalHeader( pHeader ) -> NIL + * :setRowHeight( nRow, nHeight ) -> NIL + * :setRowHidden( nRow, lHide ) -> NIL + * :setSortingEnabled( lEnable ) -> NIL + * :setSpan( nRow, nColumn, nRowSpanCount, nColumnSpanCount ) -> NIL + * :setVerticalHeader( pHeader ) -> NIL + * :setWordWrap( lOn ) -> NIL + * :showGrid() -> lBool + * :sortByColumn( nColumn, nOrder ) -> NIL + * :verticalHeader() -> pQHeaderView + * :wordWrap() -> lBool + * :hideColumn( nColumn ) -> NIL + * :hideRow( nRow ) -> NIL + * :resizeColumnToContents( nColumn ) -> NIL + * :resizeColumnsToContents() -> NIL + * :resizeRowToContents( nRow ) -> NIL + * :resizeRowsToContents() -> NIL + * :selectColumn( nColumn ) -> NIL + * :selectRow( nRow ) -> NIL + * :setShowGrid( lShow ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt index a58141e31e..2710c2665d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt @@ -1,102 +1,100 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTableWidget() - $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 - :column( pItem ) -> nInt - :columnCount() -> nInt - :currentColumn() -> nInt - :currentItem() -> Item - :currentRow() -> nInt - :editItem( pItem ) -> NIL - :findItems( cText, nFlags ) -> pQList - :horizontalHeaderItem( nColumn ) -> Item - :item( nRow, nColumn ) -> Item - :itemAt( pPoint ) -> Item - :itemAt_1( nAx, nAy ) -> Item - :itemPrototype() -> Item - :openPersistentEditor( pItem ) -> NIL - :removeCellWidget( nRow, nColumn ) -> NIL - :row( pItem ) -> nInt - :rowCount() -> nInt - :selectedItems() -> pQList - :selectedRanges() -> pQList - :setCellWidget( nRow, nColumn, pWidget ) -> NIL - :setColumnCount( nColumns ) -> NIL - :setCurrentCell( nRow, nColumn ) -> NIL - :setCurrentCell_1( nRow, nColumn, nCommand ) -> NIL - :setCurrentItem( pItem ) -> NIL - :setCurrentItem_1( pItem, nCommand ) -> NIL - :setHorizontalHeaderItem( nColumn, pItem ) -> NIL - :setHorizontalHeaderLabels( pLabels ) -> NIL - :setItem( nRow, nColumn, pItem ) -> NIL - :setItemPrototype( pItem ) -> NIL - :setRangeSelected( pRange, lSelect ) -> NIL - :setRowCount( nRows ) -> NIL - :setVerticalHeaderItem( nRow, pItem ) -> NIL - :setVerticalHeaderLabels( pLabels ) -> NIL - :sortItems( nColumn, nOrder ) -> NIL - :takeHorizontalHeaderItem( nColumn ) -> Item - :takeItem( nRow, nColumn ) -> Item - :takeVerticalHeaderItem( nRow ) -> Item - :verticalHeaderItem( nRow ) -> Item - :visualColumn( nLogicalColumn ) -> nInt - :visualItemRect( pItem ) -> pQRect - :visualRow( nLogicalRow ) -> nInt - :clear() -> NIL - :clearContents() -> NIL - :insertColumn( nColumn ) -> NIL - :insertRow( nRow ) -> NIL - :removeColumn( nColumn ) -> NIL - :removeRow( nRow ) -> NIL - :scrollToItem( pItem, nHint ) -> 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/TQTableWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QTableWidget.cpp - Library : hbqtgui - $SEEALSO$ - QTableView - $END$ + * $NAME$ + * QTableWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTableWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QTableWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTableWidget():new( ... ) + * QTableWidget():from( pPtr_OR_oObj_of_type_QTableWidget ) + * QTableWidget():configure( pPtr_OR_oObj_of_type_QTableWidget ) + * $METHODS$ + * :cellWidget( nRow, nColumn ) -> pQWidget + * :closePersistentEditor( pItem ) -> NIL + * :column( pItem ) -> nInt + * :columnCount() -> nInt + * :currentColumn() -> nInt + * :currentItem() -> Item + * :currentRow() -> nInt + * :editItem( pItem ) -> NIL + * :findItems( cText, nFlags ) -> pQList + * :horizontalHeaderItem( nColumn ) -> Item + * :item( nRow, nColumn ) -> Item + * :itemAt( pPoint ) -> Item + * :itemAt_1( nAx, nAy ) -> Item + * :itemPrototype() -> Item + * :openPersistentEditor( pItem ) -> NIL + * :removeCellWidget( nRow, nColumn ) -> NIL + * :row( pItem ) -> nInt + * :rowCount() -> nInt + * :selectedItems() -> pQList + * :selectedRanges() -> pQList + * :setCellWidget( nRow, nColumn, pWidget ) -> NIL + * :setColumnCount( nColumns ) -> NIL + * :setCurrentCell( nRow, nColumn ) -> NIL + * :setCurrentCell_1( nRow, nColumn, nCommand ) -> NIL + * :setCurrentItem( pItem ) -> NIL + * :setCurrentItem_1( pItem, nCommand ) -> NIL + * :setHorizontalHeaderItem( nColumn, pItem ) -> NIL + * :setHorizontalHeaderLabels( pLabels ) -> NIL + * :setItem( nRow, nColumn, pItem ) -> NIL + * :setItemPrototype( pItem ) -> NIL + * :setRangeSelected( pRange, lSelect ) -> NIL + * :setRowCount( nRows ) -> NIL + * :setVerticalHeaderItem( nRow, pItem ) -> NIL + * :setVerticalHeaderLabels( pLabels ) -> NIL + * :sortItems( nColumn, nOrder ) -> NIL + * :takeHorizontalHeaderItem( nColumn ) -> Item + * :takeItem( nRow, nColumn ) -> Item + * :takeVerticalHeaderItem( nRow ) -> Item + * :verticalHeaderItem( nRow ) -> Item + * :visualColumn( nLogicalColumn ) -> nInt + * :visualItemRect( pItem ) -> pQRect + * :visualRow( nLogicalRow ) -> nInt + * :clear() -> NIL + * :clearContents() -> NIL + * :insertColumn( nColumn ) -> NIL + * :insertRow( nRow ) -> NIL + * :removeColumn( nColumn ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt index ee311cdf4c..4c94404423 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt @@ -1,87 +1,85 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTableWidgetItem() - $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 - :column() -> nInt - :data( nRole ) -> pQVariant - :flags() -> nQt::ItemFlags - :font() -> pQFont - :foreground() -> pQBrush - :icon() -> pQIcon - :isSelected() -> lBool - :read( pIn ) -> NIL - :row() -> nInt - :setBackground( pBrush ) -> NIL - :setCheckState( nState ) -> NIL - :setData( nRole, pValue ) -> NIL - :setFlags( nFlags ) -> NIL - :setFont( pFont ) -> NIL - :setForeground( pBrush ) -> NIL - :setIcon( cIcon ) -> NIL - :setSelected( lSelect ) -> NIL - :setSizeHint( pSize ) -> NIL - :setStatusTip( cStatusTip ) -> NIL - :setText( cText ) -> NIL - :setTextAlignment( nAlignment ) -> NIL - :setToolTip( cToolTip ) -> NIL - :setWhatsThis( cWhatsThis ) -> NIL - :sizeHint() -> pQSize - :statusTip() -> cQString - :tableWidget() -> pQTableWidget - :text() -> cQString - :textAlignment() -> nInt - :toolTip() -> cQString - :type() -> nInt - :whatsThis() -> cQString - :write( pOut ) -> 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/TQTableWidgetItem.prg - C++ wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTableWidgetItem() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTableWidgetItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTableWidgetItem():new( ... ) + * QTableWidgetItem():from( pPtr_OR_oObj_of_type_QTableWidgetItem ) + * QTableWidgetItem():configure( pPtr_OR_oObj_of_type_QTableWidgetItem ) + * $METHODS$ + * :background() -> pQBrush + * :checkState() -> nQt::CheckState + * :column() -> nInt + * :data( nRole ) -> pQVariant + * :flags() -> nQt::ItemFlags + * :font() -> pQFont + * :foreground() -> pQBrush + * :icon() -> pQIcon + * :isSelected() -> lBool + * :read( pIn ) -> NIL + * :row() -> nInt + * :setBackground( pBrush ) -> NIL + * :setCheckState( nState ) -> NIL + * :setData( nRole, pValue ) -> NIL + * :setFlags( nFlags ) -> NIL + * :setFont( pFont ) -> NIL + * :setForeground( pBrush ) -> NIL + * :setIcon( cIcon ) -> NIL + * :setSelected( lSelect ) -> NIL + * :setSizeHint( pSize ) -> NIL + * :setStatusTip( cStatusTip ) -> NIL + * :setText( cText ) -> NIL + * :setTextAlignment( nAlignment ) -> NIL + * :setToolTip( cToolTip ) -> NIL + * :setWhatsThis( cWhatsThis ) -> NIL + * :sizeHint() -> pQSize + * :statusTip() -> cQString + * :tableWidget() -> pQTableWidget + * :text() -> cQString + * :textAlignment() -> nInt + * :toolTip() -> cQString + * :type() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt index b9056f4974..b78e8c40c0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTableWidgetSelectionRange() - $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 - :leftColumn() -> nInt - :rightColumn() -> nInt - :rowCount() -> nInt - :topRow() -> 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/TQTableWidgetSelectionRange.prg - C++ wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTableWidgetSelectionRange() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg + * C++ wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTableWidgetSelectionRange():new( ... ) + * QTableWidgetSelectionRange():from( pPtr_OR_oObj_of_type_QTableWidgetSelectionRange ) + * QTableWidgetSelectionRange():configure( pPtr_OR_oObj_of_type_QTableWidgetSelectionRange ) + * $METHODS$ + * :bottomRow() -> nInt + * :columnCount() -> nInt + * :leftColumn() -> nInt + * :rightColumn() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt index 202dea5c24..f792a80ff5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt @@ -1,94 +1,92 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTabWidget() - $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 - :clear() -> NIL - :cornerWidget( nCorner ) -> pQWidget - :count() -> nInt - :currentIndex() -> nInt - :currentWidget() -> pQWidget - :documentMode() -> lBool - :elideMode() -> nQt::TextElideMode - :iconSize() -> pQSize - :indexOf( pW ) -> nInt - :insertTab( nIndex, pPage, cLabel ) -> nInt - :insertTab_1( nIndex, pPage, cIcon, cLabel ) -> nInt - :isMovable() -> lBool - :isTabEnabled( nIndex ) -> lBool - :removeTab( nIndex ) -> NIL - :setCornerWidget( pWidget, nCorner ) -> NIL - :setDocumentMode( lSet ) -> NIL - :setElideMode( nQt::TextElideMode ) -> NIL - :setIconSize( pSize ) -> NIL - :setMovable( lMovable ) -> NIL - :setTabEnabled( nIndex, lEnable ) -> NIL - :setTabIcon( nIndex, cIcon ) -> NIL - :setTabPosition( nTabPosition ) -> NIL - :setTabShape( nS ) -> NIL - :setTabText( nIndex, cLabel ) -> NIL - :setTabToolTip( nIndex, cTip ) -> NIL - :setTabWhatsThis( nIndex, cText ) -> NIL - :setTabsClosable( lCloseable ) -> NIL - :setUsesScrollButtons( lUseButtons ) -> NIL - :tabIcon( nIndex ) -> pQIcon - :tabPosition() -> nTabPosition - :tabShape() -> nTabShape - :tabText( nIndex ) -> cQString - :tabToolTip( nIndex ) -> cQString - :tabWhatsThis( nIndex ) -> cQString - :tabsClosable() -> lBool - :usesScrollButtons() -> lBool - :widget( nIndex ) -> pQWidget - :setCurrentIndex( nIndex ) -> NIL - :setCurrentWidget( pWidget ) -> 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/TQTabWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QTabWidget.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QTabWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTabWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QTabWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTabWidget():new( ... ) + * QTabWidget():from( pPtr_OR_oObj_of_type_QTabWidget ) + * QTabWidget():configure( pPtr_OR_oObj_of_type_QTabWidget ) + * $METHODS$ + * :addTab( pPage, cLabel ) -> nInt + * :addTab_1( pPage, cIcon, cLabel ) -> nInt + * :clear() -> NIL + * :cornerWidget( nCorner ) -> pQWidget + * :count() -> nInt + * :currentIndex() -> nInt + * :currentWidget() -> pQWidget + * :documentMode() -> lBool + * :elideMode() -> nQt::TextElideMode + * :iconSize() -> pQSize + * :indexOf( pW ) -> nInt + * :insertTab( nIndex, pPage, cLabel ) -> nInt + * :insertTab_1( nIndex, pPage, cIcon, cLabel ) -> nInt + * :isMovable() -> lBool + * :isTabEnabled( nIndex ) -> lBool + * :removeTab( nIndex ) -> NIL + * :setCornerWidget( pWidget, nCorner ) -> NIL + * :setDocumentMode( lSet ) -> NIL + * :setElideMode( nQt::TextElideMode ) -> NIL + * :setIconSize( pSize ) -> NIL + * :setMovable( lMovable ) -> NIL + * :setTabEnabled( nIndex, lEnable ) -> NIL + * :setTabIcon( nIndex, cIcon ) -> NIL + * :setTabPosition( nTabPosition ) -> NIL + * :setTabShape( nS ) -> NIL + * :setTabText( nIndex, cLabel ) -> NIL + * :setTabToolTip( nIndex, cTip ) -> NIL + * :setTabWhatsThis( nIndex, cText ) -> NIL + * :setTabsClosable( lCloseable ) -> NIL + * :setUsesScrollButtons( lUseButtons ) -> NIL + * :tabIcon( nIndex ) -> pQIcon + * :tabPosition() -> nTabPosition + * :tabShape() -> nTabShape + * :tabText( nIndex ) -> cQString + * :tabToolTip( nIndex ) -> cQString + * :tabWhatsThis( nIndex ) -> cQString + * :tabsClosable() -> lBool + * :usesScrollButtons() -> lBool + * :widget( nIndex ) -> pQWidget + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextblock.txt b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt index e83666b3b4..b7842227c8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextblock.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt @@ -1,78 +1,76 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextBlock() - $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 - :blockNumber() -> nInt - :charFormat() -> pQTextCharFormat - :charFormatIndex() -> nInt - :clearLayout() -> NIL - :contains( nPosition ) -> lBool - :document() -> pQTextDocument - :firstLineNumber() -> nInt - :isValid() -> lBool - :isVisible() -> lBool - :layout() -> pQTextLayout - :length() -> nInt - :lineCount() -> nInt - :position() -> nInt - :revision() -> nInt - :setLineCount( nCount ) -> NIL - :setRevision( nRev ) -> NIL - :setUserData( pData ) -> NIL - :setUserState( nState ) -> NIL - :setVisible( lVisible ) -> NIL - :text() -> cQString - :textList() -> pQTextList - :userData() -> pHBQTextBlockUserData - :userState() -> 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/TQTextBlock.prg - C++ wrappers : contrib/hbqt/qtgui/QTextBlock.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextBlock() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextBlock.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextBlock.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextBlock():new( ... ) + * QTextBlock():from( pPtr_OR_oObj_of_type_QTextBlock ) + * QTextBlock():configure( pPtr_OR_oObj_of_type_QTextBlock ) + * $METHODS$ + * :blockFormat() -> Format + * :blockFormatIndex() -> nInt + * :blockNumber() -> nInt + * :charFormat() -> pQTextCharFormat + * :charFormatIndex() -> nInt + * :clearLayout() -> NIL + * :contains( nPosition ) -> lBool + * :document() -> pQTextDocument + * :firstLineNumber() -> nInt + * :isValid() -> lBool + * :isVisible() -> lBool + * :layout() -> pQTextLayout + * :length() -> nInt + * :lineCount() -> nInt + * :position() -> nInt + * :revision() -> nInt + * :setLineCount( nCount ) -> NIL + * :setRevision( nRev ) -> NIL + * :setUserData( pData ) -> NIL + * :setUserState( nState ) -> NIL + * :setVisible( lVisible ) -> NIL + * :text() -> cQString + * :textList() -> pQTextList + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt index 48144fe269..785839473a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt @@ -1,72 +1,70 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextBlockFormat() - $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 - :indent() -> nInt - :isValid() -> lBool - :leftMargin() -> nQreal - :nonBreakableLines() -> lBool - :pageBreakPolicy() -> nPageBreakFlags - :rightMargin() -> nQreal - :setAlignment( nAlignment ) -> NIL - :setBottomMargin( nMargin ) -> NIL - :setIndent( nIndentation ) -> NIL - :setLeftMargin( nMargin ) -> NIL - :setNonBreakableLines( lB ) -> NIL - :setPageBreakPolicy( nPolicy ) -> NIL - :setRightMargin( nMargin ) -> NIL - :setTextIndent( nIndent ) -> NIL - :setTopMargin( nMargin ) -> NIL - :textIndent() -> nQreal - :topMargin() -> nQreal - - $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/TQTextBlockFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp - Library : hbqtgui - $SEEALSO$ - QTextFormat - $END$ + * $NAME$ + * QTextBlockFormat() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextBlockFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextBlockFormat():new( ... ) + * QTextBlockFormat():from( pPtr_OR_oObj_of_type_QTextBlockFormat ) + * QTextBlockFormat():configure( pPtr_OR_oObj_of_type_QTextBlockFormat ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :bottomMargin() -> nQreal + * :indent() -> nInt + * :isValid() -> lBool + * :leftMargin() -> nQreal + * :nonBreakableLines() -> lBool + * :pageBreakPolicy() -> nPageBreakFlags + * :rightMargin() -> nQreal + * :setAlignment( nAlignment ) -> NIL + * :setBottomMargin( nMargin ) -> NIL + * :setIndent( nIndentation ) -> NIL + * :setLeftMargin( nMargin ) -> NIL + * :setNonBreakableLines( lB ) -> NIL + * :setPageBreakPolicy( nPolicy ) -> NIL + * :setRightMargin( nMargin ) -> NIL + * :setTextIndent( nIndent ) -> NIL + * :setTopMargin( nMargin ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt index 1c83eff1b9..038531586a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt @@ -1,64 +1,62 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextBoundaryFinder() - $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 - :isValid() -> lBool - :position() -> nInt - :setPosition( nPosition ) -> NIL - :string() -> cQString - :toEnd() -> NIL - :toNextBoundary() -> nInt - :toPreviousBoundary() -> nInt - :toStart() -> NIL - :type() -> nBoundaryType - - $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/TQTextBoundaryFinder.prg - C++ wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QTextBoundaryFinder() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQTextBoundaryFinder.prg + * C++ wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextBoundaryFinder():new( ... ) + * QTextBoundaryFinder():from( pPtr_OR_oObj_of_type_QTextBoundaryFinder ) + * QTextBoundaryFinder():configure( pPtr_OR_oObj_of_type_QTextBoundaryFinder ) + * $METHODS$ + * :boundaryReasons() -> nBoundaryReasons + * :isAtBoundary() -> lBool + * :isValid() -> lBool + * :position() -> nInt + * :setPosition( nPosition ) -> NIL + * :string() -> cQString + * :toEnd() -> NIL + * :toNextBoundary() -> nInt + * :toPreviousBoundary() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt index 5a579d3d48..ef2e3b9a52 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt @@ -1,73 +1,71 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextBrowser() - $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 - :forwardHistoryCount() -> nInt - :historyTitle( nI ) -> cQString - :historyUrl( nI ) -> pQUrl - :isBackwardAvailable() -> lBool - :isForwardAvailable() -> lBool - :loadResource( nType, pName ) -> pQVariant - :openExternalLinks() -> lBool - :openLinks() -> lBool - :searchPaths() -> pQStringList - :setOpenExternalLinks( lOpen ) -> NIL - :setOpenLinks( lOpen ) -> NIL - :setSearchPaths( pPaths ) -> NIL - :source() -> pQUrl - :backward() -> NIL - :forward() -> NIL - :home() -> NIL - :reload() -> NIL - :setSource( pName ) -> 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/TQTextBrowser.prg - C++ wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp - Library : hbqtgui - $SEEALSO$ - QTextEdit - $END$ + * $NAME$ + * QTextBrowser() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextBrowser.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextBrowser():new( ... ) + * QTextBrowser():from( pPtr_OR_oObj_of_type_QTextBrowser ) + * QTextBrowser():configure( pPtr_OR_oObj_of_type_QTextBrowser ) + * $METHODS$ + * :backwardHistoryCount() -> nInt + * :clearHistory() -> NIL + * :forwardHistoryCount() -> nInt + * :historyTitle( nI ) -> cQString + * :historyUrl( nI ) -> pQUrl + * :isBackwardAvailable() -> lBool + * :isForwardAvailable() -> lBool + * :loadResource( nType, pName ) -> pQVariant + * :openExternalLinks() -> lBool + * :openLinks() -> lBool + * :searchPaths() -> pQStringList + * :setOpenExternalLinks( lOpen ) -> NIL + * :setOpenLinks( lOpen ) -> NIL + * :setSearchPaths( pPaths ) -> NIL + * :source() -> pQUrl + * :backward() -> NIL + * :forward() -> NIL + * :home() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt index 442133d50a..f8ef5cb87a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt @@ -1,100 +1,98 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextCharFormat() - $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 - :font() -> pQFont - :fontCapitalization() -> nQFont::Capitalization - :fontFamily() -> cQString - :fontFixedPitch() -> lBool - :fontItalic() -> lBool - :fontKerning() -> lBool - :fontLetterSpacing() -> nQreal - :fontOverline() -> lBool - :fontPointSize() -> nQreal - :fontStrikeOut() -> lBool - :fontStyleHint() -> nQFont::StyleHint - :fontStyleStrategy() -> nQFont::StyleStrategy - :fontUnderline() -> lBool - :fontWeight() -> nInt - :fontWordSpacing() -> nQreal - :isAnchor() -> lBool - :isValid() -> lBool - :setAnchor( lAnchor ) -> NIL - :setAnchorHref( cValue ) -> NIL - :setAnchorNames( pNames ) -> NIL - :setFont( pFont ) -> NIL - :setFontCapitalization( nCapitalization ) -> NIL - :setFontFamily( cFamily ) -> NIL - :setFontFixedPitch( lFixedPitch ) -> NIL - :setFontItalic( lItalic ) -> NIL - :setFontKerning( lEnable ) -> NIL - :setFontLetterSpacing( nSpacing ) -> NIL - :setFontOverline( lOverline ) -> NIL - :setFontPointSize( nSize ) -> NIL - :setFontStrikeOut( lStrikeOut ) -> NIL - :setFontStyleHint( nHint, nStrategy ) -> NIL - :setFontStyleStrategy( nStrategy ) -> NIL - :setFontUnderline( lUnderline ) -> NIL - :setFontWeight( nWeight ) -> NIL - :setFontWordSpacing( nSpacing ) -> NIL - :setTextOutline( pPen ) -> NIL - :setToolTip( cText ) -> NIL - :setUnderlineColor( pColor ) -> NIL - :setUnderlineStyle( nStyle ) -> NIL - :setVerticalAlignment( nAlignment ) -> NIL - :textOutline() -> pQPen - :toolTip() -> cQString - :underlineColor() -> pQColor - :underlineStyle() -> nUnderlineStyle - :verticalAlignment() -> nVerticalAlignment - - $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/TQTextCharFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp - Library : hbqtgui - $SEEALSO$ - QTextFormat - $END$ + * $NAME$ + * QTextCharFormat() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextCharFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextCharFormat():new( ... ) + * QTextCharFormat():from( pPtr_OR_oObj_of_type_QTextCharFormat ) + * QTextCharFormat():configure( pPtr_OR_oObj_of_type_QTextCharFormat ) + * $METHODS$ + * :anchorHref() -> cQString + * :anchorNames() -> pQStringList + * :font() -> pQFont + * :fontCapitalization() -> nQFont::Capitalization + * :fontFamily() -> cQString + * :fontFixedPitch() -> lBool + * :fontItalic() -> lBool + * :fontKerning() -> lBool + * :fontLetterSpacing() -> nQreal + * :fontOverline() -> lBool + * :fontPointSize() -> nQreal + * :fontStrikeOut() -> lBool + * :fontStyleHint() -> nQFont::StyleHint + * :fontStyleStrategy() -> nQFont::StyleStrategy + * :fontUnderline() -> lBool + * :fontWeight() -> nInt + * :fontWordSpacing() -> nQreal + * :isAnchor() -> lBool + * :isValid() -> lBool + * :setAnchor( lAnchor ) -> NIL + * :setAnchorHref( cValue ) -> NIL + * :setAnchorNames( pNames ) -> NIL + * :setFont( pFont ) -> NIL + * :setFontCapitalization( nCapitalization ) -> NIL + * :setFontFamily( cFamily ) -> NIL + * :setFontFixedPitch( lFixedPitch ) -> NIL + * :setFontItalic( lItalic ) -> NIL + * :setFontKerning( lEnable ) -> NIL + * :setFontLetterSpacing( nSpacing ) -> NIL + * :setFontOverline( lOverline ) -> NIL + * :setFontPointSize( nSize ) -> NIL + * :setFontStrikeOut( lStrikeOut ) -> NIL + * :setFontStyleHint( nHint, nStrategy ) -> NIL + * :setFontStyleStrategy( nStrategy ) -> NIL + * :setFontUnderline( lUnderline ) -> NIL + * :setFontWeight( nWeight ) -> NIL + * :setFontWordSpacing( nSpacing ) -> NIL + * :setTextOutline( pPen ) -> NIL + * :setToolTip( cText ) -> NIL + * :setUnderlineColor( pColor ) -> NIL + * :setUnderlineStyle( nStyle ) -> NIL + * :setVerticalAlignment( nAlignment ) -> NIL + * :textOutline() -> pQPen + * :toolTip() -> cQString + * :underlineColor() -> pQColor + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt index 410fadf7bf..cf8b647c8b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextCodec() - $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 - :canEncode_1( cS ) -> lBool - :fromUnicode( cStr ) -> pQByteArray - :makeDecoder() -> pQTextDecoder - :makeEncoder() -> pQTextEncoder - :mibEnum() -> nInt - :name() -> pQByteArray - :toUnicode( pA ) -> cQString - :toUnicode_1( pChars ) -> cQString - :setCodecForCStrings( pCodec ) -> NIL - :setCodecForLocale( pC ) -> NIL - :setCodecForTr( pC ) -> 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/qtcore/TQTextCodec.prg - C++ wrappers : contrib/hbqt/qtcore/QTextCodec.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QTextCodec() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQTextCodec.prg + * C++ wrappers : contrib/hbqt/qtcore/QTextCodec.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextCodec():new( ... ) + * QTextCodec():from( pPtr_OR_oObj_of_type_QTextCodec ) + * QTextCodec():configure( pPtr_OR_oObj_of_type_QTextCodec ) + * $METHODS$ + * :aliases() -> pQList + * :canEncode( pCh ) -> lBool + * :canEncode_1( cS ) -> lBool + * :fromUnicode( cStr ) -> pQByteArray + * :makeDecoder() -> pQTextDecoder + * :makeEncoder() -> pQTextEncoder + * :mibEnum() -> nInt + * :name() -> pQByteArray + * :toUnicode( pA ) -> cQString + * :toUnicode_1( pChars ) -> cQString + * :setCodecForCStrings( pCodec ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt index a8f326aaab..e84115006d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt @@ -1,116 +1,114 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextCursor() - $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 - :atBlockStart() -> lBool - :atEnd() -> lBool - :atStart() -> lBool - :beginEditBlock() -> NIL - :block() -> pQTextBlock - :blockCharFormat() -> pQTextCharFormat - :blockFormat() -> pQTextBlockFormat - :blockNumber() -> nInt - :charFormat() -> pQTextCharFormat - :clearSelection() -> NIL - :columnNumber() -> nInt - :createList( pFormat ) -> pQTextList - :createList_1( nStyle ) -> pQTextList - :currentFrame() -> pQTextFrame - :currentList() -> pQTextList - :deleteChar() -> NIL - :deletePreviousChar() -> NIL - :document() -> pQTextDocument - :endEditBlock() -> NIL - :hasComplexSelection() -> lBool - :hasSelection() -> lBool - :insertBlock() -> NIL - :insertBlock_1( pFormat ) -> NIL - :insertBlock_2( pFormat, pCharFormat ) -> NIL - :insertFragment( pFragment ) -> NIL - :insertFrame( pFormat ) -> pQTextFrame - :insertHtml( cHtml ) -> NIL - :insertImage( cName ) -> NIL - :insertImage_1( pFormat ) -> NIL - :insertImage_2( pFormat, nAlignment ) -> NIL - :insertImage_3( pImage, cName ) -> NIL - :insertList( pFormat ) -> pQTextList - :insertList_1( nStyle ) -> pQTextList - :insertText( cText ) -> NIL - :insertText_1( cText, pFormat ) -> NIL - :isCopyOf( pOther ) -> lBool - :isNull() -> lBool - :joinPreviousEditBlock() -> NIL - :mergeBlockCharFormat( pModifier ) -> NIL - :mergeBlockFormat( pModifier ) -> NIL - :mergeCharFormat( pModifier ) -> NIL - :movePosition( nOperation, nMode, nN ) -> lBool - :position() -> nInt - :removeSelectedText() -> NIL - :select( nSelection ) -> NIL - :selectedTableCells( @nFirstRow, @nNumRows, @nFirstColumn, @nNumColumns ) -> NIL - :selectedText() -> cQString - :selection() -> pQTextDocumentFragment - :selectionEnd() -> nInt - :selectionStart() -> nInt - :setBlockCharFormat( pFormat ) -> NIL - :setBlockFormat( pFormat ) -> NIL - :setCharFormat( pFormat ) -> NIL - :setPosition( nPos, nM ) -> NIL - :setVisualNavigation( lB ) -> NIL - :visualNavigation() -> lBool - - $DESCRIPTION$ - - $EXAMPLES$ - oTextCursor := QTextCursor():new() - oTextCursor := QTextCursor():new( pQTextCursor ) - oTextCursor := QTextCursor():new( "QTextDocument", pQTextDocument ) - oTextCursor := QTextCursor():new( "QTextBlock" , pQTextBlock ) - oTextCursor := QTextCursor():new( "QTextFrame" , pQTextFrame ) - - $TESTS$ - - $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/TQTextCursor.prg - C++ wrappers : contrib/hbqt/qtgui/QTextCursor.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextCursor() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextCursor.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextCursor.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextCursor():new( ... ) + * QTextCursor():from( pPtr_OR_oObj_of_type_QTextCursor ) + * QTextCursor():configure( pPtr_OR_oObj_of_type_QTextCursor ) + * $METHODS$ + * :anchor() -> nInt + * :atBlockEnd() -> lBool + * :atBlockStart() -> lBool + * :atEnd() -> lBool + * :atStart() -> lBool + * :beginEditBlock() -> NIL + * :block() -> pQTextBlock + * :blockCharFormat() -> pQTextCharFormat + * :blockFormat() -> pQTextBlockFormat + * :blockNumber() -> nInt + * :charFormat() -> pQTextCharFormat + * :clearSelection() -> NIL + * :columnNumber() -> nInt + * :createList( pFormat ) -> pQTextList + * :createList_1( nStyle ) -> pQTextList + * :currentFrame() -> pQTextFrame + * :currentList() -> pQTextList + * :deleteChar() -> NIL + * :deletePreviousChar() -> NIL + * :document() -> pQTextDocument + * :endEditBlock() -> NIL + * :hasComplexSelection() -> lBool + * :hasSelection() -> lBool + * :insertBlock() -> NIL + * :insertBlock_1( pFormat ) -> NIL + * :insertBlock_2( pFormat, pCharFormat ) -> NIL + * :insertFragment( pFragment ) -> NIL + * :insertFrame( pFormat ) -> pQTextFrame + * :insertHtml( cHtml ) -> NIL + * :insertImage( cName ) -> NIL + * :insertImage_1( pFormat ) -> NIL + * :insertImage_2( pFormat, nAlignment ) -> NIL + * :insertImage_3( pImage, cName ) -> NIL + * :insertList( pFormat ) -> pQTextList + * :insertList_1( nStyle ) -> pQTextList + * :insertText( cText ) -> NIL + * :insertText_1( cText, pFormat ) -> NIL + * :isCopyOf( pOther ) -> lBool + * :isNull() -> lBool + * :joinPreviousEditBlock() -> NIL + * :mergeBlockCharFormat( pModifier ) -> NIL + * :mergeBlockFormat( pModifier ) -> NIL + * :mergeCharFormat( pModifier ) -> NIL + * :movePosition( nOperation, nMode, nN ) -> lBool + * :position() -> nInt + * :removeSelectedText() -> NIL + * :select( nSelection ) -> NIL + * :selectedTableCells( @nFirstRow, @nNumRows, @nFirstColumn, @nNumColumns ) -> NIL + * :selectedText() -> cQString + * :selection() -> pQTextDocumentFragment + * :selectionEnd() -> nInt + * :selectionStart() -> nInt + * :setBlockCharFormat( pFormat ) -> NIL + * :setBlockFormat( pFormat ) -> NIL + * :setCharFormat( pFormat ) -> NIL + * :setPosition( nPos, nM ) -> NIL + * :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 + * $EXAMPLES$ + * oTextCursor := QTextCursor():new() + * oTextCursor := QTextCursor():new( pQTextCursor ) + * oTextCursor := QTextCursor():new( "QTextDocument", pQTextDocument ) + * oTextCursor := QTextCursor():new( "QTextBlock" , pQTextBlock ) + * oTextCursor := QTextCursor():new( "QTextFrame" , pQTextFrame ) + * + * $INHERITS$ + * + * $ONELINER$ + * Creates a new QTextCursor object. + * $TEMPLATE$ + * Class + * $ARGUMENTS$ + * + * $PLATFORMS$ + * Windows, Linux, Mac OS X, OS/2 + * $COMPLIANCE$ + * Not Clipper compatible + * $DESCRIPTION$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextcursor.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt index a9e6a3cca3..08a2065957 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt @@ -1,54 +1,52 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextdecoder.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt index 43c65275fa..6550bb9404 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt @@ -1,119 +1,117 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextDocument() - $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 - :begin() -> pQTextBlock - :blockCount() -> nInt - :characterAt( nPos ) -> pQChar - :characterCount() -> nInt - :clear() -> NIL - :defaultFont() -> pQFont - :defaultStyleSheet() -> cQString - :defaultTextOption() -> pQTextOption - :documentLayout() -> pQAbstractTextDocumentLayout - :documentMargin() -> nQreal - :drawContents( pP, pRect ) -> NIL - :end() -> pQTextBlock - :find( cSubString, pCursor, nOptions ) -> pQTextCursor - :find_1( pExpr, pCursor, nOptions ) -> pQTextCursor - :find_2( cSubString, nPosition, nOptions ) -> pQTextCursor - :find_3( pExpr, nPosition, nOptions ) -> pQTextCursor - :findBlock( nPos ) -> pQTextBlock - :findBlockByLineNumber( nLineNumber ) -> pQTextBlock - :findBlockByNumber( nBlockNumber ) -> pQTextBlock - :firstBlock() -> pQTextBlock - :idealWidth() -> nQreal - :indentWidth() -> nQreal - :isEmpty() -> lBool - :isModified() -> lBool - :isRedoAvailable() -> lBool - :isUndoAvailable() -> lBool - :isUndoRedoEnabled() -> lBool - :lastBlock() -> pQTextBlock - :lineCount() -> nInt - :markContentsDirty( nPosition, nLength ) -> NIL - :maximumBlockCount() -> nInt - :metaInformation( nInfo ) -> cQString - :object( nObjectIndex ) -> pQTextObject - :objectForFormat( pF ) -> pQTextObject - :pageCount() -> nInt - :pageSize() -> pQSizeF - :print( pPrinter ) -> NIL - :redo( pCursor ) -> NIL - :resource( nType, pName ) -> pQVariant - :revision() -> nInt - :rootFrame() -> pQTextFrame - :setDefaultFont( pFont ) -> NIL - :setDefaultStyleSheet( cSheet ) -> NIL - :setDefaultTextOption( pOption ) -> NIL - :setDocumentLayout( pLayout ) -> NIL - :setDocumentMargin( nMargin ) -> NIL - :setHtml( cHtml ) -> NIL - :setIndentWidth( nWidth ) -> NIL - :setMaximumBlockCount( nMaximum ) -> NIL - :setMetaInformation( nInfo, cString ) -> NIL - :setPageSize( pSize ) -> NIL - :setPlainText( cText ) -> NIL - :setTextWidth( nWidth ) -> NIL - :setUndoRedoEnabled( lEnable ) -> NIL - :setUseDesignMetrics( lB ) -> NIL - :size() -> pQSizeF - :textWidth() -> nQreal - :toHtml( pEncoding ) -> cQString - :toPlainText() -> cQString - :undo( pCursor ) -> NIL - :useDesignMetrics() -> lBool - :redo_1() -> NIL - :setModified( lM ) -> NIL - :undo_1() -> 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/TQTextDocument.prg - C++ wrappers : contrib/hbqt/qtgui/QTextDocument.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QTextDocument() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextDocument.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextDocument.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextDocument():new( ... ) + * QTextDocument():from( pPtr_OR_oObj_of_type_QTextDocument ) + * QTextDocument():configure( pPtr_OR_oObj_of_type_QTextDocument ) + * $METHODS$ + * :addResource( nType, pName, pResource ) -> NIL + * :adjustSize() -> NIL + * :begin() -> pQTextBlock + * :blockCount() -> nInt + * :characterAt( nPos ) -> pQChar + * :characterCount() -> nInt + * :clear() -> NIL + * :defaultFont() -> pQFont + * :defaultStyleSheet() -> cQString + * :defaultTextOption() -> pQTextOption + * :documentLayout() -> pQAbstractTextDocumentLayout + * :documentMargin() -> nQreal + * :drawContents( pP, pRect ) -> NIL + * :end() -> pQTextBlock + * :find( cSubString, pCursor, nOptions ) -> pQTextCursor + * :find_1( pExpr, pCursor, nOptions ) -> pQTextCursor + * :find_2( cSubString, nPosition, nOptions ) -> pQTextCursor + * :find_3( pExpr, nPosition, nOptions ) -> pQTextCursor + * :findBlock( nPos ) -> pQTextBlock + * :findBlockByLineNumber( nLineNumber ) -> pQTextBlock + * :findBlockByNumber( nBlockNumber ) -> pQTextBlock + * :firstBlock() -> pQTextBlock + * :idealWidth() -> nQreal + * :indentWidth() -> nQreal + * :isEmpty() -> lBool + * :isModified() -> lBool + * :isRedoAvailable() -> lBool + * :isUndoAvailable() -> lBool + * :isUndoRedoEnabled() -> lBool + * :lastBlock() -> pQTextBlock + * :lineCount() -> nInt + * :markContentsDirty( nPosition, nLength ) -> NIL + * :maximumBlockCount() -> nInt + * :metaInformation( nInfo ) -> cQString + * :object( nObjectIndex ) -> pQTextObject + * :objectForFormat( pF ) -> pQTextObject + * :pageCount() -> nInt + * :pageSize() -> pQSizeF + * :print( pPrinter ) -> NIL + * :redo( pCursor ) -> NIL + * :resource( nType, pName ) -> pQVariant + * :revision() -> nInt + * :rootFrame() -> pQTextFrame + * :setDefaultFont( pFont ) -> NIL + * :setDefaultStyleSheet( cSheet ) -> NIL + * :setDefaultTextOption( pOption ) -> NIL + * :setDocumentLayout( pLayout ) -> NIL + * :setDocumentMargin( nMargin ) -> NIL + * :setHtml( cHtml ) -> NIL + * :setIndentWidth( nWidth ) -> NIL + * :setMaximumBlockCount( nMaximum ) -> NIL + * :setMetaInformation( nInfo, cString ) -> NIL + * :setPageSize( pSize ) -> NIL + * :setPlainText( cText ) -> NIL + * :setTextWidth( nWidth ) -> NIL + * :setUndoRedoEnabled( lEnable ) -> NIL + * :setUseDesignMetrics( lB ) -> NIL + * :size() -> pQSizeF + * :textWidth() -> nQreal + * :toHtml( pEncoding ) -> cQString + * :toPlainText() -> cQString + * :undo( pCursor ) -> NIL + * :useDesignMetrics() -> lBool + * :redo_1() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt index 984f288427..8ec5d203ce 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextDocumentFragment() - $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 - - $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/TQTextDocumentFragment.prg - C++ wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextDocumentFragment() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextDocumentFragment.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextDocumentFragment():new( ... ) + * QTextDocumentFragment():from( pPtr_OR_oObj_of_type_QTextDocumentFragment ) + * QTextDocumentFragment():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt index 906b56c302..dd16540de8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextDocumentWriter() - $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 - :fileName() -> cQString - :format() -> pQByteArray - :setCodec( pCodec ) -> NIL - :setDevice( pDevice ) -> NIL - :setFileName( cFileName ) -> NIL - :setFormat( pFormat ) -> NIL - :write( pDocument ) -> lBool - :write_1( pFragment ) -> 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/TQTextDocumentWriter.prg - C++ wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextDocumentWriter() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextDocumentWriter.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextDocumentWriter():new( ... ) + * QTextDocumentWriter():from( pPtr_OR_oObj_of_type_QTextDocumentWriter ) + * QTextDocumentWriter():configure( pPtr_OR_oObj_of_type_QTextDocumentWriter ) + * $METHODS$ + * :codec() -> pQTextCodec + * :device() -> pQIODevice + * :fileName() -> cQString + * :format() -> pQByteArray + * :setCodec( pCodec ) -> NIL + * :setDevice( pDevice ) -> NIL + * :setFileName( cFileName ) -> NIL + * :setFormat( pFormat ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextedit.txt b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt index becb1fb0f9..25c1351ded 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt @@ -1,134 +1,132 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextEdit() - $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 - :anchorAt( pPos ) -> cQString - :autoFormatting() -> nAutoFormatting - :canPaste() -> lBool - :createStandardContextMenu() -> pQMenu - :createStandardContextMenu_1( pPosition ) -> pQMenu - :currentCharFormat() -> pQTextCharFormat - :currentFont() -> pQFont - :cursorForPosition( pPos ) -> pQTextCursor - :cursorRect( pCursor ) -> pQRect - :cursorRect_1() -> pQRect - :cursorWidth() -> nInt - :document() -> pQTextDocument - :documentTitle() -> cQString - :ensureCursorVisible() -> NIL - :find( cExp, nOptions ) -> lBool - :fontFamily() -> cQString - :fontItalic() -> lBool - :fontPointSize() -> nQreal - :fontUnderline() -> lBool - :fontWeight() -> nInt - :isReadOnly() -> lBool - :isUndoRedoEnabled() -> lBool - :lineWrapColumnOrWidth() -> nInt - :lineWrapMode() -> nLineWrapMode - :loadResource( nType, pName ) -> pQVariant - :mergeCurrentCharFormat( pModifier ) -> NIL - :moveCursor( nOperation, nMode ) -> NIL - :overwriteMode() -> lBool - :print( pPrinter ) -> NIL - :setAcceptRichText( lAccept ) -> NIL - :setAutoFormatting( nFeatures ) -> NIL - :setCurrentCharFormat( pFormat ) -> NIL - :setCursorWidth( nWidth ) -> NIL - :setDocument( pDocument ) -> NIL - :setDocumentTitle( cTitle ) -> NIL - :setLineWrapColumnOrWidth( nW ) -> NIL - :setLineWrapMode( nMode ) -> NIL - :setOverwriteMode( lOverwrite ) -> NIL - :setReadOnly( lRo ) -> NIL - :setTabChangesFocus( lB ) -> NIL - :setTabStopWidth( nWidth ) -> NIL - :setTextCursor( pCursor ) -> NIL - :setTextInteractionFlags( nFlags ) -> NIL - :setUndoRedoEnabled( lEnable ) -> NIL - :setWordWrapMode( nPolicy ) -> NIL - :tabChangesFocus() -> lBool - :tabStopWidth() -> nInt - :textBackgroundColor() -> pQColor - :textColor() -> pQColor - :textCursor() -> pQTextCursor - :textInteractionFlags() -> nQt::TextInteractionFlags - :toHtml() -> cQString - :toPlainText() -> cQString - :wordWrapMode() -> nQTextOption::WrapMode - :append( cText ) -> NIL - :clear() -> NIL - :copy() -> NIL - :cut() -> NIL - :insertHtml( cText ) -> NIL - :insertPlainText( cText ) -> NIL - :paste() -> NIL - :redo() -> NIL - :scrollToAnchor( cName ) -> NIL - :selectAll() -> NIL - :setAlignment( nA ) -> NIL - :setCurrentFont( pF ) -> NIL - :setFontFamily( cFontFamily ) -> NIL - :setFontItalic( lItalic ) -> NIL - :setFontPointSize( nS ) -> NIL - :setFontUnderline( lUnderline ) -> NIL - :setFontWeight( nWeight ) -> NIL - :setHtml( cText ) -> NIL - :setPlainText( cText ) -> NIL - :setText( cText ) -> NIL - :setTextBackgroundColor( pC ) -> NIL - :setTextColor( pC ) -> NIL - :undo() -> NIL - :zoomIn( nRange ) -> NIL - :zoomOut( nRange ) -> 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/TQTextEdit.prg - C++ wrappers : contrib/hbqt/qtgui/QTextEdit.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractScrollArea - $END$ + * $NAME$ + * QTextEdit() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextEdit.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextEdit.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextEdit():new( ... ) + * QTextEdit():from( pPtr_OR_oObj_of_type_QTextEdit ) + * QTextEdit():configure( pPtr_OR_oObj_of_type_QTextEdit ) + * $METHODS$ + * :acceptRichText() -> lBool + * :alignment() -> nQt::Alignment + * :anchorAt( pPos ) -> cQString + * :autoFormatting() -> nAutoFormatting + * :canPaste() -> lBool + * :createStandardContextMenu() -> pQMenu + * :createStandardContextMenu_1( pPosition ) -> pQMenu + * :currentCharFormat() -> pQTextCharFormat + * :currentFont() -> pQFont + * :cursorForPosition( pPos ) -> pQTextCursor + * :cursorRect( pCursor ) -> pQRect + * :cursorRect_1() -> pQRect + * :cursorWidth() -> nInt + * :document() -> pQTextDocument + * :documentTitle() -> cQString + * :ensureCursorVisible() -> NIL + * :find( cExp, nOptions ) -> lBool + * :fontFamily() -> cQString + * :fontItalic() -> lBool + * :fontPointSize() -> nQreal + * :fontUnderline() -> lBool + * :fontWeight() -> nInt + * :isReadOnly() -> lBool + * :isUndoRedoEnabled() -> lBool + * :lineWrapColumnOrWidth() -> nInt + * :lineWrapMode() -> nLineWrapMode + * :loadResource( nType, pName ) -> pQVariant + * :mergeCurrentCharFormat( pModifier ) -> NIL + * :moveCursor( nOperation, nMode ) -> NIL + * :overwriteMode() -> lBool + * :print( pPrinter ) -> NIL + * :setAcceptRichText( lAccept ) -> NIL + * :setAutoFormatting( nFeatures ) -> NIL + * :setCurrentCharFormat( pFormat ) -> NIL + * :setCursorWidth( nWidth ) -> NIL + * :setDocument( pDocument ) -> NIL + * :setDocumentTitle( cTitle ) -> NIL + * :setLineWrapColumnOrWidth( nW ) -> NIL + * :setLineWrapMode( nMode ) -> NIL + * :setOverwriteMode( lOverwrite ) -> NIL + * :setReadOnly( lRo ) -> NIL + * :setTabChangesFocus( lB ) -> NIL + * :setTabStopWidth( nWidth ) -> NIL + * :setTextCursor( pCursor ) -> NIL + * :setTextInteractionFlags( nFlags ) -> NIL + * :setUndoRedoEnabled( lEnable ) -> NIL + * :setWordWrapMode( nPolicy ) -> NIL + * :tabChangesFocus() -> lBool + * :tabStopWidth() -> nInt + * :textBackgroundColor() -> pQColor + * :textColor() -> pQColor + * :textCursor() -> pQTextCursor + * :textInteractionFlags() -> nQt::TextInteractionFlags + * :toHtml() -> cQString + * :toPlainText() -> cQString + * :wordWrapMode() -> nQTextOption::WrapMode + * :append( cText ) -> NIL + * :clear() -> NIL + * :copy() -> NIL + * :cut() -> NIL + * :insertHtml( cText ) -> NIL + * :insertPlainText( cText ) -> NIL + * :paste() -> NIL + * :redo() -> NIL + * :scrollToAnchor( cName ) -> NIL + * :selectAll() -> NIL + * :setAlignment( nA ) -> NIL + * :setCurrentFont( pF ) -> NIL + * :setFontFamily( cFontFamily ) -> NIL + * :setFontItalic( lItalic ) -> NIL + * :setFontPointSize( nS ) -> NIL + * :setFontUnderline( lUnderline ) -> NIL + * :setFontWeight( nWeight ) -> NIL + * :setHtml( cText ) -> NIL + * :setPlainText( cText ) -> NIL + * :setText( cText ) -> NIL + * :setTextBackgroundColor( pC ) -> NIL + * :setTextColor( pC ) -> NIL + * :undo() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt index 8171dfbef6..ee9f95fa93 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qtextencoder.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt index 97e8c7baae..f8181379e2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt @@ -1,94 +1,92 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextFormat() - $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 - :brushProperty( nPropertyId ) -> pQBrush - :clearBackground() -> NIL - :clearForeground() -> NIL - :clearProperty( nPropertyId ) -> NIL - :colorProperty( nPropertyId ) -> pQColor - :doubleProperty( nPropertyId ) -> nQreal - :foreground() -> pQBrush - :hasProperty( nPropertyId ) -> lBool - :intProperty( nPropertyId ) -> nInt - :isBlockFormat() -> lBool - :isCharFormat() -> lBool - :isFrameFormat() -> lBool - :isImageFormat() -> lBool - :isListFormat() -> lBool - :isTableCellFormat() -> lBool - :isTableFormat() -> lBool - :isValid() -> lBool - :layoutDirection() -> nQt::LayoutDirection - :lengthProperty( nPropertyId ) -> pQTextLength - :merge( pOther ) -> NIL - :objectIndex() -> nInt - :objectType() -> nInt - :penProperty( nPropertyId ) -> pQPen - :property( nPropertyId ) -> pQVariant - :propertyCount() -> nInt - :setBackground( pBrush ) -> NIL - :setForeground( pBrush ) -> NIL - :setLayoutDirection( nDirection ) -> NIL - :setObjectIndex( nIndex ) -> NIL - :setObjectType( nType ) -> NIL - :setProperty( nPropertyId, pValue ) -> NIL - :stringProperty( nPropertyId ) -> cQString - :toBlockFormat() -> pQTextBlockFormat - :toCharFormat() -> pQTextCharFormat - :toFrameFormat() -> pQTextFrameFormat - :toImageFormat() -> pQTextImageFormat - :toListFormat() -> pQTextListFormat - :toTableFormat() -> pQTextTableFormat - :type() -> 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/TQTextFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextFormat.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextFormat() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextFormat.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextFormat():new( ... ) + * QTextFormat():from( pPtr_OR_oObj_of_type_QTextFormat ) + * QTextFormat():configure( pPtr_OR_oObj_of_type_QTextFormat ) + * $METHODS$ + * :background() -> pQBrush + * :boolProperty( nPropertyId ) -> lBool + * :brushProperty( nPropertyId ) -> pQBrush + * :clearBackground() -> NIL + * :clearForeground() -> NIL + * :clearProperty( nPropertyId ) -> NIL + * :colorProperty( nPropertyId ) -> pQColor + * :doubleProperty( nPropertyId ) -> nQreal + * :foreground() -> pQBrush + * :hasProperty( nPropertyId ) -> lBool + * :intProperty( nPropertyId ) -> nInt + * :isBlockFormat() -> lBool + * :isCharFormat() -> lBool + * :isFrameFormat() -> lBool + * :isImageFormat() -> lBool + * :isListFormat() -> lBool + * :isTableCellFormat() -> lBool + * :isTableFormat() -> lBool + * :isValid() -> lBool + * :layoutDirection() -> nQt::LayoutDirection + * :lengthProperty( nPropertyId ) -> pQTextLength + * :merge( pOther ) -> NIL + * :objectIndex() -> nInt + * :objectType() -> nInt + * :penProperty( nPropertyId ) -> pQPen + * :property( nPropertyId ) -> pQVariant + * :propertyCount() -> nInt + * :setBackground( pBrush ) -> NIL + * :setForeground( pBrush ) -> NIL + * :setLayoutDirection( nDirection ) -> NIL + * :setObjectIndex( nIndex ) -> NIL + * :setObjectType( nType ) -> NIL + * :setProperty( nPropertyId, pValue ) -> NIL + * :stringProperty( nPropertyId ) -> cQString + * :toBlockFormat() -> pQTextBlockFormat + * :toCharFormat() -> pQTextCharFormat + * :toFrameFormat() -> pQTextFrameFormat + * :toImageFormat() -> pQTextImageFormat + * :toListFormat() -> pQTextListFormat + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt index c2c3239f9f..755be5690b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextFragment() - $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 - :contains( nPosition ) -> lBool - :isValid() -> lBool - :length() -> nInt - :position() -> nInt - :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/TQTextFragment.prg - C++ wrappers : contrib/hbqt/qtgui/QTextFragment.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextFragment() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextFragment.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextFragment.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextFragment():new( ... ) + * QTextFragment():from( pPtr_OR_oObj_of_type_QTextFragment ) + * QTextFragment():configure( pPtr_OR_oObj_of_type_QTextFragment ) + * $METHODS$ + * :charFormat() -> pQTextCharFormat + * :charFormatIndex() -> nInt + * :contains( nPosition ) -> lBool + * :isValid() -> lBool + * :length() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextframe.txt b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt index 95decc0bf3..09d79be6da 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextFrame() - $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 - :firstPosition() -> nInt - :frameFormat() -> Format - :lastCursorPosition() -> pQTextCursor - :lastPosition() -> nInt - :setFrameFormat( pFormat ) -> 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/TQTextFrame.prg - C++ wrappers : contrib/hbqt/qtgui/QTextFrame.cpp - Library : hbqtgui - $SEEALSO$ - QTextObject - $END$ + * $NAME$ + * QTextFrame() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextFrame.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextFrame.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextFrame():new( ... ) + * QTextFrame():from( pPtr_OR_oObj_of_type_QTextFrame ) + * QTextFrame():configure( pPtr_OR_oObj_of_type_QTextFrame ) + * $METHODS$ + * :childFrames() -> pQList + * :firstCursorPosition() -> pQTextCursor + * :firstPosition() -> nInt + * :frameFormat() -> Format + * :lastCursorPosition() -> pQTextCursor + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt index 54ab7c0536..049f1ef14b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextFrameFormat() - $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 - :borderStyle() -> nBorderStyle - :bottomMargin() -> nQreal - :height() -> pQTextLength - :isValid() -> lBool - :leftMargin() -> nQreal - :margin() -> nQreal - :padding() -> nQreal - :pageBreakPolicy() -> nPageBreakFlags - :position() -> nPosition - :rightMargin() -> nQreal - :setBorder( nWidth ) -> NIL - :setBorderBrush( pBrush ) -> NIL - :setBorderStyle( nStyle ) -> NIL - :setBottomMargin( nMargin ) -> NIL - :setHeight( pHeight ) -> NIL - :setHeight_1( nHeight ) -> NIL - :setLeftMargin( nMargin ) -> NIL - :setMargin( nMargin ) -> NIL - :setPadding( nWidth ) -> NIL - :setPageBreakPolicy( nPolicy ) -> NIL - :setPosition( nPolicy ) -> NIL - :setRightMargin( nMargin ) -> NIL - :setTopMargin( nMargin ) -> NIL - :setWidth( pWidth ) -> NIL - :setWidth_1( nWidth ) -> NIL - :topMargin() -> nQreal - :width() -> pQTextLength - - $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/TQTextFrameFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp - Library : hbqtgui - $SEEALSO$ - QTextFormat - $END$ + * $NAME$ + * QTextFrameFormat() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextFrameFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextFrameFormat():new( ... ) + * QTextFrameFormat():from( pPtr_OR_oObj_of_type_QTextFrameFormat ) + * QTextFrameFormat():configure( pPtr_OR_oObj_of_type_QTextFrameFormat ) + * $METHODS$ + * :border() -> nQreal + * :borderBrush() -> pQBrush + * :borderStyle() -> nBorderStyle + * :bottomMargin() -> nQreal + * :height() -> pQTextLength + * :isValid() -> lBool + * :leftMargin() -> nQreal + * :margin() -> nQreal + * :padding() -> nQreal + * :pageBreakPolicy() -> nPageBreakFlags + * :position() -> nPosition + * :rightMargin() -> nQreal + * :setBorder( nWidth ) -> NIL + * :setBorderBrush( pBrush ) -> NIL + * :setBorderStyle( nStyle ) -> NIL + * :setBottomMargin( nMargin ) -> NIL + * :setHeight( pHeight ) -> NIL + * :setHeight_1( nHeight ) -> NIL + * :setLeftMargin( nMargin ) -> NIL + * :setMargin( nMargin ) -> NIL + * :setPadding( nWidth ) -> NIL + * :setPageBreakPolicy( nPolicy ) -> NIL + * :setPosition( nPolicy ) -> NIL + * :setRightMargin( nMargin ) -> NIL + * :setTopMargin( nMargin ) -> NIL + * :setWidth( pWidth ) -> NIL + * :setWidth_1( nWidth ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt index f055a2fa2e..c2cd4ecd2d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt @@ -1,60 +1,58 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextImageFormat() - $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 - :name() -> cQString - :setHeight( nHeight ) -> NIL - :setName( cName ) -> NIL - :setWidth( nWidth ) -> NIL - :width() -> nQreal - - $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/TQTextImageFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp - Library : hbqtgui - $SEEALSO$ - QTextCharFormat - $END$ + * $NAME$ + * QTextImageFormat() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextImageFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextImageFormat():new( ... ) + * QTextImageFormat():from( pPtr_OR_oObj_of_type_QTextImageFormat ) + * QTextImageFormat():configure( pPtr_OR_oObj_of_type_QTextImageFormat ) + * $METHODS$ + * :height() -> nQreal + * :isValid() -> lBool + * :name() -> cQString + * :setHeight( nHeight ) -> NIL + * :setName( cName ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt index c75078e624..d4ab434f1f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextInlineObject() - $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 - :format() -> pQTextFormat - :formatIndex() -> nInt - :height() -> nQreal - :isValid() -> lBool - :rect() -> pQRectF - :setAscent( nA ) -> NIL - :setDescent( nD ) -> NIL - :setWidth( nW ) -> NIL - :textDirection() -> nQt::LayoutDirection - :textPosition() -> nInt - :width() -> nQreal - - $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/TQTextInlineObject.prg - C++ wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextInlineObject() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextInlineObject.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextInlineObject():new( ... ) + * QTextInlineObject():from( pPtr_OR_oObj_of_type_QTextInlineObject ) + * QTextInlineObject():configure( pPtr_OR_oObj_of_type_QTextInlineObject ) + * $METHODS$ + * :ascent() -> nQreal + * :descent() -> nQreal + * :format() -> pQTextFormat + * :formatIndex() -> nInt + * :height() -> nQreal + * :isValid() -> lBool + * :rect() -> pQRectF + * :setAscent( nA ) -> NIL + * :setDescent( nD ) -> NIL + * :setWidth( nW ) -> NIL + * :textDirection() -> nQt::LayoutDirection + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextitem.txt b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt index fe20c41fe3..f56fd5b0e6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt @@ -1,59 +1,57 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextItem() - $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 - :font() -> pQFont - :renderFlags() -> nRenderFlags - :text() -> cQString - :width() -> nQreal - - $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/TQTextItem.prg - C++ wrappers : contrib/hbqt/qtgui/QTextItem.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextItem() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextItem.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextItem():new( ... ) + * QTextItem():from( pPtr_OR_oObj_of_type_QTextItem ) + * QTextItem():configure( pPtr_OR_oObj_of_type_QTextItem ) + * $METHODS$ + * :ascent() -> nQreal + * :descent() -> nQreal + * :font() -> pQFont + * :renderFlags() -> nRenderFlags + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt index 63dcfe3805..17949da85e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt @@ -1,82 +1,80 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextLayout() - $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 - :cacheEnabled() -> lBool - :clearAdditionalFormats() -> NIL - :clearLayout() -> NIL - :createLine() -> pQTextLine - :drawCursor( pPainter, pPosition, nCursorPosition, nWidth ) -> NIL - :drawCursor_1( pPainter, pPosition, nCursorPosition ) -> NIL - :endLayout() -> NIL - :font() -> pQFont - :isValidCursorPosition( nPos ) -> lBool - :lineAt( nI ) -> pQTextLine - :lineCount() -> nInt - :lineForTextPosition( nPos ) -> pQTextLine - :maximumWidth() -> nQreal - :minimumWidth() -> nQreal - :nextCursorPosition( nOldPos, nMode ) -> nInt - :position() -> pQPointF - :preeditAreaPosition() -> nInt - :preeditAreaText() -> cQString - :previousCursorPosition( nOldPos, nMode ) -> nInt - :setCacheEnabled( lEnable ) -> NIL - :setFont( pFont ) -> NIL - :setPosition( pP ) -> NIL - :setPreeditArea( nPosition, cText ) -> NIL - :setText( cString ) -> NIL - :setTextOption( pOption ) -> NIL - :text() -> cQString - :textOption() -> pQTextOption - - $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/TQTextLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QTextLayout.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextLayout() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextLayout.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextLayout.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextLayout():new( ... ) + * QTextLayout():from( pPtr_OR_oObj_of_type_QTextLayout ) + * QTextLayout():configure( pPtr_OR_oObj_of_type_QTextLayout ) + * $METHODS$ + * :beginLayout() -> NIL + * :boundingRect() -> pQRectF + * :cacheEnabled() -> lBool + * :clearAdditionalFormats() -> NIL + * :clearLayout() -> NIL + * :createLine() -> pQTextLine + * :drawCursor( pPainter, pPosition, nCursorPosition, nWidth ) -> NIL + * :drawCursor_1( pPainter, pPosition, nCursorPosition ) -> NIL + * :endLayout() -> NIL + * :font() -> pQFont + * :isValidCursorPosition( nPos ) -> lBool + * :lineAt( nI ) -> pQTextLine + * :lineCount() -> nInt + * :lineForTextPosition( nPos ) -> pQTextLine + * :maximumWidth() -> nQreal + * :minimumWidth() -> nQreal + * :nextCursorPosition( nOldPos, nMode ) -> nInt + * :position() -> pQPointF + * :preeditAreaPosition() -> nInt + * :preeditAreaText() -> cQString + * :previousCursorPosition( nOldPos, nMode ) -> nInt + * :setCacheEnabled( lEnable ) -> NIL + * :setFont( pFont ) -> NIL + * :setPosition( pP ) -> NIL + * :setPreeditArea( nPosition, cText ) -> NIL + * :setText( cString ) -> NIL + * :setTextOption( pOption ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlength.txt b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt index 89c4b50d4f..ca5d17ff7c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlength.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt @@ -1,56 +1,54 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextLength() - $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 - - $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/TQTextLength.prg - C++ wrappers : contrib/hbqt/qtgui/QTextLength.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextLength() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextLength.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextLength.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextLength():new( ... ) + * QTextLength():from( pPtr_OR_oObj_of_type_QTextLength ) + * QTextLength():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextline.txt b/harbour/contrib/hbqt/doc/en/class_qtextline.txt index ddca003e8b..0bef1b079d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextline.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextline.txt @@ -1,74 +1,72 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextLine() - $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 - :cursorToX_1( nCursorPos, nEdge ) -> nQreal - :descent() -> nQreal - :height() -> nQreal - :isValid() -> lBool - :lineNumber() -> nInt - :naturalTextRect() -> pQRectF - :naturalTextWidth() -> nQreal - :position() -> pQPointF - :rect() -> pQRectF - :setLineWidth( nWidth ) -> NIL - :setNumColumns( nNumColumns ) -> NIL - :setNumColumns_1( nNumColumns, nAlignmentWidth ) -> NIL - :setPosition( pPos ) -> NIL - :textLength() -> nInt - :textStart() -> nInt - :width() -> nQreal - :x() -> nQreal - :xToCursor( nX, nCpos ) -> nInt - :y() -> nQreal - - $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/TQTextLine.prg - C++ wrappers : contrib/hbqt/qtgui/QTextLine.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextLine() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextLine.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextLine.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextLine():new( ... ) + * QTextLine():from( pPtr_OR_oObj_of_type_QTextLine ) + * QTextLine():configure( pPtr_OR_oObj_of_type_QTextLine ) + * $METHODS$ + * :ascent() -> nQreal + * :cursorToX( @nCursorPos, nEdge ) -> nQreal + * :cursorToX_1( nCursorPos, nEdge ) -> nQreal + * :descent() -> nQreal + * :height() -> nQreal + * :isValid() -> lBool + * :lineNumber() -> nInt + * :naturalTextRect() -> pQRectF + * :naturalTextWidth() -> nQreal + * :position() -> pQPointF + * :rect() -> pQRectF + * :setLineWidth( nWidth ) -> NIL + * :setNumColumns( nNumColumns ) -> NIL + * :setNumColumns_1( nNumColumns, nAlignmentWidth ) -> NIL + * :setPosition( pPos ) -> NIL + * :textLength() -> nInt + * :textStart() -> nInt + * :width() -> nQreal + * :x() -> nQreal + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlist.txt b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt index 71c591f6d1..975fd4c1fc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt @@ -1,62 +1,60 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextList() - $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 - :format() -> Format - :item( nI ) -> pQTextBlock - :itemNumber( pBlock ) -> nInt - :itemText( pBlock ) -> cQString - :remove( pBlock ) -> NIL - :removeItem( nI ) -> NIL - :setFormat( pFormat ) -> 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/TQTextList.prg - C++ wrappers : contrib/hbqt/qtgui/QTextList.cpp - Library : hbqtgui - $SEEALSO$ - QTextBlockGroup - $END$ + * $NAME$ + * QTextList() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextList.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextList.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextList():new( ... ) + * QTextList():from( pPtr_OR_oObj_of_type_QTextList ) + * QTextList():configure( pPtr_OR_oObj_of_type_QTextList ) + * $METHODS$ + * :add( pBlock ) -> NIL + * :count() -> nInt + * :format() -> Format + * :item( nI ) -> pQTextBlock + * :itemNumber( pBlock ) -> nInt + * :itemText( pBlock ) -> cQString + * :remove( pBlock ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt index bd76f37961..87ae7e6161 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt @@ -1,58 +1,56 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextListFormat() - $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 - :setIndent( nIndentation ) -> NIL - :setStyle( nStyle ) -> NIL - :style() -> nStyle - - $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/TQTextListFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp - Library : hbqtgui - $SEEALSO$ - QTextFormat - $END$ + * $NAME$ + * QTextListFormat() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextListFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextListFormat():new( ... ) + * QTextListFormat():from( pPtr_OR_oObj_of_type_QTextListFormat ) + * QTextListFormat():configure( pPtr_OR_oObj_of_type_QTextListFormat ) + * $METHODS$ + * :indent() -> nInt + * :isValid() -> lBool + * :setIndent( nIndentation ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextobject.txt b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt index c902175361..162208fc9e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextObject() - $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 - - $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/TQTextObject.prg - C++ wrappers : contrib/hbqt/qtgui/QTextObject.cpp - Library : hbqtgui - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QTextObject() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextObject.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextObject.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextObject():new( ... ) + * QTextObject():from( pPtr_OR_oObj_of_type_QTextObject ) + * QTextObject():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextoption.txt b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt index a91c02c0ae..f6f27b71ce 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextoption.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextOption() - $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 - :setAlignment( nAlignment ) -> NIL - :setFlags( nFlags ) -> NIL - :setTabStop( nTabStop ) -> NIL - :setTextDirection( nDirection ) -> NIL - :setUseDesignMetrics( lEnable ) -> NIL - :setWrapMode( nMode ) -> NIL - :tabArray() -> pQList - :tabStop() -> nQreal - :textDirection() -> nQt::LayoutDirection - :useDesignMetrics() -> lBool - :wrapMode() -> nWrapMode - - $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/TQTextOption.prg - C++ wrappers : contrib/hbqt/qtgui/QTextOption.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTextOption() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextOption.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextOption.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextOption():new( ... ) + * QTextOption():from( pPtr_OR_oObj_of_type_QTextOption ) + * QTextOption():configure( pPtr_OR_oObj_of_type_QTextOption ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :flags() -> nFlags + * :setAlignment( nAlignment ) -> NIL + * :setFlags( nFlags ) -> NIL + * :setTabStop( nTabStop ) -> NIL + * :setTextDirection( nDirection ) -> NIL + * :setUseDesignMetrics( lEnable ) -> NIL + * :setWrapMode( nMode ) -> NIL + * :tabArray() -> pQList + * :tabStop() -> nQreal + * :textDirection() -> nQt::LayoutDirection + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextstream.txt b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt index 4e5c7012ee..1bc88ec6c1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextstream.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt @@ -1,90 +1,88 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextStream() - $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 - :autoDetectUnicode() -> lBool - :codec() -> pQTextCodec - :device() -> pQIODevice - :fieldAlignment() -> nFieldAlignment - :fieldWidth() -> nInt - :flush() -> NIL - :generateByteOrderMark() -> lBool - :integerBase() -> nInt - :locale() -> pQLocale - :numberFlags() -> nNumberFlags - :pos() -> nQint64 - :read( nMaxlen ) -> cQString - :readAll() -> cQString - :readLine( nMaxlen ) -> cQString - :realNumberNotation() -> nRealNumberNotation - :realNumberPrecision() -> nInt - :reset() -> NIL - :resetStatus() -> NIL - :seek( nPos ) -> lBool - :setAutoDetectUnicode( lEnabled ) -> NIL - :setCodec( pCodec ) -> NIL - :setCodec_1( pCodecName ) -> NIL - :setDevice( pDevice ) -> NIL - :setFieldAlignment( nMode ) -> NIL - :setFieldWidth( nWidth ) -> NIL - :setGenerateByteOrderMark( lGenerate ) -> NIL - :setIntegerBase( nBase ) -> NIL - :setLocale( pLocale ) -> NIL - :setNumberFlags( nFlags ) -> NIL - :setPadChar( pCh ) -> NIL - :setRealNumberNotation( nNotation ) -> NIL - :setRealNumberPrecision( nPrecision ) -> NIL - :setStatus( nStatus ) -> NIL - :skipWhiteSpace() -> NIL - :status() -> nStatus - - $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/TQTextStream.prg - C++ wrappers : contrib/hbqt/qtcore/QTextStream.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QTextStream() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQTextStream.prg + * C++ wrappers : contrib/hbqt/qtcore/QTextStream.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextStream():new( ... ) + * QTextStream():from( pPtr_OR_oObj_of_type_QTextStream ) + * QTextStream():configure( pPtr_OR_oObj_of_type_QTextStream ) + * $METHODS$ + * :padChar() -> pQChar + * :atEnd() -> lBool + * :autoDetectUnicode() -> lBool + * :codec() -> pQTextCodec + * :device() -> pQIODevice + * :fieldAlignment() -> nFieldAlignment + * :fieldWidth() -> nInt + * :flush() -> NIL + * :generateByteOrderMark() -> lBool + * :integerBase() -> nInt + * :locale() -> pQLocale + * :numberFlags() -> nNumberFlags + * :pos() -> nQint64 + * :read( nMaxlen ) -> cQString + * :readAll() -> cQString + * :readLine( nMaxlen ) -> cQString + * :realNumberNotation() -> nRealNumberNotation + * :realNumberPrecision() -> nInt + * :reset() -> NIL + * :resetStatus() -> NIL + * :seek( nPos ) -> lBool + * :setAutoDetectUnicode( lEnabled ) -> NIL + * :setCodec( pCodec ) -> NIL + * :setCodec_1( pCodecName ) -> NIL + * :setDevice( pDevice ) -> NIL + * :setFieldAlignment( nMode ) -> NIL + * :setFieldWidth( nWidth ) -> NIL + * :setGenerateByteOrderMark( lGenerate ) -> NIL + * :setIntegerBase( nBase ) -> NIL + * :setLocale( pLocale ) -> NIL + * :setNumberFlags( nFlags ) -> NIL + * :setPadChar( pCh ) -> NIL + * :setRealNumberNotation( nNotation ) -> NIL + * :setRealNumberPrecision( nPrecision ) -> NIL + * :setStatus( nStatus ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt index 44066ff93c..feb0af8201 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt @@ -1,64 +1,62 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTextTableFormat() - $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 - :cellSpacing() -> nQreal - :clearColumnWidthConstraints() -> NIL - :columns() -> nInt - :headerRowCount() -> nInt - :isValid() -> lBool - :setAlignment( nAlignment ) -> NIL - :setCellPadding( nPadding ) -> NIL - :setCellSpacing( nSpacing ) -> NIL - :setHeaderRowCount( nCount ) -> 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/TQTextTableFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp - Library : hbqtgui - $SEEALSO$ - QTextFrameFormat - $END$ + * $NAME$ + * QTextTableFormat() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTextTableFormat.prg + * C++ wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTextTableFormat():new( ... ) + * QTextTableFormat():from( pPtr_OR_oObj_of_type_QTextTableFormat ) + * QTextTableFormat():configure( pPtr_OR_oObj_of_type_QTextTableFormat ) + * $METHODS$ + * :alignment() -> nQt::Alignment + * :cellPadding() -> nQreal + * :cellSpacing() -> nQreal + * :clearColumnWidthConstraints() -> NIL + * :columns() -> nInt + * :headerRowCount() -> nInt + * :isValid() -> lBool + * :setAlignment( nAlignment ) -> NIL + * :setCellPadding( nPadding ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qthread.txt b/harbour/contrib/hbqt/doc/en/class_qthread.txt index f73bfb1731..66da1b555d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qthread.txt +++ b/harbour/contrib/hbqt/doc/en/class_qthread.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QThread() - $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 - :isRunning() -> lBool - :priority() -> nPriority - :setPriority( nPriority ) -> NIL - :setStackSize( nStackSize ) -> NIL - :stackSize() -> nUint - :wait( nTime ) -> lBool - :idealThreadCount() -> nInt - :yieldCurrentThread() -> NIL - :quit() -> NIL - :start( nPriority ) -> NIL - :terminate() -> 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/qtcore/TQThread.prg - C++ wrappers : contrib/hbqt/qtcore/QThread.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QThread() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQThread.prg + * C++ wrappers : contrib/hbqt/qtcore/QThread.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QThread():new( ... ) + * QThread():from( pPtr_OR_oObj_of_type_QThread ) + * QThread():configure( pPtr_OR_oObj_of_type_QThread ) + * $METHODS$ + * :exit( nReturnCode ) -> NIL + * :isFinished() -> lBool + * :isRunning() -> lBool + * :priority() -> nPriority + * :setPriority( nPriority ) -> NIL + * :setStackSize( nStackSize ) -> NIL + * :stackSize() -> nUint + * :wait( nTime ) -> lBool + * :idealThreadCount() -> nInt + * :yieldCurrentThread() -> NIL + * :quit() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtime.txt b/harbour/contrib/hbqt/doc/en/class_qtime.txt index c90a77f19a..6e056f609e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtime.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtime.txt @@ -1,68 +1,66 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTime() - $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 - :isNull() -> lBool - :isValid() -> lBool - :minute() -> nInt - :msec() -> nInt - :msecsTo( pT ) -> nInt - :restart() -> nInt - :second() -> nInt - :secsTo( pT ) -> nInt - :setHMS( nH, nM, nS, nMs ) -> lBool - :start() -> NIL - :toString( cFormat ) -> cQString - :toString_1( nFormat ) -> cQString - :isValid_1( nH, nM, nS, nMs ) -> 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/qtcore/TQTime.prg - C++ wrappers : contrib/hbqt/qtcore/QTime.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QTime() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQTime.prg + * C++ wrappers : contrib/hbqt/qtcore/QTime.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTime():new( ... ) + * QTime():from( pPtr_OR_oObj_of_type_QTime ) + * QTime():configure( pPtr_OR_oObj_of_type_QTime ) + * $METHODS$ + * :elapsed() -> nInt + * :hour() -> nInt + * :isNull() -> lBool + * :isValid() -> lBool + * :minute() -> nInt + * :msec() -> nInt + * :msecsTo( pT ) -> nInt + * :restart() -> nInt + * :second() -> nInt + * :secsTo( pT ) -> nInt + * :setHMS( nH, nM, nS, nMs ) -> lBool + * :start() -> NIL + * :toString( cFormat ) -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtimer.txt b/harbour/contrib/hbqt/doc/en/class_qtimer.txt index d88080787c..78e1332f03 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtimer.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtimer.txt @@ -1,63 +1,61 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTimer() - $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 - :isSingleShot() -> lBool - :setInterval( nMsec ) -> NIL - :setSingleShot( lSingleShot ) -> NIL - :timerId() -> nInt - :singleShot( nMsec, pReceiver, pMember ) -> NIL - :start() -> NIL - :stop() -> NIL - :start_1( nMsec ) -> 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/qtcore/TQTimer.prg - C++ wrappers : contrib/hbqt/qtcore/QTimer.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QTimer() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQTimer.prg + * C++ wrappers : contrib/hbqt/qtcore/QTimer.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTimer():new( ... ) + * QTimer():from( pPtr_OR_oObj_of_type_QTimer ) + * QTimer():configure( pPtr_OR_oObj_of_type_QTimer ) + * $METHODS$ + * :interval() -> nInt + * :isActive() -> lBool + * :isSingleShot() -> lBool + * :setInterval( nMsec ) -> NIL + * :setSingleShot( lSingleShot ) -> NIL + * :timerId() -> nInt + * :singleShot( nMsec, pReceiver, pMember ) -> NIL + * :start() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt index 3176ea8fb7..b2e2550d78 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt @@ -1,81 +1,79 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QToolBar() - $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 - :addAction( pAction ) -> NIL - :addAction_1( cText ) -> pQAction - :addAction_2( cIcon, cText ) -> pQAction - :addAction_3( cText, pReceiver, pMember ) -> pQAction - :addAction_4( cIcon, cText, pReceiver, pMember ) -> pQAction - :addSeparator() -> pQAction - :addWidget( pWidget ) -> pQAction - :allowedAreas() -> nQt::ToolBarAreas - :clear() -> NIL - :iconSize() -> pQSize - :insertSeparator( pBefore ) -> pQAction - :insertWidget( pBefore, pWidget ) -> pQAction - :isAreaAllowed( nArea ) -> lBool - :isFloatable() -> lBool - :isFloating() -> lBool - :isMovable() -> lBool - :orientation() -> nQt::Orientation - :setAllowedAreas( nAreas ) -> NIL - :setFloatable( lFloatable ) -> NIL - :setMovable( lMovable ) -> NIL - :setOrientation( nOrientation ) -> NIL - :toggleViewAction() -> pQAction - :toolButtonStyle() -> nQt::ToolButtonStyle - :widgetForAction( pAction ) -> pQWidget - :setIconSize( pIconSize ) -> NIL - :setToolButtonStyle( nToolButtonStyle ) -> 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/TQToolBar.prg - C++ wrappers : contrib/hbqt/qtgui/QToolBar.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QToolBar() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQToolBar.prg + * C++ wrappers : contrib/hbqt/qtgui/QToolBar.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QToolBar():new( ... ) + * QToolBar():from( pPtr_OR_oObj_of_type_QToolBar ) + * QToolBar():configure( pPtr_OR_oObj_of_type_QToolBar ) + * $METHODS$ + * :actionAt( pP ) -> pQAction + * :actionAt_1( nX, nY ) -> pQAction + * :addAction( pAction ) -> NIL + * :addAction_1( cText ) -> pQAction + * :addAction_2( cIcon, cText ) -> pQAction + * :addAction_3( cText, pReceiver, pMember ) -> pQAction + * :addAction_4( cIcon, cText, pReceiver, pMember ) -> pQAction + * :addSeparator() -> pQAction + * :addWidget( pWidget ) -> pQAction + * :allowedAreas() -> nQt::ToolBarAreas + * :clear() -> NIL + * :iconSize() -> pQSize + * :insertSeparator( pBefore ) -> pQAction + * :insertWidget( pBefore, pWidget ) -> pQAction + * :isAreaAllowed( nArea ) -> lBool + * :isFloatable() -> lBool + * :isFloating() -> lBool + * :isMovable() -> lBool + * :orientation() -> nQt::Orientation + * :setAllowedAreas( nAreas ) -> NIL + * :setFloatable( lFloatable ) -> NIL + * :setMovable( lMovable ) -> NIL + * :setOrientation( nOrientation ) -> NIL + * :toggleViewAction() -> pQAction + * :toolButtonStyle() -> nQt::ToolButtonStyle + * :widgetForAction( pAction ) -> pQWidget + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt index 67a7a5a37a..d4999d4f0d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt @@ -1,73 +1,71 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QToolBox() - $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 - :count() -> nInt - :currentIndex() -> nInt - :currentWidget() -> pQWidget - :indexOf( pWidget ) -> nInt - :insertItem( nIndex, pWidget, cIcon, cText ) -> nInt - :insertItem_1( nIndex, pWidget, cText ) -> nInt - :isItemEnabled( nIndex ) -> lBool - :itemIcon( nIndex ) -> pQIcon - :itemText( nIndex ) -> cQString - :itemToolTip( nIndex ) -> cQString - :removeItem( nIndex ) -> NIL - :setItemEnabled( nIndex, lEnabled ) -> NIL - :setItemIcon( nIndex, cIcon ) -> NIL - :setItemText( nIndex, cText ) -> NIL - :setItemToolTip( nIndex, cToolTip ) -> NIL - :widget( nIndex ) -> pQWidget - :setCurrentIndex( nIndex ) -> NIL - :setCurrentWidget( pWidget ) -> 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/TQToolBox.prg - C++ wrappers : contrib/hbqt/qtgui/QToolBox.cpp - Library : hbqtgui - $SEEALSO$ - QFrame - $END$ + * $NAME$ + * QToolBox() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQToolBox.prg + * C++ wrappers : contrib/hbqt/qtgui/QToolBox.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QToolBox():new( ... ) + * QToolBox():from( pPtr_OR_oObj_of_type_QToolBox ) + * QToolBox():configure( pPtr_OR_oObj_of_type_QToolBox ) + * $METHODS$ + * :addItem( pWidget, cIconSet, cText ) -> nInt + * :addItem_1( pW, cText ) -> nInt + * :count() -> nInt + * :currentIndex() -> nInt + * :currentWidget() -> pQWidget + * :indexOf( pWidget ) -> nInt + * :insertItem( nIndex, pWidget, cIcon, cText ) -> nInt + * :insertItem_1( nIndex, pWidget, cText ) -> nInt + * :isItemEnabled( nIndex ) -> lBool + * :itemIcon( nIndex ) -> pQIcon + * :itemText( nIndex ) -> cQString + * :itemToolTip( nIndex ) -> cQString + * :removeItem( nIndex ) -> NIL + * :setItemEnabled( nIndex, lEnabled ) -> NIL + * :setItemIcon( nIndex, cIcon ) -> NIL + * :setItemText( nIndex, cText ) -> NIL + * :setItemToolTip( nIndex, cToolTip ) -> NIL + * :widget( nIndex ) -> pQWidget + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt index 90277519e9..fcfed957a9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt @@ -1,66 +1,64 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QToolButton() - $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 - :defaultAction() -> pQAction - :menu() -> pQMenu - :popupMode() -> nToolButtonPopupMode - :setArrowType( nType ) -> NIL - :setAutoRaise( lEnable ) -> NIL - :setMenu( pMenu ) -> NIL - :setPopupMode( nMode ) -> NIL - :toolButtonStyle() -> nQt::ToolButtonStyle - :setDefaultAction( pAction ) -> NIL - :setToolButtonStyle( nStyle ) -> NIL - :showMenu() -> 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/TQToolButton.prg - C++ wrappers : contrib/hbqt/qtgui/QToolButton.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractButton - $END$ + * $NAME$ + * QToolButton() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQToolButton.prg + * C++ wrappers : contrib/hbqt/qtgui/QToolButton.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QToolButton():new( ... ) + * QToolButton():from( pPtr_OR_oObj_of_type_QToolButton ) + * QToolButton():configure( pPtr_OR_oObj_of_type_QToolButton ) + * $METHODS$ + * :arrowType() -> nQt::ArrowType + * :autoRaise() -> lBool + * :defaultAction() -> pQAction + * :menu() -> pQMenu + * :popupMode() -> nToolButtonPopupMode + * :setArrowType( nType ) -> NIL + * :setAutoRaise( lEnable ) -> NIL + * :setMenu( pMenu ) -> NIL + * :setPopupMode( nMode ) -> NIL + * :toolButtonStyle() -> nQt::ToolButtonStyle + * :setDefaultAction( pAction ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtransform.txt b/harbour/contrib/hbqt/doc/en/class_qtransform.txt index 7488ff6d93..fe78710112 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtransform.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtransform.txt @@ -1,92 +1,90 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTransform() - $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 - :m13() -> nQreal - :m21() -> nQreal - :m22() -> nQreal - :m23() -> nQreal - :m31() -> nQreal - :m32() -> nQreal - :m33() -> nQreal - :det() -> nQreal - :determinant() -> nQreal - :dx() -> nQreal - :dy() -> nQreal - :isAffine() -> lBool - :isIdentity() -> lBool - :isInvertible() -> lBool - :isRotating() -> lBool - :isScaling() -> lBool - :isTranslating() -> lBool - :map( nX, nY, @nTx, @nTy ) -> NIL - :map_1( pP ) -> pQPointF - :map_2( pPoint ) -> pQPoint - :map_3( pL ) -> pQLine - :map_4( pLine ) -> pQLineF - :map_5( pPolygon ) -> pQPolygonF - :map_6( pPolygon ) -> pQPolygon - :map_7( pRegion ) -> pQRegion - :map_8( pPath ) -> pQPainterPath - :map_9( nX, nY, @nTx, @nTy ) -> NIL - :mapRect( pRectangle ) -> pQRectF - :mapRect_1( pRectangle ) -> pQRect - :mapToPolygon( pRectangle ) -> pQPolygon - :reset() -> NIL - :setMatrix( nM11, nM12, nM13, nM21, nM22, nM23, nM31, nM32, nM33 ) -> NIL - :toAffine() -> pQMatrix - :type() -> nTransformationType - :quadToQuad( pOne, pTwo, pTrans ) -> lBool - :quadToSquare( pQuad, pTrans ) -> lBool - :squareToQuad( pQuad, pTrans ) -> 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/TQTransform.prg - C++ wrappers : contrib/hbqt/qtgui/QTransform.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTransform() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTransform.prg + * C++ wrappers : contrib/hbqt/qtgui/QTransform.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTransform():new( ... ) + * QTransform():from( pPtr_OR_oObj_of_type_QTransform ) + * QTransform():configure( pPtr_OR_oObj_of_type_QTransform ) + * $METHODS$ + * :m11() -> nQreal + * :m12() -> nQreal + * :m13() -> nQreal + * :m21() -> nQreal + * :m22() -> nQreal + * :m23() -> nQreal + * :m31() -> nQreal + * :m32() -> nQreal + * :m33() -> nQreal + * :det() -> nQreal + * :determinant() -> nQreal + * :dx() -> nQreal + * :dy() -> nQreal + * :isAffine() -> lBool + * :isIdentity() -> lBool + * :isInvertible() -> lBool + * :isRotating() -> lBool + * :isScaling() -> lBool + * :isTranslating() -> lBool + * :map( nX, nY, @nTx, @nTy ) -> NIL + * :map_1( pP ) -> pQPointF + * :map_2( pPoint ) -> pQPoint + * :map_3( pL ) -> pQLine + * :map_4( pLine ) -> pQLineF + * :map_5( pPolygon ) -> pQPolygonF + * :map_6( pPolygon ) -> pQPolygon + * :map_7( pRegion ) -> pQRegion + * :map_8( pPath ) -> pQPainterPath + * :map_9( nX, nY, @nTx, @nTy ) -> NIL + * :mapRect( pRectangle ) -> pQRectF + * :mapRect_1( pRectangle ) -> pQRect + * :mapToPolygon( pRectangle ) -> pQPolygon + * :reset() -> NIL + * :setMatrix( nM11, nM12, nM13, nM21, nM22, nM23, nM31, nM32, nM33 ) -> NIL + * :toAffine() -> pQMatrix + * :type() -> nTransformationType + * :quadToQuad( pOne, pTwo, pTrans ) -> lBool + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtranslator.txt b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt index 3a73bb7127..d03ac74eb1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtranslator.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTranslator() - $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 - - $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/TQTranslator.prg - C++ wrappers : contrib/hbqt/qtcore/QTranslator.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QTranslator() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQTranslator.prg + * C++ wrappers : contrib/hbqt/qtcore/QTranslator.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTranslator():new( ... ) + * QTranslator():from( pPtr_OR_oObj_of_type_QTranslator ) + * QTranslator():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreeview.txt b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt index d57bebcb35..388909af7d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreeview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt @@ -1,102 +1,100 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTreeView() - $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 - :columnAt( nX ) -> nInt - :columnViewportPosition( nColumn ) -> nInt - :columnWidth( nColumn ) -> nInt - :expandsOnDoubleClick() -> lBool - :header() -> pQHeaderView - :indentation() -> nInt - :indexAbove( pIndex ) -> pQModelIndex - :indexBelow( pIndex ) -> pQModelIndex - :isAnimated() -> lBool - :isColumnHidden( nColumn ) -> lBool - :isExpanded( pIndex ) -> lBool - :isFirstColumnSpanned( nRow, pParent ) -> lBool - :isHeaderHidden() -> lBool - :isRowHidden( nRow, pParent ) -> lBool - :isSortingEnabled() -> lBool - :itemsExpandable() -> lBool - :rootIsDecorated() -> lBool - :scrollTo( pIndex, nHint ) -> NIL - :setAllColumnsShowFocus( lEnable ) -> NIL - :setAnimated( lEnable ) -> NIL - :setAutoExpandDelay( nDelay ) -> NIL - :setColumnHidden( nColumn, lHide ) -> NIL - :setColumnWidth( nColumn, nWidth ) -> NIL - :setExpanded( pIndex, lExpanded ) -> NIL - :setExpandsOnDoubleClick( lEnable ) -> NIL - :setFirstColumnSpanned( nRow, pParent, lSpan ) -> NIL - :setHeader( pHeader ) -> NIL - :setHeaderHidden( lHide ) -> NIL - :setIndentation( nI ) -> NIL - :setItemsExpandable( lEnable ) -> NIL - :setRootIsDecorated( lShow ) -> NIL - :setRowHidden( nRow, pParent, lHide ) -> NIL - :setSortingEnabled( lEnable ) -> NIL - :setUniformRowHeights( lUniform ) -> NIL - :setWordWrap( lOn ) -> NIL - :sortByColumn( nColumn, nOrder ) -> NIL - :uniformRowHeights() -> lBool - :visualRect( pIndex ) -> pQRect - :wordWrap() -> lBool - :collapse( pIndex ) -> NIL - :collapseAll() -> NIL - :expand( pIndex ) -> NIL - :expandAll() -> NIL - :expandToDepth( nDepth ) -> NIL - :hideColumn( nColumn ) -> NIL - :resizeColumnToContents( nColumn ) -> NIL - :showColumn( nColumn ) -> 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/TQTreeView.prg - C++ wrappers : contrib/hbqt/qtgui/QTreeView.cpp - Library : hbqtgui - $SEEALSO$ - QAbstractItemView - $END$ + * $NAME$ + * QTreeView() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTreeView.prg + * C++ wrappers : contrib/hbqt/qtgui/QTreeView.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTreeView():new( ... ) + * QTreeView():from( pPtr_OR_oObj_of_type_QTreeView ) + * QTreeView():configure( pPtr_OR_oObj_of_type_QTreeView ) + * $METHODS$ + * :allColumnsShowFocus() -> lBool + * :autoExpandDelay() -> nInt + * :columnAt( nX ) -> nInt + * :columnViewportPosition( nColumn ) -> nInt + * :columnWidth( nColumn ) -> nInt + * :expandsOnDoubleClick() -> lBool + * :header() -> pQHeaderView + * :indentation() -> nInt + * :indexAbove( pIndex ) -> pQModelIndex + * :indexBelow( pIndex ) -> pQModelIndex + * :isAnimated() -> lBool + * :isColumnHidden( nColumn ) -> lBool + * :isExpanded( pIndex ) -> lBool + * :isFirstColumnSpanned( nRow, pParent ) -> lBool + * :isHeaderHidden() -> lBool + * :isRowHidden( nRow, pParent ) -> lBool + * :isSortingEnabled() -> lBool + * :itemsExpandable() -> lBool + * :rootIsDecorated() -> lBool + * :scrollTo( pIndex, nHint ) -> NIL + * :setAllColumnsShowFocus( lEnable ) -> NIL + * :setAnimated( lEnable ) -> NIL + * :setAutoExpandDelay( nDelay ) -> NIL + * :setColumnHidden( nColumn, lHide ) -> NIL + * :setColumnWidth( nColumn, nWidth ) -> NIL + * :setExpanded( pIndex, lExpanded ) -> NIL + * :setExpandsOnDoubleClick( lEnable ) -> NIL + * :setFirstColumnSpanned( nRow, pParent, lSpan ) -> NIL + * :setHeader( pHeader ) -> NIL + * :setHeaderHidden( lHide ) -> NIL + * :setIndentation( nI ) -> NIL + * :setItemsExpandable( lEnable ) -> NIL + * :setRootIsDecorated( lShow ) -> NIL + * :setRowHidden( nRow, pParent, lHide ) -> NIL + * :setSortingEnabled( lEnable ) -> NIL + * :setUniformRowHeights( lUniform ) -> NIL + * :setWordWrap( lOn ) -> NIL + * :sortByColumn( nColumn, nOrder ) -> NIL + * :uniformRowHeights() -> lBool + * :visualRect( pIndex ) -> pQRect + * :wordWrap() -> lBool + * :collapse( pIndex ) -> NIL + * :collapseAll() -> NIL + * :expand( pIndex ) -> NIL + * :expandAll() -> NIL + * :expandToDepth( nDepth ) -> NIL + * :hideColumn( nColumn ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt index 5fdc8287e7..90a1cdd16b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt @@ -1,92 +1,90 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTreeWidget() - $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 - :columnCount() -> nInt - :currentColumn() -> nInt - :currentItem() -> Item - :editItem( pItem, nColumn ) -> NIL - :findItems( cText, nFlags, nColumn ) -> pQList - :headerItem() -> Item - :indexOfTopLevelItem( pItem ) -> nInt - :insertTopLevelItem( nIndex, pItem ) -> NIL - :invisibleRootItem() -> Item - :isFirstItemColumnSpanned( pItem ) -> lBool - :itemAbove( pItem ) -> Item - :itemAt( pP ) -> Item - :itemAt_1( nX, nY ) -> Item - :itemBelow( pItem ) -> Item - :itemWidget( pItem, nColumn ) -> pQWidget - :openPersistentEditor( pItem, nColumn ) -> NIL - :removeItemWidget( pItem, nColumn ) -> NIL - :selectedItems() -> pQList - :setColumnCount( nColumns ) -> NIL - :setCurrentItem( pItem ) -> NIL - :setCurrentItem_1( pItem, nColumn ) -> NIL - :setCurrentItem_2( pItem, nColumn, nCommand ) -> NIL - :setFirstItemColumnSpanned( pItem, lSpan ) -> NIL - :setHeaderItem( pItem ) -> NIL - :setHeaderLabel( cLabel ) -> NIL - :setHeaderLabels( pLabels ) -> NIL - :setItemWidget( pItem, nColumn, pWidget ) -> NIL - :sortColumn() -> nInt - :sortItems( nColumn, nOrder ) -> NIL - :takeTopLevelItem( nIndex ) -> Item - :topLevelItem( nIndex ) -> Item - :topLevelItemCount() -> nInt - :visualItemRect( pItem ) -> pQRect - :clear() -> NIL - :collapseItem( pItem ) -> NIL - :expandItem( pItem ) -> NIL - :scrollToItem( pItem, nHint ) -> 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/TQTreeWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp - Library : hbqtgui - $SEEALSO$ - QTreeView - $END$ + * $NAME$ + * QTreeWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTreeWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTreeWidget():new( ... ) + * QTreeWidget():from( pPtr_OR_oObj_of_type_QTreeWidget ) + * QTreeWidget():configure( pPtr_OR_oObj_of_type_QTreeWidget ) + * $METHODS$ + * :addTopLevelItem( pItem ) -> NIL + * :closePersistentEditor( pItem, nColumn ) -> NIL + * :columnCount() -> nInt + * :currentColumn() -> nInt + * :currentItem() -> Item + * :editItem( pItem, nColumn ) -> NIL + * :findItems( cText, nFlags, nColumn ) -> pQList + * :headerItem() -> Item + * :indexOfTopLevelItem( pItem ) -> nInt + * :insertTopLevelItem( nIndex, pItem ) -> NIL + * :invisibleRootItem() -> Item + * :isFirstItemColumnSpanned( pItem ) -> lBool + * :itemAbove( pItem ) -> Item + * :itemAt( pP ) -> Item + * :itemAt_1( nX, nY ) -> Item + * :itemBelow( pItem ) -> Item + * :itemWidget( pItem, nColumn ) -> pQWidget + * :openPersistentEditor( pItem, nColumn ) -> NIL + * :removeItemWidget( pItem, nColumn ) -> NIL + * :selectedItems() -> pQList + * :setColumnCount( nColumns ) -> NIL + * :setCurrentItem( pItem ) -> NIL + * :setCurrentItem_1( pItem, nColumn ) -> NIL + * :setCurrentItem_2( pItem, nColumn, nCommand ) -> NIL + * :setFirstItemColumnSpanned( pItem, lSpan ) -> NIL + * :setHeaderItem( pItem ) -> NIL + * :setHeaderLabel( cLabel ) -> NIL + * :setHeaderLabels( pLabels ) -> NIL + * :setItemWidget( pItem, nColumn, pWidget ) -> NIL + * :sortColumn() -> nInt + * :sortItems( nColumn, nOrder ) -> NIL + * :takeTopLevelItem( nIndex ) -> Item + * :topLevelItem( nIndex ) -> Item + * :topLevelItemCount() -> nInt + * :visualItemRect( pItem ) -> pQRect + * :clear() -> NIL + * :collapseItem( pItem ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt index 2e861ac786..5597c8ac07 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt @@ -1,102 +1,100 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QTreeWidgetItem() - $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 - :checkState( nColumn ) -> nQt::CheckState - :childCount() -> nInt - :childIndicatorPolicy() -> nQTreeWidgetItem::ChildIndicatorPolicy - :columnCount() -> nInt - :data( nColumn, nRole ) -> pQVariant - :flags() -> nQt::ItemFlags - :font( nColumn ) -> pQFont - :foreground( nColumn ) -> pQBrush - :icon( nColumn ) -> pQIcon - :indexOfChild( pChild ) -> nInt - :insertChild( nIndex, pChild ) -> NIL - :isDisabled() -> lBool - :isExpanded() -> lBool - :isFirstColumnSpanned() -> lBool - :isHidden() -> lBool - :isSelected() -> lBool - :read( pIn ) -> NIL - :removeChild( pChild ) -> NIL - :setBackground( nColumn, pBrush ) -> NIL - :setCheckState( nColumn, nState ) -> NIL - :setChildIndicatorPolicy( nPolicy ) -> NIL - :setData( nColumn, nRole, pValue ) -> NIL - :setDisabled( lDisabled ) -> NIL - :setExpanded( lExpand ) -> NIL - :setFirstColumnSpanned( lSpan ) -> NIL - :setFlags( nFlags ) -> NIL - :setFont( nColumn, pFont ) -> NIL - :setForeground( nColumn, pBrush ) -> NIL - :setHidden( lHide ) -> NIL - :setIcon( nColumn, cIcon ) -> NIL - :setSelected( lSelect ) -> NIL - :setSizeHint( nColumn, pSize ) -> NIL - :setStatusTip( nColumn, cStatusTip ) -> NIL - :setText( nColumn, cText ) -> NIL - :setTextAlignment( nColumn, nAlignment ) -> NIL - :setToolTip( nColumn, cToolTip ) -> NIL - :setWhatsThis( nColumn, cWhatsThis ) -> NIL - :sizeHint( nColumn ) -> pQSize - :sortChildren( nColumn, nOrder ) -> NIL - :statusTip( nColumn ) -> cQString - :takeChildren() -> pQList - :text( nColumn ) -> cQString - :textAlignment( nColumn ) -> nInt - :toolTip( nColumn ) -> cQString - :treeWidget() -> pQTreeWidget - :type() -> nInt - :whatsThis( nColumn ) -> 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/TQTreeWidgetItem.prg - C++ wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp - Library : hbqtgui - $SEEALSO$ - - $END$ + * $NAME$ + * QTreeWidgetItem() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQTreeWidgetItem.prg + * C++ wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QTreeWidgetItem():new( ... ) + * QTreeWidgetItem():from( pPtr_OR_oObj_of_type_QTreeWidgetItem ) + * QTreeWidgetItem():configure( pPtr_OR_oObj_of_type_QTreeWidgetItem ) + * $METHODS$ + * :addChild( pChild ) -> NIL + * :background( nColumn ) -> pQBrush + * :checkState( nColumn ) -> nQt::CheckState + * :childCount() -> nInt + * :childIndicatorPolicy() -> nQTreeWidgetItem::ChildIndicatorPolicy + * :columnCount() -> nInt + * :data( nColumn, nRole ) -> pQVariant + * :flags() -> nQt::ItemFlags + * :font( nColumn ) -> pQFont + * :foreground( nColumn ) -> pQBrush + * :icon( nColumn ) -> pQIcon + * :indexOfChild( pChild ) -> nInt + * :insertChild( nIndex, pChild ) -> NIL + * :isDisabled() -> lBool + * :isExpanded() -> lBool + * :isFirstColumnSpanned() -> lBool + * :isHidden() -> lBool + * :isSelected() -> lBool + * :read( pIn ) -> NIL + * :removeChild( pChild ) -> NIL + * :setBackground( nColumn, pBrush ) -> NIL + * :setCheckState( nColumn, nState ) -> NIL + * :setChildIndicatorPolicy( nPolicy ) -> NIL + * :setData( nColumn, nRole, pValue ) -> NIL + * :setDisabled( lDisabled ) -> NIL + * :setExpanded( lExpand ) -> NIL + * :setFirstColumnSpanned( lSpan ) -> NIL + * :setFlags( nFlags ) -> NIL + * :setFont( nColumn, pFont ) -> NIL + * :setForeground( nColumn, pBrush ) -> NIL + * :setHidden( lHide ) -> NIL + * :setIcon( nColumn, cIcon ) -> NIL + * :setSelected( lSelect ) -> NIL + * :setSizeHint( nColumn, pSize ) -> NIL + * :setStatusTip( nColumn, cStatusTip ) -> NIL + * :setText( nColumn, cText ) -> NIL + * :setTextAlignment( nColumn, nAlignment ) -> NIL + * :setToolTip( nColumn, cToolTip ) -> NIL + * :setWhatsThis( nColumn, cWhatsThis ) -> NIL + * :sizeHint( nColumn ) -> pQSize + * :sortChildren( nColumn, nOrder ) -> NIL + * :statusTip( nColumn ) -> cQString + * :takeChildren() -> pQList + * :text( nColumn ) -> cQString + * :textAlignment( nColumn ) -> nInt + * :toolTip( nColumn ) -> cQString + * :treeWidget() -> pQTreeWidget + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_quiloader.txt b/harbour/contrib/hbqt/doc/en/class_quiloader.txt index 8827344e18..55050f06ad 100644 --- a/harbour/contrib/hbqt/doc/en/class_quiloader.txt +++ b/harbour/contrib/hbqt/doc/en/class_quiloader.txt @@ -1,67 +1,65 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QUiLoader() - $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 - :availableWidgets() -> pQStringList - :clearPluginPaths() -> NIL - :createAction( pParent, cName ) -> pQAction - :createActionGroup( pParent, cName ) -> pQActionGroup - :createLayout( cClassName, pParent, cName ) -> pQLayout - :createWidget( cClassName, pParent, cName ) -> pQWidget - :isLanguageChangeEnabled() -> lBool - :load( pDevice, pParentWidget ) -> pQWidget - :pluginPaths() -> pQStringList - :setLanguageChangeEnabled( lEnabled ) -> NIL - :setWorkingDirectory( pDir ) -> NIL - :workingDirectory() -> pQDir - - $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/TQUiLoader.prg - C++ wrappers : contrib/hbqt/qtcore/QUiLoader.cpp - Library : hbqtcore - $SEEALSO$ - QObject - $END$ + * $NAME$ + * QUiLoader() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQUiLoader.prg + * C++ wrappers : contrib/hbqt/qtgui/QUiLoader.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QUiLoader():new( ... ) + * QUiLoader():from( pPtr_OR_oObj_of_type_QUiLoader ) + * QUiLoader():configure( pPtr_OR_oObj_of_type_QUiLoader ) + * $METHODS$ + * :addPluginPath( cPath ) -> NIL + * :availableLayouts() -> pQStringList + * :availableWidgets() -> pQStringList + * :clearPluginPaths() -> NIL + * :createAction( pParent, cName ) -> pQAction + * :createActionGroup( pParent, cName ) -> pQActionGroup + * :createLayout( cClassName, pParent, cName ) -> pQLayout + * :createWidget( cClassName, pParent, cName ) -> pQWidget + * :isLanguageChangeEnabled() -> lBool + * :load( pDevice, pParentWidget ) -> pQWidget + * :pluginPaths() -> pQStringList + * :setLanguageChangeEnabled( lEnabled ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qurl.txt b/harbour/contrib/hbqt/doc/en/class_qurl.txt index 4eba37549a..f9451d8acd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qurl.txt +++ b/harbour/contrib/hbqt/doc/en/class_qurl.txt @@ -1,119 +1,117 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QUrl() - $CATEGORY$ - Harbour Bindings for Qt - $SUBCATEGORY$ - GUI - $EXTERNALLINK$ - http://doc.trolltech.com/4.5/qurl.html - $ONELINER$ - Creates a new QUrl object. - $INHERITS$ - QWidget - $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 - :allEncodedQueryItemValues( pKey ) -> pQList - :allQueryItemValues( cKey ) -> pQStringList - :authority() -> cQString - :clear() -> NIL - :encodedFragment() -> pQByteArray - :encodedHost() -> pQByteArray - :encodedPassword() -> pQByteArray - :encodedPath() -> pQByteArray - :encodedQuery() -> pQByteArray - :encodedQueryItemValue( pKey ) -> pQByteArray - :encodedUserName() -> pQByteArray - :errorString() -> cQString - :fragment() -> cQString - :hasEncodedQueryItem( pKey ) -> lBool - :hasFragment() -> lBool - :hasQuery() -> lBool - :hasQueryItem( cKey ) -> lBool - :host() -> cQString - :isEmpty() -> lBool - :isParentOf( pChildUrl ) -> lBool - :isRelative() -> lBool - :isValid() -> lBool - :password() -> cQString - :path() -> cQString - :port() -> nInt - :port_1( nDefaultPort ) -> nInt - :queryItemValue( cKey ) -> cQString - :queryPairDelimiter() -> cChar - :queryValueDelimiter() -> cChar - :removeAllEncodedQueryItems( pKey ) -> NIL - :removeAllQueryItems( cKey ) -> NIL - :removeEncodedQueryItem( pKey ) -> NIL - :removeQueryItem( cKey ) -> NIL - :scheme() -> cQString - :setAuthority( cAuthority ) -> NIL - :setEncodedFragment( pFragment ) -> NIL - :setEncodedHost( pHost ) -> NIL - :setEncodedPassword( pPassword ) -> NIL - :setEncodedPath( pPath ) -> NIL - :setEncodedQuery( pQuery ) -> NIL - :setEncodedUrl( pEncodedUrl ) -> NIL - :setEncodedUrl_1( pEncodedUrl, nParsingMode ) -> NIL - :setEncodedUserName( pUserName ) -> NIL - :setFragment( cFragment ) -> NIL - :setHost( cHost ) -> NIL - :setPassword( cPassword ) -> NIL - :setPath( cPath ) -> NIL - :setPort( nPort ) -> NIL - :setScheme( cScheme ) -> NIL - :setUrl( cUrl ) -> NIL - :setUrl_1( cUrl, nParsingMode ) -> NIL - :setUserInfo( cUserInfo ) -> NIL - :setUserName( cUserName ) -> NIL - :toEncoded( nOptions ) -> pQByteArray - :toLocalFile() -> cQString - :toString( nOptions ) -> cQString - :userInfo() -> cQString - :userName() -> cQString - :fromAce( pDomain ) -> cQString - :fromPercentEncoding( pInput ) -> cQString - :idnWhitelist() -> pQStringList - :setIdnWhitelist( pList ) -> NIL - :toAce( cDomain ) -> pQByteArray - :toPercentEncoding( cInput, pExclude, pInclude ) -> 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/TQUrl.prg - C++ wrappers : contrib/hbqt/qtcore/QUrl.cpp - Library : hbqtcore - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QUrl() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQUrl.prg + * C++ wrappers : contrib/hbqt/qtcore/QUrl.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QUrl():new( ... ) + * QUrl():from( pPtr_OR_oObj_of_type_QUrl ) + * QUrl():configure( pPtr_OR_oObj_of_type_QUrl ) + * $METHODS$ + * :addEncodedQueryItem( pKey, pValue ) -> NIL + * :addQueryItem( cKey, cValue ) -> NIL + * :allEncodedQueryItemValues( pKey ) -> pQList + * :allQueryItemValues( cKey ) -> pQStringList + * :authority() -> cQString + * :clear() -> NIL + * :encodedFragment() -> pQByteArray + * :encodedHost() -> pQByteArray + * :encodedPassword() -> pQByteArray + * :encodedPath() -> pQByteArray + * :encodedQuery() -> pQByteArray + * :encodedQueryItemValue( pKey ) -> pQByteArray + * :encodedUserName() -> pQByteArray + * :errorString() -> cQString + * :fragment() -> cQString + * :hasEncodedQueryItem( pKey ) -> lBool + * :hasFragment() -> lBool + * :hasQuery() -> lBool + * :hasQueryItem( cKey ) -> lBool + * :host() -> cQString + * :isEmpty() -> lBool + * :isParentOf( pChildUrl ) -> lBool + * :isRelative() -> lBool + * :isValid() -> lBool + * :password() -> cQString + * :path() -> cQString + * :port() -> nInt + * :port_1( nDefaultPort ) -> nInt + * :queryItemValue( cKey ) -> cQString + * :queryPairDelimiter() -> cChar + * :queryValueDelimiter() -> cChar + * :removeAllEncodedQueryItems( pKey ) -> NIL + * :removeAllQueryItems( cKey ) -> NIL + * :removeEncodedQueryItem( pKey ) -> NIL + * :removeQueryItem( cKey ) -> NIL + * :scheme() -> cQString + * :setAuthority( cAuthority ) -> NIL + * :setEncodedFragment( pFragment ) -> NIL + * :setEncodedHost( pHost ) -> NIL + * :setEncodedPassword( pPassword ) -> NIL + * :setEncodedPath( pPath ) -> NIL + * :setEncodedQuery( pQuery ) -> NIL + * :setEncodedUrl( pEncodedUrl ) -> NIL + * :setEncodedUrl_1( pEncodedUrl, nParsingMode ) -> NIL + * :setEncodedUserName( pUserName ) -> NIL + * :setFragment( cFragment ) -> NIL + * :setHost( cHost ) -> NIL + * :setPassword( cPassword ) -> NIL + * :setPath( cPath ) -> NIL + * :setPort( nPort ) -> NIL + * :setScheme( cScheme ) -> NIL + * :setUrl( cUrl ) -> NIL + * :setUrl_1( cUrl, nParsingMode ) -> NIL + * :setUserInfo( cUserInfo ) -> NIL + * :setUserName( cUserName ) -> NIL + * :toEncoded( nOptions ) -> pQByteArray + * :toLocalFile() -> cQString + * :toString( nOptions ) -> cQString + * :userInfo() -> cQString + * :userName() -> cQString + * :fromAce( pDomain ) -> cQString + * :fromPercentEncoding( pInput ) -> cQString + * :idnWhitelist() -> pQStringList + * :setIdnWhitelist( pList ) -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qvalidator.txt b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt index dae4a893f7..842e358d9a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qvalidator.txt +++ b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qvalidator.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qvariant.txt b/harbour/contrib/hbqt/doc/en/class_qvariant.txt index 2c44319882..4293ac4208 100644 --- a/harbour/contrib/hbqt/doc/en/class_qvariant.txt +++ b/harbour/contrib/hbqt/doc/en/class_qvariant.txt @@ -1,90 +1,88 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QVariant() - $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 - :clear() -> NIL - :convert( nT ) -> lBool - :isNull() -> lBool - :isValid() -> lBool - :setValue( xValue ) -> NIL - :toBitArray() -> pQBitArray - :toBool() -> lBool - :toByteArray() -> pQByteArray - :toChar() -> pQChar - :toDate() -> pQDate - :toDateTime() -> pQDateTime - :toDouble( @lOk ) -> nDouble - :toInt( @lOk ) -> nInt - :toLine() -> pQLine - :toLineF() -> pQLineF - :toList() -> pQList - :toLocale() -> pQLocale - :toLongLong( @lOk ) -> nQlonglong - :toPoint() -> pQPoint - :toPointF() -> pQPointF - :toRect() -> pQRect - :toRectF() -> pQRectF - :toRegExp() -> pQRegExp - :toSize() -> pQSize - :toSizeF() -> pQSizeF - :toString() -> cQString - :toStringList() -> pQStringList - :toTime() -> pQTime - :toUInt( @lOk ) -> nUint - :toULongLong( @lOk ) -> nQulonglong - :toUrl() -> pQUrl - :type() -> nType - :userType() -> nInt - :nameToType( pName ) -> nType - :typeToName( nTyp ) -> 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/TQVariant.prg - C++ wrappers : contrib/hbqt/qtcore/QVariant.cpp - Library : hbqtcore - $SEEALSO$ - - $END$ + * $NAME$ + * QVariant() + * $FILES$ + * Harbour source: contrib/hbqt/qtcore/TQVariant.prg + * C++ wrappers : contrib/hbqt/qtcore/QVariant.cpp + * Library : hbqtcore + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QVariant():new( ... ) + * QVariant():from( pPtr_OR_oObj_of_type_QVariant ) + * QVariant():configure( pPtr_OR_oObj_of_type_QVariant ) + * $METHODS$ + * :canConvert( nT ) -> lBool + * :canConvert_1( nT ) -> lBool + * :clear() -> NIL + * :convert( nT ) -> lBool + * :isNull() -> lBool + * :isValid() -> lBool + * :setValue( xValue ) -> NIL + * :toBitArray() -> pQBitArray + * :toBool() -> lBool + * :toByteArray() -> pQByteArray + * :toChar() -> pQChar + * :toDate() -> pQDate + * :toDateTime() -> pQDateTime + * :toDouble( @lOk ) -> nDouble + * :toInt( @lOk ) -> nInt + * :toLine() -> pQLine + * :toLineF() -> pQLineF + * :toList() -> pQList + * :toLocale() -> pQLocale + * :toLongLong( @lOk ) -> nQlonglong + * :toPoint() -> pQPoint + * :toPointF() -> pQPointF + * :toRect() -> pQRect + * :toRectF() -> pQRectF + * :toRegExp() -> pQRegExp + * :toSize() -> pQSize + * :toSizeF() -> pQSizeF + * :toString() -> cQString + * :toStringList() -> pQStringList + * :toTime() -> pQTime + * :toUInt( @lOk ) -> nUint + * :toULongLong( @lOk ) -> nQulonglong + * :toUrl() -> pQUrl + * :type() -> nType + * :userType() -> nInt + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt b/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt index f8797011ba..1b2ef2c4bf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt @@ -1,62 +1,60 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QWheelEvent() - $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 - :globalPos() -> pQPoint - :globalX() -> nInt - :globalY() -> nInt - :orientation() -> nQt::Orientation - :pos() -> pQPoint - :x() -> nInt - :y() -> 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/TQWheelEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QWheelEvent.cpp - Library : hbqtgui - $SEEALSO$ - QInputEvent - $END$ + * $NAME$ + * QWheelEvent() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQWheelEvent.prg + * C++ wrappers : contrib/hbqt/qtgui/QWheelEvent.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QWheelEvent():new( ... ) + * QWheelEvent():from( pPtr_OR_oObj_of_type_QWheelEvent ) + * QWheelEvent():configure( pPtr_OR_oObj_of_type_QWheelEvent ) + * $METHODS$ + * :buttons() -> nQt::MouseButtons + * :delta() -> nInt + * :globalPos() -> pQPoint + * :globalX() -> nInt + * :globalY() -> nInt + * :orientation() -> nQt::Orientation + * :pos() -> pQPoint + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidget.txt b/harbour/contrib/hbqt/doc/en/class_qwidget.txt index e805b388cb..1f3ec2b3d1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidget.txt @@ -1,249 +1,247 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QWidget() - $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 - :activateWindow() -> NIL - :addAction( pAction ) -> NIL - :adjustSize() -> NIL - :autoFillBackground() -> lBool - :backgroundRole() -> nQPalette::ColorRole - :baseSize() -> pQSize - :childrenRect() -> pQRect - :childrenRegion() -> pQRegion - :clearFocus() -> NIL - :clearMask() -> NIL - :contentsRect() -> pQRect - :contextMenuPolicy() -> nQt::ContextMenuPolicy - :cursor() -> pQCursor - :ensurePolished() -> NIL - :focusPolicy() -> nQt::FocusPolicy - :font() -> pQFont - :fontInfo() -> pQFontInfo - :fontMetrics() -> pQFontMetrics - :foregroundRole() -> nQPalette::ColorRole - :frameGeometry() -> pQRect - :frameSize() -> pQSize - :geometry() -> pQRect - :getContentsMargins( @nLeft, @nTop, @nRight, @nBottom ) -> NIL - :grabKeyboard() -> NIL - :grabMouse() -> NIL - :grabMouse_1( pCursor ) -> NIL - :grabShortcut( pKey, nContext ) -> nInt - :hasFocus() -> lBool - :hasMouseTracking() -> lBool - :height() -> nInt - :heightForWidth( nW ) -> nInt - :inputMethodQuery( nQuery ) -> pQVariant - :insertAction( pBefore, pAction ) -> NIL - :isActiveWindow() -> lBool - :isAncestorOf( pChild ) -> lBool - :isEnabled() -> lBool - :isEnabledTo( pAncestor ) -> lBool - :isFullScreen() -> lBool - :isHidden() -> lBool - :isMaximized() -> lBool - :isMinimized() -> lBool - :isModal() -> lBool - :isVisible() -> lBool - :isVisibleTo( pAncestor ) -> lBool - :isWindow() -> lBool - :isWindowModified() -> lBool - :layout() -> pQLayout - :layoutDirection() -> nQt::LayoutDirection - :locale() -> pQLocale - :mapFrom( pParent, pPos ) -> pQPoint - :mapFromGlobal( pPos ) -> pQPoint - :mapFromParent( pPos ) -> pQPoint - :mapTo( pParent, pPos ) -> pQPoint - :mapToGlobal( pPos ) -> pQPoint - :mapToParent( pPos ) -> pQPoint - :mask() -> pQRegion - :maximumHeight() -> nInt - :maximumSize() -> pQSize - :maximumWidth() -> nInt - :minimumHeight() -> nInt - :minimumSize() -> pQSize - :minimumSizeHint() -> pQSize - :minimumWidth() -> nInt - :move( nX, nY ) -> NIL - :move_1( pQPoint ) -> NIL - :normalGeometry() -> pQRect - :overrideWindowFlags( nFlags ) -> NIL - :paintEngine() -> pQPaintEngine - :palette() -> pQPalette - :pos() -> pQPoint - :rect() -> pQRect - :releaseKeyboard() -> NIL - :releaseMouse() -> NIL - :releaseShortcut( nId ) -> NIL - :removeAction( pAction ) -> NIL - :repaint( nX, nY, nW, nH ) -> NIL - :repaint_1( pRect ) -> NIL - :repaint_2( pRgn ) -> NIL - :resize( nW, nH ) -> NIL - :resize_1( pQSize ) -> NIL - :restoreGeometry( pGeometry ) -> lBool - :saveGeometry() -> pQByteArray - :scroll( nDx, nDy ) -> NIL - :scroll_1( nDx, nDy, pR ) -> NIL - :setAcceptDrops( lOn ) -> NIL - :setAttribute( nAttribute, lOn ) -> NIL - :setAutoFillBackground( lEnabled ) -> NIL - :setBackgroundRole( nRole ) -> NIL - :setBaseSize( pQSize ) -> NIL - :setBaseSize_1( nBasew, nBaseh ) -> NIL - :setContentsMargins( nLeft, nTop, nRight, nBottom ) -> NIL - :setContextMenuPolicy( nPolicy ) -> NIL - :setCursor( pQCursor ) -> NIL - :setFixedHeight( nH ) -> NIL - :setFixedSize( pS ) -> NIL - :setFixedSize_1( nW, nH ) -> NIL - :setFixedWidth( nW ) -> NIL - :setFocus( nReason ) -> NIL - :setFocusPolicy( nPolicy ) -> NIL - :setFocusProxy( pW ) -> NIL - :setFont( pQFont ) -> NIL - :setForegroundRole( nRole ) -> NIL - :setGeometry( pQRect ) -> NIL - :setGeometry_1( nX, nY, nW, nH ) -> NIL - :setLayout( pLayout ) -> NIL - :setLayoutDirection( nDirection ) -> NIL - :setLocale( pLocale ) -> NIL - :setMask( pBitmap ) -> NIL - :setMask_1( pRegion ) -> NIL - :setMaximumHeight( nMaxh ) -> NIL - :setMaximumSize( pQSize ) -> NIL - :setMaximumSize_1( nMaxw, nMaxh ) -> NIL - :setMaximumWidth( nMaxw ) -> NIL - :setMinimumHeight( nMinh ) -> NIL - :setMinimumSize( pQSize ) -> NIL - :setMinimumSize_1( nMinw, nMinh ) -> NIL - :setMinimumWidth( nMinw ) -> NIL - :setMouseTracking( lEnable ) -> NIL - :setPalette( pQPalette ) -> NIL - :setParent( pParent ) -> NIL - :setParent_1( pParent, nF ) -> NIL - :setShortcutAutoRepeat( nId, lEnable ) -> NIL - :setShortcutEnabled( nId, lEnable ) -> NIL - :setSizeIncrement( pQSize ) -> NIL - :setSizeIncrement_1( nW, nH ) -> NIL - :setSizePolicy( pPolicy ) -> NIL - :setSizePolicy_1( nHorizontal, nVertical ) -> NIL - :setStatusTip( cQString ) -> NIL - :setStyle( pStyle ) -> NIL - :setToolTip( cQString ) -> NIL - :setUpdatesEnabled( lEnable ) -> NIL - :setWhatsThis( cQString ) -> NIL - :setWindowFilePath( cFilePath ) -> NIL - :setWindowFlags( nType ) -> NIL - :setWindowIcon( cIcon ) -> NIL - :setWindowIconText( cQString ) -> NIL - :setWindowModality( nWindowModality ) -> NIL - :setWindowOpacity( nLevel ) -> NIL - :setWindowRole( cRole ) -> NIL - :setWindowState( nWindowState ) -> NIL - :size() -> pQSize - :sizeHint() -> pQSize - :sizeIncrement() -> pQSize - :sizePolicy() -> pQSizePolicy - :stackUnder( pW ) -> NIL - :statusTip() -> cQString - :style() -> pQStyle - :styleSheet() -> cQString - :testAttribute( nAttribute ) -> lBool - :toolTip() -> cQString - :underMouse() -> lBool - :unsetCursor() -> NIL - :unsetLayoutDirection() -> NIL - :unsetLocale() -> NIL - :update( nX, nY, nW, nH ) -> NIL - :update_1( pRect ) -> NIL - :update_2( pRgn ) -> NIL - :updateGeometry() -> NIL - :updatesEnabled() -> lBool - :visibleRegion() -> pQRegion - :whatsThis() -> cQString - :width() -> nInt - :windowFilePath() -> cQString - :windowFlags() -> nQt::WindowFlags - :windowIcon() -> pQIcon - :windowIconText() -> cQString - :windowModality() -> nQt::WindowModality - :windowOpacity() -> nQreal - :windowRole() -> cQString - :windowState() -> nQt::WindowStates - :windowTitle() -> cQString - :windowType() -> nQt::WindowType - :x() -> nInt - :y() -> nInt - :setTabOrder( pFirst, pSecond ) -> NIL - :close() -> lBool - :hide() -> NIL - :lower() -> NIL - :raise() -> NIL - :repaint_3() -> NIL - :setDisabled( lDisable ) -> NIL - :setEnabled( lEnable ) -> NIL - :setFocus_1() -> NIL - :setHidden( lHidden ) -> NIL - :setStyleSheet( cStyleSheet ) -> NIL - :setVisible( lVisible ) -> NIL - :setWindowModified( lModified ) -> NIL - :setWindowTitle( cTitle ) -> NIL - :show() -> NIL - :showFullScreen() -> NIL - :showMaximized() -> NIL - :showMinimized() -> NIL - :showNormal() -> NIL - :update_3() -> 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/TQWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QWidget.cpp - Library : hbqtgui - $SEEALSO$ - QObject, QPaintDevice - $END$ + * $NAME$ + * QWidget() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQWidget.prg + * C++ wrappers : contrib/hbqt/qtgui/QWidget.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QWidget():new( ... ) + * QWidget():from( pPtr_OR_oObj_of_type_QWidget ) + * QWidget():configure( pPtr_OR_oObj_of_type_QWidget ) + * $METHODS$ + * :acceptDrops() -> lBool + * :actions() -> pQList + * :activateWindow() -> NIL + * :addAction( pAction ) -> NIL + * :adjustSize() -> NIL + * :autoFillBackground() -> lBool + * :backgroundRole() -> nQPalette::ColorRole + * :baseSize() -> pQSize + * :childrenRect() -> pQRect + * :childrenRegion() -> pQRegion + * :clearFocus() -> NIL + * :clearMask() -> NIL + * :contentsRect() -> pQRect + * :contextMenuPolicy() -> nQt::ContextMenuPolicy + * :cursor() -> pQCursor + * :ensurePolished() -> NIL + * :focusPolicy() -> nQt::FocusPolicy + * :font() -> pQFont + * :fontInfo() -> pQFontInfo + * :fontMetrics() -> pQFontMetrics + * :foregroundRole() -> nQPalette::ColorRole + * :frameGeometry() -> pQRect + * :frameSize() -> pQSize + * :geometry() -> pQRect + * :getContentsMargins( @nLeft, @nTop, @nRight, @nBottom ) -> NIL + * :grabKeyboard() -> NIL + * :grabMouse() -> NIL + * :grabMouse_1( pCursor ) -> NIL + * :grabShortcut( pKey, nContext ) -> nInt + * :hasFocus() -> lBool + * :hasMouseTracking() -> lBool + * :height() -> nInt + * :heightForWidth( nW ) -> nInt + * :inputMethodQuery( nQuery ) -> pQVariant + * :insertAction( pBefore, pAction ) -> NIL + * :isActiveWindow() -> lBool + * :isAncestorOf( pChild ) -> lBool + * :isEnabled() -> lBool + * :isEnabledTo( pAncestor ) -> lBool + * :isFullScreen() -> lBool + * :isHidden() -> lBool + * :isMaximized() -> lBool + * :isMinimized() -> lBool + * :isModal() -> lBool + * :isVisible() -> lBool + * :isVisibleTo( pAncestor ) -> lBool + * :isWindow() -> lBool + * :isWindowModified() -> lBool + * :layout() -> pQLayout + * :layoutDirection() -> nQt::LayoutDirection + * :locale() -> pQLocale + * :mapFrom( pParent, pPos ) -> pQPoint + * :mapFromGlobal( pPos ) -> pQPoint + * :mapFromParent( pPos ) -> pQPoint + * :mapTo( pParent, pPos ) -> pQPoint + * :mapToGlobal( pPos ) -> pQPoint + * :mapToParent( pPos ) -> pQPoint + * :mask() -> pQRegion + * :maximumHeight() -> nInt + * :maximumSize() -> pQSize + * :maximumWidth() -> nInt + * :minimumHeight() -> nInt + * :minimumSize() -> pQSize + * :minimumSizeHint() -> pQSize + * :minimumWidth() -> nInt + * :move( nX, nY ) -> NIL + * :move_1( pQPoint ) -> NIL + * :normalGeometry() -> pQRect + * :overrideWindowFlags( nFlags ) -> NIL + * :paintEngine() -> pQPaintEngine + * :palette() -> pQPalette + * :pos() -> pQPoint + * :rect() -> pQRect + * :releaseKeyboard() -> NIL + * :releaseMouse() -> NIL + * :releaseShortcut( nId ) -> NIL + * :removeAction( pAction ) -> NIL + * :repaint( nX, nY, nW, nH ) -> NIL + * :repaint_1( pRect ) -> NIL + * :repaint_2( pRgn ) -> NIL + * :resize( nW, nH ) -> NIL + * :resize_1( pQSize ) -> NIL + * :restoreGeometry( pGeometry ) -> lBool + * :saveGeometry() -> pQByteArray + * :scroll( nDx, nDy ) -> NIL + * :scroll_1( nDx, nDy, pR ) -> NIL + * :setAcceptDrops( lOn ) -> NIL + * :setAttribute( nAttribute, lOn ) -> NIL + * :setAutoFillBackground( lEnabled ) -> NIL + * :setBackgroundRole( nRole ) -> NIL + * :setBaseSize( pQSize ) -> NIL + * :setBaseSize_1( nBasew, nBaseh ) -> NIL + * :setContentsMargins( nLeft, nTop, nRight, nBottom ) -> NIL + * :setContextMenuPolicy( nPolicy ) -> NIL + * :setCursor( pQCursor ) -> NIL + * :setFixedHeight( nH ) -> NIL + * :setFixedSize( pS ) -> NIL + * :setFixedSize_1( nW, nH ) -> NIL + * :setFixedWidth( nW ) -> NIL + * :setFocus( nReason ) -> NIL + * :setFocusPolicy( nPolicy ) -> NIL + * :setFocusProxy( pW ) -> NIL + * :setFont( pQFont ) -> NIL + * :setForegroundRole( nRole ) -> NIL + * :setGeometry( pQRect ) -> NIL + * :setGeometry_1( nX, nY, nW, nH ) -> NIL + * :setLayout( pLayout ) -> NIL + * :setLayoutDirection( nDirection ) -> NIL + * :setLocale( pLocale ) -> NIL + * :setMask( pBitmap ) -> NIL + * :setMask_1( pRegion ) -> NIL + * :setMaximumHeight( nMaxh ) -> NIL + * :setMaximumSize( pQSize ) -> NIL + * :setMaximumSize_1( nMaxw, nMaxh ) -> NIL + * :setMaximumWidth( nMaxw ) -> NIL + * :setMinimumHeight( nMinh ) -> NIL + * :setMinimumSize( pQSize ) -> NIL + * :setMinimumSize_1( nMinw, nMinh ) -> NIL + * :setMinimumWidth( nMinw ) -> NIL + * :setMouseTracking( lEnable ) -> NIL + * :setPalette( pQPalette ) -> NIL + * :setParent( pParent ) -> NIL + * :setParent_1( pParent, nF ) -> NIL + * :setShortcutAutoRepeat( nId, lEnable ) -> NIL + * :setShortcutEnabled( nId, lEnable ) -> NIL + * :setSizeIncrement( pQSize ) -> NIL + * :setSizeIncrement_1( nW, nH ) -> NIL + * :setSizePolicy( pPolicy ) -> NIL + * :setSizePolicy_1( nHorizontal, nVertical ) -> NIL + * :setStatusTip( cQString ) -> NIL + * :setStyle( pStyle ) -> NIL + * :setToolTip( cQString ) -> NIL + * :setUpdatesEnabled( lEnable ) -> NIL + * :setWhatsThis( cQString ) -> NIL + * :setWindowFilePath( cFilePath ) -> NIL + * :setWindowFlags( nType ) -> NIL + * :setWindowIcon( cIcon ) -> NIL + * :setWindowIconText( cQString ) -> NIL + * :setWindowModality( nWindowModality ) -> NIL + * :setWindowOpacity( nLevel ) -> NIL + * :setWindowRole( cRole ) -> NIL + * :setWindowState( nWindowState ) -> NIL + * :size() -> pQSize + * :sizeHint() -> pQSize + * :sizeIncrement() -> pQSize + * :sizePolicy() -> pQSizePolicy + * :stackUnder( pW ) -> NIL + * :statusTip() -> cQString + * :style() -> pQStyle + * :styleSheet() -> cQString + * :testAttribute( nAttribute ) -> lBool + * :toolTip() -> cQString + * :underMouse() -> lBool + * :unsetCursor() -> NIL + * :unsetLayoutDirection() -> NIL + * :unsetLocale() -> NIL + * :update( nX, nY, nW, nH ) -> NIL + * :update_1( pRect ) -> NIL + * :update_2( pRgn ) -> NIL + * :updateGeometry() -> NIL + * :updatesEnabled() -> lBool + * :visibleRegion() -> pQRegion + * :whatsThis() -> cQString + * :width() -> nInt + * :windowFilePath() -> cQString + * :windowFlags() -> nQt::WindowFlags + * :windowIcon() -> pQIcon + * :windowIconText() -> cQString + * :windowModality() -> nQt::WindowModality + * :windowOpacity() -> nQreal + * :windowRole() -> cQString + * :windowState() -> nQt::WindowStates + * :windowTitle() -> cQString + * :windowType() -> nQt::WindowType + * :x() -> nInt + * :y() -> nInt + * :setTabOrder( pFirst, pSecond ) -> NIL + * :close() -> lBool + * :hide() -> NIL + * :lower() -> NIL + * :raise() -> NIL + * :repaint_3() -> NIL + * :setDisabled( lDisable ) -> NIL + * :setEnabled( lEnable ) -> NIL + * :setFocus_1() -> NIL + * :setHidden( lHidden ) -> NIL + * :setStyleSheet( cStyleSheet ) -> NIL + * :setVisible( lVisible ) -> NIL + * :setWindowModified( lModified ) -> NIL + * :setWindowTitle( cTitle ) -> NIL + * :show() -> NIL + * :showFullScreen() -> NIL + * :showMaximized() -> NIL + * :showMinimized() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt b/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt index f7e0c29008..1785e64827 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt @@ -1,57 +1,55 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QWidgetAction() - $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 - - $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/TQWidgetAction.prg - C++ wrappers : contrib/hbqt/qtgui/QWidgetAction.cpp - Library : hbqtgui - $SEEALSO$ - QAction - $END$ + * $NAME$ + * QWidgetAction() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQWidgetAction.prg + * C++ wrappers : contrib/hbqt/qtgui/QWidgetAction.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QWidgetAction():new( ... ) + * QWidgetAction():from( pPtr_OR_oObj_of_type_QWidgetAction ) + * QWidgetAction():configure( pPtr_OR_oObj_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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt index 070ad2e98f..1631c2220b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt @@ -1,55 +1,53 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $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$ + * $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$ + * + * $SUBCATEGORY$ + * GUI + * $EXTERNALLINK$ + * http://doc.trolltech.com/4.5/qwidgetitem.html + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwizard.txt b/harbour/contrib/hbqt/doc/en/class_qwizard.txt index ec78988f6e..dede6b8b0c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwizard.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwizard.txt @@ -1,88 +1,86 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QWizard() - $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 - :buttonText( nWhich ) -> cQString - :currentId() -> nInt - :currentPage() -> Page - :field( cName ) -> pQVariant - :hasVisitedPage( nId ) -> lBool - :nextId() -> nInt - :options() -> nWizardOptions - :page( nId ) -> Page - :pageIds() -> pQList - :pixmap( nWhich ) -> pQPixmap - :removePage( nId ) -> NIL - :setButton( nWhich, pButton ) -> NIL - :setButtonText( nWhich, cText ) -> NIL - :setDefaultProperty( pClassName, pProperty, pChangedSignal ) -> NIL - :setField( cName, pValue ) -> NIL - :setOption( nOption, lOn ) -> NIL - :setOptions( nOptions ) -> NIL - :setPage( nId, pPage ) -> NIL - :setPixmap( nWhich, pPixmap ) -> NIL - :setStartId( nId ) -> NIL - :setSubTitleFormat( nFormat ) -> NIL - :setTitleFormat( nFormat ) -> NIL - :setWizardStyle( nStyle ) -> NIL - :startId() -> nInt - :subTitleFormat() -> nQt::TextFormat - :testOption( nOption ) -> lBool - :titleFormat() -> nQt::TextFormat - :validateCurrentPage() -> lBool - :visitedPages() -> pQList - :wizardStyle() -> nWizardStyle - :back() -> NIL - :next() -> NIL - :restart() -> 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/TQWizard.prg - C++ wrappers : contrib/hbqt/qtgui/QWizard.cpp - Library : hbqtgui - $SEEALSO$ - QDialog - $END$ + * $NAME$ + * QWizard() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQWizard.prg + * C++ wrappers : contrib/hbqt/qtgui/QWizard.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QWizard():new( ... ) + * QWizard():from( pPtr_OR_oObj_of_type_QWizard ) + * QWizard():configure( pPtr_OR_oObj_of_type_QWizard ) + * $METHODS$ + * :addPage( pPage ) -> nInt + * :button( nWhich ) -> pQAbstractButton + * :buttonText( nWhich ) -> cQString + * :currentId() -> nInt + * :currentPage() -> Page + * :field( cName ) -> pQVariant + * :hasVisitedPage( nId ) -> lBool + * :nextId() -> nInt + * :options() -> nWizardOptions + * :page( nId ) -> Page + * :pageIds() -> pQList + * :pixmap( nWhich ) -> pQPixmap + * :removePage( nId ) -> NIL + * :setButton( nWhich, pButton ) -> NIL + * :setButtonText( nWhich, cText ) -> NIL + * :setDefaultProperty( pClassName, pProperty, pChangedSignal ) -> NIL + * :setField( cName, pValue ) -> NIL + * :setOption( nOption, lOn ) -> NIL + * :setOptions( nOptions ) -> NIL + * :setPage( nId, pPage ) -> NIL + * :setPixmap( nWhich, pPixmap ) -> NIL + * :setStartId( nId ) -> NIL + * :setSubTitleFormat( nFormat ) -> NIL + * :setTitleFormat( nFormat ) -> NIL + * :setWizardStyle( nStyle ) -> NIL + * :startId() -> nInt + * :subTitleFormat() -> nQt::TextFormat + * :testOption( nOption ) -> lBool + * :titleFormat() -> nQt::TextFormat + * :validateCurrentPage() -> lBool + * :visitedPages() -> pQList + * :wizardStyle() -> nWizardStyle + * :back() -> NIL + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt b/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt index 5b8a1ea98c..cdbd3ba549 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt @@ -1,70 +1,68 @@ /* - * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+ - * Please do not modify this document as it is subject to change in future. - * Pritpal Bedi + * $Id$ */ /* $DOC$ - $TEMPLATE$ - Class - $NAME$ - QWizardPage() - $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 - :initializePage() -> NIL - :isCommitPage() -> lBool - :isComplete() -> lBool - :isFinalPage() -> lBool - :nextId() -> nInt - :pixmap( nWhich ) -> pQPixmap - :setButtonText( nWhich, cText ) -> NIL - :setCommitPage( lCommitPage ) -> NIL - :setFinalPage( lFinalPage ) -> NIL - :setPixmap( nWhich, pPixmap ) -> NIL - :setSubTitle( cSubTitle ) -> NIL - :setTitle( cTitle ) -> NIL - :subTitle() -> cQString - :title() -> cQString - :validatePage() -> 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/TQWizardPage.prg - C++ wrappers : contrib/hbqt/qtgui/QWizardPage.cpp - Library : hbqtgui - $SEEALSO$ - QWidget - $END$ + * $NAME$ + * QWizardPage() + * $FILES$ + * Harbour source: contrib/hbqt/qtgui/TQWizardPage.prg + * C++ wrappers : contrib/hbqt/qtgui/QWizardPage.cpp + * Library : hbqtgui + * $TESTS$ + * + * $STATUS$ + * R + * $SYNTAX$ + * QWizardPage():new( ... ) + * QWizardPage():from( pPtr_OR_oObj_of_type_QWizardPage ) + * QWizardPage():configure( pPtr_OR_oObj_of_type_QWizardPage ) + * $METHODS$ + * :buttonText( nWhich ) -> cQString + * :cleanupPage() -> NIL + * :initializePage() -> NIL + * :isCommitPage() -> lBool + * :isComplete() -> lBool + * :isFinalPage() -> lBool + * :nextId() -> nInt + * :pixmap( nWhich ) -> pQPixmap + * :setButtonText( nWhich, cText ) -> NIL + * :setCommitPage( lCommitPage ) -> NIL + * :setFinalPage( lFinalPage ) -> NIL + * :setPixmap( nWhich, pPixmap ) -> NIL + * :setSubTitle( cSubTitle ) -> NIL + * :setTitle( cTitle ) -> NIL + * :subTitle() -> cQString + * :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 + * $END$ */ diff --git a/harbour/contrib/hbqt/generator/hbqtgen.prg b/harbour/contrib/hbqt/generator/hbqtgen.prg index 8eafb1886a..17cc18cb91 100644 --- a/harbour/contrib/hbqt/generator/hbqtgen.prg +++ b/harbour/contrib/hbqt/generator/hbqtgen.prg @@ -56,17 +56,10 @@ #define _EOL chr( 10 ) -STATIC isClassObject -STATIC zWidget -STATIC aCore := {} -STATIC aGui := {} -STATIC aNetwork := {} -STATIC aWebkit := {} - /* * Force new GC and Qt interface */ -STATIC lNewGCtoQT := .T. +STATIC s_lNewGCtoQT := .T. STATIC s_isObject := .F. STATIC s_trMode := "HB_TR_DEBUG" //STATIC s_trMode := "HB_TR_ALWAYS" @@ -128,10 +121,6 @@ FUNCTION Main( ... ) ENDCASE NEXT - IF empty( aPrjFiles ) .AND. empty( aProFiles ) .AND. hb_fileExists( "qt45.qtp" ) - aadd( aPrjFiles, "qt45.qtp" ) - ENDIF - IF empty( aPrjFiles ) .AND. empty( aProFiles ) FOR EACH a_ IN directory( "*.qtp" ) aadd( aPrjFiles, a_[ 1 ] ) @@ -167,13 +156,18 @@ FUNCTION Main( ... ) ManageProject( cProFile, cPathIn, cPathOut, cPathDoc ) NEXT - /* Generate .CPP Sources */ + /* Generate .cpp Sources */ FOR EACH cProFile IN aProFiles - GenSource( cProFile, cPathIn, cPathOut, cPathDoc ) + GenSource( cProFile, cPathIn, cPathOut, cPathDoc, {}, cProFile ) NEXT RETURN nil +STATIC FUNCTION FNameGetName( cFileName ) + LOCAL cName + hb_FNameSplit( cFileName,, @cName ) + RETURN cName + /*----------------------------------------------------------------------*/ STATIC FUNCTION ManageProject( cProFile, cPathIn, cPathOut, cPathDoc ) @@ -182,6 +176,8 @@ STATIC FUNCTION ManageProject( cProFile, cPathIn, cPathOut, cPathDoc ) LOCAL n, nn LOCAL prj_, cpp_, prg_, a_ + LOCAL aWidgetList := {} + #if 0 hb_fNameSplit( cProFile, @cPath, @cFile, @cExt ) @@ -254,7 +250,7 @@ STATIC FUNCTION ManageProject( cProFile, cPathIn, cPathOut, cPathDoc ) //ENDIF ELSEIF lower( right( cPrj,4 ) ) == ".qth" - a_:= GenSource( cPrj, cPIn, cPOut, cPDoc ) + a_:= GenSource( cPrj, cPIn, cPOut, cPDoc, aWidgetList, cProFile ) IF !empty( a_[ 1 ] ) aadd( cpp_, a_[ 1 ] ) IF !empty( a_[ 2 ] ) @@ -266,8 +262,8 @@ STATIC FUNCTION ManageProject( cProFile, cPathIn, cPathOut, cPathDoc ) NEXT IF !empty( cpp_ ) - Build_Makefile( cpp_, prg_, cPOut ) - Build_GarbageFile( cpp_, cPOut ) + Build_Makefile( cPOut, aWidgetList ) + Build_GarbageFile( cpp_, cPOut, cProFile ) ENDIF RETURN NIL @@ -318,7 +314,7 @@ STATIC FUNCTION PullOutFuncBody( protos_, nFrom ) /*----------------------------------------------------------------------*/ -STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc ) +STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc, aWidgetList, cProject ) LOCAL cFile, cWidget, cExt, cPath, cOrg, cCPP, cPRG, lConst //, lList, cWgt LOCAL cQth, cFileCpp, s, n, nFuncs, nCnvrtd, n1, i, cFunc, lObject, lDestructor, lList LOCAL b_, txt_, enum_, code_, func_, dummy_, cpp_, cmntd_, doc_, varbls_ @@ -326,9 +322,6 @@ STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc ) hb_fNameSplit( cProFile, @cPath, @cWidget, @cExt ) - isClassObject := IsQObject( cWidget ) - zWidget := cWidget - IF empty( cPath ) cFile := cPathIn + hb_ps() + cProFile ELSE @@ -392,18 +385,6 @@ STATIC FUNCTION GenSource( cProFile, cPathIn, cPathOut, cPathDoc ) NEXT code_:= old_ - /* Mark to which sub library class belongs to */ - IF " 0 - cFileOut := iif( empty( cPathOut ), "", cPathOut + hb_ps() + cls_[ n,2 ] + hb_ps() ) + cPre + cWidget + cExt - ELSE - IF ascan( aGui, cWidget ) > 0 - cFileOut := cPathOut + hb_ps() + "qtgui" + hb_ps() + cPre + cWidget + cExt - ELSEIF ascan( aCore, cWidget ) > 0 - cFileOut := cPathOut + hb_ps() + "qtcore" + hb_ps() + cPre + cWidget + cExt - ELSEIF ascan( aWebkit, cWidget ) > 0 - cFileOut := cPathOut + hb_ps() + "qtwebkit" + hb_ps() + cPre + cWidget + cExt - ELSEIF ascan( aNetwork, cWidget ) > 0 - cFileOut := cPathOut + hb_ps() + "qtnetwork" + hb_ps() + cPre + cWidget + cExt - ELSE - cFileOut := cPathOut + hb_ps() + cPre + cWidget + cExt - ENDIF - ENDIF - - RETURN cFileOut +FUNCTION GetSourcePathByLib( cWidget, cPathOut, cExt, cPre ) + RETURN cPathOut + hb_ps() + cPre + cWidget + cExt /*----------------------------------------------------------------------*/ @@ -841,7 +805,7 @@ STATIC FUNCTION ParseProto( cProto, cWidget, txt_, doc_, aEnum, func_, lList, fB ENDIF aRet := array( PRT_ATTRB_MAX ) - JustACall( cPas ) //////////////////////////////////////////////////////// + aRet[ PRT_L_CONST ] := "const" $ cRet //.or. "const" $ cPas aRet[ PRT_L_AND ] := "&" $ cRet aRet[ PRT_L_FAR ] := "*" $ cRet @@ -1494,7 +1458,7 @@ STATIC FUNCTION ParseVariables( cProto, cWidget, txt_, doc_, aEnum, func_ ) /*----------------------------------------------------------------------*/ -STATIC FUNCTION BuildHeader( txt_, nMode ) +STATIC FUNCTION BuildHeader( txt_, nMode, cProFile ) aadd( txt_, "/*" ) aadd( txt_, " * $" + "Id" + "$" ) @@ -1559,6 +1523,11 @@ STATIC FUNCTION BuildHeader( txt_, nMode ) aadd( txt_, "" ) IF nMode == 0 aadd( txt_, '#include "../hbqt.h"' ) + aadd( txt_, '#include "hb' + FNameGetName( cProFile ) + '_garbage.h"' ) + IF !( FNameGetName( cProFile ) == "qtcore" ) + aadd( txt_, '#include "hbqtcore_garbage.h"' ) + ENDIF +// aadd( txt_, '#include "hbqt_local.h"' ) aadd( txt_, "" ) aadd( txt_, "/*----------------------------------------------------------------------*/" ) aadd( txt_, "#if QT_VERSION >= 0x040500" ) @@ -1740,7 +1709,7 @@ STATIC FUNCTION Build_Class( cWidget, cls_, doc_, cPathOut, subCls_ ) ENDIF /* Generate .prg */ - cFile := GetSourcePathByLib( cWidget, cPathOut, ".prg", "T", cls_ ) + cFile := GetSourcePathByLib( cWidget, cPathOut, ".prg", "T" ) CreateTarget( cFile, txt_ ) RETURN nil @@ -1750,58 +1719,35 @@ STATIC FUNCTION Build_Class( cWidget, cls_, doc_, cPathOut, subCls_ ) #define QT_VER "4.5" #define QT_WEB "http://doc.trolltech.com/" -STATIC FUNCTION Build_Document( cWidget, cls_, doc_, cPathDoc, subCls_, docum_ ) - LOCAL cText, n, n1, n2, nLen, pWidget, cRet, cLib, cFile, i, cInherits - LOCAL txt_:= {} +STATIC FUNCTION Build_Document( cProFile, cWidget, cls_, doc_, cPathDoc, subCls_, docum_ ) + LOCAL cText, n, n1, n2, nLen, pWidget, cRet, cLib, cFile, i, cInherits, cHdr - HB_SYMBOL_UNUSED( cls_ ) + LOCAL hEntry := { => } + + hb_HKeepOrder( hEntry, .T. ) + + HB_SYMBOL_UNUSED( cls_ ) HB_SYMBOL_UNUSED( subCls_ ) n := ascan( cls_, {|e_| left( lower( e_[ 1 ] ), 7 ) == "inherit" .and. !empty( e_[ 2 ] ) } ) cInherits := iif( n > 0, cls_[ n, 2 ], "" ) - IF ascan( aGui, cWidget ) > 0 - cLib := "qtgui" - ELSEIF ascan( aCore, cWidget ) > 0 - cLib := "qtcore" - ELSEIF ascan( aWebkit, cWidget ) > 0 - cLib := "qtwebkit" - ELSEIF ascan( aNetwork, cWidget ) > 0 - cLib := "qtnetwork" - ELSE - cLib := "" - ENDIF + cLib := FNameGetName( cProFile ) - aadd( txt_, "/* " ) - aadd( txt_, " * hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+" ) - aadd( txt_, " * Please do not modify this document as it is subject to change in future." ) - aadd( txt_, " * Pritpal Bedi " ) - aadd( txt_, " */ " ) - aadd( txt_, " " ) - aadd( txt_, "/* $DOC$ " ) - aadd( txt_, " $TEMPLATE$ " ) - aadd( txt_, " Class" ) - aadd( txt_, " $NAME$ " ) - aadd( txt_, " " + cWidget + "()" ) - aadd( txt_, " $CATEGORY$ " ) - aadd( txt_, " " + "Harbour Bindings for Qt" ) - aadd( txt_, " $SUBCATEGORY$ " ) - aadd( txt_, " " + "GUI" ) - aadd( txt_, " $EXTERNALLINK$" ) - aadd( txt_, " " + QT_WEB + QT_VER + "/" + lower( cWidget ) + ".html" ) - aadd( txt_, " $ONELINER$ " ) - aadd( txt_, " " + "Creates a new " + cWidget + " object." ) - aadd( txt_, " $INHERITS$ " ) - aadd( txt_, " " + cInherits ) - aadd( txt_, " $SYNTAX$ " ) - aadd( txt_, " " + cWidget + "():new( ... )" ) - aadd( txt_, " " + cWidget + "():from( pPtr_OR_oObj_of_type_" + cWidget +" )" ) - aadd( txt_, " " + cWidget + "():configure( pPtr_OR_oObj_of_type_" + cWidget +" )" ) - aadd( txt_, " $ARGUMENTS$ " ) - aadd( txt_, " " ) - aadd( txt_, " $RETURNS$ " ) - aadd( txt_, " " + "An instance of the object of type " + cWidget ) - aadd( txt_, " $METHODS$ " ) + hEntry[ "TEMPLATE" ] := " " + "Class" + hEntry[ "NAME" ] := " " + cWidget + "()" + hEntry[ "CATEGORY" ] := " " + "Harbour Bindings for Qt" + hEntry[ "SUBCATEGORY" ] := " " + "GUI" + hEntry[ "EXTERNALLINK" ] := " " + QT_WEB + QT_VER + "/" + lower( cWidget ) + ".html" + hEntry[ "ONELINER" ] := " " + "Creates a new " + cWidget + " object." + hEntry[ "INHERITS" ] := " " + cInherits + hEntry[ "SYNTAX" ] := "" + hEntry[ "SYNTAX" ] += " " + cWidget + "():new( ... )" + hb_eol() + hEntry[ "SYNTAX" ] += " " + cWidget + "():from( pPtr_OR_oObj_of_type_" + cWidget +" )" + hb_eol() + hEntry[ "SYNTAX" ] += " " + cWidget + "():configure( pPtr_OR_oObj_of_type_" + cWidget +" )" + hEntry[ "ARGUMENTS" ] := "" + hEntry[ "RETURNS" ] := " " + "An instance of the object of type " + cWidget + hEntry[ "METHODS" ] := "" nLen := len( cWidget ) n := at( cWidget, doc_[ 1 ] ) pWidget := "p" + cWidget @@ -1818,86 +1764,87 @@ STATIC FUNCTION Build_Document( cWidget, cls_, doc_, cPathDoc, subCls_, docum_ ) n2 := max( 50, len( cText ) ) cText := padR( cText, n2 ) IF !empty( cRet ) - aadd( txt_, " :" + cText + " -> " + cRet ) + hEntry[ "METHODS" ] += " :" + cText + " -> " + cRet + hb_eol() ENDIF ENDIF NEXT - aadd( txt_, " " ) - aadd( txt_, " $DESCRIPTION$ " ) - aadd( txt_, " " ) - aadd( txt_, " $EXAMPLES$ " ) + hEntry[ "DESCRIPTION" ] := "" + hEntry[ "EXAMPLES" ] := "" FOR EACH cText IN docum_ IF !empty( cText ) - aadd( txt_, " " + cText ) + hEntry[ "EXAMPLES" ] += " " + cText + hb_eol() ENDIF NEXT - aadd( txt_, " " ) - aadd( txt_, " $TESTS$ " ) - aadd( txt_, " " ) - aadd( txt_, " $STATUS$ " ) - aadd( txt_, " " + "R" ) - aadd( txt_, " $COMPLIANCE$ " ) - aadd( txt_, " " + "Not Clipper compatible" ) - aadd( txt_, " $PLATFORMS$ " ) - aadd( txt_, " " + "Windows, Linux, Mac OS X, OS/2" ) - aadd( txt_, " $VERSION$ " ) - aadd( txt_, " " + "4.5 or upper" ) - aadd( txt_, " $FILES$ " ) - aadd( txt_, " " + "Harbour source: " + "contrib/hbqt" + iif( Empty( cLib ), "", "/" + cLib ) + "/T" + cWidget + ".prg" ) - aadd( txt_, " " + "C++ wrappers : " + "contrib/hbqt" + iif( Empty( cLib ), "", "/" + cLib ) + "/" + cWidget + ".cpp" ) - aadd( txt_, " " + "Library : " + "hb" + cLib ) - aadd( txt_, " $SEEALSO$ " ) - * aadd( txt_, " " + iif( Empty( cInherits ), "", cInherits + ", " ) + QT_WEB + QT_VER + "/" + lower( cWidget ) + ".html" ) - aadd( txt_, " " + cInherits ) - aadd( txt_, " $END$ " ) - aadd( txt_, " */ " ) + hEntry[ "TESTS" ] := "" + hEntry[ "STATUS" ] := " " + "R" + hEntry[ "COMPLIANCE" ] := " " + "Not Clipper compatible" + hEntry[ "PLATFORMS" ] := " " + "Windows, Linux, Mac OS X, OS/2" + hEntry[ "VERSION" ] := " " + "4.5 or upper" + hEntry[ "FILES" ] := "" + hEntry[ "FILES" ] += " " + "Harbour source: " + "contrib/hbqt" + iif( Empty( cLib ), "", "/" + cLib ) + "/T" + cWidget + ".prg" + hb_eol() + hEntry[ "FILES" ] += " " + "C++ wrappers : " + "contrib/hbqt" + iif( Empty( cLib ), "", "/" + cLib ) + "/" + cWidget + ".cpp" + hb_eol() + hEntry[ "FILES" ] += " " + "Library : " + "hb" + cLib + hEntry[ "SEEALSO" ] := "" + * hEntry[ "SEEALSO" ] += " " + iif( Empty( cInherits ), "", cInherits + ", " ) + QT_WEB + QT_VER + "/" + lower( cWidget ) + ".html" + hb_eol() + hEntry[ "SEEALSO" ] += " " + cInherits cFile := cPathDoc + hb_ps() + "en" + hb_ps() + "class_" + lower( cWidget ) + ".txt" - RETURN CreateTarget( cFile, txt_ ) + cHdr := ; + "/*" + hb_eol() +; + " * $" + "Id" + "$" + hb_eol() +; + " */" + hb_eol() + + RETURN hb_MemoWrit( cFile, cHdr + __hbdoc_ToSource( { hEntry } ) ) /*----------------------------------------------------------------------*/ -STATIC FUNCTION Build_GarbageFile( cpp_, cPathOut ) - LOCAL cFile := iif( empty( cPathOut ), "", cPathOut + hb_ps() ) + "hbqt_garbage.h" +STATIC FUNCTION Build_GarbageFile( cpp_, cPathOut, cProFile ) + LOCAL cFile + LOCAL hdr_:= {} LOCAL txt_ := {} LOCAL s - aadd( txt_, "/*" ) - aadd( txt_, " * $" + "Id" + "$" ) - aadd( txt_, " */" ) - aadd( txt_, "" ) - aadd( txt_, "/* -------------------------------------------------------------------- */" ) - aadd( txt_, "/* WARNING: Automatically generated source file. DO NOT EDIT! */" ) - aadd( txt_, "/* Instead, edit corresponding .qth file, */" ) - aadd( txt_, "/* or the generator tool itself, and run regenarate. */" ) - aadd( txt_, "/* -------------------------------------------------------------------- */" ) - aadd( txt_, " " ) + aadd( hdr_, "/*" ) + aadd( hdr_, " * $" + "Id" + "$" ) + aadd( hdr_, " */" ) + aadd( hdr_, "" ) + aadd( hdr_, "/* -------------------------------------------------------------------- */" ) + aadd( hdr_, "/* WARNING: Automatically generated source file. DO NOT EDIT! */" ) + aadd( hdr_, "/* Instead, edit corresponding .qth file, */" ) + aadd( hdr_, "/* or the generator tool itself, and run regenarate. */" ) + aadd( hdr_, "/* -------------------------------------------------------------------- */" ) + aadd( hdr_, " " ) + aadd( hdr_, '#include "../hbqt.h"' ) + aadd( hdr_, " " ) + + txt_ := {} + aeval( hdr_, {|e| aadd( txt_, e ) } ) FOR EACH s IN cpp_ aadd( txt_, "extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_" + s + " );" ) NEXT aadd( txt_, "" ) - IF ( lNewGCtoQT ) + IF s_lNewGCtoQT FOR EACH s IN cpp_ aadd( txt_, "extern HB_EXPORT void * hbqt_gcAllocate_" + s + "( void * pObj, bool bNew );" ) NEXT aadd( txt_, "" ) ENDIF - RETURN CreateTarget( cFile, txt_ ) + cFile := iif( empty( cPathOut ), "", cPathOut + hb_ps() + hb_ps() ) + CreateTarget( cFile + "hb" + FNameGetName( cProFile ) + "_garbage.h", txt_ ) + + RETURN NIL /*----------------------------------------------------------------------*/ -STATIC FUNCTION Build_MakeFile( cpp_, prg_, cPathOut ) - LOCAL cFile, s, i - LOCAL hdr_:= {}, aSubs := {} +STATIC FUNCTION Build_MakeFile( cPathOut, aWidgetList ) + LOCAL cFile, s + LOCAL hdr_:= {} LOCAL hbm_ := {} - HB_SYMBOL_UNUSED( cpp_ ) - HB_SYMBOL_UNUSED( prg_ ) - aadd( hdr_, "#" ) aadd( hdr_, "# $" + "Id" + "$" ) aadd( hdr_, "#" ) @@ -1909,35 +1856,19 @@ STATIC FUNCTION Build_MakeFile( cpp_, prg_, cPathOut ) aadd( hdr_, "# --------------------------------------------------------------------" ) aadd( hdr_, "" ) - /* Sub Libraries */ - IF !empty( aWebkit ) - aadd( aSubs, { "qtwebkit" , aWebkit } ) - ENDIF - IF !empty( aNetwork ) - aadd( aSubs, { "qtnetwork", aNetwork } ) - ENDIF - IF !empty( aGui ) - aadd( aSubs, { "qtgui" , aGui } ) - ENDIF - IF !empty( aCore ) - aadd( aSubs, { "qtcore" , aCore } ) - ENDIF + hbm_ := {} + aeval( hdr_, {|e| aadd( hbm_, e ) } ) // - FOR i := 1 TO len( aSubs ) - hbm_ := {} - aeval( hdr_, {|e| aadd( hbm_, e ) } ) - // - FOR EACH s IN aSubs[ i, 2 ] - aadd( hbm_, + s + ".cpp" ) - NEXT - aadd( hbm_, "" ) - FOR EACH s IN aSubs[ i, 2 ] - aadd( hbm_, + "T" + s + ".prg" ) - NEXT - // - cFile := iif( empty( cPathOut ), "", cPathOut + hb_ps() + aSubs[ i, 1 ] + hb_ps() ) - CreateTarget( cFile + "filelist.hbm", hbm_ ) + FOR EACH s IN aWidgetList + aadd( hbm_, + s + ".cpp" ) NEXT + aadd( hbm_, "" ) + FOR EACH s IN aWidgetList + aadd( hbm_, + "T" + s + ".prg" ) + NEXT + // + cFile := iif( empty( cPathOut ), "", cPathOut + hb_ps() ) + CreateTarget( cFile + "filelist.hbm", hbm_ ) RETURN NIL @@ -2115,335 +2046,6 @@ FUNCTION Build_HtmlHeader( aHTML ) /*----------------------------------------------------------------------*/ -FUNCTION IsQObject( cWidget ) - STATIC aTree := {} - - IF empty( aTree ) - aadd( aTree, "QObject " ) - aadd( aTree, " QAbstractEventDispatcher " ) - aadd( aTree, " QAbstractItemDelegate " ) - aadd( aTree, " QItemDelegate " ) - aadd( aTree, " QSqlRelationalDelegate " ) - aadd( aTree, " QStyledItemDelegate " ) - aadd( aTree, " QAbstractItemModel " ) - aadd( aTree, " QAbstractListModel " ) - aadd( aTree, " QStringListModel " ) - aadd( aTree, " QHelpIndexModel " ) - aadd( aTree, " QAbstractProxyModel " ) - aadd( aTree, " QSortFilterProxyModel " ) - aadd( aTree, " QAbstractTableModel " ) - aadd( aTree, " QSqlQueryModel " ) - aadd( aTree, " QSqlTableModel " ) - aadd( aTree, " QSqlRelationalTableModel " ) - aadd( aTree, " QDirModel " ) - aadd( aTree, " QFileSystemModel " ) - aadd( aTree, " QHelpContentModel " ) - aadd( aTree, " QProxyModel " ) - aadd( aTree, " QStandardItemModel " ) - aadd( aTree, " QAbstractMessageHandler " ) - aadd( aTree, " QAbstractNetworkCache " ) - aadd( aTree, " QNetworkDiskCache " ) - aadd( aTree, " QAbstractTextDocumentLayout " ) - aadd( aTree, " QPlainTextDocumentLayout " ) - aadd( aTree, " QAbstractUriResolver " ) - aadd( aTree, " QAccessibleBridgePlugin " ) - aadd( aTree, " QAccessiblePlugin " ) - aadd( aTree, " QAction " ) - aadd( aTree, " QMenuItem " ) - aadd( aTree, " QWidgetAction " ) - aadd( aTree, " QActionGroup " ) - aadd( aTree, " QAssistantClient " ) - aadd( aTree, " QAxFactory " ) - aadd( aTree, " QAxObject " ) - aadd( aTree, " QAxScript " ) - aadd( aTree, " QAxScriptManager " ) - aadd( aTree, " QButtonGroup " ) - aadd( aTree, " QClipboard " ) - aadd( aTree, " QCompleter " ) - aadd( aTree, " QCoreApplication " ) - aadd( aTree, " QApplication " ) - aadd( aTree, " QDataWidgetMapper " ) - aadd( aTree, " QDBusAbstractAdaptor " ) - aadd( aTree, " QDBusAbstractInterface " ) - aadd( aTree, " QDBusConnectionInterface " ) - aadd( aTree, " QDBusInterface " ) - aadd( aTree, " QDBusPendingCallWatcher " ) - aadd( aTree, " QDBusServer " ) - aadd( aTree, " QDesignerFormEditorInterface " ) - aadd( aTree, " QDesignerFormWindowManagerInterface " ) - aadd( aTree, " QDrag " ) - aadd( aTree, " QEventLoop " ) - aadd( aTree, " QExtensionFactory " ) - aadd( aTree, " QExtensionManager " ) - aadd( aTree, " QFileSystemWatcher " ) - aadd( aTree, " QFtp " ) - aadd( aTree, " QFutureWatcher " ) - aadd( aTree, " QGraphicsItemAnimation " ) - aadd( aTree, " QGraphicsScene " ) - aadd( aTree, " QGraphicsSvgItem " ) - aadd( aTree, " QGraphicsTextItem " ) - aadd( aTree, " QGraphicsWidget " ) - aadd( aTree, " QHelpEngineCore " ) - aadd( aTree, " QHelpEngine " ) - aadd( aTree, " QHelpSearchEngine " ) - aadd( aTree, " QHttp " ) - aadd( aTree, " QIconEnginePlugin " ) - aadd( aTree, " QIconEnginePluginV2 " ) - aadd( aTree, " QImageIOPlugin " ) - aadd( aTree, " QInputContext " ) - aadd( aTree, " QInputContextPlugin " ) - aadd( aTree, " QIODevice " ) - aadd( aTree, " Q3Socket " ) - aadd( aTree, " Q3SocketDevice " ) - aadd( aTree, " QAbstractSocket " ) - aadd( aTree, " QTcpSocket " ) - aadd( aTree, " QSslSocket " ) - aadd( aTree, " QUdpSocket " ) - aadd( aTree, " QBuffer " ) - aadd( aTree, " QTemporaryFile " ) - aadd( aTree, " QFile " ) - aadd( aTree, " QLocalSocket " ) - aadd( aTree, " QNetworkReply " ) - aadd( aTree, " QProcess " ) - aadd( aTree, " QItemSelectionModel " ) - aadd( aTree, " QLayout " ) - aadd( aTree, " QBoxLayout " ) - aadd( aTree, " Q3HBoxLayout " ) - aadd( aTree, " Q3VBoxLayout " ) - aadd( aTree, " QHBoxLayout " ) - aadd( aTree, " QVBoxLayout " ) - aadd( aTree, " QFormLayout " ) - aadd( aTree, " QGridLayout " ) - aadd( aTree, " QStackedLayout " ) - aadd( aTree, " QLibrary " ) - aadd( aTree, " QLocalServer " ) - aadd( aTree, " QMimeData " ) - aadd( aTree, " QMovie " ) - aadd( aTree, " QNetworkAccessManager " ) - aadd( aTree, " QNetworkCookieJar " ) - aadd( aTree, " QObjectCleanupHandler " ) - aadd( aTree, " QPictureFormatPlugin " ) - aadd( aTree, " QPluginLoader " ) - aadd( aTree, " QScriptEngine " ) - aadd( aTree, " QScriptEngineDebugger " ) - aadd( aTree, " QScriptExtensionPlugin " ) - aadd( aTree, " QSessionManager " ) - aadd( aTree, " QSettings " ) - aadd( aTree, " QSharedMemory " ) - aadd( aTree, " QShortcut " ) - aadd( aTree, " QSignalMapper " ) - aadd( aTree, " QSignalSpy " ) - aadd( aTree, " QSocketNotifier " ) - aadd( aTree, " QSound " ) - aadd( aTree, " QSqlDriver " ) - aadd( aTree, " QSqlDriverPlugin " ) - aadd( aTree, " QStyle " ) - aadd( aTree, " QCommonStyle " ) - aadd( aTree, " QMotifStyle " ) - aadd( aTree, " QCDEStyle " ) - aadd( aTree, " QWindowsStyle " ) - aadd( aTree, " QCleanlooksStyle " ) - aadd( aTree, " QGtkStyle " ) - aadd( aTree, " QPlastiqueStyle " ) - aadd( aTree, " QWindowsXPStyle " ) - aadd( aTree, " QWindowsVistaStyle " ) - aadd( aTree, " QStylePlugin " ) - aadd( aTree, " QSvgRenderer " ) - aadd( aTree, " QSyntaxHighlighter " ) - aadd( aTree, " QSystemTrayIcon " ) - aadd( aTree, " QTcpServer " ) - aadd( aTree, " QTextCodecPlugin " ) - aadd( aTree, " QTextDocument " ) - aadd( aTree, " QTextObject " ) - aadd( aTree, " QTextBlockGroup " ) - aadd( aTree, " QTextList " ) - aadd( aTree, " QTextFrame " ) - aadd( aTree, " QTextTable " ) - aadd( aTree, " QThread " ) - aadd( aTree, " QThreadPool " ) - aadd( aTree, " QTimeLine " ) - aadd( aTree, " QTimer " ) - aadd( aTree, " QTranslator " ) - aadd( aTree, " QUiLoader " ) - aadd( aTree, " QUndoGroup " ) - aadd( aTree, " QUndoStack " ) - aadd( aTree, " QValidator " ) - aadd( aTree, " QWebFrame " ) - aadd( aTree, " QWebHistoryInterface " ) - aadd( aTree, " QWebPage " ) - aadd( aTree, " QWebPluginFactory " ) - aadd( aTree, " QWidget " ) - aadd( aTree, " QAbstractButton " ) - aadd( aTree, " Q3Button " ) - aadd( aTree, " QCheckBox " ) - aadd( aTree, " QPushButton " ) - aadd( aTree, " QCommandLinkButton " ) - aadd( aTree, " QRadioButton " ) - aadd( aTree, " QToolButton " ) - aadd( aTree, " QAbstractSlider " ) - aadd( aTree, " QDial " ) - aadd( aTree, " QScrollBar " ) - aadd( aTree, " QSlider " ) - aadd( aTree, " QAbstractSpinBox " ) - aadd( aTree, " QDateTimeEdit " ) - aadd( aTree, " QDateEdit " ) - aadd( aTree, " QTimeEdit " ) - aadd( aTree, " QDoubleSpinBox " ) - aadd( aTree, " QSpinBox " ) - aadd( aTree, " QAxWidget " ) - aadd( aTree, " QCalendarWidget " ) - aadd( aTree, " QComboBox " ) - aadd( aTree, " QFontComboBox " ) - aadd( aTree, " QDesignerActionEditorInterface " ) - aadd( aTree, " QDesignerFormWindowInterface " ) - aadd( aTree, " QDesignerObjectInspectorInterface " ) - aadd( aTree, " QDesignerPropertyEditorInterface " ) - aadd( aTree, " QDesignerWidgetBoxInterface " ) - aadd( aTree, " QDesktopWidget " ) - aadd( aTree, " QDialog " ) - aadd( aTree, " QAbstractPrintDialog " ) - aadd( aTree, " QPrintDialog " ) - aadd( aTree, " QColorDialog " ) - aadd( aTree, " QErrorMessage " ) - aadd( aTree, " QFileDialog " ) - aadd( aTree, " QFontDialog " ) - aadd( aTree, " QInputDialog " ) - aadd( aTree, " QMessageBox " ) - aadd( aTree, " QPageSetupDialog " ) - aadd( aTree, " QPrintPreviewDialog " ) - aadd( aTree, " QProgressDialog " ) - aadd( aTree, " QWizard " ) - aadd( aTree, " QDialogButtonBox " ) - aadd( aTree, " QDockWidget " ) - aadd( aTree, " QFocusFrame " ) - aadd( aTree, " QFrame " ) - aadd( aTree, " QAbstractScrollArea " ) - aadd( aTree, " QAbstractItemView " ) - aadd( aTree, " QColumnView " ) - aadd( aTree, " QHeaderView " ) - aadd( aTree, " QListView " ) - aadd( aTree, " QHelpIndexWidget " ) - aadd( aTree, " QListWidget " ) - aadd( aTree, " QUndoView " ) - aadd( aTree, " QTableView " ) - aadd( aTree, " QTableWidget " ) - aadd( aTree, " QTreeView " ) - aadd( aTree, " QHelpContentWidget " ) - aadd( aTree, " QTreeWidget " ) - aadd( aTree, " QGraphicsView " ) - aadd( aTree, " QMdiArea " ) - aadd( aTree, " QPlainTextEdit " ) - aadd( aTree, " QScrollArea " ) - aadd( aTree, " QTextEdit " ) - aadd( aTree, " QTextBrowser " ) - aadd( aTree, " QLabel " ) - aadd( aTree, " QLCDNumber " ) - aadd( aTree, " QSplitter " ) - aadd( aTree, " QStackedWidget " ) - aadd( aTree, " QToolBox " ) - aadd( aTree, " QGLWidget " ) - aadd( aTree, " QGroupBox " ) - aadd( aTree, " QHelpSearchQueryWidget " ) - aadd( aTree, " QHelpSearchResultWidget " ) - aadd( aTree, " QLineEdit " ) - aadd( aTree, " QMainWindow " ) - aadd( aTree, " QMdiSubWindow " ) - aadd( aTree, " QMenu " ) - aadd( aTree, " QMenuBar " ) - aadd( aTree, " QPrintPreviewWidget " ) - aadd( aTree, " QProgressBar " ) - aadd( aTree, " QRubberBand " ) - aadd( aTree, " QSizeGrip " ) - aadd( aTree, " QSplashScreen " ) - aadd( aTree, " QSplitterHandle " ) - aadd( aTree, " QStatusBar " ) - aadd( aTree, " QSvgWidget " ) - aadd( aTree, " QTabBar " ) - aadd( aTree, " QTabWidget " ) - aadd( aTree, " QToolBar " ) - aadd( aTree, " QWebView " ) - aadd( aTree, " QWizardPage " ) - aadd( aTree, " QWorkspace " ) - - aeval( aTree, {| e,i | aTree[ i ] := alltrim( e ) } ) - ENDIF - - RETURN ascan( aTree, {|e| e == cWidget } ) > 0 - -/*----------------------------------------------------------------------*/ - -FUNCTION IsMemObject( cWidget ) - STATIC aObj := {} - - IF empty( aObj ) - aadd( aObj, "QBitArray " ) - aadd( aObj, "QBitmap " ) - aadd( aObj, "QBrush " ) - aadd( aObj, "QByteArray " ) - aadd( aObj, "QColor " ) - aadd( aObj, "QCursor " ) - aadd( aObj, "QDate " ) - aadd( aObj, "QDateTime " ) - aadd( aObj, "QDir " ) - aadd( aObj, "QFileInfoList " ) - aadd( aObj, "QFont " ) - aadd( aObj, "QFontInfo " ) - aadd( aObj, "QFontMetrics " ) - aadd( aObj, "QGradientStops " ) - aadd( aObj, "QHttpRequestHeader " ) - aadd( aObj, "QHttpResponseHeader " ) - aadd( aObj, "QIcon " ) - aadd( aObj, "QImage " ) - aadd( aObj, "QKeySequence " ) - aadd( aObj, "QLine " ) - aadd( aObj, "QLineF " ) - aadd( aObj, "QLocale " ) - aadd( aObj, "QMatrix " ) - aadd( aObj, "QModelIndex " ) - aadd( aObj, "QObjectList " ) - aadd( aObj, "QPainterPath " ) - aadd( aObj, "QPalette " ) - aadd( aObj, "QPen " ) - aadd( aObj, "QPixmap " ) - aadd( aObj, "QPointF " ) - aadd( aObj, "QRect " ) - aadd( aObj, "QRectF " ) - aadd( aObj, "QRegExp " ) - aadd( aObj, "QRegion " ) - aadd( aObj, "QSize " ) - aadd( aObj, "QSizeF " ) - aadd( aObj, "QSizePolicy " ) - aadd( aObj, "QStringList " ) - aadd( aObj, "QTableWidgetItem " ) - aadd( aObj, "QTextBlockFormat " ) - aadd( aObj, "QTextCharFormat " ) - aadd( aObj, "QTextCursor " ) - aadd( aObj, "QTextDocumentFragment " ) - aadd( aObj, "QTextFormat " ) - aadd( aObj, "QTextFrameFormat " ) - aadd( aObj, "QTextImageFormat " ) - aadd( aObj, "QTextLength " ) - aadd( aObj, "QTextLine " ) - aadd( aObj, "QTextListFormat " ) - aadd( aObj, "QTextOption " ) - aadd( aObj, "QTextTableCellFormat " ) - aadd( aObj, "QTextTableFormat " ) - aadd( aObj, "QTime " ) - aadd( aObj, "QTransform " ) - aadd( aObj, "QUrl " ) - aadd( aObj, "QVariant " ) - aadd( aObj, "QWebHistoryItem " ) - aadd( aObj, "QWebHitTestResult " ) - aadd( aObj, "QWebSecurityOrigin " ) - aadd( aObj, "QWidgetList " ) - - aeval( aObj, {| e,i | aObj[ i ] := alltrim( e ) } ) - ENDIF - - RETURN ascan( aObj, {| e | e == cWidget } ) > 0 - -/*----------------------------------------------------------------------*/ - FUNCTION Get_Command_1( cWgt, cCmn ) RETURN "hb_retptrGC( hbqt_gcAllocate_" + cWgt + "( new " + cWgt + "( *( " + cCmn + " ) ), true ) )" @@ -2455,7 +2057,7 @@ FUNCTION Get_Command( cWgt, cCmn, lNew ) DEFAULT lNew TO .T. - IF ( lNewGCtoQT ) + IF s_lNewGCtoQT IF lNew cRet := "hb_retptrGC( hbqt_gcAllocate_" + cWgt + "( new " + cWgt + "( " + cCmn + " ), true ) )" ELSE @@ -2509,8 +2111,3 @@ FUNCTION ParsePtr( cParam ) RETURN cPar /*----------------------------------------------------------------------*/ - -FUNCTION JustACall() - RETURN nil - -/*----------------------------------------------------------------------*/ diff --git a/harbour/contrib/hbqt/generator/qtcore.qtp b/harbour/contrib/hbqt/generator/qtcore.qtp new file mode 100644 index 0000000000..cab0802e92 --- /dev/null +++ b/harbour/contrib/hbqt/generator/qtcore.qtp @@ -0,0 +1,61 @@ +; +; $Id$ +; + +-I=../qth +-O=../qtcore +-D=../doc + +HBEvents.qth +HBQAbstractItemModel.qth +HBSlots.qth + +QAbstractItemModel.qth +QAbstractListModel.qth +QAbstractTableModel.qth +QBitArray.qth +QBuffer.qth +QByteArray.qth +QChar.qth +QCoreApplication.qth +QDataStream.qth +QDate.qth +QDateTime.qth +QDir.qth +QEvent.qth +QEventLoop.qth +QFile.qth +QFileInfo.qth +QIODevice.qth +QLatin1Char.qth +QLatin1String.qth +QLine.qth +QLineF.qth +QList.qth +QLocale.qth +QMimeData.qth +QModelIndex.qth +QObject.qth +QPoint.qth +QPointF.qth +QProcess.qth +QRect.qth +QRectF.qth +QRegExp.qth +QResource.qth +QSettings.qth +QSignalMapper.qth +QSize.qth +QSizeF.qth +QStringList.qth +QTextBoundaryFinder.qth +QTextCodec.qth +QTextDecoder.qth +QTextEncoder.qth +QTextStream.qth +QThread.qth +QTime.qth +QTimer.qth +QTranslator.qth +QUrl.qth +QVariant.qth diff --git a/harbour/contrib/hbqt/generator/qt45.qtp b/harbour/contrib/hbqt/generator/qtgui.qtp similarity index 79% rename from harbour/contrib/hbqt/generator/qt45.qtp rename to harbour/contrib/hbqt/generator/qtgui.qtp index 0d5b6e28dc..4c2a22be60 100644 --- a/harbour/contrib/hbqt/generator/qt45.qtp +++ b/harbour/contrib/hbqt/generator/qtgui.qtp @@ -2,51 +2,33 @@ ; $Id$ ; -; -; Harbour Source Wrapper Generator's Project File for QT v4.5 -; -; Pritpal Bedi -; - -I=../qth - --O=.. - +-O=../qtgui -D=../doc -HBQAbstractItemModel.qth -HBEvents.qth HBQMainWindow.qth HBQPlainTextEdit.qth HBQSyntaxHighlighter.qth HBQTableView.qth HBQTextBlockUserData.qth -HBSlots.qth QAbstractButton.qth QAbstractItemDelegate.qth -QAbstractItemModel.qth QAbstractItemView.qth -QAbstractListModel.qth -QAbstractProxyModel.qth QAbstractPrintDialog.qth +QAbstractProxyModel.qth QAbstractScrollArea.qth QAbstractSlider.qth QAbstractSpinBox.qth -QAbstractTableModel.qth QAbstractTextDocumentLayout.qth QAction.qth QActionGroup.qth QApplication.qth -QBitArray.qth QBitmap.qth QBoxLayout.qth QBrush.qth -QBuffer.qth QButtonGroup.qth -QByteArray.qth QCalendarWidget.qth -QChar.qth QCheckBox.qth QClipboard.qth QColor.qth @@ -57,30 +39,21 @@ QCommonStyle.qth QCompleter.qth QConicalGradient.qth QContextMenuEvent.qth -QCoreApplication.qth QCursor.qth -QDataStream.qth -QDate.qth QDateEdit.qth -QDateTime.qth QDateTimeEdit.qth QDesktopWidget.qth QDial.qth QDialog.qth -QDir.qth QDirModel.qth QDockWidget.qth QDoubleSpinBox.qth -QDropEvent.qth -QDragMoveEvent.qth QDragEnterEvent.qth QDragLeaveEvent.qth +QDragMoveEvent.qth +QDropEvent.qth QErrorMessage.qth -QEvent.qth -QEventLoop.qth -QFile.qth QFileDialog.qth -QFileInfo.qth QFileIconProvider.qth QFileSystemModel.qth QFocusEvent.qth @@ -94,7 +67,6 @@ QFontMetrics.qth QFontMetricsF.qth QFormLayout.qth QFrame.qth -QFtp.qth QGradient.qth QGridLayout.qth QGroupBox.qth @@ -102,21 +74,16 @@ QHBoxLayout.qth QHeaderView.qth QHelpEvent.qth QHideEvent.qth -QHttp.qth -QHttpHeader.qth -QHttpRequestHeader.qth -QHttpResponseHeader.qth QIcon.qth -; QInputContext.qth Disabled of OS2 -QInputMethodEvent.qth QImage.qth QImageReader.qth QImageWriter.qth +; QInputContext.qth # Disabled because of OS/2 QInputDialog.qth QInputEvent.qth -QIODevice.qth +QInputMethodEvent.qth QItemDelegate.qth -; QItemEditorCreator.qth +; QItemEditorCreator.qth QItemEditorCreatorBase.qth QItemEditorFactory.qth QItemSelection.qth @@ -124,20 +91,14 @@ QItemSelectionModel.qth QKeyEvent.qth QKeySequence.qth QLabel.qth -QLatin1Char.qth -QLatin1String.qth QLayout.qth QLayoutItem.qth QLCDNumber.qth -QLine.qth -QLineF.qth QLinearGradient.qth QLineEdit.qth -QList.qth QListView.qth QListWidget.qth QListWidgetItem.qth -QLocale.qth QMainWindow.qth QMatrix.qth QMdiArea.qth @@ -145,13 +106,9 @@ QMdiSubWindow.qth QMenu.qth QMenuBar.qth QMessageBox.qth -QMimeData.qth -QModelIndex.qth QMouseEvent.qth QMoveEvent.qth QMovie.qth -QNetworkRequest.qth -QObject.qth QPageSetupDialog.qth QPaintDevice.qth QPaintEngine.qth @@ -164,34 +121,23 @@ QPicture.qth QPixmap.qth QPlainTextDocumentLayout.qth QPlainTextEdit.qth -QPoint.qth -QPointF.qth QPolygon.qth QPolygonF.qth QPrintDialog.qth QPrintEngine.qth QPrinter.qth QPrintPreviewDialog.qth -QProcess.qth QProgressBar.qth QProgressDialog.qth QPushButton.qth QRadialGradient.qth QRadioButton.qth -QRect.qth -QRectF.qth QRegion.qth -QRegExp.qth QResizeEvent.qth -QResource.qth QScrollArea.qth QScrollBar.qth QSessionManager.qth -QSettings.qth QShowEvent.qth -QSignalMapper.qth -QSize.qth -QSizeF.qth QSizeGrip.qth QSizePolicy.qth QSlider.qth @@ -204,7 +150,6 @@ QStackedWidget.qth QStandardItem.qth QStandardItemModel.qth QStatusBar.qth -QStringList.qth QStringListModel.qth QStyle.qth QStyledItemDelegate.qth @@ -241,22 +186,18 @@ QTabBar.qth QTableView.qth QTableWidget.qth QTableWidgetItem.qth -QTabWidget.qth QTableWidgetSelectionRange.qth +QTabWidget.qth QTextBlock.qth QTextBlockFormat.qth QTextBlockGroup.qth QTextBrowser.qth -QTextBoundaryFinder.qth QTextCharFormat.qth -QTextCodec.qth QTextCursor.qth -QTextDecoder.qth QTextDocument.qth QTextDocumentFragment.qth QTextDocumentWriter.qth QTextEdit.qth -QTextEncoder.qth QTextFormat.qth QTextFragment.qth QTextFrame.qth @@ -271,24 +212,16 @@ QTextList.qth QTextListFormat.qth QTextObject.qth QTextOption.qth -QTextStream.qth QTextTableFormat.qth -QThread.qth -QTime.qth QTimeEdit.qth -QTimer.qth QToolBar.qth QToolBox.qth QToolButton.qth QTransform.qth -QTranslator.qth QTreeView.qth QTreeWidget.qth QTreeWidgetItem.qth -QUiLoader.qth -QUrl.qth QValidator.qth -QVariant.qth QVBoxLayout.qth QWheelEvent.qth QWidget.qth @@ -298,3 +231,5 @@ QWindowsStyle.qth QWindowStateChangeEvent.qth QWizard.qth QWizardPage.qth + +QUiLoader.qth diff --git a/harbour/contrib/hbqt/generator/qtnetwork.qtp b/harbour/contrib/hbqt/generator/qtnetwork.qtp new file mode 100644 index 0000000000..1822e7f6d0 --- /dev/null +++ b/harbour/contrib/hbqt/generator/qtnetwork.qtp @@ -0,0 +1,14 @@ +; +; $Id$ +; + +-I=../qth +-O=../qtnetwork +-D=../doc + +QFtp.qth +QHttp.qth +QHttpHeader.qth +QHttpRequestHeader.qth +QHttpResponseHeader.qth +QNetworkRequest.qth diff --git a/harbour/contrib/hbqt/hbqt.h b/harbour/contrib/hbqt/hbqt.h index 8fef6ef64a..5385d6da75 100644 --- a/harbour/contrib/hbqt/hbqt.h +++ b/harbour/contrib/hbqt/hbqt.h @@ -92,8 +92,6 @@ extern HB_EXPORT const HB_GC_FUNCS * hbqt_gcFuncs( void ); extern HB_EXPORT void * hbqt_pPtrFromObj( int iParam ); extern HB_EXPORT void * hbqt_pPtrFromItem( PHB_ITEM pObj ); -#include "hbqt_garbage.h" - /* TOFIX: Here basically we're using GC pointers without pointer type identification, which means that it's very easy to cause a GPF by passing wrong type. */ #define hbqt_par_ExtensionOption( n ) ( ( ExtensionOption * ) hbqt_gcpointer( n ) ) diff --git a/harbour/contrib/hbqt/hbqt.hbc b/harbour/contrib/hbqt/hbqt.hbc deleted file mode 100644 index e0351a9e66..0000000000 --- a/harbour/contrib/hbqt/hbqt.hbc +++ /dev/null @@ -1,30 +0,0 @@ -# -# $Id$ -# - -stop={dos|watcom|bcc|pocc|pocc64|poccarm|msvcia64}'hbqt' doesn't support this platform/compiler (${hb_plat}/${hb_comp}). - -incpaths=. - -plugins=hbmk2_plugin_qt.hbs - -{msvc}ldflags=-nodefaultlib:msvcrt.lib -defaultlib:libcmt.lib - -{allwin|os2}libpaths=${HB_WITH_QT}\..\lib - -{!HB_STATIC_QT}libs=hbqtmain${__HB_DYN__} hbqtcore${__HB_DYN__} hbqtgui${__HB_DYN__} hbqtnetwork${__HB_DYN__} -{!HB_STATIC_QT&(allwin|os2)}libs=QtCore4 QtGui4 QtNetwork4 -{!HB_STATIC_QT&linux}libs=QtCore QtGui QtNetwork -{!HB_STATIC_QT&darwin}libs=/Library/Frameworks/QtCore.framework/QtCore -{!HB_STATIC_QT&darwin}libs=/Library/Frameworks/QtGui.framework/QtGui -{!HB_STATIC_QT&darwin}libs=/Library/Frameworks/QtNetwork.framework/QtNetwork -{!HB_STATIC_QT&!hbdyn}libs=QtUiTools -{HB_STATIC_QT&allwin}libs=hbqtmains${__HB_DYN__} hbqtcores${__HB_DYN__} hbqtguis${__HB_DYN__} hbqtnetworks${__HB_DYN__} -{HB_STATIC_QT&linux}libs=hbqtmain hbqtcore hbqtgui hbqtnetwork -{HB_STATIC_QT&(allwin|linux)}libs=QtCore QtGui QtNetwork QtUiTools -{allgcc}libs=supc++ - -{win|os2}hbcppmm=yes - -gui=yes -gt=gtnul diff --git a/harbour/contrib/hbqt/hbqt.hbp b/harbour/contrib/hbqt/hbqt.hbp deleted file mode 100644 index a2ad9e28e4..0000000000 --- a/harbour/contrib/hbqt/hbqt.hbp +++ /dev/null @@ -1,8 +0,0 @@ -# -# $Id$ -# - -hbqtmain.hbp -hbqtcore.hbp -hbqtgui.hbp -hbqtnetwork.hbp diff --git a/harbour/contrib/hbqt/hbqt_common.hbm b/harbour/contrib/hbqt/hbqt_common.hbm index 3c80c314df..8bfc3654de 100644 --- a/harbour/contrib/hbqt/hbqt_common.hbm +++ b/harbour/contrib/hbqt/hbqt_common.hbm @@ -12,6 +12,8 @@ -w3 -es2 +-iqtcore + -stop{dos|watcom|bcc|pocc|pocc64|poccarm|msvcia64} -plugin=hbmk2_plugin_qt.hbs diff --git a/harbour/contrib/hbqt/hbqt_hbevents.h b/harbour/contrib/hbqt/hbqt_hbevents.h index db9e02875c..e902b118e5 100644 --- a/harbour/contrib/hbqt/hbqt_hbevents.h +++ b/harbour/contrib/hbqt/hbqt_hbevents.h @@ -59,6 +59,8 @@ /*----------------------------------------------------------------------*/ +#include "hbqtcore_garbage.h" + #include #include #include diff --git a/harbour/contrib/hbqt/hbqt_hbslots.h b/harbour/contrib/hbqt/hbqt_hbslots.h index aec30eb035..8b1d71ce58 100644 --- a/harbour/contrib/hbqt/hbqt_hbslots.h +++ b/harbour/contrib/hbqt/hbqt_hbslots.h @@ -57,6 +57,8 @@ #include "hbapiitm.h" +#include "hbqtcore_garbage.h" + #include #include #include diff --git a/harbour/contrib/hbqt/hbqtcore.hbc b/harbour/contrib/hbqt/hbqtcore.hbc new file mode 100644 index 0000000000..86bfa86f6b --- /dev/null +++ b/harbour/contrib/hbqt/hbqtcore.hbc @@ -0,0 +1,28 @@ +# +# $Id$ +# + +stop={dos|watcom|bcc|pocc|pocc64|poccarm|msvcia64}'hbqt' doesn't support this platform/compiler (${hb_plat}/${hb_comp}). + +incpaths=. + +plugins=hbmk2_plugin_qt.hbs + +{msvc}ldflags=-nodefaultlib:msvcrt.lib -defaultlib:libcmt.lib + +{allwin|os2}libpaths=${HB_WITH_QT}\..\lib + +{!HB_STATIC_QT}libs=hbqtcore${__HB_DYN__} +{!HB_STATIC_QT&(allwin|os2)}libs=QtCore4 QtGui4 +{!HB_STATIC_QT&linux}libs=QtCore QtGui +{!HB_STATIC_QT&darwin}libs=/Library/Frameworks/QtCore.framework/QtCore /Library/Frameworks/QtGui.framework/QtGui +{HB_STATIC_QT&allwin}libs=hbqtcores${__HB_DYN__} +{HB_STATIC_QT&linux}libs=hbqtcore +{HB_STATIC_QT&(allwin|linux)}libs=QtCore QtGui + +{allgcc}libs=supc++ + +{win|os2}hbcppmm=yes + +gui=yes +gt=gtnul diff --git a/harbour/contrib/hbqt/hbqtcore.hbp b/harbour/contrib/hbqt/hbqtcore.hbp index d9cd8c55d2..dcbff1df7c 100644 --- a/harbour/contrib/hbqt/hbqtcore.hbp +++ b/harbour/contrib/hbqt/hbqtcore.hbp @@ -5,5 +5,6 @@ hbqt_common.hbm qtcore/filelist.hbm +hbqtcore_filelist.hbm hbqtcores.hbp diff --git a/harbour/contrib/hbqt/hbqtcore_filelist.hbm b/harbour/contrib/hbqt/hbqtcore_filelist.hbm new file mode 100644 index 0000000000..1c71478574 --- /dev/null +++ b/harbour/contrib/hbqt/hbqtcore_filelist.hbm @@ -0,0 +1,16 @@ +# +# $Id$ +# + +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/hbqtcores.hbp b/harbour/contrib/hbqt/hbqtcores.hbp index 9886774e0b..13b9f4c6a4 100644 --- a/harbour/contrib/hbqt/hbqtcores.hbp +++ b/harbour/contrib/hbqt/hbqtcores.hbp @@ -5,6 +5,7 @@ hbqt_common.hbm qtcore/filelist.hbm +hbqtcore_filelist.hbm -stop{!HB_QT_BUILD_STATIC|!allwin} diff --git a/harbour/contrib/hbqt/hbqtgui.hbp b/harbour/contrib/hbqt/hbqtgui.hbp index c3a4ee2777..35338cfb43 100644 --- a/harbour/contrib/hbqt/hbqtgui.hbp +++ b/harbour/contrib/hbqt/hbqtgui.hbp @@ -5,5 +5,8 @@ hbqt_common.hbm qtgui/filelist.hbm +hbqtgui_filelist.hbm + +hbqtcore.hbc hbqtguis.hbp diff --git a/harbour/contrib/hbqt/filelist.hbm b/harbour/contrib/hbqt/hbqtgui_filelist.hbm similarity index 51% rename from harbour/contrib/hbqt/filelist.hbm rename to harbour/contrib/hbqt/hbqtgui_filelist.hbm index 1c31e59b15..604a33253d 100644 --- a/harbour/contrib/hbqt/filelist.hbm +++ b/harbour/contrib/hbqt/hbqtgui_filelist.hbm @@ -2,24 +2,14 @@ # $Id$ # -hbqt_base.cpp -hbqt_destruct.cpp -hbqt_hbqabstractitemmodel.cpp -hbqt_hbevents.cpp hbqt_hbqmainwindow.cpp hbqt_hbqplaintextedit.cpp hbqt_hbqsyntaxhighlighter.cpp hbqt_hbqtableview.cpp -hbqt_hbslots.cpp -hbqt_utils.cpp -hbqt_misc.prg -hbqt_errorsys.prg -THbQtUI.prg -hbqt_hbqabstractitemmodel.h -hbqt_hbevents.h hbqt_hbqmainwindow.h hbqt_hbqplaintextedit.h hbqt_hbqsyntaxhighlighter.h hbqt_hbqtableview.h -hbqt_hbslots.h + +THbQtUI.prg diff --git a/harbour/contrib/hbqt/hbqtguis.hbp b/harbour/contrib/hbqt/hbqtguis.hbp index 29aa6286de..30587adbb1 100644 --- a/harbour/contrib/hbqt/hbqtguis.hbp +++ b/harbour/contrib/hbqt/hbqtguis.hbp @@ -5,6 +5,9 @@ hbqt_common.hbm qtgui/filelist.hbm +hbqtgui_filelist.hbm + +hbqtcore.hbc -stop{!HB_QT_BUILD_STATIC|!allwin} diff --git a/harbour/contrib/hbqt/hbqtmain.hbp b/harbour/contrib/hbqt/hbqtmain.hbp deleted file mode 100644 index 04366be07d..0000000000 --- a/harbour/contrib/hbqt/hbqtmain.hbp +++ /dev/null @@ -1,11 +0,0 @@ -# -# $Id$ -# - -hbqt_common.hbm - -filelist.hbm - --instfile=inc:hbqt.ch - -hbqtmains.hbp diff --git a/harbour/contrib/hbqt/hbqtmains.hbp b/harbour/contrib/hbqt/hbqtmains.hbp deleted file mode 100644 index c8cf6448dd..0000000000 --- a/harbour/contrib/hbqt/hbqtmains.hbp +++ /dev/null @@ -1,11 +0,0 @@ -# -# $Id$ -# - -hbqt_common.hbm - -filelist.hbm - --stop{!HB_QT_BUILD_STATIC|!allwin} - --cflag=-DQT_NODLL diff --git a/harbour/contrib/hbqt/hbqtnetwork.hbp b/harbour/contrib/hbqt/hbqtnetwork.hbp index 9222bc483c..9356cbd595 100644 --- a/harbour/contrib/hbqt/hbqtnetwork.hbp +++ b/harbour/contrib/hbqt/hbqtnetwork.hbp @@ -6,4 +6,6 @@ hbqt_common.hbm qtnetwork/filelist.hbm +hbqtcore.hbc + hbqtnetworks.hbp diff --git a/harbour/contrib/hbqt/hbqtnetworks.hbp b/harbour/contrib/hbqt/hbqtnetworks.hbp index c7a427051f..d03246d604 100644 --- a/harbour/contrib/hbqt/hbqtnetworks.hbp +++ b/harbour/contrib/hbqt/hbqtnetworks.hbp @@ -6,6 +6,8 @@ hbqt_common.hbm qtnetwork/filelist.hbm +hbqtcore.hbc + -stop{!HB_QT_BUILD_STATIC|!allwin} -cflag=-DQT_NODLL diff --git a/harbour/contrib/hbqt/qtcore/HBEvents.cpp b/harbour/contrib/hbqt/qtcore/HBEvents.cpp index 09b1578cb4..c3b2fd8b2d 100644 --- a/harbour/contrib/hbqt/qtcore/HBEvents.cpp +++ b/harbour/contrib/hbqt/qtcore/HBEvents.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/HBQAbstractItemModel.cpp b/harbour/contrib/hbqt/qtcore/HBQAbstractItemModel.cpp index 4046f5af35..f39bb3940e 100644 --- a/harbour/contrib/hbqt/qtcore/HBQAbstractItemModel.cpp +++ b/harbour/contrib/hbqt/qtcore/HBQAbstractItemModel.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/HBSlots.cpp b/harbour/contrib/hbqt/qtcore/HBSlots.cpp index e11b63fdf4..cde1f94569 100644 --- a/harbour/contrib/hbqt/qtcore/HBSlots.cpp +++ b/harbour/contrib/hbqt/qtcore/HBSlots.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QAbstractItemModel.cpp b/harbour/contrib/hbqt/qtcore/QAbstractItemModel.cpp index 786afbe3bb..59542325da 100644 --- a/harbour/contrib/hbqt/qtcore/QAbstractItemModel.cpp +++ b/harbour/contrib/hbqt/qtcore/QAbstractItemModel.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QAbstractListModel.cpp b/harbour/contrib/hbqt/qtcore/QAbstractListModel.cpp index 038ad9f6b4..d19cf0fd85 100644 --- a/harbour/contrib/hbqt/qtcore/QAbstractListModel.cpp +++ b/harbour/contrib/hbqt/qtcore/QAbstractListModel.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QAbstractTableModel.cpp b/harbour/contrib/hbqt/qtcore/QAbstractTableModel.cpp index 1ac97c3c82..41784575fc 100644 --- a/harbour/contrib/hbqt/qtcore/QAbstractTableModel.cpp +++ b/harbour/contrib/hbqt/qtcore/QAbstractTableModel.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QBitArray.cpp b/harbour/contrib/hbqt/qtcore/QBitArray.cpp index ddf45cc134..ead9dc86b3 100644 --- a/harbour/contrib/hbqt/qtcore/QBitArray.cpp +++ b/harbour/contrib/hbqt/qtcore/QBitArray.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QBuffer.cpp b/harbour/contrib/hbqt/qtcore/QBuffer.cpp index 1be6b040d1..550b6e0015 100644 --- a/harbour/contrib/hbqt/qtcore/QBuffer.cpp +++ b/harbour/contrib/hbqt/qtcore/QBuffer.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QByteArray.cpp b/harbour/contrib/hbqt/qtcore/QByteArray.cpp index b3335d3a1d..f6cce6c9ec 100644 --- a/harbour/contrib/hbqt/qtcore/QByteArray.cpp +++ b/harbour/contrib/hbqt/qtcore/QByteArray.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QChar.cpp b/harbour/contrib/hbqt/qtcore/QChar.cpp index e82de6f9e4..77707be18a 100644 --- a/harbour/contrib/hbqt/qtcore/QChar.cpp +++ b/harbour/contrib/hbqt/qtcore/QChar.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QCoreApplication.cpp b/harbour/contrib/hbqt/qtcore/QCoreApplication.cpp index 5fac92b07e..c40cfcd60c 100644 --- a/harbour/contrib/hbqt/qtcore/QCoreApplication.cpp +++ b/harbour/contrib/hbqt/qtcore/QCoreApplication.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QDataStream.cpp b/harbour/contrib/hbqt/qtcore/QDataStream.cpp index 05c170ab0f..a0f15ac9a5 100644 --- a/harbour/contrib/hbqt/qtcore/QDataStream.cpp +++ b/harbour/contrib/hbqt/qtcore/QDataStream.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QDate.cpp b/harbour/contrib/hbqt/qtcore/QDate.cpp index ba0d3b360c..3547df34fa 100644 --- a/harbour/contrib/hbqt/qtcore/QDate.cpp +++ b/harbour/contrib/hbqt/qtcore/QDate.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QDateTime.cpp b/harbour/contrib/hbqt/qtcore/QDateTime.cpp index 44d31e5313..ac23ab698d 100644 --- a/harbour/contrib/hbqt/qtcore/QDateTime.cpp +++ b/harbour/contrib/hbqt/qtcore/QDateTime.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QDir.cpp b/harbour/contrib/hbqt/qtcore/QDir.cpp index 92c3bae3c6..6655e82109 100644 --- a/harbour/contrib/hbqt/qtcore/QDir.cpp +++ b/harbour/contrib/hbqt/qtcore/QDir.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QEvent.cpp b/harbour/contrib/hbqt/qtcore/QEvent.cpp index 8421ca1df0..01f473294c 100644 --- a/harbour/contrib/hbqt/qtcore/QEvent.cpp +++ b/harbour/contrib/hbqt/qtcore/QEvent.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QEventLoop.cpp b/harbour/contrib/hbqt/qtcore/QEventLoop.cpp index 7efd9da854..e7ad7500a3 100644 --- a/harbour/contrib/hbqt/qtcore/QEventLoop.cpp +++ b/harbour/contrib/hbqt/qtcore/QEventLoop.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QFile.cpp b/harbour/contrib/hbqt/qtcore/QFile.cpp index 3bac1cf698..6f6e7f957d 100644 --- a/harbour/contrib/hbqt/qtcore/QFile.cpp +++ b/harbour/contrib/hbqt/qtcore/QFile.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QFileInfo.cpp b/harbour/contrib/hbqt/qtcore/QFileInfo.cpp index a4e46babde..6fed6b650d 100644 --- a/harbour/contrib/hbqt/qtcore/QFileInfo.cpp +++ b/harbour/contrib/hbqt/qtcore/QFileInfo.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QIODevice.cpp b/harbour/contrib/hbqt/qtcore/QIODevice.cpp index 0c05c05041..bd17f67995 100644 --- a/harbour/contrib/hbqt/qtcore/QIODevice.cpp +++ b/harbour/contrib/hbqt/qtcore/QIODevice.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QLatin1Char.cpp b/harbour/contrib/hbqt/qtcore/QLatin1Char.cpp index eb93772a29..1e8b9bdc8a 100644 --- a/harbour/contrib/hbqt/qtcore/QLatin1Char.cpp +++ b/harbour/contrib/hbqt/qtcore/QLatin1Char.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QLatin1String.cpp b/harbour/contrib/hbqt/qtcore/QLatin1String.cpp index cad6b6a313..ddf7d51a75 100644 --- a/harbour/contrib/hbqt/qtcore/QLatin1String.cpp +++ b/harbour/contrib/hbqt/qtcore/QLatin1String.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QLine.cpp b/harbour/contrib/hbqt/qtcore/QLine.cpp index 028ae724b2..cc499b78a1 100644 --- a/harbour/contrib/hbqt/qtcore/QLine.cpp +++ b/harbour/contrib/hbqt/qtcore/QLine.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QLineF.cpp b/harbour/contrib/hbqt/qtcore/QLineF.cpp index 319f828d2c..e13ce2c944 100644 --- a/harbour/contrib/hbqt/qtcore/QLineF.cpp +++ b/harbour/contrib/hbqt/qtcore/QLineF.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QList.cpp b/harbour/contrib/hbqt/qtcore/QList.cpp index 27a578f96d..ec2745c0c6 100644 --- a/harbour/contrib/hbqt/qtcore/QList.cpp +++ b/harbour/contrib/hbqt/qtcore/QList.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QLocale.cpp b/harbour/contrib/hbqt/qtcore/QLocale.cpp index adc092b401..a00c0da03d 100644 --- a/harbour/contrib/hbqt/qtcore/QLocale.cpp +++ b/harbour/contrib/hbqt/qtcore/QLocale.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QMimeData.cpp b/harbour/contrib/hbqt/qtcore/QMimeData.cpp index cda19f0e8d..107113b775 100644 --- a/harbour/contrib/hbqt/qtcore/QMimeData.cpp +++ b/harbour/contrib/hbqt/qtcore/QMimeData.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QModelIndex.cpp b/harbour/contrib/hbqt/qtcore/QModelIndex.cpp index 18b2d72ce3..77301394b7 100644 --- a/harbour/contrib/hbqt/qtcore/QModelIndex.cpp +++ b/harbour/contrib/hbqt/qtcore/QModelIndex.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QObject.cpp b/harbour/contrib/hbqt/qtcore/QObject.cpp index 3a611bbc18..734143829a 100644 --- a/harbour/contrib/hbqt/qtcore/QObject.cpp +++ b/harbour/contrib/hbqt/qtcore/QObject.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QPoint.cpp b/harbour/contrib/hbqt/qtcore/QPoint.cpp index 95344be49a..5ae0b1676a 100644 --- a/harbour/contrib/hbqt/qtcore/QPoint.cpp +++ b/harbour/contrib/hbqt/qtcore/QPoint.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QPointF.cpp b/harbour/contrib/hbqt/qtcore/QPointF.cpp index 736e346abb..03951fb25e 100644 --- a/harbour/contrib/hbqt/qtcore/QPointF.cpp +++ b/harbour/contrib/hbqt/qtcore/QPointF.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QProcess.cpp b/harbour/contrib/hbqt/qtcore/QProcess.cpp index c3c6bbf85c..a71f386684 100644 --- a/harbour/contrib/hbqt/qtcore/QProcess.cpp +++ b/harbour/contrib/hbqt/qtcore/QProcess.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QRect.cpp b/harbour/contrib/hbqt/qtcore/QRect.cpp index 54f8fe8ba7..008b5e284d 100644 --- a/harbour/contrib/hbqt/qtcore/QRect.cpp +++ b/harbour/contrib/hbqt/qtcore/QRect.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QRectF.cpp b/harbour/contrib/hbqt/qtcore/QRectF.cpp index 5b981fbaf9..075181636a 100644 --- a/harbour/contrib/hbqt/qtcore/QRectF.cpp +++ b/harbour/contrib/hbqt/qtcore/QRectF.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QRegExp.cpp b/harbour/contrib/hbqt/qtcore/QRegExp.cpp index 5117d64a1f..635f777f8e 100644 --- a/harbour/contrib/hbqt/qtcore/QRegExp.cpp +++ b/harbour/contrib/hbqt/qtcore/QRegExp.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QResource.cpp b/harbour/contrib/hbqt/qtcore/QResource.cpp index 1716df7732..2160fe63ac 100644 --- a/harbour/contrib/hbqt/qtcore/QResource.cpp +++ b/harbour/contrib/hbqt/qtcore/QResource.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QSettings.cpp b/harbour/contrib/hbqt/qtcore/QSettings.cpp index 801c94cfe9..a2909913ce 100644 --- a/harbour/contrib/hbqt/qtcore/QSettings.cpp +++ b/harbour/contrib/hbqt/qtcore/QSettings.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QSignalMapper.cpp b/harbour/contrib/hbqt/qtcore/QSignalMapper.cpp index 8bb3b32d30..f47dd8dcec 100644 --- a/harbour/contrib/hbqt/qtcore/QSignalMapper.cpp +++ b/harbour/contrib/hbqt/qtcore/QSignalMapper.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QSize.cpp b/harbour/contrib/hbqt/qtcore/QSize.cpp index f3eb4147ae..e69de64e54 100644 --- a/harbour/contrib/hbqt/qtcore/QSize.cpp +++ b/harbour/contrib/hbqt/qtcore/QSize.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QSizeF.cpp b/harbour/contrib/hbqt/qtcore/QSizeF.cpp index 65f80cbd61..278b8b3b48 100644 --- a/harbour/contrib/hbqt/qtcore/QSizeF.cpp +++ b/harbour/contrib/hbqt/qtcore/QSizeF.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QStringList.cpp b/harbour/contrib/hbqt/qtcore/QStringList.cpp index 01a518eab8..11221e5dcd 100644 --- a/harbour/contrib/hbqt/qtcore/QStringList.cpp +++ b/harbour/contrib/hbqt/qtcore/QStringList.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QTextBoundaryFinder.cpp b/harbour/contrib/hbqt/qtcore/QTextBoundaryFinder.cpp index 6b75485483..ca67007711 100644 --- a/harbour/contrib/hbqt/qtcore/QTextBoundaryFinder.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextBoundaryFinder.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QTextCodec.cpp b/harbour/contrib/hbqt/qtcore/QTextCodec.cpp index 7654f5b12d..fb5e90168e 100644 --- a/harbour/contrib/hbqt/qtcore/QTextCodec.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextCodec.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QTextDecoder.cpp b/harbour/contrib/hbqt/qtcore/QTextDecoder.cpp index 3c111a6bec..a5040fcce7 100644 --- a/harbour/contrib/hbqt/qtcore/QTextDecoder.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextDecoder.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QTextEncoder.cpp b/harbour/contrib/hbqt/qtcore/QTextEncoder.cpp index 73090fa9d0..935f63dc71 100644 --- a/harbour/contrib/hbqt/qtcore/QTextEncoder.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextEncoder.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QTextStream.cpp b/harbour/contrib/hbqt/qtcore/QTextStream.cpp index a043636894..6791ef0ab0 100644 --- a/harbour/contrib/hbqt/qtcore/QTextStream.cpp +++ b/harbour/contrib/hbqt/qtcore/QTextStream.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QThread.cpp b/harbour/contrib/hbqt/qtcore/QThread.cpp index 5bb724cbaa..3f323592d9 100644 --- a/harbour/contrib/hbqt/qtcore/QThread.cpp +++ b/harbour/contrib/hbqt/qtcore/QThread.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QTime.cpp b/harbour/contrib/hbqt/qtcore/QTime.cpp index 1154f61752..5bb969d299 100644 --- a/harbour/contrib/hbqt/qtcore/QTime.cpp +++ b/harbour/contrib/hbqt/qtcore/QTime.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QTimer.cpp b/harbour/contrib/hbqt/qtcore/QTimer.cpp index 6cd03c2ead..9f7935436e 100644 --- a/harbour/contrib/hbqt/qtcore/QTimer.cpp +++ b/harbour/contrib/hbqt/qtcore/QTimer.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QTranslator.cpp b/harbour/contrib/hbqt/qtcore/QTranslator.cpp index 4efa347721..95b8151a60 100644 --- a/harbour/contrib/hbqt/qtcore/QTranslator.cpp +++ b/harbour/contrib/hbqt/qtcore/QTranslator.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QUrl.cpp b/harbour/contrib/hbqt/qtcore/QUrl.cpp index cf8c11b9f3..e1a1f52d8f 100644 --- a/harbour/contrib/hbqt/qtcore/QUrl.cpp +++ b/harbour/contrib/hbqt/qtcore/QUrl.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QVariant.cpp b/harbour/contrib/hbqt/qtcore/QVariant.cpp index 99f5e325e3..424ed92fe2 100644 --- a/harbour/contrib/hbqt/qtcore/QVariant.cpp +++ b/harbour/contrib/hbqt/qtcore/QVariant.cpp @@ -60,6 +60,7 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/TQUrl.prg b/harbour/contrib/hbqt/qtcore/TQUrl.prg index 3a8ccdd2eb..a25b30259e 100644 --- a/harbour/contrib/hbqt/qtcore/TQUrl.prg +++ b/harbour/contrib/hbqt/qtcore/TQUrl.prg @@ -63,7 +63,7 @@ #include "hbclass.ch" -CREATE CLASS QUrl INHERIT HbQtObjectHandler, QWidget +CREATE CLASS QUrl INHERIT HbQtObjectHandler, QObject METHOD new( ... ) diff --git a/harbour/contrib/hbqt/qtcore/filelist.hbm b/harbour/contrib/hbqt/qtcore/filelist.hbm index 9aeb7d0586..638ab8a3df 100644 --- a/harbour/contrib/hbqt/qtcore/filelist.hbm +++ b/harbour/contrib/hbqt/qtcore/filelist.hbm @@ -8,8 +8,8 @@ # or the generator tool itself, and run regenarate. # -------------------------------------------------------------------- -HBQAbstractItemModel.cpp HBEvents.cpp +HBQAbstractItemModel.cpp HBSlots.cpp QAbstractItemModel.cpp QAbstractListModel.cpp @@ -58,12 +58,11 @@ QThread.cpp QTime.cpp QTimer.cpp QTranslator.cpp -QUiLoader.cpp QUrl.cpp QVariant.cpp -THBQAbstractItemModel.prg THBEvents.prg +THBQAbstractItemModel.prg THBSlots.prg TQAbstractItemModel.prg TQAbstractListModel.prg @@ -112,6 +111,5 @@ TQThread.prg TQTime.prg TQTimer.prg TQTranslator.prg -TQUiLoader.prg TQUrl.prg TQVariant.prg diff --git a/harbour/contrib/hbqt/qtcore/hbqtcore_garbage.h b/harbour/contrib/hbqt/qtcore/hbqtcore_garbage.h new file mode 100644 index 0000000000..8d1e2440df --- /dev/null +++ b/harbour/contrib/hbqt/qtcore/hbqtcore_garbage.h @@ -0,0 +1,118 @@ +/* + * $Id$ + */ + +/* -------------------------------------------------------------------- */ +/* WARNING: Automatically generated source file. DO NOT EDIT! */ +/* Instead, edit corresponding .qth file, */ +/* or the generator tool itself, and run regenarate. */ +/* -------------------------------------------------------------------- */ + +#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 ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractTableModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBitArray ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBuffer ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QByteArray ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QChar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCoreApplication ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDataStream ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDate ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDateTime ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDir ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QEventLoop ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFile ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileInfo ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QIODevice ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLatin1Char ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLatin1String ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLine ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLineF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QList ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLocale ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMimeData ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QModelIndex ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QObject ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPoint ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPointF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QProcess ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRect ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRectF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRegExp ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QResource ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSettings ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSignalMapper ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSize ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSizeF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStringList ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBoundaryFinder ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextCodec ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDecoder ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextEncoder ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextStream ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QThread ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTime ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTimer ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTranslator ); +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 ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractTableModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QBitArray( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QBuffer( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QByteArray( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QChar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QCoreApplication( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDataStream( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDate( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDateTime( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDir( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QEventLoop( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFile( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFileInfo( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QIODevice( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLatin1Char( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLatin1String( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLine( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLineF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QList( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLocale( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMimeData( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QModelIndex( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QObject( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPoint( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPointF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QProcess( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRect( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRectF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRegExp( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QResource( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSettings( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSignalMapper( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSize( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSizeF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStringList( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextBoundaryFinder( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextCodec( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextDecoder( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextEncoder( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextStream( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QThread( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTime( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTimer( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTranslator( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QUrl( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QVariant( void * pObj, bool bNew ); + diff --git a/harbour/contrib/hbqt/qtgui/HBQMainWindow.cpp b/harbour/contrib/hbqt/qtgui/HBQMainWindow.cpp index e2e52cfce3..f94aa0f50c 100644 --- a/harbour/contrib/hbqt/qtgui/HBQMainWindow.cpp +++ b/harbour/contrib/hbqt/qtgui/HBQMainWindow.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/HBQPlainTextEdit.cpp b/harbour/contrib/hbqt/qtgui/HBQPlainTextEdit.cpp index 6965d422f4..a67b7caf33 100644 --- a/harbour/contrib/hbqt/qtgui/HBQPlainTextEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/HBQPlainTextEdit.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp b/harbour/contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp index 49e60d4ee7..86e7f3473e 100644 --- a/harbour/contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp +++ b/harbour/contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/HBQTableView.cpp b/harbour/contrib/hbqt/qtgui/HBQTableView.cpp index a7344dbf70..281acf9701 100644 --- a/harbour/contrib/hbqt/qtgui/HBQTableView.cpp +++ b/harbour/contrib/hbqt/qtgui/HBQTableView.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/HBQTextBlockUserData.cpp b/harbour/contrib/hbqt/qtgui/HBQTextBlockUserData.cpp index 998da9348d..d0bedaadb4 100644 --- a/harbour/contrib/hbqt/qtgui/HBQTextBlockUserData.cpp +++ b/harbour/contrib/hbqt/qtgui/HBQTextBlockUserData.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractButton.cpp b/harbour/contrib/hbqt/qtgui/QAbstractButton.cpp index 96e19eedd5..c440fc43c4 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractButton.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractItemDelegate.cpp b/harbour/contrib/hbqt/qtgui/QAbstractItemDelegate.cpp index d4407a7839..ccec2ea0c2 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractItemDelegate.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractItemDelegate.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractItemView.cpp b/harbour/contrib/hbqt/qtgui/QAbstractItemView.cpp index 713e2ceaa9..9c79867e82 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractItemView.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractItemView.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractPrintDialog.cpp b/harbour/contrib/hbqt/qtgui/QAbstractPrintDialog.cpp index ee2bd890b3..a9b7e18945 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractPrintDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractPrintDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractProxyModel.cpp b/harbour/contrib/hbqt/qtgui/QAbstractProxyModel.cpp index f47cee92da..2fbfca5eef 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractProxyModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractProxyModel.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractScrollArea.cpp b/harbour/contrib/hbqt/qtgui/QAbstractScrollArea.cpp index 6b410bebfa..496bfee711 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractScrollArea.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractScrollArea.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractSlider.cpp b/harbour/contrib/hbqt/qtgui/QAbstractSlider.cpp index ac2df4db41..1e64fb202a 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractSlider.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractSlider.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractSpinBox.cpp b/harbour/contrib/hbqt/qtgui/QAbstractSpinBox.cpp index b2fa0d4980..e6f88b53f5 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractSpinBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractSpinBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp b/harbour/contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp index 600cb15968..5aa0baf3d3 100644 --- a/harbour/contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QAction.cpp b/harbour/contrib/hbqt/qtgui/QAction.cpp index 5187716840..dd20a9cb5c 100644 --- a/harbour/contrib/hbqt/qtgui/QAction.cpp +++ b/harbour/contrib/hbqt/qtgui/QAction.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QActionGroup.cpp b/harbour/contrib/hbqt/qtgui/QActionGroup.cpp index 9b3438397f..8d992b172b 100644 --- a/harbour/contrib/hbqt/qtgui/QActionGroup.cpp +++ b/harbour/contrib/hbqt/qtgui/QActionGroup.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QApplication.cpp b/harbour/contrib/hbqt/qtgui/QApplication.cpp index 09ce1814b2..c64cdf5cc3 100644 --- a/harbour/contrib/hbqt/qtgui/QApplication.cpp +++ b/harbour/contrib/hbqt/qtgui/QApplication.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QBitmap.cpp b/harbour/contrib/hbqt/qtgui/QBitmap.cpp index 3c7d21fdcb..2c3deca70c 100644 --- a/harbour/contrib/hbqt/qtgui/QBitmap.cpp +++ b/harbour/contrib/hbqt/qtgui/QBitmap.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QBoxLayout.cpp b/harbour/contrib/hbqt/qtgui/QBoxLayout.cpp index b727591d59..bbc85fbecc 100644 --- a/harbour/contrib/hbqt/qtgui/QBoxLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QBoxLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QBrush.cpp b/harbour/contrib/hbqt/qtgui/QBrush.cpp index 8fa6873f37..49e2b5f04f 100644 --- a/harbour/contrib/hbqt/qtgui/QBrush.cpp +++ b/harbour/contrib/hbqt/qtgui/QBrush.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QButtonGroup.cpp b/harbour/contrib/hbqt/qtgui/QButtonGroup.cpp index 940a025654..a89a6ff539 100644 --- a/harbour/contrib/hbqt/qtgui/QButtonGroup.cpp +++ b/harbour/contrib/hbqt/qtgui/QButtonGroup.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QCalendarWidget.cpp b/harbour/contrib/hbqt/qtgui/QCalendarWidget.cpp index 3eb1f1e44e..7c68cec34e 100644 --- a/harbour/contrib/hbqt/qtgui/QCalendarWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QCalendarWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QCheckBox.cpp b/harbour/contrib/hbqt/qtgui/QCheckBox.cpp index 8374aa5e7a..aa19f56bc3 100644 --- a/harbour/contrib/hbqt/qtgui/QCheckBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QCheckBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QClipboard.cpp b/harbour/contrib/hbqt/qtgui/QClipboard.cpp index 32d54b2ed7..51ad6a209e 100644 --- a/harbour/contrib/hbqt/qtgui/QClipboard.cpp +++ b/harbour/contrib/hbqt/qtgui/QClipboard.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QColor.cpp b/harbour/contrib/hbqt/qtgui/QColor.cpp index c7a28f9017..2d38d0cfe5 100644 --- a/harbour/contrib/hbqt/qtgui/QColor.cpp +++ b/harbour/contrib/hbqt/qtgui/QColor.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QColorDialog.cpp b/harbour/contrib/hbqt/qtgui/QColorDialog.cpp index 79964a09e9..9205aa589f 100644 --- a/harbour/contrib/hbqt/qtgui/QColorDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QColorDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QComboBox.cpp b/harbour/contrib/hbqt/qtgui/QComboBox.cpp index 4abf13192b..e486d2f441 100644 --- a/harbour/contrib/hbqt/qtgui/QComboBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QComboBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QCommandLinkButton.cpp b/harbour/contrib/hbqt/qtgui/QCommandLinkButton.cpp index b9290d7bac..d88c20fbfa 100644 --- a/harbour/contrib/hbqt/qtgui/QCommandLinkButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QCommandLinkButton.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QCommonStyle.cpp b/harbour/contrib/hbqt/qtgui/QCommonStyle.cpp index a5245febbc..a71cf95876 100644 --- a/harbour/contrib/hbqt/qtgui/QCommonStyle.cpp +++ b/harbour/contrib/hbqt/qtgui/QCommonStyle.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QCompleter.cpp b/harbour/contrib/hbqt/qtgui/QCompleter.cpp index 11c6d6ba79..91aa078f3c 100644 --- a/harbour/contrib/hbqt/qtgui/QCompleter.cpp +++ b/harbour/contrib/hbqt/qtgui/QCompleter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QConicalGradient.cpp b/harbour/contrib/hbqt/qtgui/QConicalGradient.cpp index 84e523ca24..2ea453f453 100644 --- a/harbour/contrib/hbqt/qtgui/QConicalGradient.cpp +++ b/harbour/contrib/hbqt/qtgui/QConicalGradient.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QContextMenuEvent.cpp b/harbour/contrib/hbqt/qtgui/QContextMenuEvent.cpp index 5328199b59..4adab071c3 100644 --- a/harbour/contrib/hbqt/qtgui/QContextMenuEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QContextMenuEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QCursor.cpp b/harbour/contrib/hbqt/qtgui/QCursor.cpp index 33f3da2bcf..37dd49064d 100644 --- a/harbour/contrib/hbqt/qtgui/QCursor.cpp +++ b/harbour/contrib/hbqt/qtgui/QCursor.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDateEdit.cpp b/harbour/contrib/hbqt/qtgui/QDateEdit.cpp index 5453e2e4d5..70d336a71f 100644 --- a/harbour/contrib/hbqt/qtgui/QDateEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QDateEdit.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDateTimeEdit.cpp b/harbour/contrib/hbqt/qtgui/QDateTimeEdit.cpp index 0f33c33818..cb39124c1e 100644 --- a/harbour/contrib/hbqt/qtgui/QDateTimeEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QDateTimeEdit.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDesktopWidget.cpp b/harbour/contrib/hbqt/qtgui/QDesktopWidget.cpp index df1486ad7c..3188801f94 100644 --- a/harbour/contrib/hbqt/qtgui/QDesktopWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QDesktopWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDial.cpp b/harbour/contrib/hbqt/qtgui/QDial.cpp index cb7b4c4431..cf3a074626 100644 --- a/harbour/contrib/hbqt/qtgui/QDial.cpp +++ b/harbour/contrib/hbqt/qtgui/QDial.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDialog.cpp b/harbour/contrib/hbqt/qtgui/QDialog.cpp index fa1e4cc955..ad206646ed 100644 --- a/harbour/contrib/hbqt/qtgui/QDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDirModel.cpp b/harbour/contrib/hbqt/qtgui/QDirModel.cpp index 2ebc991d82..534d02c2c6 100644 --- a/harbour/contrib/hbqt/qtgui/QDirModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QDirModel.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDockWidget.cpp b/harbour/contrib/hbqt/qtgui/QDockWidget.cpp index 41b531af55..483cf68e85 100644 --- a/harbour/contrib/hbqt/qtgui/QDockWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QDockWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDoubleSpinBox.cpp b/harbour/contrib/hbqt/qtgui/QDoubleSpinBox.cpp index ca02b9e2fa..9255b8190f 100644 --- a/harbour/contrib/hbqt/qtgui/QDoubleSpinBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QDoubleSpinBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDragEnterEvent.cpp b/harbour/contrib/hbqt/qtgui/QDragEnterEvent.cpp index 06c7e7e2c9..a319ec8ef0 100644 --- a/harbour/contrib/hbqt/qtgui/QDragEnterEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QDragEnterEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDragLeaveEvent.cpp b/harbour/contrib/hbqt/qtgui/QDragLeaveEvent.cpp index 3939936ad4..67c005033a 100644 --- a/harbour/contrib/hbqt/qtgui/QDragLeaveEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QDragLeaveEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDragMoveEvent.cpp b/harbour/contrib/hbqt/qtgui/QDragMoveEvent.cpp index d3aadae14a..38db334c86 100644 --- a/harbour/contrib/hbqt/qtgui/QDragMoveEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QDragMoveEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QDropEvent.cpp b/harbour/contrib/hbqt/qtgui/QDropEvent.cpp index ba6a852b95..9d27d86d46 100644 --- a/harbour/contrib/hbqt/qtgui/QDropEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QDropEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QErrorMessage.cpp b/harbour/contrib/hbqt/qtgui/QErrorMessage.cpp index a99cf09e81..62012c92fb 100644 --- a/harbour/contrib/hbqt/qtgui/QErrorMessage.cpp +++ b/harbour/contrib/hbqt/qtgui/QErrorMessage.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFileDialog.cpp b/harbour/contrib/hbqt/qtgui/QFileDialog.cpp index f210fa1b4e..ffed9c8591 100644 --- a/harbour/contrib/hbqt/qtgui/QFileDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QFileDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFileIconProvider.cpp b/harbour/contrib/hbqt/qtgui/QFileIconProvider.cpp index bc6fb5ca0b..e18163bab2 100644 --- a/harbour/contrib/hbqt/qtgui/QFileIconProvider.cpp +++ b/harbour/contrib/hbqt/qtgui/QFileIconProvider.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFileSystemModel.cpp b/harbour/contrib/hbqt/qtgui/QFileSystemModel.cpp index 9bc98308d9..6d6af045eb 100644 --- a/harbour/contrib/hbqt/qtgui/QFileSystemModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QFileSystemModel.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFocusEvent.cpp b/harbour/contrib/hbqt/qtgui/QFocusEvent.cpp index 1ee1a5833d..55f0ca2224 100644 --- a/harbour/contrib/hbqt/qtgui/QFocusEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QFocusEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFocusFrame.cpp b/harbour/contrib/hbqt/qtgui/QFocusFrame.cpp index 9b4b8bb889..c2d1d3e563 100644 --- a/harbour/contrib/hbqt/qtgui/QFocusFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QFocusFrame.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFont.cpp b/harbour/contrib/hbqt/qtgui/QFont.cpp index a94bf27c3f..716d6d904a 100644 --- a/harbour/contrib/hbqt/qtgui/QFont.cpp +++ b/harbour/contrib/hbqt/qtgui/QFont.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFontComboBox.cpp b/harbour/contrib/hbqt/qtgui/QFontComboBox.cpp index 4d4cc6b633..64fa61aab1 100644 --- a/harbour/contrib/hbqt/qtgui/QFontComboBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontComboBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFontDatabase.cpp b/harbour/contrib/hbqt/qtgui/QFontDatabase.cpp index 775ef6caea..db9d115fcc 100644 --- a/harbour/contrib/hbqt/qtgui/QFontDatabase.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontDatabase.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFontDialog.cpp b/harbour/contrib/hbqt/qtgui/QFontDialog.cpp index 258e659182..f7ef0c41e4 100644 --- a/harbour/contrib/hbqt/qtgui/QFontDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFontInfo.cpp b/harbour/contrib/hbqt/qtgui/QFontInfo.cpp index 1f627aa595..4958257b6d 100644 --- a/harbour/contrib/hbqt/qtgui/QFontInfo.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontInfo.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFontMetrics.cpp b/harbour/contrib/hbqt/qtgui/QFontMetrics.cpp index 2120473580..c37c731c51 100644 --- a/harbour/contrib/hbqt/qtgui/QFontMetrics.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontMetrics.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFontMetricsF.cpp b/harbour/contrib/hbqt/qtgui/QFontMetricsF.cpp index 92c256a9dc..88ecccb87b 100644 --- a/harbour/contrib/hbqt/qtgui/QFontMetricsF.cpp +++ b/harbour/contrib/hbqt/qtgui/QFontMetricsF.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFormLayout.cpp b/harbour/contrib/hbqt/qtgui/QFormLayout.cpp index 74358778fc..029fdfa1b9 100644 --- a/harbour/contrib/hbqt/qtgui/QFormLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QFormLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QFrame.cpp b/harbour/contrib/hbqt/qtgui/QFrame.cpp index 769ed076f6..7fb6b638ef 100644 --- a/harbour/contrib/hbqt/qtgui/QFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QFrame.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QGradient.cpp b/harbour/contrib/hbqt/qtgui/QGradient.cpp index b12f49f4f8..9ab8cb79aa 100644 --- a/harbour/contrib/hbqt/qtgui/QGradient.cpp +++ b/harbour/contrib/hbqt/qtgui/QGradient.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QGridLayout.cpp b/harbour/contrib/hbqt/qtgui/QGridLayout.cpp index 58fbae410a..56cd0400bf 100644 --- a/harbour/contrib/hbqt/qtgui/QGridLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QGridLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QGroupBox.cpp b/harbour/contrib/hbqt/qtgui/QGroupBox.cpp index 13b5c88792..473967b695 100644 --- a/harbour/contrib/hbqt/qtgui/QGroupBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QGroupBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QHBoxLayout.cpp b/harbour/contrib/hbqt/qtgui/QHBoxLayout.cpp index 41b6221977..81aa8bc531 100644 --- a/harbour/contrib/hbqt/qtgui/QHBoxLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QHBoxLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QHeaderView.cpp b/harbour/contrib/hbqt/qtgui/QHeaderView.cpp index baf6772707..2de2671db9 100644 --- a/harbour/contrib/hbqt/qtgui/QHeaderView.cpp +++ b/harbour/contrib/hbqt/qtgui/QHeaderView.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QHelpEvent.cpp b/harbour/contrib/hbqt/qtgui/QHelpEvent.cpp index e9e71d3fff..e72751677f 100644 --- a/harbour/contrib/hbqt/qtgui/QHelpEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QHelpEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QHideEvent.cpp b/harbour/contrib/hbqt/qtgui/QHideEvent.cpp index eccd198107..944aa43fe9 100644 --- a/harbour/contrib/hbqt/qtgui/QHideEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QHideEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QIcon.cpp b/harbour/contrib/hbqt/qtgui/QIcon.cpp index b441e64c67..767a789159 100644 --- a/harbour/contrib/hbqt/qtgui/QIcon.cpp +++ b/harbour/contrib/hbqt/qtgui/QIcon.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QImage.cpp b/harbour/contrib/hbqt/qtgui/QImage.cpp index 5c31679e50..29791c3f3b 100644 --- a/harbour/contrib/hbqt/qtgui/QImage.cpp +++ b/harbour/contrib/hbqt/qtgui/QImage.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QImageReader.cpp b/harbour/contrib/hbqt/qtgui/QImageReader.cpp index 9e89cc051e..485e607c41 100644 --- a/harbour/contrib/hbqt/qtgui/QImageReader.cpp +++ b/harbour/contrib/hbqt/qtgui/QImageReader.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QImageWriter.cpp b/harbour/contrib/hbqt/qtgui/QImageWriter.cpp index 246bc18341..d0c273dbb9 100644 --- a/harbour/contrib/hbqt/qtgui/QImageWriter.cpp +++ b/harbour/contrib/hbqt/qtgui/QImageWriter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QInputDialog.cpp b/harbour/contrib/hbqt/qtgui/QInputDialog.cpp index 0fc382c08d..5f6cade0cb 100644 --- a/harbour/contrib/hbqt/qtgui/QInputDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QInputDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QInputEvent.cpp b/harbour/contrib/hbqt/qtgui/QInputEvent.cpp index 7423622fae..d70daa00a3 100644 --- a/harbour/contrib/hbqt/qtgui/QInputEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QInputEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QInputMethodEvent.cpp b/harbour/contrib/hbqt/qtgui/QInputMethodEvent.cpp index e78aa5a508..903df6bb86 100644 --- a/harbour/contrib/hbqt/qtgui/QInputMethodEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QInputMethodEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QItemDelegate.cpp b/harbour/contrib/hbqt/qtgui/QItemDelegate.cpp index 2a92b99804..52719f3efd 100644 --- a/harbour/contrib/hbqt/qtgui/QItemDelegate.cpp +++ b/harbour/contrib/hbqt/qtgui/QItemDelegate.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QItemEditorCreatorBase.cpp b/harbour/contrib/hbqt/qtgui/QItemEditorCreatorBase.cpp index be3a8ede82..c0edaea3e5 100644 --- a/harbour/contrib/hbqt/qtgui/QItemEditorCreatorBase.cpp +++ b/harbour/contrib/hbqt/qtgui/QItemEditorCreatorBase.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QItemEditorFactory.cpp b/harbour/contrib/hbqt/qtgui/QItemEditorFactory.cpp index 985fb48aca..f8ce9d24d3 100644 --- a/harbour/contrib/hbqt/qtgui/QItemEditorFactory.cpp +++ b/harbour/contrib/hbqt/qtgui/QItemEditorFactory.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QItemSelection.cpp b/harbour/contrib/hbqt/qtgui/QItemSelection.cpp index a2d827bc65..a8c1230ec9 100644 --- a/harbour/contrib/hbqt/qtgui/QItemSelection.cpp +++ b/harbour/contrib/hbqt/qtgui/QItemSelection.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QItemSelectionModel.cpp b/harbour/contrib/hbqt/qtgui/QItemSelectionModel.cpp index bdc4e66aa3..22b8978bc3 100644 --- a/harbour/contrib/hbqt/qtgui/QItemSelectionModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QItemSelectionModel.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QKeyEvent.cpp b/harbour/contrib/hbqt/qtgui/QKeyEvent.cpp index 6b084269e0..a3aad213e7 100644 --- a/harbour/contrib/hbqt/qtgui/QKeyEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QKeyEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QKeySequence.cpp b/harbour/contrib/hbqt/qtgui/QKeySequence.cpp index 388bfece8f..030bf27bcc 100644 --- a/harbour/contrib/hbqt/qtgui/QKeySequence.cpp +++ b/harbour/contrib/hbqt/qtgui/QKeySequence.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QLCDNumber.cpp b/harbour/contrib/hbqt/qtgui/QLCDNumber.cpp index 0a6b6c1e84..9e5590b7b5 100644 --- a/harbour/contrib/hbqt/qtgui/QLCDNumber.cpp +++ b/harbour/contrib/hbqt/qtgui/QLCDNumber.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QLabel.cpp b/harbour/contrib/hbqt/qtgui/QLabel.cpp index 6ae4430e41..2321830ca0 100644 --- a/harbour/contrib/hbqt/qtgui/QLabel.cpp +++ b/harbour/contrib/hbqt/qtgui/QLabel.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QLayout.cpp b/harbour/contrib/hbqt/qtgui/QLayout.cpp index 11ae8aa11d..51ef7715d3 100644 --- a/harbour/contrib/hbqt/qtgui/QLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QLayoutItem.cpp b/harbour/contrib/hbqt/qtgui/QLayoutItem.cpp index 4209e3b46f..7d6c5ba0c5 100644 --- a/harbour/contrib/hbqt/qtgui/QLayoutItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QLayoutItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QLineEdit.cpp b/harbour/contrib/hbqt/qtgui/QLineEdit.cpp index 8cbac03136..9c9634ffe7 100644 --- a/harbour/contrib/hbqt/qtgui/QLineEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QLineEdit.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QLinearGradient.cpp b/harbour/contrib/hbqt/qtgui/QLinearGradient.cpp index df470cbe50..be24e0d4b8 100644 --- a/harbour/contrib/hbqt/qtgui/QLinearGradient.cpp +++ b/harbour/contrib/hbqt/qtgui/QLinearGradient.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QListView.cpp b/harbour/contrib/hbqt/qtgui/QListView.cpp index 733fee4e82..0141a512c3 100644 --- a/harbour/contrib/hbqt/qtgui/QListView.cpp +++ b/harbour/contrib/hbqt/qtgui/QListView.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QListWidget.cpp b/harbour/contrib/hbqt/qtgui/QListWidget.cpp index 64c9653c2c..eec1cf9010 100644 --- a/harbour/contrib/hbqt/qtgui/QListWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QListWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QListWidgetItem.cpp b/harbour/contrib/hbqt/qtgui/QListWidgetItem.cpp index 337192adac..ef13e57090 100644 --- a/harbour/contrib/hbqt/qtgui/QListWidgetItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QListWidgetItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMainWindow.cpp b/harbour/contrib/hbqt/qtgui/QMainWindow.cpp index b6598fd267..c9bc091cd7 100644 --- a/harbour/contrib/hbqt/qtgui/QMainWindow.cpp +++ b/harbour/contrib/hbqt/qtgui/QMainWindow.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMatrix.cpp b/harbour/contrib/hbqt/qtgui/QMatrix.cpp index f8f5098480..df74756fae 100644 --- a/harbour/contrib/hbqt/qtgui/QMatrix.cpp +++ b/harbour/contrib/hbqt/qtgui/QMatrix.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMdiArea.cpp b/harbour/contrib/hbqt/qtgui/QMdiArea.cpp index 727190a4f8..801096023a 100644 --- a/harbour/contrib/hbqt/qtgui/QMdiArea.cpp +++ b/harbour/contrib/hbqt/qtgui/QMdiArea.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMdiSubWindow.cpp b/harbour/contrib/hbqt/qtgui/QMdiSubWindow.cpp index 04a4199f6a..b5205f18fc 100644 --- a/harbour/contrib/hbqt/qtgui/QMdiSubWindow.cpp +++ b/harbour/contrib/hbqt/qtgui/QMdiSubWindow.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMenu.cpp b/harbour/contrib/hbqt/qtgui/QMenu.cpp index 6819f0bddf..d02cb76163 100644 --- a/harbour/contrib/hbqt/qtgui/QMenu.cpp +++ b/harbour/contrib/hbqt/qtgui/QMenu.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMenuBar.cpp b/harbour/contrib/hbqt/qtgui/QMenuBar.cpp index 3e5cce8e08..bcbef1b1dd 100644 --- a/harbour/contrib/hbqt/qtgui/QMenuBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QMenuBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMessageBox.cpp b/harbour/contrib/hbqt/qtgui/QMessageBox.cpp index eb501e3860..9cf0c3f9d0 100644 --- a/harbour/contrib/hbqt/qtgui/QMessageBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QMessageBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMouseEvent.cpp b/harbour/contrib/hbqt/qtgui/QMouseEvent.cpp index 67b8e235e4..f9cfc5ba8a 100644 --- a/harbour/contrib/hbqt/qtgui/QMouseEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QMouseEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMoveEvent.cpp b/harbour/contrib/hbqt/qtgui/QMoveEvent.cpp index 37a2634e44..08a930d61a 100644 --- a/harbour/contrib/hbqt/qtgui/QMoveEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QMoveEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QMovie.cpp b/harbour/contrib/hbqt/qtgui/QMovie.cpp index f35d1ed69d..6f53e62aba 100644 --- a/harbour/contrib/hbqt/qtgui/QMovie.cpp +++ b/harbour/contrib/hbqt/qtgui/QMovie.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPageSetupDialog.cpp b/harbour/contrib/hbqt/qtgui/QPageSetupDialog.cpp index 21e771cdf4..9edfb62556 100644 --- a/harbour/contrib/hbqt/qtgui/QPageSetupDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QPageSetupDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPaintDevice.cpp b/harbour/contrib/hbqt/qtgui/QPaintDevice.cpp index 1af34bb50a..b64c0bc124 100644 --- a/harbour/contrib/hbqt/qtgui/QPaintDevice.cpp +++ b/harbour/contrib/hbqt/qtgui/QPaintDevice.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPaintEngine.cpp b/harbour/contrib/hbqt/qtgui/QPaintEngine.cpp index 59c1e35d36..7d7c90b043 100644 --- a/harbour/contrib/hbqt/qtgui/QPaintEngine.cpp +++ b/harbour/contrib/hbqt/qtgui/QPaintEngine.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPaintEvent.cpp b/harbour/contrib/hbqt/qtgui/QPaintEvent.cpp index ee794ae12c..8285194ebf 100644 --- a/harbour/contrib/hbqt/qtgui/QPaintEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QPaintEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPainter.cpp b/harbour/contrib/hbqt/qtgui/QPainter.cpp index c3713e4ea9..b34c208ce7 100644 --- a/harbour/contrib/hbqt/qtgui/QPainter.cpp +++ b/harbour/contrib/hbqt/qtgui/QPainter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPainterPath.cpp b/harbour/contrib/hbqt/qtgui/QPainterPath.cpp index 774dd63d4b..a0b8db9547 100644 --- a/harbour/contrib/hbqt/qtgui/QPainterPath.cpp +++ b/harbour/contrib/hbqt/qtgui/QPainterPath.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPalette.cpp b/harbour/contrib/hbqt/qtgui/QPalette.cpp index f6596fed99..67f18aef3c 100644 --- a/harbour/contrib/hbqt/qtgui/QPalette.cpp +++ b/harbour/contrib/hbqt/qtgui/QPalette.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPen.cpp b/harbour/contrib/hbqt/qtgui/QPen.cpp index b66cdc31b9..74abc4ffd8 100644 --- a/harbour/contrib/hbqt/qtgui/QPen.cpp +++ b/harbour/contrib/hbqt/qtgui/QPen.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPicture.cpp b/harbour/contrib/hbqt/qtgui/QPicture.cpp index f43dd276ec..9dabd9c123 100644 --- a/harbour/contrib/hbqt/qtgui/QPicture.cpp +++ b/harbour/contrib/hbqt/qtgui/QPicture.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPixmap.cpp b/harbour/contrib/hbqt/qtgui/QPixmap.cpp index 63fa813ad6..a4ed634483 100644 --- a/harbour/contrib/hbqt/qtgui/QPixmap.cpp +++ b/harbour/contrib/hbqt/qtgui/QPixmap.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp b/harbour/contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp index cc0cdf717d..c0028786e1 100644 --- a/harbour/contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPlainTextEdit.cpp b/harbour/contrib/hbqt/qtgui/QPlainTextEdit.cpp index 8e1df707b6..91b713f609 100644 --- a/harbour/contrib/hbqt/qtgui/QPlainTextEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QPlainTextEdit.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPolygon.cpp b/harbour/contrib/hbqt/qtgui/QPolygon.cpp index 04021afc05..7587c2bddf 100644 --- a/harbour/contrib/hbqt/qtgui/QPolygon.cpp +++ b/harbour/contrib/hbqt/qtgui/QPolygon.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPolygonF.cpp b/harbour/contrib/hbqt/qtgui/QPolygonF.cpp index 09f1269f82..f77b572b1d 100644 --- a/harbour/contrib/hbqt/qtgui/QPolygonF.cpp +++ b/harbour/contrib/hbqt/qtgui/QPolygonF.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPrintDialog.cpp b/harbour/contrib/hbqt/qtgui/QPrintDialog.cpp index 11f2fd0b35..a61907a9a7 100644 --- a/harbour/contrib/hbqt/qtgui/QPrintDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QPrintDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPrintEngine.cpp b/harbour/contrib/hbqt/qtgui/QPrintEngine.cpp index 7a9cc60556..172b71127e 100644 --- a/harbour/contrib/hbqt/qtgui/QPrintEngine.cpp +++ b/harbour/contrib/hbqt/qtgui/QPrintEngine.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPrintPreviewDialog.cpp b/harbour/contrib/hbqt/qtgui/QPrintPreviewDialog.cpp index 0bcb83cf45..4e7ff40dec 100644 --- a/harbour/contrib/hbqt/qtgui/QPrintPreviewDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QPrintPreviewDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPrinter.cpp b/harbour/contrib/hbqt/qtgui/QPrinter.cpp index c42b01e46e..22dbecf1aa 100644 --- a/harbour/contrib/hbqt/qtgui/QPrinter.cpp +++ b/harbour/contrib/hbqt/qtgui/QPrinter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QProgressBar.cpp b/harbour/contrib/hbqt/qtgui/QProgressBar.cpp index 21dfa0a9a7..ab6e10ae4e 100644 --- a/harbour/contrib/hbqt/qtgui/QProgressBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QProgressBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QProgressDialog.cpp b/harbour/contrib/hbqt/qtgui/QProgressDialog.cpp index 4181c4d2d2..846fe6765d 100644 --- a/harbour/contrib/hbqt/qtgui/QProgressDialog.cpp +++ b/harbour/contrib/hbqt/qtgui/QProgressDialog.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QPushButton.cpp b/harbour/contrib/hbqt/qtgui/QPushButton.cpp index 3c5bbc7dc9..88004adc67 100644 --- a/harbour/contrib/hbqt/qtgui/QPushButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QPushButton.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QRadialGradient.cpp b/harbour/contrib/hbqt/qtgui/QRadialGradient.cpp index 09fe4ec80a..eb41d7fd95 100644 --- a/harbour/contrib/hbqt/qtgui/QRadialGradient.cpp +++ b/harbour/contrib/hbqt/qtgui/QRadialGradient.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QRadioButton.cpp b/harbour/contrib/hbqt/qtgui/QRadioButton.cpp index d63c29f76b..8daeedd567 100644 --- a/harbour/contrib/hbqt/qtgui/QRadioButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QRadioButton.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QRegion.cpp b/harbour/contrib/hbqt/qtgui/QRegion.cpp index f930ebf85b..535a7eabd6 100644 --- a/harbour/contrib/hbqt/qtgui/QRegion.cpp +++ b/harbour/contrib/hbqt/qtgui/QRegion.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QResizeEvent.cpp b/harbour/contrib/hbqt/qtgui/QResizeEvent.cpp index 1fc97a462d..31963363b0 100644 --- a/harbour/contrib/hbqt/qtgui/QResizeEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QResizeEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QScrollArea.cpp b/harbour/contrib/hbqt/qtgui/QScrollArea.cpp index 9511c70275..9cac83877a 100644 --- a/harbour/contrib/hbqt/qtgui/QScrollArea.cpp +++ b/harbour/contrib/hbqt/qtgui/QScrollArea.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QScrollBar.cpp b/harbour/contrib/hbqt/qtgui/QScrollBar.cpp index dc808031c6..3b76b98ef9 100644 --- a/harbour/contrib/hbqt/qtgui/QScrollBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QScrollBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSessionManager.cpp b/harbour/contrib/hbqt/qtgui/QSessionManager.cpp index 92986d2e6d..fadd2829cb 100644 --- a/harbour/contrib/hbqt/qtgui/QSessionManager.cpp +++ b/harbour/contrib/hbqt/qtgui/QSessionManager.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QShowEvent.cpp b/harbour/contrib/hbqt/qtgui/QShowEvent.cpp index a9a0dc3778..c5d427101e 100644 --- a/harbour/contrib/hbqt/qtgui/QShowEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QShowEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSizeGrip.cpp b/harbour/contrib/hbqt/qtgui/QSizeGrip.cpp index a1f74b97c1..5d66906619 100644 --- a/harbour/contrib/hbqt/qtgui/QSizeGrip.cpp +++ b/harbour/contrib/hbqt/qtgui/QSizeGrip.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSizePolicy.cpp b/harbour/contrib/hbqt/qtgui/QSizePolicy.cpp index 90384b4364..e2bcd034c8 100644 --- a/harbour/contrib/hbqt/qtgui/QSizePolicy.cpp +++ b/harbour/contrib/hbqt/qtgui/QSizePolicy.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSlider.cpp b/harbour/contrib/hbqt/qtgui/QSlider.cpp index 9b1380ac08..87144110fb 100644 --- a/harbour/contrib/hbqt/qtgui/QSlider.cpp +++ b/harbour/contrib/hbqt/qtgui/QSlider.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSound.cpp b/harbour/contrib/hbqt/qtgui/QSound.cpp index c8984c8e6b..7f0b8fbb7c 100644 --- a/harbour/contrib/hbqt/qtgui/QSound.cpp +++ b/harbour/contrib/hbqt/qtgui/QSound.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSpacerItem.cpp b/harbour/contrib/hbqt/qtgui/QSpacerItem.cpp index 6da09fe360..bb4d83628c 100644 --- a/harbour/contrib/hbqt/qtgui/QSpacerItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QSpacerItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSpinBox.cpp b/harbour/contrib/hbqt/qtgui/QSpinBox.cpp index 035e181097..a78d0d9798 100644 --- a/harbour/contrib/hbqt/qtgui/QSpinBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QSpinBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSplashScreen.cpp b/harbour/contrib/hbqt/qtgui/QSplashScreen.cpp index 66736a18f8..58fbafbf69 100644 --- a/harbour/contrib/hbqt/qtgui/QSplashScreen.cpp +++ b/harbour/contrib/hbqt/qtgui/QSplashScreen.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSplitter.cpp b/harbour/contrib/hbqt/qtgui/QSplitter.cpp index c2babf4399..a04f9530e5 100644 --- a/harbour/contrib/hbqt/qtgui/QSplitter.cpp +++ b/harbour/contrib/hbqt/qtgui/QSplitter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStackedWidget.cpp b/harbour/contrib/hbqt/qtgui/QStackedWidget.cpp index b66fc0ea54..29a0bac6d6 100644 --- a/harbour/contrib/hbqt/qtgui/QStackedWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QStackedWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStandardItem.cpp b/harbour/contrib/hbqt/qtgui/QStandardItem.cpp index 41b5180087..dd30e2d4ab 100644 --- a/harbour/contrib/hbqt/qtgui/QStandardItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QStandardItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStandardItemModel.cpp b/harbour/contrib/hbqt/qtgui/QStandardItemModel.cpp index a2aeff9878..986cef4bff 100644 --- a/harbour/contrib/hbqt/qtgui/QStandardItemModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QStandardItemModel.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStatusBar.cpp b/harbour/contrib/hbqt/qtgui/QStatusBar.cpp index 7891acd8b1..6e7707f03f 100644 --- a/harbour/contrib/hbqt/qtgui/QStatusBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QStatusBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStringListModel.cpp b/harbour/contrib/hbqt/qtgui/QStringListModel.cpp index 9df10a360b..44b2f47f64 100644 --- a/harbour/contrib/hbqt/qtgui/QStringListModel.cpp +++ b/harbour/contrib/hbqt/qtgui/QStringListModel.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyle.cpp b/harbour/contrib/hbqt/qtgui/QStyle.cpp index 9142ce1949..a6a3ef04eb 100644 --- a/harbour/contrib/hbqt/qtgui/QStyle.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyle.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleFactory.cpp b/harbour/contrib/hbqt/qtgui/QStyleFactory.cpp index 4978ffddb6..16f53b2400 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleFactory.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleFactory.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleHintReturn.cpp b/harbour/contrib/hbqt/qtgui/QStyleHintReturn.cpp index a1b629f4f1..c6d5c7b902 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleHintReturn.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleHintReturn.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleHintReturnMask.cpp b/harbour/contrib/hbqt/qtgui/QStyleHintReturnMask.cpp index b35c502ffa..d587c4438b 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleHintReturnMask.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleHintReturnMask.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleHintReturnVariant.cpp b/harbour/contrib/hbqt/qtgui/QStyleHintReturnVariant.cpp index d21c33e354..73e4af851e 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleHintReturnVariant.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleHintReturnVariant.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOption.cpp b/harbour/contrib/hbqt/qtgui/QStyleOption.cpp index 050534d515..9c4fdea0da 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOption.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOption.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionButton.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionButton.cpp index 88dada39a7..8626080074 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionButton.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionComboBox.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionComboBox.cpp index 3bfbc7d370..beea676edc 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionComboBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionComboBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionComplex.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionComplex.cpp index 60010ce117..683c3a7e47 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionComplex.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionComplex.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp index ee22fc35bf..a63505ba0a 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp index 53ab506387..f0c489a315 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionFrame.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionFrame.cpp index ccde979804..6f53a94d73 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionFrame.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp index cba0016a88..eb2672e345 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionHeader.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionHeader.cpp index dd0fd05a07..67ebdfda16 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionHeader.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionHeader.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp index 550d280793..cb1694dcab 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp index afab0f02d7..1de5ef93d6 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp index b6d783f966..a2bb22f3c5 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionSlider.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionSlider.cpp index 2afd2dbdf6..291195566b 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionSlider.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionSlider.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp index 72287a62f5..4be2b1867e 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionTab.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionTab.cpp index a8eee528fe..63f5081ba2 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionTab.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionTab.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp index 595221b59f..34324cc972 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp index e9a5c18f8e..c1c809f803 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp index 933ba93668..23cd7d6731 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionToolBar.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionToolBar.cpp index 2871e13c03..9d00ef6959 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionToolBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionToolBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionToolBox.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionToolBox.cpp index 70311a5cc7..cf325d5689 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionToolBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionToolBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionToolButton.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionToolButton.cpp index 3816750880..915514cc31 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionToolButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionToolButton.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyleOptionViewItem.cpp b/harbour/contrib/hbqt/qtgui/QStyleOptionViewItem.cpp index 1f907691f0..8316a60de3 100644 --- a/harbour/contrib/hbqt/qtgui/QStyleOptionViewItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyleOptionViewItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStylePainter.cpp b/harbour/contrib/hbqt/qtgui/QStylePainter.cpp index 537cf7d134..d215d61fee 100644 --- a/harbour/contrib/hbqt/qtgui/QStylePainter.cpp +++ b/harbour/contrib/hbqt/qtgui/QStylePainter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QStyledItemDelegate.cpp b/harbour/contrib/hbqt/qtgui/QStyledItemDelegate.cpp index d9c8025047..53b66b917d 100644 --- a/harbour/contrib/hbqt/qtgui/QStyledItemDelegate.cpp +++ b/harbour/contrib/hbqt/qtgui/QStyledItemDelegate.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSyntaxHighlighter.cpp b/harbour/contrib/hbqt/qtgui/QSyntaxHighlighter.cpp index 1cb029cfe9..9cf516829f 100644 --- a/harbour/contrib/hbqt/qtgui/QSyntaxHighlighter.cpp +++ b/harbour/contrib/hbqt/qtgui/QSyntaxHighlighter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QSystemTrayIcon.cpp b/harbour/contrib/hbqt/qtgui/QSystemTrayIcon.cpp index 404cbbb84b..c5f25a360f 100644 --- a/harbour/contrib/hbqt/qtgui/QSystemTrayIcon.cpp +++ b/harbour/contrib/hbqt/qtgui/QSystemTrayIcon.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTabBar.cpp b/harbour/contrib/hbqt/qtgui/QTabBar.cpp index 3eb38c53df..3247866024 100644 --- a/harbour/contrib/hbqt/qtgui/QTabBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QTabBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTabWidget.cpp b/harbour/contrib/hbqt/qtgui/QTabWidget.cpp index 777c6859e8..d94f4cfa24 100644 --- a/harbour/contrib/hbqt/qtgui/QTabWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QTabWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTableView.cpp b/harbour/contrib/hbqt/qtgui/QTableView.cpp index 7d158c6b04..36f73726a7 100644 --- a/harbour/contrib/hbqt/qtgui/QTableView.cpp +++ b/harbour/contrib/hbqt/qtgui/QTableView.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTableWidget.cpp b/harbour/contrib/hbqt/qtgui/QTableWidget.cpp index fb858b9217..0c07584cc8 100644 --- a/harbour/contrib/hbqt/qtgui/QTableWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QTableWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTableWidgetItem.cpp b/harbour/contrib/hbqt/qtgui/QTableWidgetItem.cpp index 4a01848b73..3a5611ccea 100644 --- a/harbour/contrib/hbqt/qtgui/QTableWidgetItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QTableWidgetItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp b/harbour/contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp index 6b729b4a5e..93ad26525b 100644 --- a/harbour/contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp +++ b/harbour/contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextBlock.cpp b/harbour/contrib/hbqt/qtgui/QTextBlock.cpp index c54daf58f0..5e1086ee26 100644 --- a/harbour/contrib/hbqt/qtgui/QTextBlock.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextBlock.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextBlockFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextBlockFormat.cpp index e9db980eaf..a7f7e32f41 100644 --- a/harbour/contrib/hbqt/qtgui/QTextBlockFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextBlockFormat.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextBlockGroup.cpp b/harbour/contrib/hbqt/qtgui/QTextBlockGroup.cpp index 1de1ace59f..3709eef6be 100644 --- a/harbour/contrib/hbqt/qtgui/QTextBlockGroup.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextBlockGroup.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextBrowser.cpp b/harbour/contrib/hbqt/qtgui/QTextBrowser.cpp index d49cd15480..4ab388f2ab 100644 --- a/harbour/contrib/hbqt/qtgui/QTextBrowser.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextBrowser.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextCharFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextCharFormat.cpp index af1c572604..99d4750ba7 100644 --- a/harbour/contrib/hbqt/qtgui/QTextCharFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextCharFormat.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextCursor.cpp b/harbour/contrib/hbqt/qtgui/QTextCursor.cpp index f819d1efb0..0ba6d97f5c 100644 --- a/harbour/contrib/hbqt/qtgui/QTextCursor.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextCursor.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextDocument.cpp b/harbour/contrib/hbqt/qtgui/QTextDocument.cpp index 53f109ce99..7f17a6a941 100644 --- a/harbour/contrib/hbqt/qtgui/QTextDocument.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextDocument.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextDocumentFragment.cpp b/harbour/contrib/hbqt/qtgui/QTextDocumentFragment.cpp index 3b7242efbd..d5771d1ae0 100644 --- a/harbour/contrib/hbqt/qtgui/QTextDocumentFragment.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextDocumentFragment.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextDocumentWriter.cpp b/harbour/contrib/hbqt/qtgui/QTextDocumentWriter.cpp index b470738f02..e43f4b889d 100644 --- a/harbour/contrib/hbqt/qtgui/QTextDocumentWriter.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextDocumentWriter.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextEdit.cpp b/harbour/contrib/hbqt/qtgui/QTextEdit.cpp index ea4ed3e96a..8f4eb011e3 100644 --- a/harbour/contrib/hbqt/qtgui/QTextEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextEdit.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextFormat.cpp index f478b2c14f..4de49870a7 100644 --- a/harbour/contrib/hbqt/qtgui/QTextFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextFormat.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextFragment.cpp b/harbour/contrib/hbqt/qtgui/QTextFragment.cpp index 2f29618f78..2a57360e31 100644 --- a/harbour/contrib/hbqt/qtgui/QTextFragment.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextFragment.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextFrame.cpp b/harbour/contrib/hbqt/qtgui/QTextFrame.cpp index d585402a8f..cbb3ac438c 100644 --- a/harbour/contrib/hbqt/qtgui/QTextFrame.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextFrame.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextFrameFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextFrameFormat.cpp index 5af05367d3..df275ba0e5 100644 --- a/harbour/contrib/hbqt/qtgui/QTextFrameFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextFrameFormat.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextImageFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextImageFormat.cpp index e8199a4a71..3bc3553c6c 100644 --- a/harbour/contrib/hbqt/qtgui/QTextImageFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextImageFormat.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextInlineObject.cpp b/harbour/contrib/hbqt/qtgui/QTextInlineObject.cpp index cad7507d56..3faf44d005 100644 --- a/harbour/contrib/hbqt/qtgui/QTextInlineObject.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextInlineObject.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextItem.cpp b/harbour/contrib/hbqt/qtgui/QTextItem.cpp index b2190b292c..1548a5573f 100644 --- a/harbour/contrib/hbqt/qtgui/QTextItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextLayout.cpp b/harbour/contrib/hbqt/qtgui/QTextLayout.cpp index 560f47071a..b8c8b53460 100644 --- a/harbour/contrib/hbqt/qtgui/QTextLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextLength.cpp b/harbour/contrib/hbqt/qtgui/QTextLength.cpp index fe86900938..0a81668e4a 100644 --- a/harbour/contrib/hbqt/qtgui/QTextLength.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextLength.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextLine.cpp b/harbour/contrib/hbqt/qtgui/QTextLine.cpp index e6e7fae082..7bfb544077 100644 --- a/harbour/contrib/hbqt/qtgui/QTextLine.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextLine.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextList.cpp b/harbour/contrib/hbqt/qtgui/QTextList.cpp index 9abbb5a97d..9272721dbf 100644 --- a/harbour/contrib/hbqt/qtgui/QTextList.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextList.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextListFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextListFormat.cpp index 16328f4b9b..3afcbdcbf3 100644 --- a/harbour/contrib/hbqt/qtgui/QTextListFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextListFormat.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextObject.cpp b/harbour/contrib/hbqt/qtgui/QTextObject.cpp index 0f2df53190..b63c6132e2 100644 --- a/harbour/contrib/hbqt/qtgui/QTextObject.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextObject.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextOption.cpp b/harbour/contrib/hbqt/qtgui/QTextOption.cpp index eff42fe383..23e3d2a4ba 100644 --- a/harbour/contrib/hbqt/qtgui/QTextOption.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextOption.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTextTableFormat.cpp b/harbour/contrib/hbqt/qtgui/QTextTableFormat.cpp index 5c05ef8131..971d51c71f 100644 --- a/harbour/contrib/hbqt/qtgui/QTextTableFormat.cpp +++ b/harbour/contrib/hbqt/qtgui/QTextTableFormat.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTimeEdit.cpp b/harbour/contrib/hbqt/qtgui/QTimeEdit.cpp index 4ad224289e..b9fecda0d9 100644 --- a/harbour/contrib/hbqt/qtgui/QTimeEdit.cpp +++ b/harbour/contrib/hbqt/qtgui/QTimeEdit.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QToolBar.cpp b/harbour/contrib/hbqt/qtgui/QToolBar.cpp index 684c1f44c8..b0b50bfc28 100644 --- a/harbour/contrib/hbqt/qtgui/QToolBar.cpp +++ b/harbour/contrib/hbqt/qtgui/QToolBar.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QToolBox.cpp b/harbour/contrib/hbqt/qtgui/QToolBox.cpp index abd4f398b5..62c8c18dd4 100644 --- a/harbour/contrib/hbqt/qtgui/QToolBox.cpp +++ b/harbour/contrib/hbqt/qtgui/QToolBox.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QToolButton.cpp b/harbour/contrib/hbqt/qtgui/QToolButton.cpp index a2e8df659a..db634a76d5 100644 --- a/harbour/contrib/hbqt/qtgui/QToolButton.cpp +++ b/harbour/contrib/hbqt/qtgui/QToolButton.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTransform.cpp b/harbour/contrib/hbqt/qtgui/QTransform.cpp index aa240151c9..d0d11575e9 100644 --- a/harbour/contrib/hbqt/qtgui/QTransform.cpp +++ b/harbour/contrib/hbqt/qtgui/QTransform.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTreeView.cpp b/harbour/contrib/hbqt/qtgui/QTreeView.cpp index e438dfecd3..5b11315c0c 100644 --- a/harbour/contrib/hbqt/qtgui/QTreeView.cpp +++ b/harbour/contrib/hbqt/qtgui/QTreeView.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTreeWidget.cpp b/harbour/contrib/hbqt/qtgui/QTreeWidget.cpp index 92759ec5a8..0580650a85 100644 --- a/harbour/contrib/hbqt/qtgui/QTreeWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QTreeWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QTreeWidgetItem.cpp b/harbour/contrib/hbqt/qtgui/QTreeWidgetItem.cpp index 2da05fa3a6..e396a17975 100644 --- a/harbour/contrib/hbqt/qtgui/QTreeWidgetItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QTreeWidgetItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/QUiLoader.cpp b/harbour/contrib/hbqt/qtgui/QUiLoader.cpp similarity index 99% rename from harbour/contrib/hbqt/qtcore/QUiLoader.cpp rename to harbour/contrib/hbqt/qtgui/QUiLoader.cpp index 6cb806b217..4ad27febfc 100644 --- a/harbour/contrib/hbqt/qtcore/QUiLoader.cpp +++ b/harbour/contrib/hbqt/qtgui/QUiLoader.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QVBoxLayout.cpp b/harbour/contrib/hbqt/qtgui/QVBoxLayout.cpp index 6b76d6048a..ac51bc6425 100644 --- a/harbour/contrib/hbqt/qtgui/QVBoxLayout.cpp +++ b/harbour/contrib/hbqt/qtgui/QVBoxLayout.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QValidator.cpp b/harbour/contrib/hbqt/qtgui/QValidator.cpp index f07daafe57..147d7eb8e0 100644 --- a/harbour/contrib/hbqt/qtgui/QValidator.cpp +++ b/harbour/contrib/hbqt/qtgui/QValidator.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QWheelEvent.cpp b/harbour/contrib/hbqt/qtgui/QWheelEvent.cpp index c4e4586ff3..7395d7b834 100644 --- a/harbour/contrib/hbqt/qtgui/QWheelEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QWheelEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QWidget.cpp b/harbour/contrib/hbqt/qtgui/QWidget.cpp index 4c2ad78b99..44bd4e9ec5 100644 --- a/harbour/contrib/hbqt/qtgui/QWidget.cpp +++ b/harbour/contrib/hbqt/qtgui/QWidget.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QWidgetAction.cpp b/harbour/contrib/hbqt/qtgui/QWidgetAction.cpp index 5104a72dfb..7a1fec1570 100644 --- a/harbour/contrib/hbqt/qtgui/QWidgetAction.cpp +++ b/harbour/contrib/hbqt/qtgui/QWidgetAction.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QWidgetItem.cpp b/harbour/contrib/hbqt/qtgui/QWidgetItem.cpp index 4a67731ff5..d9b34d72ec 100644 --- a/harbour/contrib/hbqt/qtgui/QWidgetItem.cpp +++ b/harbour/contrib/hbqt/qtgui/QWidgetItem.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QWindowStateChangeEvent.cpp b/harbour/contrib/hbqt/qtgui/QWindowStateChangeEvent.cpp index 2507a7ab79..2d8b88fdbf 100644 --- a/harbour/contrib/hbqt/qtgui/QWindowStateChangeEvent.cpp +++ b/harbour/contrib/hbqt/qtgui/QWindowStateChangeEvent.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QWindowsStyle.cpp b/harbour/contrib/hbqt/qtgui/QWindowsStyle.cpp index dab84b604c..52597f07dd 100644 --- a/harbour/contrib/hbqt/qtgui/QWindowsStyle.cpp +++ b/harbour/contrib/hbqt/qtgui/QWindowsStyle.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QWizard.cpp b/harbour/contrib/hbqt/qtgui/QWizard.cpp index 81f89e8628..6c965811c2 100644 --- a/harbour/contrib/hbqt/qtgui/QWizard.cpp +++ b/harbour/contrib/hbqt/qtgui/QWizard.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtgui/QWizardPage.cpp b/harbour/contrib/hbqt/qtgui/QWizardPage.cpp index f5d4481a19..847efe9eab 100644 --- a/harbour/contrib/hbqt/qtgui/QWizardPage.cpp +++ b/harbour/contrib/hbqt/qtgui/QWizardPage.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtgui_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtcore/TQUiLoader.prg b/harbour/contrib/hbqt/qtgui/TQUiLoader.prg similarity index 100% rename from harbour/contrib/hbqt/qtcore/TQUiLoader.prg rename to harbour/contrib/hbqt/qtgui/TQUiLoader.prg diff --git a/harbour/contrib/hbqt/qtgui/filelist.hbm b/harbour/contrib/hbqt/qtgui/filelist.hbm index a5e59eb6ed..ac6d9fa294 100644 --- a/harbour/contrib/hbqt/qtgui/filelist.hbm +++ b/harbour/contrib/hbqt/qtgui/filelist.hbm @@ -16,8 +16,8 @@ HBQTextBlockUserData.cpp QAbstractButton.cpp QAbstractItemDelegate.cpp QAbstractItemView.cpp -QAbstractProxyModel.cpp QAbstractPrintDialog.cpp +QAbstractProxyModel.cpp QAbstractScrollArea.cpp QAbstractSlider.cpp QAbstractSpinBox.cpp @@ -49,10 +49,10 @@ QDialog.cpp QDirModel.cpp QDockWidget.cpp QDoubleSpinBox.cpp -QDropEvent.cpp -QDragMoveEvent.cpp QDragEnterEvent.cpp QDragLeaveEvent.cpp +QDragMoveEvent.cpp +QDropEvent.cpp QErrorMessage.cpp QFileDialog.cpp QFileIconProvider.cpp @@ -76,12 +76,12 @@ QHeaderView.cpp QHelpEvent.cpp QHideEvent.cpp QIcon.cpp -QInputMethodEvent.cpp QImage.cpp QImageReader.cpp QImageWriter.cpp QInputDialog.cpp QInputEvent.cpp +QInputMethodEvent.cpp QItemDelegate.cpp QItemEditorCreatorBase.cpp QItemEditorFactory.cpp @@ -185,8 +185,8 @@ QTabBar.cpp QTableView.cpp QTableWidget.cpp QTableWidgetItem.cpp -QTabWidget.cpp QTableWidgetSelectionRange.cpp +QTabWidget.cpp QTextBlock.cpp QTextBlockFormat.cpp QTextBlockGroup.cpp @@ -230,6 +230,7 @@ QWindowsStyle.cpp QWindowStateChangeEvent.cpp QWizard.cpp QWizardPage.cpp +QUiLoader.cpp THBQMainWindow.prg THBQPlainTextEdit.prg @@ -239,8 +240,8 @@ THBQTextBlockUserData.prg TQAbstractButton.prg TQAbstractItemDelegate.prg TQAbstractItemView.prg -TQAbstractProxyModel.prg TQAbstractPrintDialog.prg +TQAbstractProxyModel.prg TQAbstractScrollArea.prg TQAbstractSlider.prg TQAbstractSpinBox.prg @@ -272,10 +273,10 @@ TQDialog.prg TQDirModel.prg TQDockWidget.prg TQDoubleSpinBox.prg -TQDropEvent.prg -TQDragMoveEvent.prg TQDragEnterEvent.prg TQDragLeaveEvent.prg +TQDragMoveEvent.prg +TQDropEvent.prg TQErrorMessage.prg TQFileDialog.prg TQFileIconProvider.prg @@ -299,12 +300,12 @@ TQHeaderView.prg TQHelpEvent.prg TQHideEvent.prg TQIcon.prg -TQInputMethodEvent.prg TQImage.prg TQImageReader.prg TQImageWriter.prg TQInputDialog.prg TQInputEvent.prg +TQInputMethodEvent.prg TQItemDelegate.prg TQItemEditorCreatorBase.prg TQItemEditorFactory.prg @@ -408,8 +409,8 @@ TQTabBar.prg TQTableView.prg TQTableWidget.prg TQTableWidgetItem.prg -TQTabWidget.prg TQTableWidgetSelectionRange.prg +TQTabWidget.prg TQTextBlock.prg TQTextBlockFormat.prg TQTextBlockGroup.prg @@ -453,3 +454,4 @@ TQWindowsStyle.prg TQWindowStateChangeEvent.prg TQWizard.prg TQWizardPage.prg +TQUiLoader.prg diff --git a/harbour/contrib/hbqt/hbqt_garbage.h b/harbour/contrib/hbqt/qtgui/hbqtgui_garbage.h similarity index 80% rename from harbour/contrib/hbqt/hbqt_garbage.h rename to harbour/contrib/hbqt/qtgui/hbqtgui_garbage.h index a1ca73fddf..ab02e3511d 100644 --- a/harbour/contrib/hbqt/hbqt_garbage.h +++ b/harbour/contrib/hbqt/qtgui/hbqtgui_garbage.h @@ -8,38 +8,30 @@ /* or the generator tool itself, and run regenarate. */ /* -------------------------------------------------------------------- */ -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQAbstractItemModel ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBEvents ); +#include "../hbqt.h" + 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 ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQTableView ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQTextBlockUserData ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBSlots ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractButton ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractItemDelegate ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractItemModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractItemView ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractListModel ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractProxyModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractPrintDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractProxyModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractScrollArea ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractSlider ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractSpinBox ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractTableModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractTextDocumentLayout ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAction ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QActionGroup ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QApplication ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBitArray ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBitmap ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBoxLayout ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBrush ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBuffer ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QButtonGroup ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QByteArray ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCalendarWidget ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QChar ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCheckBox ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QClipboard ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QColor ); @@ -50,30 +42,21 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCommonStyle ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCompleter ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QConicalGradient ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QContextMenuEvent ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCoreApplication ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCursor ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDataStream ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDate ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDateEdit ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDateTime ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDateTimeEdit ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDesktopWidget ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDial ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDialog ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDir ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDirModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDockWidget ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDoubleSpinBox ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDropEvent ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDragMoveEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDragEnterEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDragLeaveEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDragMoveEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDropEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QErrorMessage ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QEvent ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QEventLoop ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFile ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileDialog ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileInfo ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileIconProvider ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileSystemModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFocusEvent ); @@ -87,7 +70,6 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFontMetrics ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFontMetricsF ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFormLayout ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFrame ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFtp ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QGradient ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QGridLayout ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QGroupBox ); @@ -95,18 +77,13 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHBoxLayout ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHeaderView ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHelpEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHideEvent ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttp ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpHeader ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpRequestHeader ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpResponseHeader ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QIcon ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QInputMethodEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QImage ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QImageReader ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QImageWriter ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QInputDialog ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QInputEvent ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QIODevice ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QInputMethodEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemDelegate ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemEditorCreatorBase ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemEditorFactory ); @@ -115,20 +92,14 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemSelectionModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QKeyEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QKeySequence ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLabel ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLatin1Char ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLatin1String ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLayout ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLayoutItem ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLCDNumber ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLine ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLineF ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLinearGradient ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLineEdit ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QList ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QListView ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QListWidget ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QListWidgetItem ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLocale ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMainWindow ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMatrix ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMdiArea ); @@ -136,13 +107,9 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMdiSubWindow ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMenu ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMenuBar ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMessageBox ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMimeData ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QModelIndex ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMouseEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMoveEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMovie ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QNetworkRequest ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QObject ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPageSetupDialog ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPaintDevice ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPaintEngine ); @@ -155,34 +122,23 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPicture ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPixmap ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPlainTextDocumentLayout ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPlainTextEdit ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPoint ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPointF ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPolygon ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPolygonF ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPrintDialog ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPrintEngine ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPrinter ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPrintPreviewDialog ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QProcess ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QProgressBar ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QProgressDialog ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPushButton ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRadialGradient ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRadioButton ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRect ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRectF ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRegion ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRegExp ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QResizeEvent ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QResource ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QScrollArea ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QScrollBar ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSessionManager ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSettings ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QShowEvent ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSignalMapper ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSize ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSizeF ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSizeGrip ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSizePolicy ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSlider ); @@ -195,7 +151,6 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStackedWidget ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStandardItem ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStandardItemModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStatusBar ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStringList ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStringListModel ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyle ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyledItemDelegate ); @@ -232,22 +187,18 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTabBar ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTableView ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTableWidget ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTableWidgetItem ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTabWidget ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTableWidgetSelectionRange ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTabWidget ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBlock ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBlockFormat ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBlockGroup ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBrowser ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBoundaryFinder ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextCharFormat ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextCodec ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextCursor ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDecoder ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDocument ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDocumentFragment ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDocumentWriter ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextEdit ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextEncoder ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextFormat ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextFragment ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextFrame ); @@ -262,24 +213,16 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextList ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextListFormat ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextObject ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextOption ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextStream ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextTableFormat ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QThread ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTime ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTimeEdit ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTimer ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QToolBar ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QToolBox ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QToolButton ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTransform ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTranslator ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTreeView ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTreeWidget ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTreeWidgetItem ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QUiLoader ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QUrl ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QValidator ); -extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QVariant ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QVBoxLayout ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWheelEvent ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWidget ); @@ -289,39 +232,30 @@ extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWindowsStyle ); extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWindowStateChangeEvent ); 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_HBEvents( 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 ); extern HB_EXPORT void * hbqt_gcAllocate_HBQTableView( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_HBQTextBlockUserData( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_HBSlots( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractButton( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractItemDelegate( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QAbstractItemModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractItemView( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QAbstractListModel( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QAbstractProxyModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractPrintDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractProxyModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractScrollArea( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractSlider( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractSpinBox( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QAbstractTableModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAbstractTextDocumentLayout( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QAction( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QActionGroup( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QApplication( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QBitArray( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QBitmap( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QBoxLayout( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QBrush( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QBuffer( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QButtonGroup( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QByteArray( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QCalendarWidget( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QChar( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QCheckBox( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QClipboard( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QColor( void * pObj, bool bNew ); @@ -332,30 +266,21 @@ extern HB_EXPORT void * hbqt_gcAllocate_QCommonStyle( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QCompleter( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QConicalGradient( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QContextMenuEvent( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QCoreApplication( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QCursor( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QDataStream( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QDate( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDateEdit( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QDateTime( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDateTimeEdit( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDesktopWidget( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDial( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDialog( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QDir( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDirModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDockWidget( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDoubleSpinBox( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QDropEvent( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QDragMoveEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDragEnterEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QDragLeaveEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDragMoveEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDropEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QErrorMessage( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QEvent( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QEventLoop( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QFile( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QFileDialog( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QFileInfo( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QFileIconProvider( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QFileSystemModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QFocusEvent( void * pObj, bool bNew ); @@ -369,7 +294,6 @@ extern HB_EXPORT void * hbqt_gcAllocate_QFontMetrics( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QFontMetricsF( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QFormLayout( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QFrame( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QFtp( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QGradient( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QGridLayout( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QGroupBox( void * pObj, bool bNew ); @@ -377,18 +301,13 @@ extern HB_EXPORT void * hbqt_gcAllocate_QHBoxLayout( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QHeaderView( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QHelpEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QHideEvent( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QHttp( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QHttpHeader( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QHttpRequestHeader( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QHttpResponseHeader( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QIcon( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QInputMethodEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QImage( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QImageReader( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QImageWriter( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QInputDialog( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QInputEvent( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QIODevice( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QInputMethodEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QItemDelegate( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QItemEditorCreatorBase( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QItemEditorFactory( void * pObj, bool bNew ); @@ -397,20 +316,14 @@ extern HB_EXPORT void * hbqt_gcAllocate_QItemSelectionModel( void * pObj, bool b extern HB_EXPORT void * hbqt_gcAllocate_QKeyEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QKeySequence( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QLabel( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QLatin1Char( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QLatin1String( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QLayout( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QLayoutItem( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QLCDNumber( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QLine( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QLineF( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QLinearGradient( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QLineEdit( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QList( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QListView( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QListWidget( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QListWidgetItem( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QLocale( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMainWindow( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMatrix( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMdiArea( void * pObj, bool bNew ); @@ -418,13 +331,9 @@ extern HB_EXPORT void * hbqt_gcAllocate_QMdiSubWindow( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMenu( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMenuBar( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMessageBox( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QMimeData( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QModelIndex( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMouseEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMoveEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QMovie( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QNetworkRequest( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QObject( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPageSetupDialog( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPaintDevice( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPaintEngine( void * pObj, bool bNew ); @@ -437,34 +346,23 @@ extern HB_EXPORT void * hbqt_gcAllocate_QPicture( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPixmap( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPlainTextDocumentLayout( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPlainTextEdit( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QPoint( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QPointF( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPolygon( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPolygonF( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPrintDialog( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPrintEngine( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPrinter( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPrintPreviewDialog( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QProcess( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QProgressBar( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QProgressDialog( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QPushButton( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QRadialGradient( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QRadioButton( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QRect( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QRectF( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QRegion( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QRegExp( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QResizeEvent( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QResource( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QScrollArea( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QScrollBar( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QSessionManager( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QSettings( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QShowEvent( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QSignalMapper( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QSize( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QSizeF( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QSizeGrip( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QSizePolicy( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QSlider( void * pObj, bool bNew ); @@ -477,7 +375,6 @@ extern HB_EXPORT void * hbqt_gcAllocate_QStackedWidget( void * pObj, bool bNew ) extern HB_EXPORT void * hbqt_gcAllocate_QStandardItem( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QStandardItemModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QStatusBar( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QStringList( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QStringListModel( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QStyle( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QStyledItemDelegate( void * pObj, bool bNew ); @@ -514,22 +411,18 @@ extern HB_EXPORT void * hbqt_gcAllocate_QTabBar( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTableView( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTableWidget( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTableWidgetItem( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTabWidget( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTableWidgetSelectionRange( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTabWidget( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextBlock( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextBlockFormat( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextBlockGroup( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextBrowser( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTextBoundaryFinder( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextCharFormat( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTextCodec( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextCursor( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTextDecoder( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextDocument( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextDocumentFragment( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextDocumentWriter( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextEdit( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTextEncoder( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextFormat( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextFragment( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextFrame( void * pObj, bool bNew ); @@ -544,24 +437,16 @@ extern HB_EXPORT void * hbqt_gcAllocate_QTextList( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextListFormat( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextObject( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextOption( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTextStream( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTextTableFormat( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QThread( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTime( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTimeEdit( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTimer( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QToolBar( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QToolBox( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QToolButton( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTransform( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QTranslator( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTreeView( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTreeWidget( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QTreeWidgetItem( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QUiLoader( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QUrl( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QValidator( void * pObj, bool bNew ); -extern HB_EXPORT void * hbqt_gcAllocate_QVariant( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QVBoxLayout( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QWheelEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QWidget( void * pObj, bool bNew ); @@ -571,4 +456,5 @@ extern HB_EXPORT void * hbqt_gcAllocate_QWindowsStyle( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QWindowStateChangeEvent( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QWizard( void * pObj, bool bNew ); extern HB_EXPORT void * hbqt_gcAllocate_QWizardPage( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QUiLoader( void * pObj, bool bNew ); diff --git a/harbour/contrib/hbqt/qth/QUrl.qth b/harbour/contrib/hbqt/qth/QUrl.qth index cc979ca6fb..c5c8898f0b 100644 --- a/harbour/contrib/hbqt/qth/QUrl.qth +++ b/harbour/contrib/hbqt/qth/QUrl.qth @@ -56,7 +56,7 @@ QObject = no -Inherit = QWidget +Inherits = QObject New = pParent diff --git a/harbour/contrib/hbqt/qtnetwork/QFtp.cpp b/harbour/contrib/hbqt/qtnetwork/QFtp.cpp index 7be5803d99..45f827761d 100644 --- a/harbour/contrib/hbqt/qtnetwork/QFtp.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QFtp.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtnetwork_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtnetwork/QHttp.cpp b/harbour/contrib/hbqt/qtnetwork/QHttp.cpp index f8e136aada..fdb5599110 100644 --- a/harbour/contrib/hbqt/qtnetwork/QHttp.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QHttp.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtnetwork_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtnetwork/QHttpHeader.cpp b/harbour/contrib/hbqt/qtnetwork/QHttpHeader.cpp index 5ae54e65ee..7f2fe2b1c5 100644 --- a/harbour/contrib/hbqt/qtnetwork/QHttpHeader.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QHttpHeader.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtnetwork_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp b/harbour/contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp index cd74844a1c..a571a3e9ec 100644 --- a/harbour/contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtnetwork_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp b/harbour/contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp index e548e1b3ca..d82350c037 100644 --- a/harbour/contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtnetwork_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtnetwork/QNetworkRequest.cpp b/harbour/contrib/hbqt/qtnetwork/QNetworkRequest.cpp index 30ef56aef7..3813c4077a 100644 --- a/harbour/contrib/hbqt/qtnetwork/QNetworkRequest.cpp +++ b/harbour/contrib/hbqt/qtnetwork/QNetworkRequest.cpp @@ -60,6 +60,8 @@ /*----------------------------------------------------------------------*/ #include "../hbqt.h" +#include "hbqtnetwork_garbage.h" +#include "hbqtcore_garbage.h" /*----------------------------------------------------------------------*/ #if QT_VERSION >= 0x040500 diff --git a/harbour/contrib/hbqt/qtnetwork/hbqtnetwork_garbage.h b/harbour/contrib/hbqt/qtnetwork/hbqtnetwork_garbage.h new file mode 100644 index 0000000000..36134fa24c --- /dev/null +++ b/harbour/contrib/hbqt/qtnetwork/hbqtnetwork_garbage.h @@ -0,0 +1,26 @@ +/* + * $Id$ + */ + +/* -------------------------------------------------------------------- */ +/* WARNING: Automatically generated source file. DO NOT EDIT! */ +/* Instead, edit corresponding .qth file, */ +/* or the generator tool itself, and run regenarate. */ +/* -------------------------------------------------------------------- */ + +#include "../hbqt.h" + +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFtp ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttp ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpHeader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpRequestHeader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpResponseHeader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QNetworkRequest ); + +extern HB_EXPORT void * hbqt_gcAllocate_QFtp( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHttp( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHttpHeader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHttpRequestHeader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHttpResponseHeader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QNetworkRequest( void * pObj, bool bNew ); + diff --git a/harbour/contrib/hbqt/tests/hbmk.hbm b/harbour/contrib/hbqt/tests/hbmk.hbm index 62e31cbc05..3b80208dc4 100644 --- a/harbour/contrib/hbqt/tests/hbmk.hbm +++ b/harbour/contrib/hbqt/tests/hbmk.hbm @@ -2,6 +2,8 @@ # $Id$ # -../hbqt.hbc +../hbqtcore.hbc +../hbqtgui.hbc +../hbqtnetwork.hbc -w3 -es2 diff --git a/harbour/contrib/hbqt/tests/wvtqt.hbp b/harbour/contrib/hbqt/tests/wvtqt.hbp index 5132a2dd62..ff4608fe90 100644 --- a/harbour/contrib/hbqt/tests/wvtqt.hbp +++ b/harbour/contrib/hbqt/tests/wvtqt.hbp @@ -10,7 +10,9 @@ -d__WITH_WVT__ -../hbqt.hbc +../hbqtcore.hbc +../hbqtgui.hbc +../hbqtnetwork.hbc wvtqt.prg dialogqt.prg diff --git a/harbour/contrib/hbxbp/hbxbp.hbc b/harbour/contrib/hbxbp/hbxbp.hbc index 59ad6c9469..9c3e3ca688 100644 --- a/harbour/contrib/hbxbp/hbxbp.hbc +++ b/harbour/contrib/hbxbp/hbxbp.hbc @@ -5,4 +5,6 @@ incpaths=. libs=${hb_name}${__HB_DYN__} -libs=../hbqt/hbqt.hbc + +libs=../hbqt/hbqtcore.hbc +libs=../hbqt/hbqtgui.hbc diff --git a/harbour/contrib/hbxbp/tests/wvtqt.hbp b/harbour/contrib/hbxbp/tests/wvtqt.hbp index 5132a2dd62..759876d229 100644 --- a/harbour/contrib/hbxbp/tests/wvtqt.hbp +++ b/harbour/contrib/hbxbp/tests/wvtqt.hbp @@ -10,7 +10,7 @@ -d__WITH_WVT__ -../hbqt.hbc +../hbxbp.hbc wvtqt.prg dialogqt.prg diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 9d8c3d06af..68f7db728b 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -5412,7 +5412,7 @@ FUNCTION hbmk2( aArgs, nArgTarget, /* @ */ lPause, nLevel ) /* Convert source filenames relative to the target dir */ tmp := AClone( aTODO ) FOR EACH tmp1 IN tmp - tmp1 := PathMakeAbsolute( tmp1, tmp2 ) + tmp1 := PathNormalize( PathMakeAbsolute( tmp1, tmp2 ) ) NEXT cOpt_CompCLoop := AllTrim( StrTran( cOpt_CompC, "{LC}" , ArrayToList( tmp,, nOpt_Esc, nOpt_FNF ) ) ) ELSE