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.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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 := '<TR><TD margin-left: 20px><pre>' ; w := "</pre></TD></TR>"
|
||||
z := "<TR><TD> </TD></TR>"
|
||||
|
||||
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, '<a href="' + s1 + '">' + s + "</a>" + ;
|
||||
iif( s:__enumIndex() == len( a_ ), "", ", " ) )
|
||||
ELSE
|
||||
s1 := s
|
||||
ENDIF
|
||||
aadd( aHtm, '<a href="' + s1 + '">' + s + "</a>" + ;
|
||||
iif( s:__enumIndex() == len( a_ ), "", ", " ) )
|
||||
NEXT
|
||||
ELSE
|
||||
aadd( aHtm, " " )
|
||||
|
||||
61
harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt
Normal file
61
harbour/contrib/hbqt/doc/en/class_hbdbfmodel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
61
harbour/contrib/hbqt/doc/en/class_hbevents.txt
Normal file
61
harbour/contrib/hbqt/doc/en/class_hbevents.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
90
harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt
Normal file
90
harbour/contrib/hbqt/doc/en/class_hbqplaintextedit.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
63
harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt
Normal file
63
harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
60
harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt
Normal file
60
harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
62
harbour/contrib/hbqt/doc/en/class_hbslots.txt
Normal file
62
harbour/contrib/hbqt/doc/en/class_hbslots.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
84
harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt
Normal file
84
harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
65
harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt
Normal file
65
harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
90
harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt
Normal file
90
harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
121
harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt
Normal file
121
harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
59
harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt
Normal file
59
harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
68
harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt
Normal file
68
harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
64
harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt
Normal file
64
harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
72
harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt
Normal file
72
harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
82
harbour/contrib/hbqt/doc/en/class_qabstractslider.txt
Normal file
82
harbour/contrib/hbqt/doc/en/class_qabstractslider.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
84
harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt
Normal file
84
harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
59
harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt
Normal file
59
harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
106
harbour/contrib/hbqt/doc/en/class_qaction.txt
Normal file
106
harbour/contrib/hbqt/doc/en/class_qaction.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
70
harbour/contrib/hbqt/doc/en/class_qactiongroup.txt
Normal file
70
harbour/contrib/hbqt/doc/en/class_qactiongroup.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
134
harbour/contrib/hbqt/doc/en/class_qapplication.txt
Normal file
134
harbour/contrib/hbqt/doc/en/class_qapplication.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
74
harbour/contrib/hbqt/doc/en/class_qbitarray.txt
Normal file
74
harbour/contrib/hbqt/doc/en/class_qbitarray.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
65
harbour/contrib/hbqt/doc/en/class_qbitmap.txt
Normal file
65
harbour/contrib/hbqt/doc/en/class_qbitmap.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
78
harbour/contrib/hbqt/doc/en/class_qboxlayout.txt
Normal file
78
harbour/contrib/hbqt/doc/en/class_qboxlayout.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
83
harbour/contrib/hbqt/doc/en/class_qbrush.txt
Normal file
83
harbour/contrib/hbqt/doc/en/class_qbrush.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
64
harbour/contrib/hbqt/doc/en/class_qbuffer.txt
Normal file
64
harbour/contrib/hbqt/doc/en/class_qbuffer.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
68
harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt
Normal file
68
harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
107
harbour/contrib/hbqt/doc/en/class_qbytearray.txt
Normal file
107
harbour/contrib/hbqt/doc/en/class_qbytearray.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
96
harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt
Normal file
96
harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
85
harbour/contrib/hbqt/doc/en/class_qchar.txt
Normal file
85
harbour/contrib/hbqt/doc/en/class_qchar.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
62
harbour/contrib/hbqt/doc/en/class_qcheckbox.txt
Normal file
62
harbour/contrib/hbqt/doc/en/class_qcheckbox.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
71
harbour/contrib/hbqt/doc/en/class_qclipboard.txt
Normal file
71
harbour/contrib/hbqt/doc/en/class_qclipboard.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
116
harbour/contrib/hbqt/doc/en/class_qcolor.txt
Normal file
116
harbour/contrib/hbqt/doc/en/class_qcolor.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
73
harbour/contrib/hbqt/doc/en/class_qcolordialog.txt
Normal file
73
harbour/contrib/hbqt/doc/en/class_qcolordialog.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
117
harbour/contrib/hbqt/doc/en/class_qcombobox.txt
Normal file
117
harbour/contrib/hbqt/doc/en/class_qcombobox.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
60
harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt
Normal file
60
harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
87
harbour/contrib/hbqt/doc/en/class_qcompleter.txt
Normal file
87
harbour/contrib/hbqt/doc/en/class_qcompleter.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
63
harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt
Normal file
63
harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
65
harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt
Normal file
65
harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
97
harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt
Normal file
97
harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
72
harbour/contrib/hbqt/doc/en/class_qcursor.txt
Normal file
72
harbour/contrib/hbqt/doc/en/class_qcursor.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
71
harbour/contrib/hbqt/doc/en/class_qdatastream.txt
Normal file
71
harbour/contrib/hbqt/doc/en/class_qdatastream.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
74
harbour/contrib/hbqt/doc/en/class_qdate.txt
Normal file
74
harbour/contrib/hbqt/doc/en/class_qdate.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
72
harbour/contrib/hbqt/doc/en/class_qdatetime.txt
Normal file
72
harbour/contrib/hbqt/doc/en/class_qdatetime.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
102
harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt
Normal file
102
harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
70
harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt
Normal file
70
harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
65
harbour/contrib/hbqt/doc/en/class_qdial.txt
Normal file
65
harbour/contrib/hbqt/doc/en/class_qdial.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
68
harbour/contrib/hbqt/doc/en/class_qdialog.txt
Normal file
68
harbour/contrib/hbqt/doc/en/class_qdialog.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
107
harbour/contrib/hbqt/doc/en/class_qdir.txt
Normal file
107
harbour/contrib/hbqt/doc/en/class_qdir.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
95
harbour/contrib/hbqt/doc/en/class_qdirmodel.txt
Normal file
95
harbour/contrib/hbqt/doc/en/class_qdirmodel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
70
harbour/contrib/hbqt/doc/en/class_qdockwidget.txt
Normal file
70
harbour/contrib/hbqt/doc/en/class_qdockwidget.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
76
harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt
Normal file
76
harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
63
harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt
Normal file
63
harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
67
harbour/contrib/hbqt/doc/en/class_qdropevent.txt
Normal file
67
harbour/contrib/hbqt/doc/en/class_qdropevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
60
harbour/contrib/hbqt/doc/en/class_qerrormessage.txt
Normal file
60
harbour/contrib/hbqt/doc/en/class_qerrormessage.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
65
harbour/contrib/hbqt/doc/en/class_qevent.txt
Normal file
65
harbour/contrib/hbqt/doc/en/class_qevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
64
harbour/contrib/hbqt/doc/en/class_qeventloop.txt
Normal file
64
harbour/contrib/hbqt/doc/en/class_qeventloop.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
92
harbour/contrib/hbqt/doc/en/class_qfile.txt
Normal file
92
harbour/contrib/hbqt/doc/en/class_qfile.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
103
harbour/contrib/hbqt/doc/en/class_qfiledialog.txt
Normal file
103
harbour/contrib/hbqt/doc/en/class_qfiledialog.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
61
harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt
Normal file
61
harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
102
harbour/contrib/hbqt/doc/en/class_qfileinfo.txt
Normal file
102
harbour/contrib/hbqt/doc/en/class_qfileinfo.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
87
harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt
Normal file
87
harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
61
harbour/contrib/hbqt/doc/en/class_qfocusevent.txt
Normal file
61
harbour/contrib/hbqt/doc/en/class_qfocusevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
60
harbour/contrib/hbqt/doc/en/class_qfocusframe.txt
Normal file
60
harbour/contrib/hbqt/doc/en/class_qfocusframe.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
123
harbour/contrib/hbqt/doc/en/class_qfont.txt
Normal file
123
harbour/contrib/hbqt/doc/en/class_qfont.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
64
harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt
Normal file
64
harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
78
harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt
Normal file
78
harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
70
harbour/contrib/hbqt/doc/en/class_qfontdialog.txt
Normal file
70
harbour/contrib/hbqt/doc/en/class_qfontdialog.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
70
harbour/contrib/hbqt/doc/en/class_qfontinfo.txt
Normal file
70
harbour/contrib/hbqt/doc/en/class_qfontinfo.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
87
harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt
Normal file
87
harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
87
harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt
Normal file
87
harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
94
harbour/contrib/hbqt/doc/en/class_qformlayout.txt
Normal file
94
harbour/contrib/hbqt/doc/en/class_qformlayout.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
71
harbour/contrib/hbqt/doc/en/class_qframe.txt
Normal file
71
harbour/contrib/hbqt/doc/en/class_qframe.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
84
harbour/contrib/hbqt/doc/en/class_qftp.txt
Normal file
84
harbour/contrib/hbqt/doc/en/class_qftp.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
64
harbour/contrib/hbqt/doc/en/class_qgradient.txt
Normal file
64
harbour/contrib/hbqt/doc/en/class_qgradient.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
84
harbour/contrib/hbqt/doc/en/class_qgridlayout.txt
Normal file
84
harbour/contrib/hbqt/doc/en/class_qgridlayout.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
68
harbour/contrib/hbqt/doc/en/class_qgroupbox.txt
Normal file
68
harbour/contrib/hbqt/doc/en/class_qgroupbox.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
115
harbour/contrib/hbqt/doc/en/class_qheaderview.txt
Normal file
115
harbour/contrib/hbqt/doc/en/class_qheaderview.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
64
harbour/contrib/hbqt/doc/en/class_qhelpevent.txt
Normal file
64
harbour/contrib/hbqt/doc/en/class_qhelpevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
82
harbour/contrib/hbqt/doc/en/class_qhttp.txt
Normal file
82
harbour/contrib/hbqt/doc/en/class_qhttp.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
76
harbour/contrib/hbqt/doc/en/class_qhttpheader.txt
Normal file
76
harbour/contrib/hbqt/doc/en/class_qhttpheader.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
63
harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt
Normal file
63
harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
63
harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt
Normal file
63
harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
71
harbour/contrib/hbqt/doc/en/class_qicon.txt
Normal file
71
harbour/contrib/hbqt/doc/en/class_qicon.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
112
harbour/contrib/hbqt/doc/en/class_qimage.txt
Normal file
112
harbour/contrib/hbqt/doc/en/class_qimage.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
96
harbour/contrib/hbqt/doc/en/class_qimagereader.txt
Normal file
96
harbour/contrib/hbqt/doc/en/class_qimagereader.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
76
harbour/contrib/hbqt/doc/en/class_qimagewriter.txt
Normal file
76
harbour/contrib/hbqt/doc/en/class_qimagewriter.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
69
harbour/contrib/hbqt/doc/en/class_qinputcontext.txt
Normal file
69
harbour/contrib/hbqt/doc/en/class_qinputcontext.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
102
harbour/contrib/hbqt/doc/en/class_qinputdialog.txt
Normal file
102
harbour/contrib/hbqt/doc/en/class_qinputdialog.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
59
harbour/contrib/hbqt/doc/en/class_qinputevent.txt
Normal file
59
harbour/contrib/hbqt/doc/en/class_qinputevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
63
harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt
Normal file
63
harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
91
harbour/contrib/hbqt/doc/en/class_qiodevice.txt
Normal file
91
harbour/contrib/hbqt/doc/en/class_qiodevice.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
61
harbour/contrib/hbqt/doc/en/class_qitemselection.txt
Normal file
61
harbour/contrib/hbqt/doc/en/class_qitemselection.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
73
harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt
Normal file
73
harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
67
harbour/contrib/hbqt/doc/en/class_qkeyevent.txt
Normal file
67
harbour/contrib/hbqt/doc/en/class_qkeyevent.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
62
harbour/contrib/hbqt/doc/en/class_qkeysequence.txt
Normal file
62
harbour/contrib/hbqt/doc/en/class_qkeysequence.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
87
harbour/contrib/hbqt/doc/en/class_qlabel.txt
Normal file
87
harbour/contrib/hbqt/doc/en/class_qlabel.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
60
harbour/contrib/hbqt/doc/en/class_qlatin1char.txt
Normal file
60
harbour/contrib/hbqt/doc/en/class_qlatin1char.txt
Normal file
@@ -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 <bedipritpal@hotmail.com>
|
||||
*
|
||||
* 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$
|
||||
*/
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user