diff --git a/harbour/ChangeLog b/harbour/ChangeLog
index 27249b22cf..d4d0dbc223 100644
--- a/harbour/ChangeLog
+++ b/harbour/ChangeLog
@@ -17,6 +17,22 @@
past entries belonging to author(s): Viktor Szakats.
*/
+2010-02-25 18:45 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
+ * contrib/hbide/ideharbourhelp.prg
+ + Implemented two more tags: $INHERITS$ and $METHODS$
+
+ * contrib/hbqt/generator/hbqtgen.prg
+ + Implemented NANFORUM compatible .txt documentation files.
+ Please navigate with hbIDE.
+
+ + contrib/hbqt/doc/en
+ + contrib/hbqt/doc/en/*.txt [ Auto Generated ]
+
+ NOTE: this is initial upload and contains little less than desired.
+ I plan to adress including more info at a later date.
+ For now you can be comfortable as to how a method in Qt
+ class should be called, a big productivity boost.
+
2010-02-26 00:22 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
* contrib/hbxpp/xppop.prg
* contrib/hbxpp/xppopc.c
diff --git a/harbour/contrib/hbide/ideharbourhelp.prg b/harbour/contrib/hbide/ideharbourhelp.prg
index 82d6cb89d6..7b1d9e46ac 100644
--- a/harbour/contrib/hbide/ideharbourhelp.prg
+++ b/harbour/contrib/hbide/ideharbourhelp.prg
@@ -110,6 +110,9 @@
#define DOC_FUN_PLATFORMS 14
#define DOC_FUN_SEEALSO 15
#define DOC_FUN_VERSION 16
+#define DOC_FUN_INHERITS 17
+#define DOC_FUN_METHODS 18
+
/*----------------------------------------------------------------------*/
@@ -131,7 +134,8 @@ CLASS IdeDocFunction
DATA cPlatforms INIT ""
DATA cSeaAlso INIT ""
DATA cVersion INIT ""
-
+ DATA cInherits INIT ""
+ DATA aMethods INIT {}
DATA aSource INIT {}
DATA oTVItem
@@ -752,6 +756,10 @@ METHOD IdeHarbourHelp:parseTextFile( cTextFile, oParent )
nPart := DOC_FUN_SEEALSO
CASE "$VERSION$" $ s
nPart := DOC_FUN_VERSION
+ CASE "$INHERITS" $ s
+ nPart := DOC_FUN_INHERITS
+ CASE "$METHODS" $ s
+ nPart := DOC_FUN_METHODS
OTHERWISE
IF ! lIsFunc
LOOP // It is a fake line not within $DOC$ => $END$ block
@@ -809,6 +817,15 @@ METHOD IdeHarbourHelp:parseTextFile( cTextFile, oParent )
CASE DOC_FUN_SEEALSO
oFunc:cVersion := alltrim( s )
EXIT
+ CASE DOC_FUN_INHERITS
+ oFunc:cInherits := alltrim( s )
+ EXIT
+ CASE DOC_FUN_METHODS
+ aadd( oFunc:aMethods , s )
+ EXIT
+ CASE DOC_FUN_VERSION
+ oFunc:cVersion := alltrim( s )
+ EXIT
OTHERWISE
nPart := DOC_FUN_NONE
EXIT
@@ -981,6 +998,17 @@ METHOD IdeHarbourHelp:buildView( oFunc )
v := '
' ; w := " |
"
z := "| |
"
+ IF !empty( oFunc:cInherits )
+ aadd( aHtm, x + "Inherits" + y )
+ aadd( aHtm, v + oFunc:cInherits + w )
+ aadd( aHtm, z )
+ ENDIF
+ aadd( aHtm, x + "Categoty" + y )
+ aadd( aHtm, v + oFunc:cCategory + w )
+ aadd( aHtm, z )
+ aadd( aHtm, x + "SubCategoty" + y )
+ aadd( aHtm, v + oFunc:cSubCategory+ w )
+ aadd( aHtm, z )
aadd( aHtm, x + "Syntax" + y )
aadd( aHtm, v + hbide_arrayToMemoHtml( oFunc:aSyntax ) + w )
aadd( aHtm, z )
@@ -990,6 +1018,11 @@ METHOD IdeHarbourHelp:buildView( oFunc )
aadd( aHtm, x + "Returns" + y )
aadd( aHtm, v + hbide_arrayToMemoHtml( oFunc:aReturns ) + w )
aadd( aHtm, z )
+ IF !empty( oFunc:aMethods )
+ aadd( aHtm, x + "Methods" + y )
+ aadd( aHtm, v + hbide_arrayToMemoHtml( oFunc:aMethods ) + w )
+ aadd( aHtm, z )
+ ENDIF
aadd( aHtm, x + "Description" + y )
aadd( aHtm, v + hbide_arrayToMemoHtml( oFunc:aDescription ) + w )
aadd( aHtm, z )
@@ -1007,11 +1040,14 @@ METHOD IdeHarbourHelp:buildView( oFunc )
a_:= hb_atokens( oFunc:cSeaAlso, "," )
IF !empty( a_ )
FOR EACH s IN a_
+ s := alltrim( s )
IF ( n := at( "(", s ) ) > 0
s1 := substr( s, 1, n-1 )
- aadd( aHtm, '' + s + "" + ;
- iif( s:__enumIndex() == len( a_ ), "", ", " ) )
+ ELSE
+ s1 := s
ENDIF
+ aadd( aHtm, '' + s + "" + ;
+ iif( s:__enumIndex() == len( a_ ), "", ", " ) )
NEXT
ELSE
aadd( aHtm, " " )
diff --git a/harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt b/harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt
new file mode 100644
index 0000000000..0b919e8d44
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ HBDbfModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $ONELINER$
+ Creates a new HBDbfModel object.
+ $INHERITS$
+ QAbstractItemModel
+ $SYNTAX$
+ HBDbfModel():new( ... )
+ HBDbfModel():from( pPtr_OR_oObj_of_type_HBDbfModel )
+ HBDbfModel():configure( pPtr_OR_oObj_of_type_HBDbfModel )
+ $ARGUMENTS$
+
+ $RETURNS$
+ An instance of the object of type HBDbfModel
+ $METHODS$
+ :hbSetRowColumns( nRows, nCols ) -> NIL
+ :reset() -> NIL
+ :index( nRow, nColumn, pParent ) -> pQModelIndex
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/THBDbfModel.prg
+ C++ Wrappers : contrib/hbqt/qtcore/HBDbfModel.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QAbstractItemModel, http://doc.trolltech.com/4.5/hbdbfmodel.html
+ $END$
+ */
diff --git a/harbour/contrib/hbqt/doc/en/class_hbevents.txt b/harbour/contrib/hbqt/doc/en/class_hbevents.txt
new file mode 100644
index 0000000000..0ca79ea4e1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_hbevents.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ HBEvents()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/THBEvents.prg
+ C++ Wrappers : contrib/hbqt/qtcore/HBEvents.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..e613784f2b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ HBQPlainTextEdit()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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$
+ :getIndex( pCrQTextCursor ) -> nInt
+ :getLine( pCrQTextCursor ) -> nInt
+ :lineNumberAreaWidth() -> nInt
+ :getSpaces() -> nInt
+ :setSpaces( nNewSpaces ) -> NIL
+ :bookmarks( nBlock ) -> NIL
+ :nextBookmark( nBlock ) -> NIL
+ :prevBookmark( nBlock ) -> NIL
+ :gotoBookmark( nBlock ) -> NIL
+ :numberBlockVisible( lB ) -> NIL
+ :numberBlockVisible_1() -> lBool
+ :highlightCurrentLine( lB ) -> NIL
+ :highlightCurrentLine_1() -> lBool
+ :hbSetEventBlock( xBlock ) -> NIL
+ :updateLineNumberAreaWidth( nNewBlockCount ) -> NIL
+ :caseUpper() -> NIL
+ :caseLower() -> NIL
+ :escapeQuotes() -> NIL
+ :escapeDQuotes() -> NIL
+ :unescapeQuotes() -> NIL
+ :unescapeDQuotes() -> NIL
+ :convertQuotes() -> NIL
+ :convertDQuotes() -> NIL
+ :blockComment() -> NIL
+ :streamComment() -> NIL
+ :duplicateLine() -> NIL
+ :replaceSelection( cTxt ) -> NIL
+ :blockIndent( nSteps ) -> NIL
+ :deleteLine() -> NIL
+ :moveLine( nIDirection ) -> NIL
+ :highlightSelectedColumns( lYes ) -> NIL
+ :getSelectedText() -> cQString
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/THBQPlainTextEdit.prg
+ C++ Wrappers : contrib/hbqt/qtgui/HBQPlainTextEdit.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QPlainTextEdit, 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
new file mode 100644
index 0000000000..fef2bc2f9d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ HBQSyntaxHighlighter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QSyntaxHighlighter, 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
new file mode 100644
index 0000000000..4a8734cd40
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ HBQTextBlockUserData()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/THBQTextBlockUserData.prg
+ C++ Wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..7c5af0180e
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_hbslots.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ HBSlots()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/THBSlots.prg
+ C++ Wrappers : contrib/hbqt/qtcore/HBSlots.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..053cf2be3d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractButton()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractButton.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..5412ab94e6
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractItemDelegate()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractItemDelegate.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..ea7e691a86
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractItemModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQAbstractItemModel.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..2cd67359f7
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt
@@ -0,0 +1,121 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractItemView()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractItemView.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractScrollArea, 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
new file mode 100644
index 0000000000..676f0e3493
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractListModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQAbstractListModel.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QAbstractItemModel, 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
new file mode 100644
index 0000000000..b9f8377a22
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractPrintDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractPrintDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..90cd560588
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractProxyModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractProxyModel.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractItemModel, 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
new file mode 100644
index 0000000000..64f785fbe4
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractScrollArea()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractScrollArea.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QFrame, 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
new file mode 100644
index 0000000000..1d112a387c
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:09
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractSlider()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractSlider.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..9ee21d7e6a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractSpinBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractSpinBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..8721c1755d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractTableModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQAbstractTableModel.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QAbstractItemModel, 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
new file mode 100644
index 0000000000..205af1bdd2
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAbstractTextDocumentLayout()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..6d7a771f6f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qaction.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QAction()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQAction.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QAction.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..1d68ec3ea4
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QActionGroup()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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$
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQActionGroup.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QActionGroup.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..00680ad983
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qapplication.txt
@@ -0,0 +1,134 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QApplication()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :inputContext() -> pQInputContext
+ :isSessionRestored() -> lBool
+ :saveState( pManager ) -> NIL
+ :sessionId() -> cQString
+ :sessionKey() -> cQString
+ :setInputContext( pInputContext ) -> NIL
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQApplication.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QApplication.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QCoreApplication, 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
new file mode 100644
index 0000000000..c61cdb76f6
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QBitArray()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQBitArray.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QBitArray.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..7eb07cbb8f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QBitmap()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQBitmap.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QBitmap.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QPixmap, 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
new file mode 100644
index 0000000000..c55ec603a1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt
@@ -0,0 +1,78 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QBoxLayout()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQBoxLayout.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QLayout, 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
new file mode 100644
index 0000000000..0bcd7326e0
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qbrush.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QBrush()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQBrush.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QBrush.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..03351dc580
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QBuffer()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQBuffer.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QBuffer.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QIODevice, 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
new file mode 100644
index 0000000000..5b33b1583e
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QButtonGroup()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQButtonGroup.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..038fff0f24
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QByteArray()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQByteArray.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QByteArray.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..3818633bb9
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt
@@ -0,0 +1,96 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QCalendarWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQCalendarWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..968f18bec0
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qchar.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QChar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQChar.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QChar.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..7a803085f6
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QCheckBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQCheckBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QCheckBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractButton, 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
new file mode 100644
index 0000000000..5de3d7909b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QClipboard()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQClipboard.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QClipboard.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..e90c56bfb8
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcolor.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QColor()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQColor.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QColor.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..1f2812bbd4
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt
@@ -0,0 +1,73 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QColorDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQColorDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QColorDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..ff445c478b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QComboBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQComboBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QComboBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..25c2c5df36
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QCommandLinkButton()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQCommandLinkButton.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QPushButton, 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
new file mode 100644
index 0000000000..919981daaa
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QCompleter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQCompleter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QCompleter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..b4348f350f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QConicalGradient()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQConicalGradient.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QGradient, 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
new file mode 100644
index 0000000000..7ff5f7444a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QContextMenuEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQContextMenuEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QInputEvent, 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
new file mode 100644
index 0000000000..6670bc860f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QCoreApplication()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQCoreApplication.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..0566e04e75
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qcursor.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QCursor()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQCursor.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QCursor.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..7ab462dae0
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDataStream()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQDataStream.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QDataStream.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..99e1714980
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdate.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:10
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDate()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQDate.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QDate.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..67b01e95db
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDateTime()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQDateTime.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QDateTime.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..63a7f260a3
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt
@@ -0,0 +1,102 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDateTimeEdit()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDateTimeEdit.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractSpinBox, 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
new file mode 100644
index 0000000000..52c32a1194
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDesktopWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDesktopWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..446b1658c1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdial.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDial()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDial.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDial.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractSlider, 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
new file mode 100644
index 0000000000..16a2019072
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdialog.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..7d3726ccaa
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdir.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDir()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQDir.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QDir.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..11bcf8850d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDirModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDirModel.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDirModel.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractItemModel, 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
new file mode 100644
index 0000000000..3405d9296a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDockWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDockWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDockWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..44e2727a60
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDoubleSpinBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDoubleSpinBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractSpinBox, 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
new file mode 100644
index 0000000000..70d22dee6a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDragMoveEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDragMoveEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDropEvent, 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
new file mode 100644
index 0000000000..d573f9faad
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QDropEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQDropEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QDropEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QEvent, 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
new file mode 100644
index 0000000000..b51f5f10f0
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QErrorMessage()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQErrorMessage.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..40d2ee0d88
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQEvent.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QEvent.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..49ce3e656a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QEventLoop()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQEventLoop.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QEventLoop.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..008f741453
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfile.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFile()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQFile.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QFile.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QIODevice, 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
new file mode 100644
index 0000000000..b380443909
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt
@@ -0,0 +1,103 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFileDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :testOption( nOption ) -> lBool
+ :viewMode() -> nViewMode
+ :getExistingDirectory( pParent, cCaption, cDir, nOptions ) -> cQString
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFileDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFileDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..c3f7f4f56f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFileIconProvider()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFileIconProvider.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..f528a2d674
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt
@@ -0,0 +1,102 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFileInfo()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQFileInfo.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QFileInfo.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..3ab150b8b6
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFileSystemModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFileSystemModel.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractItemModel, 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
new file mode 100644
index 0000000000..60f4240bfb
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFocusEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFocusEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QEvent, 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
new file mode 100644
index 0000000000..78e2367a6d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFocusFrame()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFocusFrame.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..ae53f17669
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfont.txt
@@ -0,0 +1,123 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFont()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFont.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFont.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..a9b80d3a88
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:11
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFontComboBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFontComboBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QComboBox, 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
new file mode 100644
index 0000000000..cd848b49fa
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt
@@ -0,0 +1,78 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFontDatabase()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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
+ :supportsThreadedFontRendering() -> lBool
+ :writingSystemName( nWritingSystem ) -> cQString
+ :writingSystemSample( nWritingSystem ) -> cQString
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFontDatabase.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..cdd094047a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFontDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFontDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFontDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..31aff82373
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFontInfo()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFontInfo.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFontInfo.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..bc203aa975
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFontMetrics()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFontMetrics.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..97c7b93a41
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFontMetricsF()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFontMetricsF.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..6b0c11e410
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFormLayout()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFormLayout.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFormLayout.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QLayout, 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
new file mode 100644
index 0000000000..9c03b6c279
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qframe.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFrame()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQFrame.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QFrame.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..6d324ce202
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qftp.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QFtp()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtnetwork/TQFtp.prg
+ C++ Wrappers : contrib/hbqt/qtnetwork/QFtp.cpp
+ Library : hbqtnetwork
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..d942388e47
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qgradient.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QGradient()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQGradient.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QGradient.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..2a301acf97
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QGridLayout()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQGridLayout.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QGridLayout.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QLayout, 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
new file mode 100644
index 0000000000..2ab7a2fe5d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QGroupBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQGroupBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QGroupBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..3150b91fb2
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt
@@ -0,0 +1,115 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QHeaderView()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQHeaderView.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QHeaderView.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractItemView, 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
new file mode 100644
index 0000000000..2499c48a99
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QHelpEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQHelpEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..4106804e55
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qhttp.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QHttp()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtnetwork/TQHttp.prg
+ C++ Wrappers : contrib/hbqt/qtnetwork/QHttp.cpp
+ Library : hbqtnetwork
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..db9dd50443
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QHttpHeader()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtnetwork/TQHttpHeader.prg
+ C++ Wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp
+ Library : hbqtnetwork
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..a65adc7fb8
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QHttpRequestHeader()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg
+ C++ Wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp
+ Library : hbqtnetwork
+ $SEEALSO$
+ QHttpHeader, 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
new file mode 100644
index 0000000000..acf7172572
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QHttpResponseHeader()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg
+ C++ Wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp
+ Library : hbqtnetwork
+ $SEEALSO$
+ QHttpHeader, 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
new file mode 100644
index 0000000000..7b9b068b30
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qicon.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QIcon()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQIcon.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QIcon.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..eb03119577
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qimage.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QImage()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQImage.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QImage.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..7393021865
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt
@@ -0,0 +1,96 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QImageReader()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQImageReader.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QImageReader.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..d694740868
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QImageWriter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQImageWriter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QImageWriter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ http://doc.trolltech.com/4.5/qimagewriter.html
+ $END$
+ */
diff --git a/harbour/contrib/hbqt/doc/en/class_qinputcontext.txt b/harbour/contrib/hbqt/doc/en/class_qinputcontext.txt
new file mode 100644
index 0000000000..a406949d49
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qinputcontext.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QInputContext()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $ONELINER$
+ Creates a new QInputContext object.
+ $INHERITS$
+ QObject
+ $SYNTAX$
+ QInputContext():new( ... )
+ QInputContext():from( pPtr_OR_oObj_of_type_QInputContext )
+ QInputContext():configure( pPtr_OR_oObj_of_type_QInputContext )
+ $ARGUMENTS$
+
+ $RETURNS$
+ An instance of the object of type QInputContext
+ $METHODS$
+ :filterEvent( pEvent ) -> lBool
+ :font() -> pQFont
+ :identifierName() -> cQString
+ :isComposing() -> lBool
+ :language() -> cQString
+ :mouseHandler( nX, pEvent ) -> NIL
+ :reset() -> NIL
+ :sendEvent( pEvent ) -> NIL
+ :standardFormat( nS ) -> pQTextFormat
+ :update() -> NIL
+ :widgetDestroyed( pWidget ) -> NIL
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQInputContext.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QInputContext.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, http://doc.trolltech.com/4.5/qinputcontext.html
+ $END$
+ */
diff --git a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt
new file mode 100644
index 0000000000..4d2057a0d3
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt
@@ -0,0 +1,102 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QInputDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQInputDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QInputDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..c84a6db26b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QInputEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQInputEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QInputEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QEvent, 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
new file mode 100644
index 0000000000..ea5e7bf968
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QInputMethodEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQInputMethodEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QEvent, 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
new file mode 100644
index 0000000000..e4651b20d6
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QIODevice()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQIODevice.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QIODevice.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..ec50233126
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QItemSelection()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQItemSelection.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QItemSelection.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QList, 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
new file mode 100644
index 0000000000..6053bc34ff
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt
@@ -0,0 +1,73 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:12
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QItemSelectionModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQItemSelectionModel.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..5f9a4b9948
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QKeyEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQKeyEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QInputEvent, 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
new file mode 100644
index 0000000000..658944eec8
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QKeySequence()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQKeySequence.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QKeySequence.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..fae7b6c669
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlabel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLabel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQLabel.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QLabel.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QFrame, 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
new file mode 100644
index 0000000000..e5cfe70624
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLatin1Char()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQLatin1Char.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..3e152808c6
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLatin1String()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQLatin1String.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QLatin1String.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..900ec976b8
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlayout.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLayout()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQLayout.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QLayout.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, QLayoutItem, 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
new file mode 100644
index 0000000000..87154f4478
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLayoutItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQLayoutItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..9a09043ee1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLCDNumber()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQLCDNumber.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QFrame, 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
new file mode 100644
index 0000000000..d158807a6a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qline.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLine()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQLine.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QLine.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..14698f8f51
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLinearGradient()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQLinearGradient.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QGradient, 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
new file mode 100644
index 0000000000..d66adcbc68
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLineEdit()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQLineEdit.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QLineEdit.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..43f52efb50
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlinef.txt
@@ -0,0 +1,81 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLineF()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQLineF.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QLineF.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..4f74d6b708
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlist.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QList()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQList.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QList.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..01ee2f7cce
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlistview.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QListView()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQListView.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QListView.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractItemView, 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
new file mode 100644
index 0000000000..e4bf692cd1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QListWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQListWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QListWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QListView, 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
new file mode 100644
index 0000000000..b253062687
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:13
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QListWidgetItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQListWidgetItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..cc2433cf1b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qlocale.txt
@@ -0,0 +1,111 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QLocale()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQLocale.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QLocale.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..2582610e62
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMainWindow()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMainWindow.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMainWindow.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..2b26fc7cae
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMatrix()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMatrix.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMatrix.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..a9c1925c94
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMdiArea()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMdiArea.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMdiArea.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractScrollArea, 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
new file mode 100644
index 0000000000..9f061b767b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMdiSubWindow()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMdiSubWindow.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..f86c967bff
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmenu.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMenu()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMenu.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMenu.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..59d99b180a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMenuBar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMenuBar.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMenuBar.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..4d5b0053bf
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt
@@ -0,0 +1,96 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMessageBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMessageBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMessageBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..b905b0d285
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMimeData()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQMimeData.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QMimeData.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..f9557c6b47
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QModelIndex()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQModelIndex.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QModelIndex.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..4a33f12bf1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMouseEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMouseEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QInputEvent, 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
new file mode 100644
index 0000000000..72992ef694
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMoveEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMoveEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMoveEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QEvent, 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
new file mode 100644
index 0000000000..1801632267
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qmovie.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:14
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QMovie()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQMovie.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QMovie.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..88c5161a36
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QNetworkRequest()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtnetwork/TQNetworkRequest.prg
+ C++ Wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp
+ Library : hbqtnetwork
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..ff089160cc
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qobject.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QObject()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :event( pE ) -> lBool
+ :eventFilter( pWatched, pEvent ) -> lBool
+ :inherits( pClassName ) -> lBool
+ :installEventFilter( pFilterObj ) -> NIL
+ :isWidgetType() -> lBool
+ :killTimer( nId ) -> NIL
+ :metaObject() -> pQMetaObject
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQObject.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QObject.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..8595330eaa
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPageSetupDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPageSetupDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..cb35f51312
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPaintDevice()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPaintDevice.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..5c7b9b7449
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPaintEngine()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPaintEngine.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..f19218c1a8
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpainter.txt
@@ -0,0 +1,240 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPainter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPainter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPainter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..00180a813d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPainterPath()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPainterPath.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPainterPath.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..75343ace0a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPaintEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPaintEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPaintEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QEvent, 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
new file mode 100644
index 0000000000..3a65fbe6be
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpalette.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPalette()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPalette.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPalette.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..1c2414dce4
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpen.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPen()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPen.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPen.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..fbd5cd5a93
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpicture.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPicture()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPicture.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPicture.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QPaintDevice, 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
new file mode 100644
index 0000000000..3235cbe026
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPixmap()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPixmap.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPixmap.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QPaintDevice, 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
new file mode 100644
index 0000000000..3b2bfccaec
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:15
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPlainTextDocumentLayout()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPlainTextDocumentLayout.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractTextDocumentLayout, 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
new file mode 100644
index 0000000000..5cedfe3e97
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt
@@ -0,0 +1,115 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPlainTextEdit()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPlainTextEdit.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractScrollArea, 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
new file mode 100644
index 0000000000..d26491a981
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpoint.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPoint()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQPoint.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QPoint.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..c6bc169273
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpointf.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPointF()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQPointF.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QPointF.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..22a84de805
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPolygon()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPolygon.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPolygon.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..f6c12861bd
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPolygonF()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPolygonF.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPolygonF.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..7cce96ef7a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPrintDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPrintDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractPrintDialog, 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
new file mode 100644
index 0000000000..90b4adfd9d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPrintEngine()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPrintEngine.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..e7b3f0a5dc
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qprinter.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPrinter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :toPage() -> nInt
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPrinter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPrinter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QPaintDevice, 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
new file mode 100644
index 0000000000..8b84315097
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPrintPreviewDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPrintPreviewDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPrintPreviewDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..1549075a47
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qprocess.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QProcess()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQProcess.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QProcess.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QIODevice, 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
new file mode 100644
index 0000000000..bab81cb6ac
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QProgressBar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQProgressBar.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QProgressBar.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..09ed8484f1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QProgressDialog()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQProgressDialog.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QDialog, 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
new file mode 100644
index 0000000000..3d73d639de
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QPushButton()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQPushButton.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QPushButton.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractButton, 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
new file mode 100644
index 0000000000..aca88b881b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QRadialGradient()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQRadialGradient.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QGradient, 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
new file mode 100644
index 0000000000..b796b4e2bb
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qrect.txt
@@ -0,0 +1,119 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:16
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QRect()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQRect.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QRect.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..ec15b23941
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qrectf.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QRectF()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQRectF.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QRectF.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..e405b17e9c
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qregexp.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QRegExp()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQRegExp.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QRegExp.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..c9cd99c6cb
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qregion.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QRegion()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQRegion.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QRegion.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..6112158513
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QResizeEvent()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQResizeEvent.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QResizeEvent.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QEvent, 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
new file mode 100644
index 0000000000..9e54e7e75f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qresource.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QResource()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :searchPaths() -> pQStringList
+ :unregisterResource( cRccFileName, cMapRoot ) -> lBool
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQResource.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QResource.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..eba0c856c5
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QScrollArea()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQScrollArea.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QScrollArea.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractScrollArea, 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
new file mode 100644
index 0000000000..9baf60fc1a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSessionManager()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSessionManager.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSessionManager.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..908b10ceb6
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsettings.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSettings()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQSettings.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QSettings.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..0aa77d339b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSignalMapper()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQSignalMapper.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..adb0b0dc60
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsize.txt
@@ -0,0 +1,73 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSize()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQSize.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QSize.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..b4f683e147
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsizef.txt
@@ -0,0 +1,73 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSizeF()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQSizeF.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QSizeF.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..a19c760425
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSizePolicy()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSizePolicy.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..64d22ada39
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qslider.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSlider()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSlider.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSlider.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractSlider, 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
new file mode 100644
index 0000000000..b841141689
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsound.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSound()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSound.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSound.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..f4ceec1724
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSpacerItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSpacerItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSpacerItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QLayoutItem, 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
new file mode 100644
index 0000000000..61b00e0468
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSpinBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSpinBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSpinBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractSpinBox, 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
new file mode 100644
index 0000000000..639c1b80b1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:17
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSplashScreen()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSplashScreen.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..ead27d8b8a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt
@@ -0,0 +1,78 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSplitter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :widget( nIndex ) -> pQWidget
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSplitter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSplitter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QFrame, 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
new file mode 100644
index 0000000000..1a60a783bd
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStackedWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStackedWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QFrame, 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
new file mode 100644
index 0000000000..3b93cee852
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStandardItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStandardItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStandardItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..e6bab28c35
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStandardItemModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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
+ :takeHorizontalHeaderItem( nColumn ) -> pQStandardItem
+ :takeItem( nRow, nColumn ) -> pQStandardItem
+ :takeVerticalHeaderItem( nRow ) -> pQStandardItem
+ :verticalHeaderItem( nRow ) -> pQStandardItem
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStandardItemModel.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractItemModeL, 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
new file mode 100644
index 0000000000..bc08b31bab
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStatusBar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStatusBar.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStatusBar.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..7e24a6ebed
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStringList()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQStringList.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QStringList.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QList, 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
new file mode 100644
index 0000000000..2aca7336e1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStringListModel()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStringListModel.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStringListModel.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractListModel, 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
new file mode 100644
index 0000000000..0ec77316a2
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyle.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyle()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyle.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyle.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..97405e3814
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyledItemDelegate()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyledItemDelegate.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..0b39b2800f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleFactory()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleFactory.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleFactory.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..ccf9ca497d
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOption()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOption.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOption.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..cebbf2f357
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionButton()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionButton.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..df3b00c3e2
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:18
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionComboBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionComboBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..90322882a1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionComplex()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionComplex.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionComplex.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..6ef7a4fc8e
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionDockWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..7448b4420a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionFocusRect()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..75db566abf
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionFrame()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionFrame.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionFrame.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ qStyleOption, 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
new file mode 100644
index 0000000000..1405430da1
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionGroupBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOptionComplex, 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
new file mode 100644
index 0000000000..0533a15450
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionHeader()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionHeader.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..4caaa12ec0
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionMenuItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..2ed04ea166
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionProgressBar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..6e06bebab2
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionSizeGrip()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOptionComplex, 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
new file mode 100644
index 0000000000..cce752a5a5
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionSlider()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionSlider.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOptionComplex, 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
new file mode 100644
index 0000000000..ec0959c250
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionSpinBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOptionComplex, 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
new file mode 100644
index 0000000000..a2d936a714
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionTab()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionTab.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..48184956fe
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionTabBarBase()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..28d6579773
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionTabWidgetFrame()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..485fdca847
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionTitleBar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOptionComplex, 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
new file mode 100644
index 0000000000..f4c13f0660
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionToolBar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionToolBar.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..ce380f43aa
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:19
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionToolBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionToolBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionToolBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..77e4142ff3
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionToolButton()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionToolButton.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOptionComplex, 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
new file mode 100644
index 0000000000..f2921ea952
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStyleOptionViewItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStyleOptionViewItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QStyleOption, 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
new file mode 100644
index 0000000000..170b98ee87
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QStylePainter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQStylePainter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QStylePainter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QPainter, 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
new file mode 100644
index 0000000000..47a5c6b218
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSyntaxHighlighter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSyntaxHighlighter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..958728ac42
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QSystemTrayIcon()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQSystemTrayIcon.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..c5e732f57b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt
@@ -0,0 +1,102 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTabBar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTabBar.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTabBar.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..5501d6f1e9
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtableview.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTableView()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTableView.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTableView.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractItemView, 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
new file mode 100644
index 0000000000..d09c2f011a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTableWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTableWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTableWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTableView, 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
new file mode 100644
index 0000000000..075a2ff47f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTableWidgetItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTableWidgetItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..6b2832813a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTableWidgetSelectionRange()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..8683aaac11
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt
@@ -0,0 +1,99 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTabWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTabWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTabWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..c7049ee390
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextBlock()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextBlock.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextBlock.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..b1ecd1a7b4
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextBlockFormat()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextBlockFormat.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextFormat, 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
new file mode 100644
index 0000000000..2fc8b3780f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextBoundaryFinder()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQTextBoundaryFinder.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..1468d317a9
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt
@@ -0,0 +1,78 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextBrowser()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextBrowser.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextEdit, 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
new file mode 100644
index 0000000000..92aa29e67b
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextCharFormat()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextCharFormat.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextFormat, 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
new file mode 100644
index 0000000000..3b044442ab
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextCodec()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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$
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQTextCodec.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QTextCodec.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..3da2f30bbb
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt
@@ -0,0 +1,121 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextCursor()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextCursor.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextCursor.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..e0671c9c0f
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextDecoder()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQTextDecoder.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QTextDecoder.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..bffbd08a14
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt
@@ -0,0 +1,124 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:20
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextDocument()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextDocument.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextDocument.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..84cd6a29e9
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextDocumentFragment()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextDocumentFragment.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..1c8fddfd26
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextDocumentWriter()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextDocumentWriter.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..8053d1d188
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt
@@ -0,0 +1,139 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextEdit()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextEdit.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextEdit.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractScrollArea, 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
new file mode 100644
index 0000000000..30b8715549
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextEncoder()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQTextEncoder.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QTextEncoder.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..b7c90dc14e
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt
@@ -0,0 +1,99 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextFormat()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextFormat.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextFormat.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..57cec26b9a
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextFragment()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextFragment.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextFragment.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..464bfa9795
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextFrame()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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$
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextFrame.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextFrame.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextObject, 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
new file mode 100644
index 0000000000..7a536847eb
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextFrameFormat()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextFrameFormat.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextFormat, 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
new file mode 100644
index 0000000000..fc0414a3f5
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextImageFormat()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextImageFormat.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextCharFormat, 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
new file mode 100644
index 0000000000..9b920a059c
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextInlineObject()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextInlineObject.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..dbc01b9085
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..bafccc9546
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextLayout()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextLayout.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextLayout.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..1065614683
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextLength()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextLength.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextLength.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..a435e0d419
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextline.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextLine()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextLine.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextLine.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..269567f120
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:21
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextList()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextList.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextList.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextBlockGroup, 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
new file mode 100644
index 0000000000..92fba283e8
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextListFormat()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextListFormat.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextFormat, 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
new file mode 100644
index 0000000000..1e74639597
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextObject()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextObject.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextObject.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..8578a9ca88
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextOption()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :tabStop() -> nQreal
+ :textDirection() -> nQt::LayoutDirection
+ :useDesignMetrics() -> lBool
+ :wrapMode() -> nWrapMode
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextOption.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextOption.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..99fd9b54ef
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextStream()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQTextStream.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QTextStream.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..85afd535d8
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTextTableFormat()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTextTableFormat.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTextFrameFormat, 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
new file mode 100644
index 0000000000..bddb16bdef
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qthread.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QThread()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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() -> lBool
+ :idealThreadCount() -> nInt
+ :yieldCurrentThread() -> NIL
+ :quit() -> NIL
+ :start( nPriority ) -> NIL
+ :terminate() -> NIL
+
+ $DESCRIPTION$
+
+ $EXAMPLES$
+
+ $TESTS$
+
+ $STATUS$
+ R
+ $COMPLIANCE$
+ Not Clipper Compatible
+ $PLATFORMS$
+ Windows, Linux, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQThread.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QThread.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..bb1c9421d0
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtime.txt
@@ -0,0 +1,73 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTime()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQTime.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QTime.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..05402b7a8e
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtimer.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTimer()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQTimer.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QTimer.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..7d070a070c
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QToolBar()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQToolBar.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QToolBar.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..63f2f791d6
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt
@@ -0,0 +1,78 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QToolBox()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQToolBox.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QToolBox.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QFrame, 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
new file mode 100644
index 0000000000..9d07c8ce5e
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QToolButton()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQToolButton.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QToolButton.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractButton, 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
new file mode 100644
index 0000000000..5570ba1c29
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtransform.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTransform()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTransform.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTransform.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..843ce586de
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTranslator()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQTranslator.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QTranslator.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..fd284c0022
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTreeView()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTreeView.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTreeView.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QAbstractItemView, 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
new file mode 100644
index 0000000000..c27db25afb
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:22
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTreeWidget()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTreeWidget.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QTreeView, 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
new file mode 100644
index 0000000000..f54f8fb6ca
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:23
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QTreeWidgetItem()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQTreeWidgetItem.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ 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
new file mode 100644
index 0000000000..7d883c54b9
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_quiloader.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:23
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QUiLoader()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQUiLoader.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QUiLoader.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..9a45ac0097
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qurl.txt
@@ -0,0 +1,123 @@
+/*
+ * hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
+ *
+ * Please do not modify this document as it is subject to change in future.
+ *
+ * Pritpal Bedi
+ *
+ * 02/25/10 - 18:22:23
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QUrl()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQUrl.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QUrl.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ QWidget, 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
new file mode 100644
index 0000000000..28b11e3179
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:23
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QValidator()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtgui/TQValidator.prg
+ C++ Wrappers : contrib/hbqt/qtgui/QValidator.cpp
+ Library : hbqtgui
+ $SEEALSO$
+ QObject, 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
new file mode 100644
index 0000000000..d06e350549
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qvariant.txt
@@ -0,0 +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
+ *
+ * 02/25/10 - 18:22:23
+ *
+ */
+
+
+
+/* $DOC$
+ $TEMPLATE$
+ Class
+ $NAME$
+ QVariant()
+ $CATEGORY$
+ Harbour Bindings for Qt 4.5.3+
+ $SUBCATEGORY$
+ GUI
+ $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
+ :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, MacOS, OS2
+ $VERSION$
+ 4.5.3
+ $FILES$
+ Prg Source : contrib/hbqt/qtcore/TQVariant.prg
+ C++ Wrappers : contrib/hbqt/qtcore/QVariant.cpp
+ Library : hbqtcore
+ $SEEALSO$
+ http://doc.trolltech.com/4.5/qvariant.html
+ $END$
+ */
diff --git a/harbour/contrib/hbqt/doc/en/class_qwebframe.txt b/harbour/contrib/hbqt/doc/en/class_qwebframe.txt
new file mode 100644
index 0000000000..30699eae02
--- /dev/null
+++ b/harbour/contrib/hbqt/doc/en/class_qwebframe.txt
@@ -0,0 +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