2010-02-27 11:40 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
* contrib/hbqt/generator/hbqtgen.prg
! Introduced $EXTERNALLINK$ tag.
;TODO describe it in /doc/hdr_tpl.txt.
* contrib/hbqt/generator/qt45.qtp
* contrib/hbqt/qtgui/filelist.mk
* contrib/hbqt/qtgui/QApplication.cpp
* contrib/hbqt/qtgui/QWidget.cpp
* contrib/hbqt/qtgui/TQApplication.prg
* contrib/hbqt/qtgui/TQWidget.prg
* contrib/hbqt/qth/QApplication.qth
* contrib/hbqt/qth/QWidget.qth
- Deleted QInputContex() class and all other associated functions.
- Removed Qt plugin architect builder: "Accessibility" functions.
Hope OS2 will now compile fine without any manual intervention.
* contrib/hbqt/qtcore/QChar.cpp
* contrib/hbqt/qtcore/TQChar.prg
! Regenerated.
* contrib/hbide/ideharbourhelp.prg
! Modified to honor $EXTERNALLINK$ tag.
With this presentation of Harbour document is a bit changed.
$EXTERNALLINK$ tag is expanded in the page title part.
$SEEALSO$ is now a pure functions link.
This commit is contained in:
@@ -17,6 +17,33 @@
|
||||
past entries belonging to author(s): Viktor Szakats.
|
||||
*/
|
||||
|
||||
2010-02-27 11:40 UTC-0800 Pritpal Bedi (pritpal@vouchcac.com)
|
||||
* contrib/hbqt/generator/hbqtgen.prg
|
||||
! Introduced $EXTERNALLINK$ tag.
|
||||
;TODO describe it in /doc/hdr_tpl.txt.
|
||||
|
||||
* contrib/hbqt/generator/qt45.qtp
|
||||
* contrib/hbqt/qtgui/filelist.mk
|
||||
* contrib/hbqt/qtgui/QApplication.cpp
|
||||
* contrib/hbqt/qtgui/QWidget.cpp
|
||||
* contrib/hbqt/qtgui/TQApplication.prg
|
||||
* contrib/hbqt/qtgui/TQWidget.prg
|
||||
* contrib/hbqt/qth/QApplication.qth
|
||||
* contrib/hbqt/qth/QWidget.qth
|
||||
- Deleted QInputContex() class and all other associated functions.
|
||||
- Removed Qt plugin architect builder: "Accessibility" functions.
|
||||
Hope OS2 will now compile fine without any manual intervention.
|
||||
|
||||
* contrib/hbqt/qtcore/QChar.cpp
|
||||
* contrib/hbqt/qtcore/TQChar.prg
|
||||
! Regenerated.
|
||||
|
||||
* contrib/hbide/ideharbourhelp.prg
|
||||
! Modified to honor $EXTERNALLINK$ tag.
|
||||
With this presentation of Harbour document is a bit changed.
|
||||
$EXTERNALLINK$ tag is expanded in the page title part.
|
||||
$SEEALSO$ is now a pure functions link.
|
||||
|
||||
2010-02-27 20:26 UTC+0100 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* ChangeLog
|
||||
+ Added missed item in prev commit.
|
||||
|
||||
@@ -112,7 +112,7 @@
|
||||
#define DOC_FUN_VERSION 16
|
||||
#define DOC_FUN_INHERITS 17
|
||||
#define DOC_FUN_METHODS 18
|
||||
|
||||
#define DOC_FUN_EXTERNALLINK 19
|
||||
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
@@ -123,6 +123,12 @@ CLASS IdeDocFunction
|
||||
DATA cCategory INIT ""
|
||||
DATA cSubCategory INIT ""
|
||||
DATA cOneliner INIT ""
|
||||
DATA cStatus INIT ""
|
||||
DATA cPlatforms INIT ""
|
||||
DATA cSeaAlso INIT ""
|
||||
DATA cVersion INIT ""
|
||||
DATA cInherits INIT ""
|
||||
DATA cExternalLink INIT ""
|
||||
DATA aSyntax INIT {}
|
||||
DATA aArguments INIT {}
|
||||
DATA aReturns INIT {}
|
||||
@@ -130,11 +136,6 @@ CLASS IdeDocFunction
|
||||
DATA aExamples INIT {}
|
||||
DATA aTests INIT {}
|
||||
DATA aFiles INIT {}
|
||||
DATA cStatus INIT ""
|
||||
DATA cPlatforms INIT ""
|
||||
DATA cSeaAlso INIT ""
|
||||
DATA cVersion INIT ""
|
||||
DATA cInherits INIT ""
|
||||
DATA aMethods INIT {}
|
||||
DATA aSource INIT {}
|
||||
|
||||
@@ -850,6 +851,8 @@ METHOD IdeHarbourHelp:parseTextFile( cTextFile, oParent )
|
||||
nPart := DOC_FUN_INHERITS
|
||||
CASE "$METHODS" $ s
|
||||
nPart := DOC_FUN_METHODS
|
||||
CASE "$EXTERNALLINK" $ s
|
||||
nPart := DOC_FUN_EXTERNALLINK
|
||||
OTHERWISE
|
||||
IF ! lIsFunc
|
||||
LOOP // It is a fake line not within $DOC$ => $END$ block
|
||||
@@ -916,6 +919,9 @@ METHOD IdeHarbourHelp:parseTextFile( cTextFile, oParent )
|
||||
CASE DOC_FUN_VERSION
|
||||
oFunc:cVersion := alltrim( s )
|
||||
EXIT
|
||||
CASE DOC_FUN_EXTERNALLINK
|
||||
oFunc:cExternalLink := alltrim( s )
|
||||
EXIT
|
||||
OTHERWISE
|
||||
nPart := DOC_FUN_NONE
|
||||
EXIT
|
||||
@@ -1049,6 +1055,11 @@ METHOD IdeHarbourHelp:buildView( oFunc )
|
||||
aadd( aHtm, ' <meta http-equiv="content-script-type" content="text/javascript">' )
|
||||
aadd( aHtm, ' ' )
|
||||
aadd( aHtm, ' <style type="text/css"> ' )
|
||||
aadd( aHtm, ' a ' )
|
||||
aadd( aHtm, ' { ' )
|
||||
aadd( aHtm, ' text-decoration : none; ' )
|
||||
aadd( aHtm, ' color-hover : #FF9900; ' )
|
||||
aadd( aHtm, ' } ' )
|
||||
aadd( aHtm, ' th ' )
|
||||
aadd( aHtm, ' { ' )
|
||||
aadd( aHtm, ' colspan : 1; ' )
|
||||
@@ -1085,7 +1096,8 @@ METHOD IdeHarbourHelp:buildView( oFunc )
|
||||
aadd( aHtm, s )
|
||||
|
||||
aadd( aHtm, '<CAPTION align=TOP><FONT SIZE="6"><B>' + oFunc:cName + '</B></FONT></CAPTION>' )
|
||||
aadd( aHtm, '<BR><FONT color="#6699ff"><B>' + oFunc:cOneLiner + '</B></FONT></BR>' )
|
||||
//aadd( aHtm, '<BR><FONT color="#6699ff"><B>' + oFunc:cOneLiner + '</B></FONT></BR>' )
|
||||
aadd( aHtm, '<BR><FONT color="#FF4719"><B>' + oFunc:cOneLiner + '</B></FONT></BR>' )
|
||||
cTxt := " "
|
||||
IF !empty( oFunc:cCategory )
|
||||
cTxt += "Category: <B>" + oFunc:cCategory + "</B> "
|
||||
@@ -1099,7 +1111,9 @@ METHOD IdeHarbourHelp:buildView( oFunc )
|
||||
IF !empty( cTxt )
|
||||
aadd( aHtm, "<BR>" + "[" + cTxt + "]" + "</BR>" )
|
||||
ENDIF
|
||||
//aadd( aHtm, '<HR color="#6699ff" width="90%" size="3"></HR>' )
|
||||
IF !empty( s1 := oFunc:cExternalLink )
|
||||
aadd( aHtm, '<BR><a href="' + s1 + '">' + "<B>" + s1 + "</B>" + "</a></BR>" )
|
||||
ENDIF
|
||||
aadd( aHtm, '<HR color="#6699ff" size="5"></HR>' )
|
||||
|
||||
x := '<TR><TD align=LEFT><font size="5" color="#FF4719">' ; y := "</font></TD></TR>"
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/hbdbfmodel.html
|
||||
$ONELINER$
|
||||
Creates a new HBDbfModel object.
|
||||
$INHERITS$
|
||||
@@ -56,6 +51,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/HBDbfModel.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QAbstractItemModel, http://doc.trolltech.com/4.5/hbdbfmodel.html
|
||||
QAbstractItemModel
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/hbevents.html
|
||||
$ONELINER$
|
||||
Creates a new HBEvents object.
|
||||
$INHERITS$
|
||||
@@ -56,6 +51,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/HBEvents.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/hbevents.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/hbqplaintextedit.html
|
||||
$ONELINER$
|
||||
Creates a new HBQPlainTextEdit object.
|
||||
$INHERITS$
|
||||
@@ -85,6 +80,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/HBQPlainTextEdit.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QPlainTextEdit, http://doc.trolltech.com/4.5/hbqplaintextedit.html
|
||||
QPlainTextEdit
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/hbqsyntaxhighlighter.html
|
||||
$ONELINER$
|
||||
Creates a new HBQSyntaxHighlighter object.
|
||||
$INHERITS$
|
||||
@@ -58,6 +53,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QSyntaxHighlighter, http://doc.trolltech.com/4.5/hbqsyntaxhighlighter.html
|
||||
QSyntaxHighlighter
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/hbqtextblockuserdata.html
|
||||
$ONELINER$
|
||||
Creates a new HBQTextBlockUserData object.
|
||||
$INHERITS$
|
||||
@@ -55,6 +50,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/hbqtextblockuserdata.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/hbslots.html
|
||||
$ONELINER$
|
||||
Creates a new HBSlots object.
|
||||
$INHERITS$
|
||||
@@ -57,6 +52,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/HBSlots.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/hbslots.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractbutton.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractButton object.
|
||||
$INHERITS$
|
||||
@@ -79,6 +74,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qabstractbutton.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractitemdelegate.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractItemDelegate object.
|
||||
$INHERITS$
|
||||
@@ -60,6 +55,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qabstractitemdelegate.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractitemmodel.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractItemModel object.
|
||||
$INHERITS$
|
||||
@@ -85,6 +80,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qabstractitemmodel.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractitemview.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractItemView object.
|
||||
$INHERITS$
|
||||
@@ -116,6 +111,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractScrollArea, http://doc.trolltech.com/4.5/qabstractitemview.html
|
||||
QAbstractScrollArea
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractlistmodel.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractListModel object.
|
||||
$INHERITS$
|
||||
@@ -54,6 +49,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QAbstractItemModel, http://doc.trolltech.com/4.5/qabstractlistmodel.html
|
||||
QAbstractItemModel
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractprintdialog.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractPrintDialog object.
|
||||
$INHERITS$
|
||||
@@ -63,6 +58,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog, http://doc.trolltech.com/4.5/qabstractprintdialog.html
|
||||
QDialog
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractproxymodel.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractProxyModel object.
|
||||
$INHERITS$
|
||||
@@ -59,6 +54,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractItemModel, http://doc.trolltech.com/4.5/qabstractproxymodel.html
|
||||
QAbstractItemModel
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractscrollarea.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractScrollArea object.
|
||||
$INHERITS$
|
||||
@@ -67,6 +62,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QFrame, http://doc.trolltech.com/4.5/qabstractscrollarea.html
|
||||
QFrame
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractslider.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractSlider object.
|
||||
$INHERITS$
|
||||
@@ -77,6 +72,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qabstractslider.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstractspinbox.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractSpinBox object.
|
||||
$INHERITS$
|
||||
@@ -79,6 +74,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qabstractspinbox.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstracttablemodel.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractTableModel object.
|
||||
$INHERITS$
|
||||
@@ -54,6 +49,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QAbstractItemModel, http://doc.trolltech.com/4.5/qabstracttablemodel.html
|
||||
QAbstractItemModel
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qabstracttextdocumentlayout.html
|
||||
$ONELINER$
|
||||
Creates a new QAbstractTextDocumentLayout object.
|
||||
$INHERITS$
|
||||
@@ -63,6 +58,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qabstracttextdocumentlayout.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qaction.html
|
||||
$ONELINER$
|
||||
Creates a new QAction object.
|
||||
$INHERITS$
|
||||
@@ -101,6 +96,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAction.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qaction.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qactiongroup.html
|
||||
$ONELINER$
|
||||
Creates a new QActionGroup object.
|
||||
$INHERITS$
|
||||
@@ -65,6 +60,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QActionGroup.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qactiongroup.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qapplication.html
|
||||
$ONELINER$
|
||||
Creates a new QApplication object.
|
||||
$INHERITS$
|
||||
@@ -34,12 +29,10 @@
|
||||
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
|
||||
@@ -129,6 +122,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QApplication.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QCoreApplication, http://doc.trolltech.com/4.5/qapplication.html
|
||||
QCoreApplication
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qbitarray.html
|
||||
$ONELINER$
|
||||
Creates a new QBitArray object.
|
||||
$INHERITS$
|
||||
@@ -69,6 +64,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QBitArray.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qbitarray.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qbitmap.html
|
||||
$ONELINER$
|
||||
Creates a new QBitmap object.
|
||||
$INHERITS$
|
||||
@@ -60,6 +55,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QBitmap.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QPixmap, http://doc.trolltech.com/4.5/qbitmap.html
|
||||
QPixmap
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qboxlayout.html
|
||||
$ONELINER$
|
||||
Creates a new QBoxLayout object.
|
||||
$INHERITS$
|
||||
@@ -73,6 +68,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QLayout, http://doc.trolltech.com/4.5/qboxlayout.html
|
||||
QLayout
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qbrush.html
|
||||
$ONELINER$
|
||||
Creates a new QBrush object.
|
||||
$INHERITS$
|
||||
@@ -78,6 +73,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QBrush.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qbrush.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qbuffer.html
|
||||
$ONELINER$
|
||||
Creates a new QBuffer object.
|
||||
$INHERITS$
|
||||
@@ -59,6 +54,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QBuffer.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QIODevice, http://doc.trolltech.com/4.5/qbuffer.html
|
||||
QIODevice
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qbuttongroup.html
|
||||
$ONELINER$
|
||||
Creates a new QButtonGroup object.
|
||||
$INHERITS$
|
||||
@@ -63,6 +58,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qbuttongroup.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qbytearray.html
|
||||
$ONELINER$
|
||||
Creates a new QByteArray object.
|
||||
$INHERITS$
|
||||
@@ -102,6 +97,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QByteArray.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qbytearray.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcalendarwidget.html
|
||||
$ONELINER$
|
||||
Creates a new QCalendarWidget object.
|
||||
$INHERITS$
|
||||
@@ -91,6 +86,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qcalendarwidget.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qchar.html
|
||||
$ONELINER$
|
||||
Creates a new QChar object.
|
||||
$INHERITS$
|
||||
@@ -80,6 +75,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QChar.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qchar.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcheckbox.html
|
||||
$ONELINER$
|
||||
Creates a new QCheckBox object.
|
||||
$INHERITS$
|
||||
@@ -57,6 +52,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCheckBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractButton, http://doc.trolltech.com/4.5/qcheckbox.html
|
||||
QAbstractButton
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qclipboard.html
|
||||
$ONELINER$
|
||||
Creates a new QClipboard object.
|
||||
$INHERITS$
|
||||
@@ -66,6 +61,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QClipboard.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qclipboard.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcolor.html
|
||||
$ONELINER$
|
||||
Creates a new QColor object.
|
||||
$INHERITS$
|
||||
@@ -111,6 +106,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QColor.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qcolor.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcolordialog.html
|
||||
$ONELINER$
|
||||
Creates a new QColorDialog object.
|
||||
$INHERITS$
|
||||
@@ -68,6 +63,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QColorDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog, http://doc.trolltech.com/4.5/qcolordialog.html
|
||||
QDialog
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcombobox.html
|
||||
$ONELINER$
|
||||
Creates a new QComboBox object.
|
||||
$INHERITS$
|
||||
@@ -112,6 +107,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QComboBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qcombobox.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcommandlinkbutton.html
|
||||
$ONELINER$
|
||||
Creates a new QCommandLinkButton object.
|
||||
$INHERITS$
|
||||
@@ -55,6 +50,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QPushButton, http://doc.trolltech.com/4.5/qcommandlinkbutton.html
|
||||
QPushButton
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcompleter.html
|
||||
$ONELINER$
|
||||
Creates a new QCompleter object.
|
||||
$INHERITS$
|
||||
@@ -82,6 +77,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCompleter.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qcompleter.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qconicalgradient.html
|
||||
$ONELINER$
|
||||
Creates a new QConicalGradient object.
|
||||
$INHERITS$
|
||||
@@ -58,6 +53,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QGradient, http://doc.trolltech.com/4.5/qconicalgradient.html
|
||||
QGradient
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcontextmenuevent.html
|
||||
$ONELINER$
|
||||
Creates a new QContextMenuEvent object.
|
||||
$INHERITS$
|
||||
@@ -60,6 +55,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QInputEvent, http://doc.trolltech.com/4.5/qcontextmenuevent.html
|
||||
QInputEvent
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcoreapplication.html
|
||||
$ONELINER$
|
||||
Creates a new QCoreApplication object.
|
||||
$INHERITS$
|
||||
@@ -92,6 +87,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qcoreapplication.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qcursor.html
|
||||
$ONELINER$
|
||||
Creates a new QCursor object.
|
||||
$INHERITS$
|
||||
@@ -67,6 +62,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCursor.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qcursor.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdatastream.html
|
||||
$ONELINER$
|
||||
Creates a new QDataStream object.
|
||||
$INHERITS$
|
||||
@@ -66,6 +61,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QDataStream.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qdatastream.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdate.html
|
||||
$ONELINER$
|
||||
Creates a new QDate object.
|
||||
$INHERITS$
|
||||
@@ -69,6 +64,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QDate.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qdate.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdatetime.html
|
||||
$ONELINER$
|
||||
Creates a new QDateTime object.
|
||||
$INHERITS$
|
||||
@@ -67,6 +62,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QDateTime.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qdatetime.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdatetimeedit.html
|
||||
$ONELINER$
|
||||
Creates a new QDateTimeEdit object.
|
||||
$INHERITS$
|
||||
@@ -97,6 +92,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractSpinBox, http://doc.trolltech.com/4.5/qdatetimeedit.html
|
||||
QAbstractSpinBox
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdesktopwidget.html
|
||||
$ONELINER$
|
||||
Creates a new QDesktopWidget object.
|
||||
$INHERITS$
|
||||
@@ -65,6 +60,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qdesktopwidget.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdial.html
|
||||
$ONELINER$
|
||||
Creates a new QDial object.
|
||||
$INHERITS$
|
||||
@@ -60,6 +55,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDial.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractSlider, http://doc.trolltech.com/4.5/qdial.html
|
||||
QAbstractSlider
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdialog.html
|
||||
$ONELINER$
|
||||
Creates a new QDialog object.
|
||||
$INHERITS$
|
||||
@@ -63,6 +58,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qdialog.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdir.html
|
||||
$ONELINER$
|
||||
Creates a new QDir object.
|
||||
$INHERITS$
|
||||
@@ -102,6 +97,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QDir.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qdir.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdirmodel.html
|
||||
$ONELINER$
|
||||
Creates a new QDirModel object.
|
||||
$INHERITS$
|
||||
@@ -90,6 +85,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDirModel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractItemModel, http://doc.trolltech.com/4.5/qdirmodel.html
|
||||
QAbstractItemModel
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdockwidget.html
|
||||
$ONELINER$
|
||||
Creates a new QDockWidget object.
|
||||
$INHERITS$
|
||||
@@ -65,6 +60,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDockWidget.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qdockwidget.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdoublespinbox.html
|
||||
$ONELINER$
|
||||
Creates a new QDoubleSpinBox object.
|
||||
$INHERITS$
|
||||
@@ -71,6 +66,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractSpinBox, http://doc.trolltech.com/4.5/qdoublespinbox.html
|
||||
QAbstractSpinBox
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdragmoveevent.html
|
||||
$ONELINER$
|
||||
Creates a new QDragMoveEvent object.
|
||||
$INHERITS$
|
||||
@@ -58,6 +53,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDropEvent, http://doc.trolltech.com/4.5/qdragmoveevent.html
|
||||
QDropEvent
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qdropevent.html
|
||||
$ONELINER$
|
||||
Creates a new QDropEvent object.
|
||||
$INHERITS$
|
||||
@@ -62,6 +57,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDropEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QEvent, http://doc.trolltech.com/4.5/qdropevent.html
|
||||
QEvent
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qerrormessage.html
|
||||
$ONELINER$
|
||||
Creates a new QErrorMessage object.
|
||||
$INHERITS$
|
||||
@@ -55,6 +50,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog, http://doc.trolltech.com/4.5/qerrormessage.html
|
||||
QDialog
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qevent.html
|
||||
$ONELINER$
|
||||
Creates a new QEvent object.
|
||||
$INHERITS$
|
||||
@@ -60,6 +55,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QEvent.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qevent.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qeventloop.html
|
||||
$ONELINER$
|
||||
Creates a new QEventLoop object.
|
||||
$INHERITS$
|
||||
@@ -59,6 +54,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QEventLoop.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qeventloop.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfile.html
|
||||
$ONELINER$
|
||||
Creates a new QFile object.
|
||||
$INHERITS$
|
||||
@@ -87,6 +82,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QFile.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QIODevice, http://doc.trolltech.com/4.5/qfile.html
|
||||
QIODevice
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfiledialog.html
|
||||
$ONELINER$
|
||||
Creates a new QFileDialog object.
|
||||
$INHERITS$
|
||||
@@ -98,6 +93,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFileDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog, http://doc.trolltech.com/4.5/qfiledialog.html
|
||||
QDialog
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfileiconprovider.html
|
||||
$ONELINER$
|
||||
Creates a new QFileIconProvider object.
|
||||
$INHERITS$
|
||||
@@ -56,6 +51,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qfileiconprovider.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfileinfo.html
|
||||
$ONELINER$
|
||||
Creates a new QFileInfo object.
|
||||
$INHERITS$
|
||||
@@ -97,6 +92,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QFileInfo.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qfileinfo.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfilesystemmodel.html
|
||||
$ONELINER$
|
||||
Creates a new QFileSystemModel object.
|
||||
$INHERITS$
|
||||
@@ -82,6 +77,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractItemModel, http://doc.trolltech.com/4.5/qfilesystemmodel.html
|
||||
QAbstractItemModel
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfocusevent.html
|
||||
$ONELINER$
|
||||
Creates a new QFocusEvent object.
|
||||
$INHERITS$
|
||||
@@ -56,6 +51,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QEvent, http://doc.trolltech.com/4.5/qfocusevent.html
|
||||
QEvent
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfocusframe.html
|
||||
$ONELINER$
|
||||
Creates a new QFocusFrame object.
|
||||
$INHERITS$
|
||||
@@ -55,6 +50,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qfocusframe.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfont.html
|
||||
$ONELINER$
|
||||
Creates a new QFont object.
|
||||
$INHERITS$
|
||||
@@ -118,6 +113,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFont.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qfont.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfontcombobox.html
|
||||
$ONELINER$
|
||||
Creates a new QFontComboBox object.
|
||||
$INHERITS$
|
||||
@@ -59,6 +54,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QComboBox, http://doc.trolltech.com/4.5/qfontcombobox.html
|
||||
QComboBox
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfontdatabase.html
|
||||
$ONELINER$
|
||||
Creates a new QFontDatabase object.
|
||||
$INHERITS$
|
||||
@@ -73,6 +68,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qfontdatabase.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfontdialog.html
|
||||
$ONELINER$
|
||||
Creates a new QFontDialog object.
|
||||
$INHERITS$
|
||||
@@ -65,6 +60,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog, http://doc.trolltech.com/4.5/qfontdialog.html
|
||||
QDialog
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfontinfo.html
|
||||
$ONELINER$
|
||||
Creates a new QFontInfo object.
|
||||
$INHERITS$
|
||||
@@ -65,6 +60,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontInfo.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qfontinfo.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfontmetrics.html
|
||||
$ONELINER$
|
||||
Creates a new QFontMetrics object.
|
||||
$INHERITS$
|
||||
@@ -82,6 +77,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qfontmetrics.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qfontmetricsf.html
|
||||
$ONELINER$
|
||||
Creates a new QFontMetricsF object.
|
||||
$INHERITS$
|
||||
@@ -82,6 +77,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qfontmetricsf.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qformlayout.html
|
||||
$ONELINER$
|
||||
Creates a new QFormLayout object.
|
||||
$INHERITS$
|
||||
@@ -89,6 +84,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFormLayout.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QLayout, http://doc.trolltech.com/4.5/qformlayout.html
|
||||
QLayout
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qframe.html
|
||||
$ONELINER$
|
||||
Creates a new QFrame object.
|
||||
$INHERITS$
|
||||
@@ -66,6 +61,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFrame.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qframe.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qftp.html
|
||||
$ONELINER$
|
||||
Creates a new QFtp object.
|
||||
$INHERITS$
|
||||
@@ -79,6 +74,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QFtp.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qftp.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qgradient.html
|
||||
$ONELINER$
|
||||
Creates a new QGradient object.
|
||||
$INHERITS$
|
||||
@@ -59,6 +54,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QGradient.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qgradient.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qgridlayout.html
|
||||
$ONELINER$
|
||||
Creates a new QGridLayout object.
|
||||
$INHERITS$
|
||||
@@ -79,6 +74,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QGridLayout.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QLayout, http://doc.trolltech.com/4.5/qgridlayout.html
|
||||
QLayout
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qgroupbox.html
|
||||
$ONELINER$
|
||||
Creates a new QGroupBox object.
|
||||
$INHERITS$
|
||||
@@ -63,6 +58,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QGroupBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget, http://doc.trolltech.com/4.5/qgroupbox.html
|
||||
QWidget
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qheaderview.html
|
||||
$ONELINER$
|
||||
Creates a new QHeaderView object.
|
||||
$INHERITS$
|
||||
@@ -110,6 +105,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QHeaderView.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractItemView, http://doc.trolltech.com/4.5/qheaderview.html
|
||||
QAbstractItemView
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qhelpevent.html
|
||||
$ONELINER$
|
||||
Creates a new QHelpEvent object.
|
||||
$INHERITS$
|
||||
@@ -59,6 +54,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qhelpevent.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qhttp.html
|
||||
$ONELINER$
|
||||
Creates a new QHttp object.
|
||||
$INHERITS$
|
||||
@@ -77,6 +72,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QHttp.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qhttp.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qhttpheader.html
|
||||
$ONELINER$
|
||||
Creates a new QHttpHeader object.
|
||||
$INHERITS$
|
||||
@@ -71,6 +66,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qhttpheader.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qhttprequestheader.html
|
||||
$ONELINER$
|
||||
Creates a new QHttpRequestHeader object.
|
||||
$INHERITS$
|
||||
@@ -58,6 +53,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
QHttpHeader, http://doc.trolltech.com/4.5/qhttprequestheader.html
|
||||
QHttpHeader
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qhttpresponseheader.html
|
||||
$ONELINER$
|
||||
Creates a new QHttpResponseHeader object.
|
||||
$INHERITS$
|
||||
@@ -58,6 +53,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
QHttpHeader, http://doc.trolltech.com/4.5/qhttpresponseheader.html
|
||||
QHttpHeader
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qicon.html
|
||||
$ONELINER$
|
||||
Creates a new QIcon object.
|
||||
$INHERITS$
|
||||
@@ -66,6 +61,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QIcon.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qicon.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qimage.html
|
||||
$ONELINER$
|
||||
Creates a new QImage object.
|
||||
$INHERITS$
|
||||
@@ -107,6 +102,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QImage.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qimage.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qimagereader.html
|
||||
$ONELINER$
|
||||
Creates a new QImageReader object.
|
||||
$INHERITS$
|
||||
@@ -91,6 +86,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QImageReader.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qimagereader.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qimagewriter.html
|
||||
$ONELINER$
|
||||
Creates a new QImageWriter object.
|
||||
$INHERITS$
|
||||
@@ -71,6 +66,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QImageWriter.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qimagewriter.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qinputdialog.html
|
||||
$ONELINER$
|
||||
Creates a new QInputDialog object.
|
||||
$INHERITS$
|
||||
@@ -97,6 +92,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QInputDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog, http://doc.trolltech.com/4.5/qinputdialog.html
|
||||
QDialog
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qinputevent.html
|
||||
$ONELINER$
|
||||
Creates a new QInputEvent object.
|
||||
$INHERITS$
|
||||
@@ -54,6 +49,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QInputEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QEvent, http://doc.trolltech.com/4.5/qinputevent.html
|
||||
QEvent
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qinputmethodevent.html
|
||||
$ONELINER$
|
||||
Creates a new QInputMethodEvent object.
|
||||
$INHERITS$
|
||||
@@ -58,6 +53,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QEvent, http://doc.trolltech.com/4.5/qinputmethodevent.html
|
||||
QEvent
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qiodevice.html
|
||||
$ONELINER$
|
||||
Creates a new QIODevice object.
|
||||
$INHERITS$
|
||||
@@ -86,6 +81,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QIODevice.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qiodevice.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qitemselection.html
|
||||
$ONELINER$
|
||||
Creates a new QItemSelection object.
|
||||
$INHERITS$
|
||||
@@ -56,6 +51,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QItemSelection.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QList, http://doc.trolltech.com/4.5/qitemselection.html
|
||||
QList
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qitemselectionmodel.html
|
||||
$ONELINER$
|
||||
Creates a new QItemSelectionModel object.
|
||||
$INHERITS$
|
||||
@@ -68,6 +63,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject, http://doc.trolltech.com/4.5/qitemselectionmodel.html
|
||||
QObject
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qkeyevent.html
|
||||
$ONELINER$
|
||||
Creates a new QKeyEvent object.
|
||||
$INHERITS$
|
||||
@@ -62,6 +57,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QInputEvent, http://doc.trolltech.com/4.5/qkeyevent.html
|
||||
QInputEvent
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qkeysequence.html
|
||||
$ONELINER$
|
||||
Creates a new QKeySequence object.
|
||||
$INHERITS$
|
||||
@@ -57,6 +52,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QKeySequence.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qkeysequence.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qlabel.html
|
||||
$ONELINER$
|
||||
Creates a new QLabel object.
|
||||
$INHERITS$
|
||||
@@ -82,6 +77,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QLabel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QFrame, http://doc.trolltech.com/4.5/qlabel.html
|
||||
QFrame
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qlatin1char.html
|
||||
$ONELINER$
|
||||
Creates a new QLatin1Char object.
|
||||
$INHERITS$
|
||||
@@ -55,6 +50,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qlatin1char.html
|
||||
|
||||
$END$
|
||||
*/
|
||||
|
||||
@@ -1,25 +1,20 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for QT v4.5+
|
||||
*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* 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$
|
||||
QLatin1String()
|
||||
$CATEGORY$
|
||||
Harbour Bindings for Qt 4.5.3+
|
||||
Harbour Bindings for Qt
|
||||
$SUBCATEGORY$
|
||||
GUI
|
||||
$EXTERNALLINK$
|
||||
http://doc.trolltech.com/4.5/qlatin1string.html
|
||||
$ONELINER$
|
||||
Creates a new QLatin1String object.
|
||||
$INHERITS$
|
||||
@@ -54,6 +49,6 @@
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QLatin1String.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
http://doc.trolltech.com/4.5/qlatin1string.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