2010-08-01 14:09 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)

* utils/hbmk2/hbmk2.prg
    % normalize rebased sources paths (mingw, *nix/gcc).

  - contrib/hbqt/generator/qt45.qtp
  + contrib/hbqt/generator/qtcore.qtp
  + contrib/hbqt/generator/qtnetwork.qtp
  + contrib/hbqt/generator/qtgui.qtp
    * Split monolithic .qtp to components.
    ! Moved QUiLoader to qtgui (from qtcore) to fix circular component
      dependency.

  * contrib/hbqt/generator/hbqtgen.prg
    + Rewrote to avoid internal tricks to detect which class belongs to
      which component.
    + Changed to create GC related functions on a per-component bases
      (instead of monolithic hbqt_garbage.h).
    * Changed to save documents using core hbdoc API.
    % Deleted some unused functions and variables.
    ; After these changes the generator doesn't have any hard-coded
      information about components, so it can be extended with new
      one via new .qth files.

  * contrib/hbqt/qtgui/*
  * contrib/hbqt/qtcore/*
  * contrib/hbqt/qtnetwork/*
  * contrib/hbqt/doc/en/*
    * Regenerated.

  - contrib/hbqt/qtcore/TQUiLoader.prg
  - contrib/hbqt/qtcore/QUiLoader.cpp
  + contrib/hbqt/qtgui/QUiLoader.cpp
  + contrib/hbqt/qtgui/TQUiLoader.prg
    ! Moved QUiLoader to qtgui (from qtcore) to fix circular component
      dependency.

  * contrib/hbqt/qth/QUrl.qth
    ! Fixed to not inherit from class present in qtgui.
      (fixes dependency)

  * contrib/hbqt/hbqt.h
  - contrib/hbqt/hbqt_garbage.h
  * contrib/hbqt/hbqt_hbevents.h
  * contrib/hbqt/hbqt_hbslots.h
  + contrib/hbqt/qtcore/hbqtcore_garbage.h
  + contrib/hbqt/qtgui/hbqtgui_garbage.h
  + contrib/hbqt/qtnetwork/hbqtnetwork_garbage.h
    - Deleted central header for GC functions.
    + Added per component GC function header.

  - contrib/hbqt/filelist.hbm
  - contrib/hbqt/hbqt.hbc
  - contrib/hbqt/hbqt.hbp
  - contrib/hbqt/hbqtmain.hbp
  - contrib/hbqt/hbqtmains.hbp
    - Deleted central hbqt holder project and .hbc file.

  + contrib/hbqt/hbqtcore.hbc
  * contrib/hbqt/hbqtcore.hbp
  * contrib/hbqt/hbqtcores.hbp
  * contrib/hbqt/hbqtgui.hbp
  * contrib/hbqt/hbqtguis.hbp
  + contrib/hbqt/hbqtgui_filelist.hbm
  * contrib/hbqt/hbqtnetwork.hbp
  * contrib/hbqt/hbqtnetworks.hbp
  + contrib/hbqt/hbqtcore_filelist.hbm
    + Merged qtmain lib content to qtcore and qtgui. This finally
      drops the need for an additional wrapper lib compared to qt ones,
      and it fixes build dependencies.
      Formerly libs had circular dependencies, now qtcore is the
      main lib and other qt* libs depend on this central one.

  * contrib/hbqt/hbqt_common.hbm
    + Added qtcore to header path list.

  * contrib/hbqt/tests/hbmk.hbm
  * contrib/hbqt/tests/wvtqt.hbp
  * contrib/hbxbp/hbxbp.hbc
    * Updated to include per component .hbc files instead of
      central hbqt.hbc.

  * contrib/hbplist
    * Changed central hbqt project to its three components.

  * contrib/hbxbp/tests/wvtqt.hbp
    ! Fixed hbc reference.

  ; After these changes, the qt lib layout is much cleaner and
    it makes it possible to build .dll versions of them. Except
    still one issue.

  ; TODO: Further cleanup to file layout. Componentize docs,
          qth files, move files in central dir to component dirs.

  ; TOFIX: hbqtcore references qtgui in QMESSAGEBOX() which is a
           hbqtgui function. This has to be fixed. hbqtcore.dll is
           not build because of this.
           The easiest would be to rewrite HBQT_MESSAGEBOX() in
           C++ to use QMessageBox QT class directly and place
           this function into hbqtcore.
           Pritpal, can you do it?

  ; TOFIX: If this is done it would be also good to fix hbqtcore -> qtgui
           dependencies. Currently this is QMessageBox plus some stuff
           referenced from hbqt_hbqabstractitemmodel.cpp. This latter
           can pbly be solved by moving this HB class to hbqtgui.
This commit is contained in:
Viktor Szakats
2010-08-01 12:32:44 +00:00
parent f2dad224e1
commit c5c041ccb2
574 changed files with 18372 additions and 18634 deletions

View File

@@ -16,6 +16,113 @@
The license applies to all entries newer than 2009-04-28.
*/
2010-08-01 14:09 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
% normalize rebased sources paths (mingw, *nix/gcc).
- contrib/hbqt/generator/qt45.qtp
+ contrib/hbqt/generator/qtcore.qtp
+ contrib/hbqt/generator/qtnetwork.qtp
+ contrib/hbqt/generator/qtgui.qtp
* Split monolithic .qtp to components.
! Moved QUiLoader to qtgui (from qtcore) to fix circular component
dependency.
* contrib/hbqt/generator/hbqtgen.prg
+ Rewrote to avoid internal tricks to detect which class belongs to
which component.
+ Changed to create GC related functions on a per-component bases
(instead of monolithic hbqt_garbage.h).
* Changed to save documents using core hbdoc API.
% Deleted some unused functions and variables.
; After these changes the generator doesn't have any hard-coded
information about components, so it can be extended with new
one via new .qth files.
* contrib/hbqt/qtgui/*
* contrib/hbqt/qtcore/*
* contrib/hbqt/qtnetwork/*
* contrib/hbqt/doc/en/*
* Regenerated.
- contrib/hbqt/qtcore/TQUiLoader.prg
- contrib/hbqt/qtcore/QUiLoader.cpp
+ contrib/hbqt/qtgui/QUiLoader.cpp
+ contrib/hbqt/qtgui/TQUiLoader.prg
! Moved QUiLoader to qtgui (from qtcore) to fix circular component
dependency.
* contrib/hbqt/qth/QUrl.qth
! Fixed to not inherit from class present in qtgui.
(fixes dependency)
* contrib/hbqt/hbqt.h
- contrib/hbqt/hbqt_garbage.h
* contrib/hbqt/hbqt_hbevents.h
* contrib/hbqt/hbqt_hbslots.h
+ contrib/hbqt/qtcore/hbqtcore_garbage.h
+ contrib/hbqt/qtgui/hbqtgui_garbage.h
+ contrib/hbqt/qtnetwork/hbqtnetwork_garbage.h
- Deleted central header for GC functions.
+ Added per component GC function header.
- contrib/hbqt/filelist.hbm
- contrib/hbqt/hbqt.hbc
- contrib/hbqt/hbqt.hbp
- contrib/hbqt/hbqtmain.hbp
- contrib/hbqt/hbqtmains.hbp
- Deleted central hbqt holder project and .hbc file.
+ contrib/hbqt/hbqtcore.hbc
* contrib/hbqt/hbqtcore.hbp
* contrib/hbqt/hbqtcores.hbp
* contrib/hbqt/hbqtgui.hbp
* contrib/hbqt/hbqtguis.hbp
+ contrib/hbqt/hbqtgui_filelist.hbm
* contrib/hbqt/hbqtnetwork.hbp
* contrib/hbqt/hbqtnetworks.hbp
+ contrib/hbqt/hbqtcore_filelist.hbm
+ Merged qtmain lib content to qtcore and qtgui. This finally
drops the need for an additional wrapper lib compared to qt ones,
and it fixes build dependencies.
Formerly libs had circular dependencies, now qtcore is the
main lib and other qt* libs depend on this central one.
* contrib/hbqt/hbqt_common.hbm
+ Added qtcore to header path list.
* contrib/hbqt/tests/hbmk.hbm
* contrib/hbqt/tests/wvtqt.hbp
* contrib/hbxbp/hbxbp.hbc
* Updated to include per component .hbc files instead of
central hbqt.hbc.
* contrib/hbplist
* Changed central hbqt project to its three components.
* contrib/hbxbp/tests/wvtqt.hbp
! Fixed hbc reference.
; After these changes, the qt lib layout is much cleaner and
it makes it possible to build .dll versions of them. Except
still one issue.
; TODO: Further cleanup to file layout. Componentize docs,
qth files, move files in central dir to component dirs.
; TOFIX: hbqtcore references qtgui in QMESSAGEBOX() which is a
hbqtgui function. This has to be fixed. hbqtcore.dll is
not build because of this.
The easiest would be to rewrite HBQT_MESSAGEBOX() in
C++ to use QMessageBox QT class directly and place
this function into hbqtcore.
Pritpal, can you do it?
; TOFIX: If this is done it would be also good to fix hbqtcore -> qtgui
dependencies. Currently this is QMessageBox plus some stuff
referenced from hbqt_hbqabstractitemmodel.cpp. This latter
can pbly be solved by moving this HB class to hbqtgui.
2010-07-31 23:57 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
* contrib/gtwvg/wvgscrlb.prg
% Reversed the order of structures to comply with current scenario.
@@ -31,16 +138,16 @@
* contrib/hbide/idesaveload.prg
* contrib/hbide/idetools.prg
+ Implemented: MDI interface for editing panels.
This implementation is on top of existing one and is switchable
through "Setup->Edits MDI". For now it is "ON" by default just
to give a first-hand experience to the user and show advantages
it has over existing one.
This implementation is on top of existing one and is switchable
through "Setup->Edits MDI". For now it is "ON" by default just
to give a first-hand experience to the user and show advantages
it has over existing one.
LAYOUT: Editing area is comprised of :
1. Top toolbar
Collection of actions which affect the presentation of
Collection of actions which affect the presentation of
panels, windows hosting them and editors.
2. Left toolbar
Collection of actions which affect editing instances.
@@ -55,16 +162,16 @@
<User-defined Panel 2>
<User-defined Panel n>
Holds: n number of editing instances each per tab in a tabbed widget.
Every panel has the same behavior as before.
Every panel has the same behavior as before.
All features are exactly the same as before.
ADVANTAGES: allows to view and edit multiple sources simultaneous.
: better organization of sources across logical development units.
Regression is possible though every care has been taken for accuracy.
Toggling MDI to Stacked mode is not in-place, hbIDE needs to be exetuted
again to take this change active.
Toggling MDI to Stacked mode is not in-place, hbIDE needs to be exetuted
again to take this change active.
2010-07-31 20:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* utils/hbmk2/hbmk2.prg
* Changed to not give fatal error if cmdline (or .hbp)

View File

@@ -30,7 +30,9 @@ hbnetio/utils/hbnetio.hbp
hbnf/hbnf.hbp
hbodbc/hbodbc.hbp
hbpgsql/hbpgsql.hbp
hbqt/hbqt.hbp
hbqt/hbqtcore.hbp
hbqt/hbqtgui.hbp
hbqt/hbqtnetwork.hbp
hbsms/hbsms.hbp
hbsqlit3/hbsqlit3.hbp # uses: sqlite3 (external)
hbssl/hbssl.hbp

View File

@@ -1,56 +1,54 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
HBEvents()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/hbevents.html
$ONELINER$
Creates a new HBEvents object.
$INHERITS$
QObject
$SYNTAX$
HBEvents():new( ... )
HBEvents():from( pPtr_OR_oObj_of_type_HBEvents )
HBEvents():configure( pPtr_OR_oObj_of_type_HBEvents )
$ARGUMENTS$
$RETURNS$
An instance of the object of type HBEvents
$METHODS$
:hbConnect( xObj, nEvent, xBlock ) -> lBool
:hbDisconnect( xObj, nEvent ) -> lBool
:hbClear() -> lBool
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/THBEvents.prg
C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp
Library : hbqtcore
$SEEALSO$
QObject
$END$
* $NAME$
* HBEvents()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/THBEvents.prg
* C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* HBEvents():new( ... )
* HBEvents():from( pPtr_OR_oObj_of_type_HBEvents )
* HBEvents():configure( pPtr_OR_oObj_of_type_HBEvents )
* $METHODS$
* :hbConnect( xObj, nEvent, xBlock ) -> lBool
* :hbDisconnect( xObj, nEvent ) -> lBool
* :hbClear() -> lBool
*
* $RETURNS$
* An instance of the object of type HBEvents
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new HBEvents object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbevents.html
* $END$
*/

View File

@@ -1,109 +1,107 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
HBQPlainTextEdit()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/hbqplaintextedit.html
$ONELINER$
Creates a new HBQPlainTextEdit object.
$INHERITS$
QPlainTextEdit
$SYNTAX$
HBQPlainTextEdit():new( ... )
HBQPlainTextEdit():from( pPtr_OR_oObj_of_type_HBQPlainTextEdit )
HBQPlainTextEdit():configure( pPtr_OR_oObj_of_type_HBQPlainTextEdit )
$ARGUMENTS$
$RETURNS$
An instance of the object of type HBQPlainTextEdit
$METHODS$
:hbGetIndex( pCrQTextCursor ) -> nInt
:hbGetLine( pCrQTextCursor ) -> nInt
:hbLineNumberAreaWidth() -> nInt
:hbGetSpaces() -> nInt
:hbSetSpaces( nNewSpaces ) -> NIL
:hbBookmarks( nBlock ) -> NIL
:hbNextBookmark( nBlock ) -> NIL
:hbPrevBookmark( nBlock ) -> NIL
:hbGotoBookmark( nBlock ) -> NIL
:hbNumberBlockVisible( lB ) -> NIL
:hbNumberBlockVisible_1() -> lBool
:hbHighlightCurrentLine( lB ) -> NIL
:hbHighlightCurrentLine_1() -> lBool
:hbSetEventBlock( xBlock ) -> NIL
:hbUpdateLineNumberAreaWidth( nNewBlockCount ) -> NIL
:hbCaseUpper() -> NIL
:hbCaseLower() -> NIL
:hbEscapeQuotes() -> NIL
:hbEscapeDQuotes() -> NIL
:hbUnescapeQuotes() -> NIL
:hbUnescapeDQuotes() -> NIL
:hbConvertQuotes() -> NIL
:hbConvertDQuotes() -> NIL
:hbBlockComment() -> NIL
:hbStreamComment() -> NIL
:hbDuplicateLine() -> NIL
:hbReplaceSelection( cTxt ) -> NIL
:hbBlockIndent( nSteps ) -> NIL
:hbDeleteLine() -> NIL
:hbMoveLine( nIDirection ) -> NIL
:hbGetSelectedText() -> cQString
:hbTextUnderCursor( lBCodeComplete ) -> cQString
:hbShowPrototype( cTip, nRows, nCols ) -> NIL
:hbSetCompleter( pCompleter ) -> NIL
:hbSetFldsCompleter( pCompleter ) -> NIL
:hbSetCurrentLineColor( pColor ) -> NIL
:hbSetLineAreaBkColor( pColor ) -> NIL
:hbRefresh() -> NIL
:hbCut( nKey ) -> NIL
:hbCopy() -> NIL
:hbPaste() -> NIL
:hbSetSelectionMode( nMode, lOn ) -> NIL
:hbGetSelectionInfo() -> NIL
:hbSetSelectionInfo( xSelectionInfo ) -> NIL
:hbSetSelectionColor( pColor ) -> NIL
:hbSetMatchBraces( lAll ) -> NIL
:hbGetViewportInfo() -> NIL
:hbApplyKey( nKey, nModifiers, cTxt ) -> NIL
:hbHighlightArea( nTop, nLeft, nBottom, nRight, nMode ) -> NIL
:hbTogglePersistentSelection() -> NIL
:hbHorzRulerVisible( lVisible ) -> NIL
:hbSetProtoStyle( cCss ) -> NIL
:hbSelectAll() -> NIL
:hbSetFieldsListActive( lActive ) -> NIL
:hbToggleCodeCompetion() -> NIL
:hbToggleCompetionTips() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/THBQPlainTextEdit.prg
C++ wrappers : contrib/hbqt/qtgui/HBQPlainTextEdit.cpp
Library : hbqtgui
$SEEALSO$
QPlainTextEdit
$END$
* $NAME$
* HBQPlainTextEdit()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQPlainTextEdit.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQPlainTextEdit.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* HBQPlainTextEdit():new( ... )
* HBQPlainTextEdit():from( pPtr_OR_oObj_of_type_HBQPlainTextEdit )
* HBQPlainTextEdit():configure( pPtr_OR_oObj_of_type_HBQPlainTextEdit )
* $METHODS$
* :hbGetIndex( pCrQTextCursor ) -> nInt
* :hbGetLine( pCrQTextCursor ) -> nInt
* :hbLineNumberAreaWidth() -> nInt
* :hbGetSpaces() -> nInt
* :hbSetSpaces( nNewSpaces ) -> NIL
* :hbBookmarks( nBlock ) -> NIL
* :hbNextBookmark( nBlock ) -> NIL
* :hbPrevBookmark( nBlock ) -> NIL
* :hbGotoBookmark( nBlock ) -> NIL
* :hbNumberBlockVisible( lB ) -> NIL
* :hbNumberBlockVisible_1() -> lBool
* :hbHighlightCurrentLine( lB ) -> NIL
* :hbHighlightCurrentLine_1() -> lBool
* :hbSetEventBlock( xBlock ) -> NIL
* :hbUpdateLineNumberAreaWidth( nNewBlockCount ) -> NIL
* :hbCaseUpper() -> NIL
* :hbCaseLower() -> NIL
* :hbEscapeQuotes() -> NIL
* :hbEscapeDQuotes() -> NIL
* :hbUnescapeQuotes() -> NIL
* :hbUnescapeDQuotes() -> NIL
* :hbConvertQuotes() -> NIL
* :hbConvertDQuotes() -> NIL
* :hbBlockComment() -> NIL
* :hbStreamComment() -> NIL
* :hbDuplicateLine() -> NIL
* :hbReplaceSelection( cTxt ) -> NIL
* :hbBlockIndent( nSteps ) -> NIL
* :hbDeleteLine() -> NIL
* :hbMoveLine( nIDirection ) -> NIL
* :hbGetSelectedText() -> cQString
* :hbTextUnderCursor( lBCodeComplete ) -> cQString
* :hbShowPrototype( cTip, nRows, nCols ) -> NIL
* :hbSetCompleter( pCompleter ) -> NIL
* :hbSetFldsCompleter( pCompleter ) -> NIL
* :hbSetCurrentLineColor( pColor ) -> NIL
* :hbSetLineAreaBkColor( pColor ) -> NIL
* :hbRefresh() -> NIL
* :hbCut( nKey ) -> NIL
* :hbCopy() -> NIL
* :hbPaste() -> NIL
* :hbSetSelectionMode( nMode, lOn ) -> NIL
* :hbGetSelectionInfo() -> NIL
* :hbSetSelectionInfo( xSelectionInfo ) -> NIL
* :hbSetSelectionColor( pColor ) -> NIL
* :hbSetMatchBraces( lAll ) -> NIL
* :hbGetViewportInfo() -> NIL
* :hbApplyKey( nKey, nModifiers, cTxt ) -> NIL
* :hbHighlightArea( nTop, nLeft, nBottom, nRight, nMode ) -> NIL
* :hbTogglePersistentSelection() -> NIL
* :hbHorzRulerVisible( lVisible ) -> NIL
* :hbSetProtoStyle( cCss ) -> NIL
* :hbSelectAll() -> NIL
* :hbSetFieldsListActive( lActive ) -> NIL
* :hbToggleCodeCompetion() -> NIL
* :hbToggleCompetionTips() -> NIL
*
* $RETURNS$
* An instance of the object of type HBQPlainTextEdit
* $SEEALSO$
* QPlainTextEdit
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QPlainTextEdit
* $ONELINER$
* Creates a new HBQPlainTextEdit object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbqplaintextedit.html
* $END$
*/

View File

@@ -1,59 +1,57 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
HBQSyntaxHighlighter()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/hbqsyntaxhighlighter.html
$ONELINER$
Creates a new HBQSyntaxHighlighter object.
$INHERITS$
QSyntaxHighlighter
$SYNTAX$
HBQSyntaxHighlighter():new( ... )
HBQSyntaxHighlighter():from( pPtr_OR_oObj_of_type_HBQSyntaxHighlighter )
HBQSyntaxHighlighter():configure( pPtr_OR_oObj_of_type_HBQSyntaxHighlighter )
$ARGUMENTS$
$RETURNS$
An instance of the object of type HBQSyntaxHighlighter
$METHODS$
:hbSetMultiLineCommentFormat( pFormat ) -> NIL
:hbSetSingleLineCommentFormat( pFormat ) -> NIL
:hbSetRule( cName, cPattern, pFormat ) -> NIL
:hbSetFormat( cName, pFormat ) -> NIL
:hbSetFormatColumnSelection( nStart, nCount, pColor ) -> NIL
:hbSetRuleWithRegExp( cName, pReg, pFormat ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg
C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp
Library : hbqtgui
$SEEALSO$
QSyntaxHighlighter
$END$
* $NAME$
* HBQSyntaxHighlighter()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* HBQSyntaxHighlighter():new( ... )
* HBQSyntaxHighlighter():from( pPtr_OR_oObj_of_type_HBQSyntaxHighlighter )
* HBQSyntaxHighlighter():configure( pPtr_OR_oObj_of_type_HBQSyntaxHighlighter )
* $METHODS$
* :hbSetMultiLineCommentFormat( pFormat ) -> NIL
* :hbSetSingleLineCommentFormat( pFormat ) -> NIL
* :hbSetRule( cName, cPattern, pFormat ) -> NIL
* :hbSetFormat( cName, pFormat ) -> NIL
* :hbSetFormatColumnSelection( nStart, nCount, pColor ) -> NIL
* :hbSetRuleWithRegExp( cName, pReg, pFormat ) -> NIL
*
* $RETURNS$
* An instance of the object of type HBQSyntaxHighlighter
* $SEEALSO$
* QSyntaxHighlighter
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QSyntaxHighlighter
* $ONELINER$
* Creates a new HBQSyntaxHighlighter object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbqsyntaxhighlighter.html
* $END$
*/

View File

@@ -1,55 +1,53 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
HBQTextBlockUserData()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/hbqtextblockuserdata.html
$ONELINER$
Creates a new HBQTextBlockUserData object.
$INHERITS$
$SYNTAX$
HBQTextBlockUserData():new( ... )
HBQTextBlockUserData():from( pPtr_OR_oObj_of_type_HBQTextBlockUserData )
HBQTextBlockUserData():configure( pPtr_OR_oObj_of_type_HBQTextBlockUserData )
$ARGUMENTS$
$RETURNS$
An instance of the object of type HBQTextBlockUserData
$METHODS$
:hbSetState( nState ) -> nInt
:hbState() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/THBQTextBlockUserData.prg
C++ wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* HBQTextBlockUserData()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/THBQTextBlockUserData.prg
* C++ wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* HBQTextBlockUserData():new( ... )
* HBQTextBlockUserData():from( pPtr_OR_oObj_of_type_HBQTextBlockUserData )
* HBQTextBlockUserData():configure( pPtr_OR_oObj_of_type_HBQTextBlockUserData )
* $METHODS$
* :hbSetState( nState ) -> nInt
* :hbState() -> nInt
*
* $RETURNS$
* An instance of the object of type HBQTextBlockUserData
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new HBQTextBlockUserData object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbqtextblockuserdata.html
* $END$
*/

View File

@@ -1,57 +1,55 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
HBSlots()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/hbslots.html
$ONELINER$
Creates a new HBSlots object.
$INHERITS$
QObject
$SYNTAX$
HBSlots():new( ... )
HBSlots():from( pPtr_OR_oObj_of_type_HBSlots )
HBSlots():configure( pPtr_OR_oObj_of_type_HBSlots )
$ARGUMENTS$
$RETURNS$
An instance of the object of type HBSlots
$METHODS$
:hbConnect( xPObj, pSlot, xBBlock ) -> lBool
:hbDisconnect( xObj, pSlot ) -> lBool
:hbIsConnected( xObj, pSlot ) -> lBool
:hbClear() -> lBool
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/THBSlots.prg
C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp
Library : hbqtcore
$SEEALSO$
QObject
$END$
* $NAME$
* HBSlots()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/THBSlots.prg
* C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* HBSlots():new( ... )
* HBSlots():from( pPtr_OR_oObj_of_type_HBSlots )
* HBSlots():configure( pPtr_OR_oObj_of_type_HBSlots )
* $METHODS$
* :hbConnect( xPObj, pSlot, xBBlock ) -> lBool
* :hbDisconnect( xObj, pSlot ) -> lBool
* :hbIsConnected( xObj, pSlot ) -> lBool
* :hbClear() -> lBool
*
* $RETURNS$
* An instance of the object of type HBSlots
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new HBSlots object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/hbslots.html
* $END$
*/

View File

@@ -1,79 +1,77 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractButton()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractbutton.html
$ONELINER$
Creates a new QAbstractButton object.
$INHERITS$
QWidget
$SYNTAX$
QAbstractButton():new( ... )
QAbstractButton():from( pPtr_OR_oObj_of_type_QAbstractButton )
QAbstractButton():configure( pPtr_OR_oObj_of_type_QAbstractButton )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractButton
$METHODS$
:autoExclusive() -> lBool
:autoRepeat() -> lBool
:autoRepeatDelay() -> nInt
:autoRepeatInterval() -> nInt
:group() -> pQButtonGroup
:icon() -> pQIcon
:iconSize() -> pQSize
:isCheckable() -> lBool
:isChecked() -> lBool
:isDown() -> lBool
:setAutoExclusive( lBool ) -> NIL
:setAutoRepeat( lBool ) -> NIL
:setAutoRepeatDelay( nInt ) -> NIL
:setAutoRepeatInterval( nInt ) -> NIL
:setCheckable( lBool ) -> NIL
:setDown( lBool ) -> NIL
:setIcon( cIcon ) -> NIL
:setShortcut( pKey ) -> NIL
:setText( cText ) -> NIL
:shortcut() -> pQKeySequence
:text() -> cQString
:animateClick( nMsec ) -> NIL
:click() -> NIL
:setChecked( lBool ) -> NIL
:setIconSize( pSize ) -> NIL
:toggle() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractButton.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QAbstractButton()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractButton.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractButton():new( ... )
* QAbstractButton():from( pPtr_OR_oObj_of_type_QAbstractButton )
* QAbstractButton():configure( pPtr_OR_oObj_of_type_QAbstractButton )
* $METHODS$
* :autoExclusive() -> lBool
* :autoRepeat() -> lBool
* :autoRepeatDelay() -> nInt
* :autoRepeatInterval() -> nInt
* :group() -> pQButtonGroup
* :icon() -> pQIcon
* :iconSize() -> pQSize
* :isCheckable() -> lBool
* :isChecked() -> lBool
* :isDown() -> lBool
* :setAutoExclusive( lBool ) -> NIL
* :setAutoRepeat( lBool ) -> NIL
* :setAutoRepeatDelay( nInt ) -> NIL
* :setAutoRepeatInterval( nInt ) -> NIL
* :setCheckable( lBool ) -> NIL
* :setDown( lBool ) -> NIL
* :setIcon( cIcon ) -> NIL
* :setShortcut( pKey ) -> NIL
* :setText( cText ) -> NIL
* :shortcut() -> pQKeySequence
* :text() -> cQString
* :animateClick( nMsec ) -> NIL
* :click() -> NIL
* :setChecked( lBool ) -> NIL
* :setIconSize( pSize ) -> NIL
* :toggle() -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractButton
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QAbstractButton object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractbutton.html
* $END$
*/

View File

@@ -1,60 +1,58 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractItemDelegate()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractitemdelegate.html
$ONELINER$
Creates a new QAbstractItemDelegate object.
$INHERITS$
QObject
$SYNTAX$
QAbstractItemDelegate():new( ... )
QAbstractItemDelegate():from( pPtr_OR_oObj_of_type_QAbstractItemDelegate )
QAbstractItemDelegate():configure( pPtr_OR_oObj_of_type_QAbstractItemDelegate )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractItemDelegate
$METHODS$
:createEditor( pParent, pOption, pIndex ) -> pQWidget
:editorEvent( pEvent, pModel, pOption, pIndex ) -> lBool
:paint( pPainter, pOption, pIndex ) -> NIL
:setEditorData( pEditor, pIndex ) -> NIL
:setModelData( pEditor, pModel, pIndex ) -> NIL
:sizeHint( pOption, pIndex ) -> pQSize
:updateEditorGeometry( pEditor, pOption, pIndex ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractItemDelegate.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp
Library : hbqtgui
$SEEALSO$
QObject
$END$
* $NAME$
* QAbstractItemDelegate()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractItemDelegate.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractItemDelegate():new( ... )
* QAbstractItemDelegate():from( pPtr_OR_oObj_of_type_QAbstractItemDelegate )
* QAbstractItemDelegate():configure( pPtr_OR_oObj_of_type_QAbstractItemDelegate )
* $METHODS$
* :createEditor( pParent, pOption, pIndex ) -> pQWidget
* :editorEvent( pEvent, pModel, pOption, pIndex ) -> lBool
* :paint( pPainter, pOption, pIndex ) -> NIL
* :setEditorData( pEditor, pIndex ) -> NIL
* :setModelData( pEditor, pModel, pIndex ) -> NIL
* :sizeHint( pOption, pIndex ) -> pQSize
* :updateEditorGeometry( pEditor, pOption, pIndex ) -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractItemDelegate
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QAbstractItemDelegate object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemdelegate.html
* $END$
*/

View File

@@ -1,85 +1,83 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractItemModel()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractitemmodel.html
$ONELINER$
Creates a new QAbstractItemModel object.
$INHERITS$
QObject
$SYNTAX$
QAbstractItemModel():new( ... )
QAbstractItemModel():from( pPtr_OR_oObj_of_type_QAbstractItemModel )
QAbstractItemModel():configure( pPtr_OR_oObj_of_type_QAbstractItemModel )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractItemModel
$METHODS$
:buddy( pIndex ) -> pQModelIndex
:canFetchMore( pParent ) -> lBool
:columnCount( pParent ) -> nInt
:data( pIndex, nRole ) -> pQVariant
:dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool
:fetchMore( pParent ) -> NIL
:flags( pIndex ) -> nQt::ItemFlags
:hasChildren( pParent ) -> lBool
:hasIndex( nRow, nColumn, pParent ) -> lBool
:headerData( nSection, nOrientation, nRole ) -> pQVariant
:index( nRow, nColumn, pParent ) -> pQModelIndex
:insertColumn( nColumn, pParent ) -> lBool
:insertColumns( nColumn, nCount, pParent ) -> lBool
:insertRow( nRow, pParent ) -> lBool
:insertRows( nRow, nCount, pParent ) -> lBool
:mimeTypes() -> pQStringList
:parent( pIndex ) -> pQModelIndex
:removeColumn( nColumn, pParent ) -> lBool
:removeColumns( nColumn, nCount, pParent ) -> lBool
:removeRow( nRow, pParent ) -> lBool
:removeRows( nRow, nCount, pParent ) -> lBool
:rowCount( pParent ) -> nInt
:setData( pIndex, pValue, nRole ) -> lBool
:setHeaderData( nSection, nOrientation, pValue, nRole ) -> lBool
:setSupportedDragActions( nActions ) -> NIL
:sibling( nRow, nColumn, pIndex ) -> pQModelIndex
:sort( nColumn, nOrder ) -> NIL
:span( pIndex ) -> pQSize
:supportedDragActions() -> nQt::DropActions
:supportedDropActions() -> nQt::DropActions
:revert() -> NIL
:submit() -> lBool
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQAbstractItemModel.prg
C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp
Library : hbqtcore
$SEEALSO$
QObject
$END$
* $NAME$
* QAbstractItemModel()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractItemModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractItemModel():new( ... )
* QAbstractItemModel():from( pPtr_OR_oObj_of_type_QAbstractItemModel )
* QAbstractItemModel():configure( pPtr_OR_oObj_of_type_QAbstractItemModel )
* $METHODS$
* :buddy( pIndex ) -> pQModelIndex
* :canFetchMore( pParent ) -> lBool
* :columnCount( pParent ) -> nInt
* :data( pIndex, nRole ) -> pQVariant
* :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool
* :fetchMore( pParent ) -> NIL
* :flags( pIndex ) -> nQt::ItemFlags
* :hasChildren( pParent ) -> lBool
* :hasIndex( nRow, nColumn, pParent ) -> lBool
* :headerData( nSection, nOrientation, nRole ) -> pQVariant
* :index( nRow, nColumn, pParent ) -> pQModelIndex
* :insertColumn( nColumn, pParent ) -> lBool
* :insertColumns( nColumn, nCount, pParent ) -> lBool
* :insertRow( nRow, pParent ) -> lBool
* :insertRows( nRow, nCount, pParent ) -> lBool
* :mimeTypes() -> pQStringList
* :parent( pIndex ) -> pQModelIndex
* :removeColumn( nColumn, pParent ) -> lBool
* :removeColumns( nColumn, nCount, pParent ) -> lBool
* :removeRow( nRow, pParent ) -> lBool
* :removeRows( nRow, nCount, pParent ) -> lBool
* :rowCount( pParent ) -> nInt
* :setData( pIndex, pValue, nRole ) -> lBool
* :setHeaderData( nSection, nOrientation, pValue, nRole ) -> lBool
* :setSupportedDragActions( nActions ) -> NIL
* :sibling( nRow, nColumn, pIndex ) -> pQModelIndex
* :sort( nColumn, nOrder ) -> NIL
* :span( pIndex ) -> pQSize
* :supportedDragActions() -> nQt::DropActions
* :supportedDropActions() -> nQt::DropActions
* :revert() -> NIL
* :submit() -> lBool
*
* $RETURNS$
* An instance of the object of type QAbstractItemModel
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QAbstractItemModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemmodel.html
* $END$
*/

View File

@@ -1,116 +1,114 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractItemView()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractitemview.html
$ONELINER$
Creates a new QAbstractItemView object.
$INHERITS$
QAbstractScrollArea
$SYNTAX$
QAbstractItemView():new( ... )
QAbstractItemView():from( pPtr_OR_oObj_of_type_QAbstractItemView )
QAbstractItemView():configure( pPtr_OR_oObj_of_type_QAbstractItemView )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractItemView
$METHODS$
:alternatingRowColors() -> lBool
:autoScrollMargin() -> nInt
:closePersistentEditor( pIndex ) -> NIL
:currentIndex() -> pQModelIndex
:dragDropMode() -> nDragDropMode
:dragDropOverwriteMode() -> lBool
:dragEnabled() -> lBool
:editTriggers() -> nEditTriggers
:hasAutoScroll() -> lBool
:horizontalScrollMode() -> nScrollMode
:iconSize() -> pQSize
:indexAt( pPoint ) -> pQModelIndex
:indexWidget( pIndex ) -> pQWidget
:itemDelegate() -> pQAbstractItemDelegate
:itemDelegate_1( pIndex ) -> pQAbstractItemDelegate
:itemDelegateForColumn( nColumn ) -> pQAbstractItemDelegate
:itemDelegateForRow( nRow ) -> pQAbstractItemDelegate
:keyboardSearch( cSearch ) -> NIL
:model() -> pQAbstractItemModel
:openPersistentEditor( pIndex ) -> NIL
:rootIndex() -> pQModelIndex
:scrollTo( pIndex, nHint ) -> NIL
:selectionBehavior() -> nQAbstractItemView::SelectionBehavior
:selectionMode() -> nQAbstractItemView::SelectionMode
:selectionModel() -> pQItemSelectionModel
:setAlternatingRowColors( lEnable ) -> NIL
:setAutoScroll( lEnable ) -> NIL
:setAutoScrollMargin( nMargin ) -> NIL
:setDragDropMode( nBehavior ) -> NIL
:setDragDropOverwriteMode( lOverwrite ) -> NIL
:setDragEnabled( lEnable ) -> NIL
:setDropIndicatorShown( lEnable ) -> NIL
:setEditTriggers( nTriggers ) -> NIL
:setHorizontalScrollMode( nMode ) -> NIL
:setIconSize( pSize ) -> NIL
:setIndexWidget( pIndex, pWidget ) -> NIL
:setItemDelegate( pDelegate ) -> NIL
:setItemDelegateForColumn( nColumn, pDelegate ) -> NIL
:setItemDelegateForRow( nRow, pDelegate ) -> NIL
:setModel( pModel ) -> NIL
:setSelectionBehavior( nBehavior ) -> NIL
:setSelectionMode( nMode ) -> NIL
:setSelectionModel( pSelectionModel ) -> NIL
:setTabKeyNavigation( lEnable ) -> NIL
:setTextElideMode( nMode ) -> NIL
:setVerticalScrollMode( nMode ) -> NIL
:showDropIndicator() -> lBool
:sizeHintForColumn( nColumn ) -> nInt
:sizeHintForIndex( pIndex ) -> pQSize
:sizeHintForRow( nRow ) -> nInt
:tabKeyNavigation() -> lBool
:textElideMode() -> nQt::TextElideMode
:verticalScrollMode() -> nScrollMode
:visualRect( pIndex ) -> pQRect
:clearSelection() -> NIL
:edit( pIndex ) -> NIL
:reset() -> NIL
:scrollToBottom() -> NIL
:scrollToTop() -> NIL
:selectAll() -> NIL
:setCurrentIndex( pIndex ) -> NIL
:setRootIndex( pIndex ) -> NIL
:update( pIndex ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractItemView.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp
Library : hbqtgui
$SEEALSO$
QAbstractScrollArea
$END$
* $NAME$
* QAbstractItemView()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractItemView.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractItemView():new( ... )
* QAbstractItemView():from( pPtr_OR_oObj_of_type_QAbstractItemView )
* QAbstractItemView():configure( pPtr_OR_oObj_of_type_QAbstractItemView )
* $METHODS$
* :alternatingRowColors() -> lBool
* :autoScrollMargin() -> nInt
* :closePersistentEditor( pIndex ) -> NIL
* :currentIndex() -> pQModelIndex
* :dragDropMode() -> nDragDropMode
* :dragDropOverwriteMode() -> lBool
* :dragEnabled() -> lBool
* :editTriggers() -> nEditTriggers
* :hasAutoScroll() -> lBool
* :horizontalScrollMode() -> nScrollMode
* :iconSize() -> pQSize
* :indexAt( pPoint ) -> pQModelIndex
* :indexWidget( pIndex ) -> pQWidget
* :itemDelegate() -> pQAbstractItemDelegate
* :itemDelegate_1( pIndex ) -> pQAbstractItemDelegate
* :itemDelegateForColumn( nColumn ) -> pQAbstractItemDelegate
* :itemDelegateForRow( nRow ) -> pQAbstractItemDelegate
* :keyboardSearch( cSearch ) -> NIL
* :model() -> pQAbstractItemModel
* :openPersistentEditor( pIndex ) -> NIL
* :rootIndex() -> pQModelIndex
* :scrollTo( pIndex, nHint ) -> NIL
* :selectionBehavior() -> nQAbstractItemView::SelectionBehavior
* :selectionMode() -> nQAbstractItemView::SelectionMode
* :selectionModel() -> pQItemSelectionModel
* :setAlternatingRowColors( lEnable ) -> NIL
* :setAutoScroll( lEnable ) -> NIL
* :setAutoScrollMargin( nMargin ) -> NIL
* :setDragDropMode( nBehavior ) -> NIL
* :setDragDropOverwriteMode( lOverwrite ) -> NIL
* :setDragEnabled( lEnable ) -> NIL
* :setDropIndicatorShown( lEnable ) -> NIL
* :setEditTriggers( nTriggers ) -> NIL
* :setHorizontalScrollMode( nMode ) -> NIL
* :setIconSize( pSize ) -> NIL
* :setIndexWidget( pIndex, pWidget ) -> NIL
* :setItemDelegate( pDelegate ) -> NIL
* :setItemDelegateForColumn( nColumn, pDelegate ) -> NIL
* :setItemDelegateForRow( nRow, pDelegate ) -> NIL
* :setModel( pModel ) -> NIL
* :setSelectionBehavior( nBehavior ) -> NIL
* :setSelectionMode( nMode ) -> NIL
* :setSelectionModel( pSelectionModel ) -> NIL
* :setTabKeyNavigation( lEnable ) -> NIL
* :setTextElideMode( nMode ) -> NIL
* :setVerticalScrollMode( nMode ) -> NIL
* :showDropIndicator() -> lBool
* :sizeHintForColumn( nColumn ) -> nInt
* :sizeHintForIndex( pIndex ) -> pQSize
* :sizeHintForRow( nRow ) -> nInt
* :tabKeyNavigation() -> lBool
* :textElideMode() -> nQt::TextElideMode
* :verticalScrollMode() -> nScrollMode
* :visualRect( pIndex ) -> pQRect
* :clearSelection() -> NIL
* :edit( pIndex ) -> NIL
* :reset() -> NIL
* :scrollToBottom() -> NIL
* :scrollToTop() -> NIL
* :selectAll() -> NIL
* :setCurrentIndex( pIndex ) -> NIL
* :setRootIndex( pIndex ) -> NIL
* :update( pIndex ) -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractItemView
* $SEEALSO$
* QAbstractScrollArea
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractScrollArea
* $ONELINER$
* Creates a new QAbstractItemView object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractitemview.html
* $END$
*/

View File

@@ -1,54 +1,52 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractListModel()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractlistmodel.html
$ONELINER$
Creates a new QAbstractListModel object.
$INHERITS$
QAbstractItemModel
$SYNTAX$
QAbstractListModel():new( ... )
QAbstractListModel():from( pPtr_OR_oObj_of_type_QAbstractListModel )
QAbstractListModel():configure( pPtr_OR_oObj_of_type_QAbstractListModel )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractListModel
$METHODS$
:index( nRow, nColumn, pParent ) -> pQModelIndex
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQAbstractListModel.prg
C++ wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp
Library : hbqtcore
$SEEALSO$
QAbstractItemModel
$END$
* $NAME$
* QAbstractListModel()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractListModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractListModel():new( ... )
* QAbstractListModel():from( pPtr_OR_oObj_of_type_QAbstractListModel )
* QAbstractListModel():configure( pPtr_OR_oObj_of_type_QAbstractListModel )
* $METHODS$
* :index( nRow, nColumn, pParent ) -> pQModelIndex
*
* $RETURNS$
* An instance of the object of type QAbstractListModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QAbstractListModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractlistmodel.html
* $END$
*/

View File

@@ -1,63 +1,61 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractPrintDialog()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractprintdialog.html
$ONELINER$
Creates a new QAbstractPrintDialog object.
$INHERITS$
QDialog
$SYNTAX$
QAbstractPrintDialog():new( ... )
QAbstractPrintDialog():from( pPtr_OR_oObj_of_type_QAbstractPrintDialog )
QAbstractPrintDialog():configure( pPtr_OR_oObj_of_type_QAbstractPrintDialog )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractPrintDialog
$METHODS$
:exec() -> nInt
:fromPage() -> nInt
:maxPage() -> nInt
:minPage() -> nInt
:printRange() -> nPrintRange
:printer() -> pQPrinter
:setFromTo( nFrom, nTo ) -> NIL
:setMinMax( nMin, nMax ) -> NIL
:setPrintRange( nRange ) -> NIL
:toPage() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractPrintDialog.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp
Library : hbqtgui
$SEEALSO$
QDialog
$END$
* $NAME$
* QAbstractPrintDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractPrintDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractPrintDialog():new( ... )
* QAbstractPrintDialog():from( pPtr_OR_oObj_of_type_QAbstractPrintDialog )
* QAbstractPrintDialog():configure( pPtr_OR_oObj_of_type_QAbstractPrintDialog )
* $METHODS$
* :exec() -> nInt
* :fromPage() -> nInt
* :maxPage() -> nInt
* :minPage() -> nInt
* :printRange() -> nPrintRange
* :printer() -> pQPrinter
* :setFromTo( nFrom, nTo ) -> NIL
* :setMinMax( nMin, nMax ) -> NIL
* :setPrintRange( nRange ) -> NIL
* :toPage() -> nInt
*
* $RETURNS$
* An instance of the object of type QAbstractPrintDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QAbstractPrintDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractprintdialog.html
* $END$
*/

View File

@@ -1,59 +1,57 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractProxyModel()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractproxymodel.html
$ONELINER$
Creates a new QAbstractProxyModel object.
$INHERITS$
QAbstractItemModel
$SYNTAX$
QAbstractProxyModel():new( ... )
QAbstractProxyModel():from( pPtr_OR_oObj_of_type_QAbstractProxyModel )
QAbstractProxyModel():configure( pPtr_OR_oObj_of_type_QAbstractProxyModel )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractProxyModel
$METHODS$
:mapFromSource( pSourceIndex ) -> pQModelIndex
:mapSelectionFromSource( pSourceSelection ) -> pQItemSelection
:mapSelectionToSource( pProxySelection ) -> pQItemSelection
:mapToSource( pProxyIndex ) -> pQModelIndex
:setSourceModel( pSourceModel ) -> NIL
:sourceModel() -> pQAbstractItemModel
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractProxyModel.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp
Library : hbqtgui
$SEEALSO$
QAbstractItemModel
$END$
* $NAME$
* QAbstractProxyModel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractProxyModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractProxyModel():new( ... )
* QAbstractProxyModel():from( pPtr_OR_oObj_of_type_QAbstractProxyModel )
* QAbstractProxyModel():configure( pPtr_OR_oObj_of_type_QAbstractProxyModel )
* $METHODS$
* :mapFromSource( pSourceIndex ) -> pQModelIndex
* :mapSelectionFromSource( pSourceSelection ) -> pQItemSelection
* :mapSelectionToSource( pProxySelection ) -> pQItemSelection
* :mapToSource( pProxyIndex ) -> pQModelIndex
* :setSourceModel( pSourceModel ) -> NIL
* :sourceModel() -> pQAbstractItemModel
*
* $RETURNS$
* An instance of the object of type QAbstractProxyModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QAbstractProxyModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractproxymodel.html
* $END$
*/

View File

@@ -1,67 +1,65 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractScrollArea()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractscrollarea.html
$ONELINER$
Creates a new QAbstractScrollArea object.
$INHERITS$
QFrame
$SYNTAX$
QAbstractScrollArea():new( ... )
QAbstractScrollArea():from( pPtr_OR_oObj_of_type_QAbstractScrollArea )
QAbstractScrollArea():configure( pPtr_OR_oObj_of_type_QAbstractScrollArea )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractScrollArea
$METHODS$
:addScrollBarWidget( pWidget, nAlignment ) -> NIL
:cornerWidget() -> pQWidget
:horizontalScrollBar() -> pQScrollBar
:horizontalScrollBarPolicy() -> nQt::ScrollBarPolicy
:maximumViewportSize() -> pQSize
:setCornerWidget( pWidget ) -> NIL
:setHorizontalScrollBar( pScrollBar ) -> NIL
:setHorizontalScrollBarPolicy( nQt::ScrollBarPolicy ) -> NIL
:setVerticalScrollBar( pScrollBar ) -> NIL
:setVerticalScrollBarPolicy( nQt::ScrollBarPolicy ) -> NIL
:setViewport( pWidget ) -> NIL
:verticalScrollBar() -> pQScrollBar
:verticalScrollBarPolicy() -> nQt::ScrollBarPolicy
:viewport() -> pQWidget
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractScrollArea.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp
Library : hbqtgui
$SEEALSO$
QFrame
$END$
* $NAME$
* QAbstractScrollArea()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractScrollArea.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractScrollArea():new( ... )
* QAbstractScrollArea():from( pPtr_OR_oObj_of_type_QAbstractScrollArea )
* QAbstractScrollArea():configure( pPtr_OR_oObj_of_type_QAbstractScrollArea )
* $METHODS$
* :addScrollBarWidget( pWidget, nAlignment ) -> NIL
* :cornerWidget() -> pQWidget
* :horizontalScrollBar() -> pQScrollBar
* :horizontalScrollBarPolicy() -> nQt::ScrollBarPolicy
* :maximumViewportSize() -> pQSize
* :setCornerWidget( pWidget ) -> NIL
* :setHorizontalScrollBar( pScrollBar ) -> NIL
* :setHorizontalScrollBarPolicy( nQt::ScrollBarPolicy ) -> NIL
* :setVerticalScrollBar( pScrollBar ) -> NIL
* :setVerticalScrollBarPolicy( nQt::ScrollBarPolicy ) -> NIL
* :setViewport( pWidget ) -> NIL
* :verticalScrollBar() -> pQScrollBar
* :verticalScrollBarPolicy() -> nQt::ScrollBarPolicy
* :viewport() -> pQWidget
*
* $RETURNS$
* An instance of the object of type QAbstractScrollArea
* $SEEALSO$
* QFrame
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QFrame
* $ONELINER$
* Creates a new QAbstractScrollArea object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractscrollarea.html
* $END$
*/

View File

@@ -1,77 +1,75 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractSlider()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractslider.html
$ONELINER$
Creates a new QAbstractSlider object.
$INHERITS$
QWidget
$SYNTAX$
QAbstractSlider():new( ... )
QAbstractSlider():from( pPtr_OR_oObj_of_type_QAbstractSlider )
QAbstractSlider():configure( pPtr_OR_oObj_of_type_QAbstractSlider )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractSlider
$METHODS$
:hasTracking() -> lBool
:invertedAppearance() -> lBool
:invertedControls() -> lBool
:isSliderDown() -> lBool
:maximum() -> nInt
:minimum() -> nInt
:orientation() -> nQt::Orientation
:pageStep() -> nInt
:setInvertedAppearance( lBool ) -> NIL
:setInvertedControls( lBool ) -> NIL
:setMaximum( nInt ) -> NIL
:setMinimum( nInt ) -> NIL
:setPageStep( nInt ) -> NIL
:setRange( nMin, nMax ) -> NIL
:setSingleStep( nInt ) -> NIL
:setSliderDown( lBool ) -> NIL
:setSliderPosition( nInt ) -> NIL
:setTracking( lEnable ) -> NIL
:singleStep() -> nInt
:sliderPosition() -> nInt
:triggerAction( nAction ) -> NIL
:value() -> nInt
:setOrientation( nQt::Orientation ) -> NIL
:setValue( nInt ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractSlider.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QAbstractSlider()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractSlider.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractSlider():new( ... )
* QAbstractSlider():from( pPtr_OR_oObj_of_type_QAbstractSlider )
* QAbstractSlider():configure( pPtr_OR_oObj_of_type_QAbstractSlider )
* $METHODS$
* :hasTracking() -> lBool
* :invertedAppearance() -> lBool
* :invertedControls() -> lBool
* :isSliderDown() -> lBool
* :maximum() -> nInt
* :minimum() -> nInt
* :orientation() -> nQt::Orientation
* :pageStep() -> nInt
* :setInvertedAppearance( lBool ) -> NIL
* :setInvertedControls( lBool ) -> NIL
* :setMaximum( nInt ) -> NIL
* :setMinimum( nInt ) -> NIL
* :setPageStep( nInt ) -> NIL
* :setRange( nMin, nMax ) -> NIL
* :setSingleStep( nInt ) -> NIL
* :setSliderDown( lBool ) -> NIL
* :setSliderPosition( nInt ) -> NIL
* :setTracking( lEnable ) -> NIL
* :singleStep() -> nInt
* :sliderPosition() -> nInt
* :triggerAction( nAction ) -> NIL
* :value() -> nInt
* :setOrientation( nQt::Orientation ) -> NIL
* :setValue( nInt ) -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractSlider
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QAbstractSlider object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractslider.html
* $END$
*/

View File

@@ -1,79 +1,77 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractSpinBox()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstractspinbox.html
$ONELINER$
Creates a new QAbstractSpinBox object.
$INHERITS$
QWidget
$SYNTAX$
QAbstractSpinBox():new( ... )
QAbstractSpinBox():from( pPtr_OR_oObj_of_type_QAbstractSpinBox )
QAbstractSpinBox():configure( pPtr_OR_oObj_of_type_QAbstractSpinBox )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractSpinBox
$METHODS$
:alignment() -> nQt::Alignment
:buttonSymbols() -> nButtonSymbols
:correctionMode() -> nCorrectionMode
:hasAcceptableInput() -> lBool
:hasFrame() -> lBool
:interpretText() -> NIL
:isAccelerated() -> lBool
:isReadOnly() -> lBool
:keyboardTracking() -> lBool
:setAccelerated( lOn ) -> NIL
:setAlignment( nFlag ) -> NIL
:setButtonSymbols( nBs ) -> NIL
:setCorrectionMode( nCm ) -> NIL
:setFrame( lBool ) -> NIL
:setKeyboardTracking( lKt ) -> NIL
:setReadOnly( lR ) -> NIL
:setSpecialValueText( cTxt ) -> NIL
:setWrapping( lW ) -> NIL
:specialValueText() -> cQString
:stepBy( nSteps ) -> NIL
:text() -> cQString
:wrapping() -> lBool
:clear() -> NIL
:selectAll() -> NIL
:stepDown() -> NIL
:stepUp() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractSpinBox.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QAbstractSpinBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractSpinBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractSpinBox():new( ... )
* QAbstractSpinBox():from( pPtr_OR_oObj_of_type_QAbstractSpinBox )
* QAbstractSpinBox():configure( pPtr_OR_oObj_of_type_QAbstractSpinBox )
* $METHODS$
* :alignment() -> nQt::Alignment
* :buttonSymbols() -> nButtonSymbols
* :correctionMode() -> nCorrectionMode
* :hasAcceptableInput() -> lBool
* :hasFrame() -> lBool
* :interpretText() -> NIL
* :isAccelerated() -> lBool
* :isReadOnly() -> lBool
* :keyboardTracking() -> lBool
* :setAccelerated( lOn ) -> NIL
* :setAlignment( nFlag ) -> NIL
* :setButtonSymbols( nBs ) -> NIL
* :setCorrectionMode( nCm ) -> NIL
* :setFrame( lBool ) -> NIL
* :setKeyboardTracking( lKt ) -> NIL
* :setReadOnly( lR ) -> NIL
* :setSpecialValueText( cTxt ) -> NIL
* :setWrapping( lW ) -> NIL
* :specialValueText() -> cQString
* :stepBy( nSteps ) -> NIL
* :text() -> cQString
* :wrapping() -> lBool
* :clear() -> NIL
* :selectAll() -> NIL
* :stepDown() -> NIL
* :stepUp() -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractSpinBox
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QAbstractSpinBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstractspinbox.html
* $END$
*/

View File

@@ -1,54 +1,52 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractTableModel()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstracttablemodel.html
$ONELINER$
Creates a new QAbstractTableModel object.
$INHERITS$
QAbstractItemModel
$SYNTAX$
QAbstractTableModel():new( ... )
QAbstractTableModel():from( pPtr_OR_oObj_of_type_QAbstractTableModel )
QAbstractTableModel():configure( pPtr_OR_oObj_of_type_QAbstractTableModel )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractTableModel
$METHODS$
:index( nRow, nColumn, pParent ) -> pQModelIndex
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQAbstractTableModel.prg
C++ wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp
Library : hbqtcore
$SEEALSO$
QAbstractItemModel
$END$
* $NAME$
* QAbstractTableModel()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQAbstractTableModel.prg
* C++ wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractTableModel():new( ... )
* QAbstractTableModel():from( pPtr_OR_oObj_of_type_QAbstractTableModel )
* QAbstractTableModel():configure( pPtr_OR_oObj_of_type_QAbstractTableModel )
* $METHODS$
* :index( nRow, nColumn, pParent ) -> pQModelIndex
*
* $RETURNS$
* An instance of the object of type QAbstractTableModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QAbstractTableModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstracttablemodel.html
* $END$
*/

View File

@@ -1,63 +1,61 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAbstractTextDocumentLayout()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qabstracttextdocumentlayout.html
$ONELINER$
Creates a new QAbstractTextDocumentLayout object.
$INHERITS$
QObject
$SYNTAX$
QAbstractTextDocumentLayout():new( ... )
QAbstractTextDocumentLayout():from( pPtr_OR_oObj_of_type_QAbstractTextDocumentLayout )
QAbstractTextDocumentLayout():configure( pPtr_OR_oObj_of_type_QAbstractTextDocumentLayout )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAbstractTextDocumentLayout
$METHODS$
:anchorAt( pPosition ) -> cQString
:blockBoundingRect( pBlock ) -> pQRectF
:document() -> pQTextDocument
:documentSize() -> pQSizeF
:frameBoundingRect( pFrame ) -> pQRectF
:hitTest( pPoint, nAccuracy ) -> nInt
:pageCount() -> nInt
:paintDevice() -> pQPaintDevice
:registerHandler( nObjectType, pComponent ) -> NIL
:setPaintDevice( pDevice ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg
C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp
Library : hbqtgui
$SEEALSO$
QObject
$END$
* $NAME$
* QAbstractTextDocumentLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAbstractTextDocumentLayout():new( ... )
* QAbstractTextDocumentLayout():from( pPtr_OR_oObj_of_type_QAbstractTextDocumentLayout )
* QAbstractTextDocumentLayout():configure( pPtr_OR_oObj_of_type_QAbstractTextDocumentLayout )
* $METHODS$
* :anchorAt( pPosition ) -> cQString
* :blockBoundingRect( pBlock ) -> pQRectF
* :document() -> pQTextDocument
* :documentSize() -> pQSizeF
* :frameBoundingRect( pFrame ) -> pQRectF
* :hitTest( pPoint, nAccuracy ) -> nInt
* :pageCount() -> nInt
* :paintDevice() -> pQPaintDevice
* :registerHandler( nObjectType, pComponent ) -> NIL
* :setPaintDevice( pDevice ) -> NIL
*
* $RETURNS$
* An instance of the object of type QAbstractTextDocumentLayout
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QAbstractTextDocumentLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qabstracttextdocumentlayout.html
* $END$
*/

View File

@@ -1,103 +1,101 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QAction()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qaction.html
$ONELINER$
Creates a new QAction object.
$INHERITS$
QObject
$SYNTAX$
QAction():new( ... )
QAction():from( pPtr_OR_oObj_of_type_QAction )
QAction():configure( pPtr_OR_oObj_of_type_QAction )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QAction
$METHODS$
:actionGroup() -> Group
:activate( nEvent ) -> NIL
:associatedWidgets() -> pQList<QWidget *>
:autoRepeat() -> lBool
:data() -> pQVariant
:font() -> pQFont
:icon() -> pQIcon
:iconText() -> cQString
:isCheckable() -> lBool
:isChecked() -> lBool
:isEnabled() -> lBool
:isIconVisibleInMenu() -> lBool
:isSeparator() -> lBool
:isVisible() -> lBool
:menu() -> pQMenu
:menuRole() -> nMenuRole
:parentWidget() -> pQWidget
:setActionGroup( pGroup ) -> NIL
:setAutoRepeat( lBool ) -> NIL
:setCheckable( lBool ) -> NIL
:setData( pUserData ) -> NIL
:setFont( pFont ) -> NIL
:setIcon( cIcon ) -> NIL
:setIconText( cText ) -> NIL
:setIconVisibleInMenu( lVisible ) -> NIL
:setMenu( pMenu ) -> NIL
:setMenuRole( nMenuRole ) -> NIL
:setSeparator( lB ) -> NIL
:setShortcut( pShortcut ) -> NIL
:setShortcutContext( nContext ) -> NIL
:setShortcuts( nKey ) -> NIL
:setStatusTip( cStatusTip ) -> NIL
:setText( cText ) -> NIL
:setToolTip( cTip ) -> NIL
:setWhatsThis( cWhat ) -> NIL
:shortcut() -> pQKeySequence
:shortcutContext() -> nQt::ShortcutContext
:shortcuts() -> pQList<QKeySequence>
:showStatusText( pWidget ) -> lBool
:statusTip() -> cQString
:text() -> cQString
:toolTip() -> cQString
:whatsThis() -> cQString
:hover() -> NIL
:setChecked( lBool ) -> NIL
:setDisabled( lB ) -> NIL
:setEnabled( lBool ) -> NIL
:setVisible( lBool ) -> NIL
:toggle() -> NIL
:trigger() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQAction.prg
C++ wrappers : contrib/hbqt/qtgui/QAction.cpp
Library : hbqtgui
$SEEALSO$
QObject
$END$
* $NAME$
* QAction()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQAction.prg
* C++ wrappers : contrib/hbqt/qtgui/QAction.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QAction():new( ... )
* QAction():from( pPtr_OR_oObj_of_type_QAction )
* QAction():configure( pPtr_OR_oObj_of_type_QAction )
* $METHODS$
* :actionGroup() -> Group
* :activate( nEvent ) -> NIL
* :associatedWidgets() -> pQList<QWidget *>
* :autoRepeat() -> lBool
* :data() -> pQVariant
* :font() -> pQFont
* :icon() -> pQIcon
* :iconText() -> cQString
* :isCheckable() -> lBool
* :isChecked() -> lBool
* :isEnabled() -> lBool
* :isIconVisibleInMenu() -> lBool
* :isSeparator() -> lBool
* :isVisible() -> lBool
* :menu() -> pQMenu
* :menuRole() -> nMenuRole
* :parentWidget() -> pQWidget
* :setActionGroup( pGroup ) -> NIL
* :setAutoRepeat( lBool ) -> NIL
* :setCheckable( lBool ) -> NIL
* :setData( pUserData ) -> NIL
* :setFont( pFont ) -> NIL
* :setIcon( cIcon ) -> NIL
* :setIconText( cText ) -> NIL
* :setIconVisibleInMenu( lVisible ) -> NIL
* :setMenu( pMenu ) -> NIL
* :setMenuRole( nMenuRole ) -> NIL
* :setSeparator( lB ) -> NIL
* :setShortcut( pShortcut ) -> NIL
* :setShortcutContext( nContext ) -> NIL
* :setShortcuts( nKey ) -> NIL
* :setStatusTip( cStatusTip ) -> NIL
* :setText( cText ) -> NIL
* :setToolTip( cTip ) -> NIL
* :setWhatsThis( cWhat ) -> NIL
* :shortcut() -> pQKeySequence
* :shortcutContext() -> nQt::ShortcutContext
* :shortcuts() -> pQList<QKeySequence>
* :showStatusText( pWidget ) -> lBool
* :statusTip() -> cQString
* :text() -> cQString
* :toolTip() -> cQString
* :whatsThis() -> cQString
* :hover() -> NIL
* :setChecked( lBool ) -> NIL
* :setDisabled( lB ) -> NIL
* :setEnabled( lBool ) -> NIL
* :setVisible( lBool ) -> NIL
* :toggle() -> NIL
* :trigger() -> NIL
*
* $RETURNS$
* An instance of the object of type QAction
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QAction object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qaction.html
* $END$
*/

View File

@@ -1,66 +1,64 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QActionGroup()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qactiongroup.html
$ONELINER$
Creates a new QActionGroup object.
$INHERITS$
QObject
$SYNTAX$
QActionGroup():new( ... )
QActionGroup():from( pPtr_OR_oObj_of_type_QActionGroup )
QActionGroup():configure( pPtr_OR_oObj_of_type_QActionGroup )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QActionGroup
$METHODS$
:actions() -> pQList<QAction *>
:addAction( pAction ) -> pQAction
:addAction_1( cText ) -> pQAction
:addAction_2( cIcon, cText ) -> pQAction
:checkedAction() -> pQAction
:isEnabled() -> lBool
:isExclusive() -> lBool
:isVisible() -> lBool
:removeAction( pAction ) -> NIL
:setDisabled( lB ) -> NIL
:setEnabled( lBool ) -> NIL
:setExclusive( lBool ) -> NIL
:setVisible( lBool ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQActionGroup.prg
C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp
Library : hbqtgui
$SEEALSO$
QObject
$END$
* $NAME$
* QActionGroup()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQActionGroup.prg
* C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QActionGroup():new( ... )
* QActionGroup():from( pPtr_OR_oObj_of_type_QActionGroup )
* QActionGroup():configure( pPtr_OR_oObj_of_type_QActionGroup )
* $METHODS$
* :actions() -> pQList<QAction *>
* :addAction( pAction ) -> pQAction
* :addAction_1( cText ) -> pQAction
* :addAction_2( cIcon, cText ) -> pQAction
* :checkedAction() -> pQAction
* :isEnabled() -> lBool
* :isExclusive() -> lBool
* :isVisible() -> lBool
* :removeAction( pAction ) -> NIL
* :setDisabled( lB ) -> NIL
* :setEnabled( lBool ) -> NIL
* :setExclusive( lBool ) -> NIL
* :setVisible( lBool ) -> NIL
*
* $RETURNS$
* An instance of the object of type QActionGroup
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QActionGroup object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qactiongroup.html
* $END$
*/

View File

@@ -1,127 +1,125 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QApplication()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qapplication.html
$ONELINER$
Creates a new QApplication object.
$INHERITS$
QCoreApplication
$SYNTAX$
QApplication():new( ... )
QApplication():from( pPtr_OR_oObj_of_type_QApplication )
QApplication():configure( pPtr_OR_oObj_of_type_QApplication )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QApplication
$METHODS$
:commitData( pManager ) -> NIL
:isSessionRestored() -> lBool
:saveState( pManager ) -> NIL
:sessionId() -> cQString
:sessionKey() -> cQString
:styleSheet() -> cQString
:activeModalWidget() -> pQWidget
:activePopupWidget() -> pQWidget
:activeWindow() -> pQWidget
:alert( pWidget, nMsec ) -> NIL
:beep() -> NIL
:changeOverrideCursor( pCursor ) -> NIL
:clipboard() -> pQClipboard
:colorSpec() -> nInt
:cursorFlashTime() -> nInt
:desktop() -> pQDesktopWidget
:desktopSettingsAware() -> lBool
:doubleClickInterval() -> nInt
:exec() -> nInt
:focusWidget() -> pQWidget
:font() -> pQFont
:font_1( pWidget ) -> pQFont
:font_2( pClassName ) -> pQFont
:fontMetrics() -> pQFontMetrics
:globalStrut() -> pQSize
:isEffectEnabled( nEffect ) -> lBool
:isLeftToRight() -> lBool
:isRightToLeft() -> lBool
:keyboardInputDirection() -> nQt::LayoutDirection
:keyboardInputInterval() -> nInt
:keyboardInputLocale() -> pQLocale
:keyboardModifiers() -> nQt::KeyboardModifiers
:layoutDirection() -> nQt::LayoutDirection
:mouseButtons() -> nQt::MouseButtons
:overrideCursor() -> pQCursor
:palette() -> pQPalette
:palette_1( pWidget ) -> pQPalette
:palette_2( pClassName ) -> pQPalette
:quitOnLastWindowClosed() -> lBool
:restoreOverrideCursor() -> NIL
:setActiveWindow( pActive ) -> NIL
:setColorSpec( nSpec ) -> NIL
:setCursorFlashTime( nInt ) -> NIL
:setDesktopSettingsAware( lOn ) -> NIL
:setDoubleClickInterval( nInt ) -> NIL
:setEffectEnabled( nEffect, lEnable ) -> NIL
:setFont( pFont, pClassName ) -> NIL
:setGlobalStrut( pQSize ) -> NIL
:setGraphicsSystem( cSystem ) -> NIL
:setKeyboardInputInterval( nInt ) -> NIL
:setLayoutDirection( nDirection ) -> NIL
:setOverrideCursor( pCursor ) -> NIL
:setPalette( pPalette, pClassName ) -> NIL
:setQuitOnLastWindowClosed( lQuit ) -> NIL
:setStartDragDistance( nL ) -> NIL
:setStartDragTime( nMs ) -> NIL
:setStyle( pStyle ) -> NIL
:setStyle_1( cStyle ) -> pQStyle
:setWheelScrollLines( nInt ) -> NIL
:setWindowIcon( cIcon ) -> NIL
:startDragDistance() -> nInt
:startDragTime() -> nInt
:style() -> pQStyle
:syncX() -> NIL
:topLevelAt( pPoint ) -> pQWidget
:topLevelAt_1( nX, nY ) -> pQWidget
:type() -> nType
:wheelScrollLines() -> nInt
:widgetAt( pPoint ) -> pQWidget
:widgetAt_1( nX, nY ) -> pQWidget
:windowIcon() -> pQIcon
:aboutQt() -> NIL
:closeAllWindows() -> NIL
:setStyleSheet( cSheet ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQApplication.prg
C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp
Library : hbqtgui
$SEEALSO$
QCoreApplication
$END$
* $NAME$
* QApplication()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQApplication.prg
* C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QApplication():new( ... )
* QApplication():from( pPtr_OR_oObj_of_type_QApplication )
* QApplication():configure( pPtr_OR_oObj_of_type_QApplication )
* $METHODS$
* :commitData( pManager ) -> NIL
* :isSessionRestored() -> lBool
* :saveState( pManager ) -> NIL
* :sessionId() -> cQString
* :sessionKey() -> cQString
* :styleSheet() -> cQString
* :activeModalWidget() -> pQWidget
* :activePopupWidget() -> pQWidget
* :activeWindow() -> pQWidget
* :alert( pWidget, nMsec ) -> NIL
* :beep() -> NIL
* :changeOverrideCursor( pCursor ) -> NIL
* :clipboard() -> pQClipboard
* :colorSpec() -> nInt
* :cursorFlashTime() -> nInt
* :desktop() -> pQDesktopWidget
* :desktopSettingsAware() -> lBool
* :doubleClickInterval() -> nInt
* :exec() -> nInt
* :focusWidget() -> pQWidget
* :font() -> pQFont
* :font_1( pWidget ) -> pQFont
* :font_2( pClassName ) -> pQFont
* :fontMetrics() -> pQFontMetrics
* :globalStrut() -> pQSize
* :isEffectEnabled( nEffect ) -> lBool
* :isLeftToRight() -> lBool
* :isRightToLeft() -> lBool
* :keyboardInputDirection() -> nQt::LayoutDirection
* :keyboardInputInterval() -> nInt
* :keyboardInputLocale() -> pQLocale
* :keyboardModifiers() -> nQt::KeyboardModifiers
* :layoutDirection() -> nQt::LayoutDirection
* :mouseButtons() -> nQt::MouseButtons
* :overrideCursor() -> pQCursor
* :palette() -> pQPalette
* :palette_1( pWidget ) -> pQPalette
* :palette_2( pClassName ) -> pQPalette
* :quitOnLastWindowClosed() -> lBool
* :restoreOverrideCursor() -> NIL
* :setActiveWindow( pActive ) -> NIL
* :setColorSpec( nSpec ) -> NIL
* :setCursorFlashTime( nInt ) -> NIL
* :setDesktopSettingsAware( lOn ) -> NIL
* :setDoubleClickInterval( nInt ) -> NIL
* :setEffectEnabled( nEffect, lEnable ) -> NIL
* :setFont( pFont, pClassName ) -> NIL
* :setGlobalStrut( pQSize ) -> NIL
* :setGraphicsSystem( cSystem ) -> NIL
* :setKeyboardInputInterval( nInt ) -> NIL
* :setLayoutDirection( nDirection ) -> NIL
* :setOverrideCursor( pCursor ) -> NIL
* :setPalette( pPalette, pClassName ) -> NIL
* :setQuitOnLastWindowClosed( lQuit ) -> NIL
* :setStartDragDistance( nL ) -> NIL
* :setStartDragTime( nMs ) -> NIL
* :setStyle( pStyle ) -> NIL
* :setStyle_1( cStyle ) -> pQStyle
* :setWheelScrollLines( nInt ) -> NIL
* :setWindowIcon( cIcon ) -> NIL
* :startDragDistance() -> nInt
* :startDragTime() -> nInt
* :style() -> pQStyle
* :syncX() -> NIL
* :topLevelAt( pPoint ) -> pQWidget
* :topLevelAt_1( nX, nY ) -> pQWidget
* :type() -> nType
* :wheelScrollLines() -> nInt
* :widgetAt( pPoint ) -> pQWidget
* :widgetAt_1( nX, nY ) -> pQWidget
* :windowIcon() -> pQIcon
* :aboutQt() -> NIL
* :closeAllWindows() -> NIL
* :setStyleSheet( cSheet ) -> NIL
*
* $RETURNS$
* An instance of the object of type QApplication
* $SEEALSO$
* QCoreApplication
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QCoreApplication
* $ONELINER$
* Creates a new QApplication object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qapplication.html
* $END$
*/

View File

@@ -1,69 +1,67 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QBitArray()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qbitarray.html
$ONELINER$
Creates a new QBitArray object.
$INHERITS$
$SYNTAX$
QBitArray():new( ... )
QBitArray():from( pPtr_OR_oObj_of_type_QBitArray )
QBitArray():configure( pPtr_OR_oObj_of_type_QBitArray )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QBitArray
$METHODS$
:at( nI ) -> lBool
:clear() -> NIL
:clearBit( nI ) -> NIL
:count() -> nInt
:count_1( lOn ) -> nInt
:fill( lValue, nSize ) -> lBool
:fill_1( lValue, nBegin, nEnd ) -> NIL
:isEmpty() -> lBool
:isNull() -> lBool
:resize( nSize ) -> NIL
:setBit( nI ) -> NIL
:setBit_1( nI, lValue ) -> NIL
:size() -> nInt
:testBit( nI ) -> lBool
:toggleBit( nI ) -> lBool
:truncate( nPos ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQBitArray.prg
C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QBitArray()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQBitArray.prg
* C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QBitArray():new( ... )
* QBitArray():from( pPtr_OR_oObj_of_type_QBitArray )
* QBitArray():configure( pPtr_OR_oObj_of_type_QBitArray )
* $METHODS$
* :at( nI ) -> lBool
* :clear() -> NIL
* :clearBit( nI ) -> NIL
* :count() -> nInt
* :count_1( lOn ) -> nInt
* :fill( lValue, nSize ) -> lBool
* :fill_1( lValue, nBegin, nEnd ) -> NIL
* :isEmpty() -> lBool
* :isNull() -> lBool
* :resize( nSize ) -> NIL
* :setBit( nI ) -> NIL
* :setBit_1( nI, lValue ) -> NIL
* :size() -> nInt
* :testBit( nI ) -> lBool
* :toggleBit( nI ) -> lBool
* :truncate( nPos ) -> NIL
*
* $RETURNS$
* An instance of the object of type QBitArray
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QBitArray object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbitarray.html
* $END$
*/

View File

@@ -1,60 +1,58 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QBitmap()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qbitmap.html
$ONELINER$
Creates a new QBitmap object.
$INHERITS$
QPixmap
$SYNTAX$
QBitmap():new( ... )
QBitmap():from( pPtr_OR_oObj_of_type_QBitmap )
QBitmap():configure( pPtr_OR_oObj_of_type_QBitmap )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QBitmap
$METHODS$
:clear() -> NIL
$DESCRIPTION$
$EXAMPLES$
oBitmap := QBitmap():new()
oBitmap := QBitmap():new( pBitmap_other )
oBitmap := QBitmap():new( nWidth, nHeight )
oBitmap := QBitmap():new( "QPixmap", pQPixmap )
oBitmap := QBitmap():new( "QSize" , pQSize )
oBitmap := QBitmap():new( cImageFilename, [ cFormat ] )
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQBitmap.prg
C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp
Library : hbqtgui
$SEEALSO$
QPixmap
$END$
* $NAME$
* QBitmap()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBitmap.prg
* C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QBitmap():new( ... )
* QBitmap():from( pPtr_OR_oObj_of_type_QBitmap )
* QBitmap():configure( pPtr_OR_oObj_of_type_QBitmap )
* $METHODS$
* :clear() -> NIL
*
* $RETURNS$
* An instance of the object of type QBitmap
* $SEEALSO$
* QPixmap
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oBitmap := QBitmap():new()
* oBitmap := QBitmap():new( pBitmap_other )
* oBitmap := QBitmap():new( nWidth, nHeight )
* oBitmap := QBitmap():new( "QPixmap", pQPixmap )
* oBitmap := QBitmap():new( "QSize" , pQSize )
* oBitmap := QBitmap():new( cImageFilename, [ cFormat ] )
*
* $INHERITS$
* QPixmap
* $ONELINER$
* Creates a new QBitmap object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbitmap.html
* $END$
*/

View File

@@ -1,73 +1,71 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QBoxLayout()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qboxlayout.html
$ONELINER$
Creates a new QBoxLayout object.
$INHERITS$
QLayout
$SYNTAX$
QBoxLayout():new( ... )
QBoxLayout():from( pPtr_OR_oObj_of_type_QBoxLayout )
QBoxLayout():configure( pPtr_OR_oObj_of_type_QBoxLayout )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QBoxLayout
$METHODS$
:addLayout( pLayout, nStretch ) -> NIL
:addSpacerItem( pSpacerItem ) -> NIL
:addSpacing( nSize ) -> NIL
:addStretch( nStretch ) -> NIL
:addStrut( nSize ) -> NIL
:addWidget( pWidget, nStretch, nAlignment ) -> NIL
:direction() -> nDirection
:insertLayout( nIndex, pLayout, nStretch ) -> NIL
:insertSpacerItem( nIndex, pSpacerItem ) -> NIL
:insertSpacing( nIndex, nSize ) -> NIL
:insertStretch( nIndex, nStretch ) -> NIL
:insertWidget( nIndex, pWidget, nStretch, nAlignment ) -> NIL
:invalidate() -> NIL
:setDirection( nDirection ) -> NIL
:setSpacing( nSpacing ) -> NIL
:setStretch( nIndex, nStretch ) -> NIL
:setStretchFactor( pWidget, nStretch ) -> lBool
:setStretchFactor_1( pLayout, nStretch ) -> lBool
:spacing() -> nInt
:stretch( nIndex ) -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQBoxLayout.prg
C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp
Library : hbqtgui
$SEEALSO$
QLayout
$END$
* $NAME$
* QBoxLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBoxLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QBoxLayout():new( ... )
* QBoxLayout():from( pPtr_OR_oObj_of_type_QBoxLayout )
* QBoxLayout():configure( pPtr_OR_oObj_of_type_QBoxLayout )
* $METHODS$
* :addLayout( pLayout, nStretch ) -> NIL
* :addSpacerItem( pSpacerItem ) -> NIL
* :addSpacing( nSize ) -> NIL
* :addStretch( nStretch ) -> NIL
* :addStrut( nSize ) -> NIL
* :addWidget( pWidget, nStretch, nAlignment ) -> NIL
* :direction() -> nDirection
* :insertLayout( nIndex, pLayout, nStretch ) -> NIL
* :insertSpacerItem( nIndex, pSpacerItem ) -> NIL
* :insertSpacing( nIndex, nSize ) -> NIL
* :insertStretch( nIndex, nStretch ) -> NIL
* :insertWidget( nIndex, pWidget, nStretch, nAlignment ) -> NIL
* :invalidate() -> NIL
* :setDirection( nDirection ) -> NIL
* :setSpacing( nSpacing ) -> NIL
* :setStretch( nIndex, nStretch ) -> NIL
* :setStretchFactor( pWidget, nStretch ) -> lBool
* :setStretchFactor_1( pLayout, nStretch ) -> lBool
* :spacing() -> nInt
* :stretch( nIndex ) -> nInt
*
* $RETURNS$
* An instance of the object of type QBoxLayout
* $SEEALSO$
* QLayout
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QLayout
* $ONELINER$
* Creates a new QBoxLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qboxlayout.html
* $END$
*/

View File

@@ -1,78 +1,76 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QBrush()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qbrush.html
$ONELINER$
Creates a new QBrush object.
$INHERITS$
$SYNTAX$
QBrush():new( ... )
QBrush():from( pPtr_OR_oObj_of_type_QBrush )
QBrush():configure( pPtr_OR_oObj_of_type_QBrush )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QBrush
$METHODS$
:color() -> pQColor
:isOpaque() -> lBool
:matrix() -> pQMatrix
:setColor( pColor ) -> NIL
:setColor_1( nColor ) -> NIL
:setMatrix( pMatrix ) -> NIL
:setStyle( nStyle ) -> NIL
:setTexture( pPixmap ) -> NIL
:setTextureImage( pImage ) -> NIL
:setTransform( pMatrix ) -> NIL
:style() -> nQt::BrushStyle
:texture() -> pQPixmap
:textureImage() -> pQImage
:transform() -> pQTransform
$DESCRIPTION$
$EXAMPLES$
oBrush := QBrush():new()
oBrush := QBrush():new( pQBrush )
oBrush := QBrush():new( nQt_GlobalColor )
oBrush := QBrush():new( nQt_GlobalColor, nQt_BrushStyle )
oBrush := QBrush():new( pQColor, nQt_BrushStyle )
oBrush := QBrush():new( pQColor, pQPixmap )
oBrush := QBrush():new( nQt_GlobalColor, pQPixmap )
oBrush := QBrush():new( "QPixmap" , pQPixmap )
oBrush := QBrush():new( "QImage" , pQImage )
oBrush := QBrush():new( "QGradient", pQGradient )
oBrush := QBrush():new( "QColor" , pQColor, [ nQt_BrushStyle = Qt_SolidPattern ] )
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQBrush.prg
C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QBrush()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQBrush.prg
* C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QBrush():new( ... )
* QBrush():from( pPtr_OR_oObj_of_type_QBrush )
* QBrush():configure( pPtr_OR_oObj_of_type_QBrush )
* $METHODS$
* :color() -> pQColor
* :isOpaque() -> lBool
* :matrix() -> pQMatrix
* :setColor( pColor ) -> NIL
* :setColor_1( nColor ) -> NIL
* :setMatrix( pMatrix ) -> NIL
* :setStyle( nStyle ) -> NIL
* :setTexture( pPixmap ) -> NIL
* :setTextureImage( pImage ) -> NIL
* :setTransform( pMatrix ) -> NIL
* :style() -> nQt::BrushStyle
* :texture() -> pQPixmap
* :textureImage() -> pQImage
* :transform() -> pQTransform
*
* $RETURNS$
* An instance of the object of type QBrush
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oBrush := QBrush():new()
* oBrush := QBrush():new( pQBrush )
* oBrush := QBrush():new( nQt_GlobalColor )
* oBrush := QBrush():new( nQt_GlobalColor, nQt_BrushStyle )
* oBrush := QBrush():new( pQColor, nQt_BrushStyle )
* oBrush := QBrush():new( pQColor, pQPixmap )
* oBrush := QBrush():new( nQt_GlobalColor, pQPixmap )
* oBrush := QBrush():new( "QPixmap" , pQPixmap )
* oBrush := QBrush():new( "QImage" , pQImage )
* oBrush := QBrush():new( "QGradient", pQGradient )
* oBrush := QBrush():new( "QColor" , pQColor, [ nQt_BrushStyle = Qt_SolidPattern ] )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QBrush object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbrush.html
* $END$
*/

View File

@@ -1,59 +1,57 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QBuffer()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qbuffer.html
$ONELINER$
Creates a new QBuffer object.
$INHERITS$
QIODevice
$SYNTAX$
QBuffer():new( ... )
QBuffer():from( pPtr_OR_oObj_of_type_QBuffer )
QBuffer():configure( pPtr_OR_oObj_of_type_QBuffer )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QBuffer
$METHODS$
:buffer() -> pQByteArray
:buffer_1() -> pQByteArray
:data() -> pQByteArray
:setBuffer( pByteArray ) -> NIL
:setData( pData, nSize ) -> NIL
:setData_1( pData ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQBuffer.prg
C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp
Library : hbqtcore
$SEEALSO$
QIODevice
$END$
* $NAME$
* QBuffer()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQBuffer.prg
* C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QBuffer():new( ... )
* QBuffer():from( pPtr_OR_oObj_of_type_QBuffer )
* QBuffer():configure( pPtr_OR_oObj_of_type_QBuffer )
* $METHODS$
* :buffer() -> pQByteArray
* :buffer_1() -> pQByteArray
* :data() -> pQByteArray
* :setBuffer( pByteArray ) -> NIL
* :setData( pData, nSize ) -> NIL
* :setData_1( pData ) -> NIL
*
* $RETURNS$
* An instance of the object of type QBuffer
* $SEEALSO$
* QIODevice
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QIODevice
* $ONELINER$
* Creates a new QBuffer object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbuffer.html
* $END$
*/

View File

@@ -1,64 +1,62 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QButtonGroup()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qbuttongroup.html
$ONELINER$
Creates a new QButtonGroup object.
$INHERITS$
QObject
$SYNTAX$
QButtonGroup():new( ... )
QButtonGroup():from( pPtr_OR_oObj_of_type_QButtonGroup )
QButtonGroup():configure( pPtr_OR_oObj_of_type_QButtonGroup )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QButtonGroup
$METHODS$
:addButton( pButton ) -> NIL
:addButton_1( pButton, nId ) -> NIL
:button( nId ) -> pQAbstractButton
:buttons() -> pQList<QAbstractButton *>
:checkedButton() -> pQAbstractButton
:checkedId() -> nInt
:exclusive() -> lBool
:id( pButton ) -> nInt
:removeButton( pButton ) -> NIL
:setExclusive( lBool ) -> NIL
:setId( pButton, nId ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQButtonGroup.prg
C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp
Library : hbqtgui
$SEEALSO$
QObject
$END$
* $NAME$
* QButtonGroup()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQButtonGroup.prg
* C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QButtonGroup():new( ... )
* QButtonGroup():from( pPtr_OR_oObj_of_type_QButtonGroup )
* QButtonGroup():configure( pPtr_OR_oObj_of_type_QButtonGroup )
* $METHODS$
* :addButton( pButton ) -> NIL
* :addButton_1( pButton, nId ) -> NIL
* :button( nId ) -> pQAbstractButton
* :buttons() -> pQList<QAbstractButton *>
* :checkedButton() -> pQAbstractButton
* :checkedId() -> nInt
* :exclusive() -> lBool
* :id( pButton ) -> nInt
* :removeButton( pButton ) -> NIL
* :setExclusive( lBool ) -> NIL
* :setId( pButton, nId ) -> NIL
*
* $RETURNS$
* An instance of the object of type QButtonGroup
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QButtonGroup object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbuttongroup.html
* $END$
*/

View File

@@ -1,103 +1,101 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QByteArray()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qbytearray.html
$ONELINER$
Creates a new QByteArray object.
$INHERITS$
$SYNTAX$
QByteArray():new( ... )
QByteArray():from( pPtr_OR_oObj_of_type_QByteArray )
QByteArray():configure( pPtr_OR_oObj_of_type_QByteArray )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QByteArray
$METHODS$
:at( nI ) -> cChar
:capacity() -> nInt
:chop( nN ) -> NIL
:clear() -> NIL
:constData() -> cChar
:count( pBa ) -> nInt
:count_1( pStr ) -> nInt
:count_2( cCh ) -> nInt
:count_3() -> nInt
:data() -> cChar
:data_1() -> cChar
:endsWith( pBa ) -> lBool
:endsWith_1( pStr ) -> lBool
:endsWith_2( cCh ) -> lBool
:indexOf( pBa, nFrom ) -> nInt
:indexOf_1( cStr, nFrom ) -> nInt
:indexOf_2( pStr, nFrom ) -> nInt
:indexOf_3( cCh, nFrom ) -> nInt
:isEmpty() -> lBool
:isNull() -> lBool
:lastIndexOf( pBa, nFrom ) -> nInt
:lastIndexOf_1( cStr, nFrom ) -> nInt
:lastIndexOf_2( pStr, nFrom ) -> nInt
:lastIndexOf_3( cCh, nFrom ) -> nInt
:length() -> nInt
:push_back( pOther ) -> NIL
:push_back_1( pStr ) -> NIL
:push_back_2( cCh ) -> NIL
:push_front( pOther ) -> NIL
:push_front_1( pStr ) -> NIL
:push_front_2( cCh ) -> NIL
:reserve( nSize ) -> NIL
:resize( nSize ) -> NIL
:size() -> nInt
:split( cSep ) -> pQList<QByteArray>
:squeeze() -> NIL
:startsWith( pBa ) -> lBool
:startsWith_1( pStr ) -> lBool
:startsWith_2( cCh ) -> lBool
:toDouble( @lOk ) -> nDouble
:toFloat( @lOk ) -> nFloat
:toInt( @lOk, nBase ) -> nInt
:toLong( @lOk, nBase ) -> nLong
:toLongLong( @lOk, nBase ) -> nQlonglong
:toShort( @lOk, nBase ) -> nShort
:toUInt( @lOk, nBase ) -> nUint
:toULong( @lOk, nBase ) -> nUlong
:toULongLong( @lOk, nBase ) -> nQulonglong
:toUShort( @lOk, nBase ) -> nUshort
:truncate( nPos ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQByteArray.prg
C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QByteArray()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQByteArray.prg
* C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QByteArray():new( ... )
* QByteArray():from( pPtr_OR_oObj_of_type_QByteArray )
* QByteArray():configure( pPtr_OR_oObj_of_type_QByteArray )
* $METHODS$
* :at( nI ) -> cChar
* :capacity() -> nInt
* :chop( nN ) -> NIL
* :clear() -> NIL
* :constData() -> cChar
* :count( pBa ) -> nInt
* :count_1( pStr ) -> nInt
* :count_2( cCh ) -> nInt
* :count_3() -> nInt
* :data() -> cChar
* :data_1() -> cChar
* :endsWith( pBa ) -> lBool
* :endsWith_1( pStr ) -> lBool
* :endsWith_2( cCh ) -> lBool
* :indexOf( pBa, nFrom ) -> nInt
* :indexOf_1( cStr, nFrom ) -> nInt
* :indexOf_2( pStr, nFrom ) -> nInt
* :indexOf_3( cCh, nFrom ) -> nInt
* :isEmpty() -> lBool
* :isNull() -> lBool
* :lastIndexOf( pBa, nFrom ) -> nInt
* :lastIndexOf_1( cStr, nFrom ) -> nInt
* :lastIndexOf_2( pStr, nFrom ) -> nInt
* :lastIndexOf_3( cCh, nFrom ) -> nInt
* :length() -> nInt
* :push_back( pOther ) -> NIL
* :push_back_1( pStr ) -> NIL
* :push_back_2( cCh ) -> NIL
* :push_front( pOther ) -> NIL
* :push_front_1( pStr ) -> NIL
* :push_front_2( cCh ) -> NIL
* :reserve( nSize ) -> NIL
* :resize( nSize ) -> NIL
* :size() -> nInt
* :split( cSep ) -> pQList<QByteArray>
* :squeeze() -> NIL
* :startsWith( pBa ) -> lBool
* :startsWith_1( pStr ) -> lBool
* :startsWith_2( cCh ) -> lBool
* :toDouble( @lOk ) -> nDouble
* :toFloat( @lOk ) -> nFloat
* :toInt( @lOk, nBase ) -> nInt
* :toLong( @lOk, nBase ) -> nLong
* :toLongLong( @lOk, nBase ) -> nQlonglong
* :toShort( @lOk, nBase ) -> nShort
* :toUInt( @lOk, nBase ) -> nUint
* :toULong( @lOk, nBase ) -> nUlong
* :toULongLong( @lOk, nBase ) -> nQulonglong
* :toUShort( @lOk, nBase ) -> nUshort
* :truncate( nPos ) -> NIL
*
* $RETURNS$
* An instance of the object of type QByteArray
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QByteArray object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qbytearray.html
* $END$
*/

View File

@@ -1,91 +1,89 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QCalendarWidget()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcalendarwidget.html
$ONELINER$
Creates a new QCalendarWidget object.
$INHERITS$
QWidget
$SYNTAX$
QCalendarWidget():new( ... )
QCalendarWidget():from( pPtr_OR_oObj_of_type_QCalendarWidget )
QCalendarWidget():configure( pPtr_OR_oObj_of_type_QCalendarWidget )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QCalendarWidget
$METHODS$
:dateEditAcceptDelay() -> nInt
:dateTextFormat( pDate ) -> pQTextCharFormat
:firstDayOfWeek() -> nQt::DayOfWeek
:headerTextFormat() -> pQTextCharFormat
:horizontalHeaderFormat() -> nHorizontalHeaderFormat
:isDateEditEnabled() -> lBool
:isGridVisible() -> lBool
:isNavigationBarVisible() -> lBool
:maximumDate() -> pQDate
:minimumDate() -> pQDate
:monthShown() -> nInt
:selectedDate() -> pQDate
:selectionMode() -> nSelectionMode
:setDateEditAcceptDelay( nDelay ) -> NIL
:setDateEditEnabled( lEnable ) -> NIL
:setDateTextFormat( pDate, pFormat ) -> NIL
:setFirstDayOfWeek( nDayOfWeek ) -> NIL
:setHeaderTextFormat( pFormat ) -> NIL
:setHorizontalHeaderFormat( nFormat ) -> NIL
:setMaximumDate( pDate ) -> NIL
:setMinimumDate( pDate ) -> NIL
:setSelectionMode( nMode ) -> NIL
:setVerticalHeaderFormat( nFormat ) -> NIL
:setWeekdayTextFormat( nDayOfWeek, pFormat ) -> NIL
:verticalHeaderFormat() -> nVerticalHeaderFormat
:weekdayTextFormat( nDayOfWeek ) -> pQTextCharFormat
:yearShown() -> nInt
:setCurrentPage( nYear, nMonth ) -> NIL
:setDateRange( pMin, pMax ) -> NIL
:setGridVisible( lShow ) -> NIL
:setNavigationBarVisible( lVisible ) -> NIL
:setSelectedDate( pDate ) -> NIL
:showNextMonth() -> NIL
:showNextYear() -> NIL
:showPreviousMonth() -> NIL
:showPreviousYear() -> NIL
:showSelectedDate() -> NIL
:showToday() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQCalendarWidget.prg
C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QCalendarWidget()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCalendarWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QCalendarWidget():new( ... )
* QCalendarWidget():from( pPtr_OR_oObj_of_type_QCalendarWidget )
* QCalendarWidget():configure( pPtr_OR_oObj_of_type_QCalendarWidget )
* $METHODS$
* :dateEditAcceptDelay() -> nInt
* :dateTextFormat( pDate ) -> pQTextCharFormat
* :firstDayOfWeek() -> nQt::DayOfWeek
* :headerTextFormat() -> pQTextCharFormat
* :horizontalHeaderFormat() -> nHorizontalHeaderFormat
* :isDateEditEnabled() -> lBool
* :isGridVisible() -> lBool
* :isNavigationBarVisible() -> lBool
* :maximumDate() -> pQDate
* :minimumDate() -> pQDate
* :monthShown() -> nInt
* :selectedDate() -> pQDate
* :selectionMode() -> nSelectionMode
* :setDateEditAcceptDelay( nDelay ) -> NIL
* :setDateEditEnabled( lEnable ) -> NIL
* :setDateTextFormat( pDate, pFormat ) -> NIL
* :setFirstDayOfWeek( nDayOfWeek ) -> NIL
* :setHeaderTextFormat( pFormat ) -> NIL
* :setHorizontalHeaderFormat( nFormat ) -> NIL
* :setMaximumDate( pDate ) -> NIL
* :setMinimumDate( pDate ) -> NIL
* :setSelectionMode( nMode ) -> NIL
* :setVerticalHeaderFormat( nFormat ) -> NIL
* :setWeekdayTextFormat( nDayOfWeek, pFormat ) -> NIL
* :verticalHeaderFormat() -> nVerticalHeaderFormat
* :weekdayTextFormat( nDayOfWeek ) -> pQTextCharFormat
* :yearShown() -> nInt
* :setCurrentPage( nYear, nMonth ) -> NIL
* :setDateRange( pMin, pMax ) -> NIL
* :setGridVisible( lShow ) -> NIL
* :setNavigationBarVisible( lVisible ) -> NIL
* :setSelectedDate( pDate ) -> NIL
* :showNextMonth() -> NIL
* :showNextYear() -> NIL
* :showPreviousMonth() -> NIL
* :showPreviousYear() -> NIL
* :showSelectedDate() -> NIL
* :showToday() -> NIL
*
* $RETURNS$
* An instance of the object of type QCalendarWidget
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QCalendarWidget object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcalendarwidget.html
* $END$
*/

View File

@@ -1,81 +1,79 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QChar()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qchar.html
$ONELINER$
Creates a new QChar object.
$INHERITS$
$SYNTAX$
QChar():new( ... )
QChar():from( pPtr_OR_oObj_of_type_QChar )
QChar():configure( pPtr_OR_oObj_of_type_QChar )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QChar
$METHODS$
:category() -> nCategory
:combiningClass() -> nUnsigned
:decomposition() -> cQString
:decompositionTag() -> nDecomposition
:digitValue() -> nInt
:direction() -> nDirection
:hasMirrored() -> lBool
:isDigit() -> lBool
:isHighSurrogate() -> lBool
:isLetter() -> lBool
:isLetterOrNumber() -> lBool
:isLowSurrogate() -> lBool
:isLower() -> lBool
:isMark() -> lBool
:isNull() -> lBool
:isNumber() -> lBool
:isPrint() -> lBool
:isPunct() -> lBool
:isSpace() -> lBool
:isSymbol() -> lBool
:isTitleCase() -> lBool
:isUpper() -> lBool
:joining() -> nJoining
:toAscii() -> cChar
:toLatin1() -> cChar
:unicode() -> nUshort
:unicode_1() -> nUshort
:unicodeVersion() -> nUnicodeVersion
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQChar.prg
C++ wrappers : contrib/hbqt/qtcore/QChar.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QChar()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQChar.prg
* C++ wrappers : contrib/hbqt/qtcore/QChar.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QChar():new( ... )
* QChar():from( pPtr_OR_oObj_of_type_QChar )
* QChar():configure( pPtr_OR_oObj_of_type_QChar )
* $METHODS$
* :category() -> nCategory
* :combiningClass() -> nUnsigned
* :decomposition() -> cQString
* :decompositionTag() -> nDecomposition
* :digitValue() -> nInt
* :direction() -> nDirection
* :hasMirrored() -> lBool
* :isDigit() -> lBool
* :isHighSurrogate() -> lBool
* :isLetter() -> lBool
* :isLetterOrNumber() -> lBool
* :isLowSurrogate() -> lBool
* :isLower() -> lBool
* :isMark() -> lBool
* :isNull() -> lBool
* :isNumber() -> lBool
* :isPrint() -> lBool
* :isPunct() -> lBool
* :isSpace() -> lBool
* :isSymbol() -> lBool
* :isTitleCase() -> lBool
* :isUpper() -> lBool
* :joining() -> nJoining
* :toAscii() -> cChar
* :toLatin1() -> cChar
* :unicode() -> nUshort
* :unicode_1() -> nUshort
* :unicodeVersion() -> nUnicodeVersion
*
* $RETURNS$
* An instance of the object of type QChar
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QChar object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qchar.html
* $END$
*/

View File

@@ -1,57 +1,55 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QCheckBox()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcheckbox.html
$ONELINER$
Creates a new QCheckBox object.
$INHERITS$
QAbstractButton
$SYNTAX$
QCheckBox():new( ... )
QCheckBox():from( pPtr_OR_oObj_of_type_QCheckBox )
QCheckBox():configure( pPtr_OR_oObj_of_type_QCheckBox )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QCheckBox
$METHODS$
:checkState() -> nQt::CheckState
:isTristate() -> lBool
:setCheckState( nState ) -> NIL
:setTristate( lY ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQCheckBox.prg
C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp
Library : hbqtgui
$SEEALSO$
QAbstractButton
$END$
* $NAME$
* QCheckBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCheckBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QCheckBox():new( ... )
* QCheckBox():from( pPtr_OR_oObj_of_type_QCheckBox )
* QCheckBox():configure( pPtr_OR_oObj_of_type_QCheckBox )
* $METHODS$
* :checkState() -> nQt::CheckState
* :isTristate() -> lBool
* :setCheckState( nState ) -> NIL
* :setTristate( lY ) -> NIL
*
* $RETURNS$
* An instance of the object of type QCheckBox
* $SEEALSO$
* QAbstractButton
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractButton
* $ONELINER$
* Creates a new QCheckBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcheckbox.html
* $END$
*/

View File

@@ -1,66 +1,64 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QClipboard()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qclipboard.html
$ONELINER$
Creates a new QClipboard object.
$INHERITS$
QObject
$SYNTAX$
QClipboard():new( ... )
QClipboard():from( pPtr_OR_oObj_of_type_QClipboard )
QClipboard():configure( pPtr_OR_oObj_of_type_QClipboard )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QClipboard
$METHODS$
:clear( nMode ) -> NIL
:image( nMode ) -> pQImage
:ownsClipboard() -> lBool
:ownsFindBuffer() -> lBool
:ownsSelection() -> lBool
:pixmap( nMode ) -> pQPixmap
:setImage( pImage, nMode ) -> NIL
:setMimeData( pSrc, nMode ) -> NIL
:setPixmap( pPixmap, nMode ) -> NIL
:setText( cText, nMode ) -> NIL
:supportsFindBuffer() -> lBool
:supportsSelection() -> lBool
:text( nMode ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQClipboard.prg
C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp
Library : hbqtgui
$SEEALSO$
QObject
$END$
* $NAME$
* QClipboard()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQClipboard.prg
* C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QClipboard():new( ... )
* QClipboard():from( pPtr_OR_oObj_of_type_QClipboard )
* QClipboard():configure( pPtr_OR_oObj_of_type_QClipboard )
* $METHODS$
* :clear( nMode ) -> NIL
* :image( nMode ) -> pQImage
* :ownsClipboard() -> lBool
* :ownsFindBuffer() -> lBool
* :ownsSelection() -> lBool
* :pixmap( nMode ) -> pQPixmap
* :setImage( pImage, nMode ) -> NIL
* :setMimeData( pSrc, nMode ) -> NIL
* :setPixmap( pPixmap, nMode ) -> NIL
* :setText( cText, nMode ) -> NIL
* :supportsFindBuffer() -> lBool
* :supportsSelection() -> lBool
* :text( nMode ) -> cQString
*
* $RETURNS$
* An instance of the object of type QClipboard
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QClipboard object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qclipboard.html
* $END$
*/

View File

@@ -1,111 +1,109 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QColor()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcolor.html
$ONELINER$
Creates a new QColor object.
$INHERITS$
$SYNTAX$
QColor():new( ... )
QColor():from( pPtr_OR_oObj_of_type_QColor )
QColor():configure( pPtr_OR_oObj_of_type_QColor )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QColor
$METHODS$
:alpha() -> nInt
:alphaF() -> nQreal
:black() -> nInt
:blackF() -> nQreal
:blue() -> nInt
:blueF() -> nQreal
:cyan() -> nInt
:cyanF() -> nQreal
:getCmyk( @nC, @nM, @nY, @nK, @nA ) -> NIL
:getCmykF( @nC, @nM, @nY, @nK, @nA ) -> NIL
:getHsv( @nH, @nS, @nV, @nA ) -> NIL
:getHsvF( @nH, @nS, @nV, @nA ) -> NIL
:getRgb( @nR, @nG, @nB, @nA ) -> NIL
:getRgbF( @nR, @nG, @nB, @nA ) -> NIL
:green() -> nInt
:greenF() -> nQreal
:hue() -> nInt
:hueF() -> nQreal
:isValid() -> lBool
:magenta() -> nInt
:magentaF() -> nQreal
:name() -> cQString
:red() -> nInt
:redF() -> nQreal
:rgb() -> nQRgb
:rgba() -> nQRgb
:saturation() -> nInt
:saturationF() -> nQreal
:setAlpha( nAlpha ) -> NIL
:setAlphaF( nAlpha ) -> NIL
:setBlue( nBlue ) -> NIL
:setBlueF( nBlue ) -> NIL
:setCmyk( nC, nM, nY, nK, nA ) -> NIL
:setCmykF( nC, nM, nY, nK, nA ) -> NIL
:setGreen( nGreen ) -> NIL
:setGreenF( nGreen ) -> NIL
:setHsv( nH, nS, nV, nA ) -> NIL
:setHsvF( nH, nS, nV, nA ) -> NIL
:setNamedColor( cName ) -> NIL
:setRed( nRed ) -> NIL
:setRedF( nRed ) -> NIL
:setRgb( nRgb ) -> NIL
:setRgb_1( nR, nG, nB, nA ) -> NIL
:setRgba( nRgba ) -> NIL
:setRgbF( nR, nG, nB, nA ) -> NIL
:spec() -> nSpec
:value() -> nInt
:valueF() -> nQreal
:yellow() -> nInt
:yellowF() -> nQreal
:colorNames() -> pQStringList
$DESCRIPTION$
$EXAMPLES$
oColor := QColor():new() // You will supply other parameter later
oColor := QColor():new( nQt_Color ) // R: hbqt.ch
oColor := QColor():new( nRGB ) // ( nR + ( nG * 256 ) + ( nB * 256 * 256 ) )
oColor := QColor():new( cColorName ) // #RRGGBB
oColor := QColor():new( pQColor ) // Pointer to previously obtained QColor
oColor := QColor():new( nR, nG, nB ) // Red Green Blue values
oColor := QColor():new( nR, nG, nB, nAlpha ) // Red Green Blue values with Alpha Channel
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQColor.prg
C++ wrappers : contrib/hbqt/qtgui/QColor.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QColor()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQColor.prg
* C++ wrappers : contrib/hbqt/qtgui/QColor.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QColor():new( ... )
* QColor():from( pPtr_OR_oObj_of_type_QColor )
* QColor():configure( pPtr_OR_oObj_of_type_QColor )
* $METHODS$
* :alpha() -> nInt
* :alphaF() -> nQreal
* :black() -> nInt
* :blackF() -> nQreal
* :blue() -> nInt
* :blueF() -> nQreal
* :cyan() -> nInt
* :cyanF() -> nQreal
* :getCmyk( @nC, @nM, @nY, @nK, @nA ) -> NIL
* :getCmykF( @nC, @nM, @nY, @nK, @nA ) -> NIL
* :getHsv( @nH, @nS, @nV, @nA ) -> NIL
* :getHsvF( @nH, @nS, @nV, @nA ) -> NIL
* :getRgb( @nR, @nG, @nB, @nA ) -> NIL
* :getRgbF( @nR, @nG, @nB, @nA ) -> NIL
* :green() -> nInt
* :greenF() -> nQreal
* :hue() -> nInt
* :hueF() -> nQreal
* :isValid() -> lBool
* :magenta() -> nInt
* :magentaF() -> nQreal
* :name() -> cQString
* :red() -> nInt
* :redF() -> nQreal
* :rgb() -> nQRgb
* :rgba() -> nQRgb
* :saturation() -> nInt
* :saturationF() -> nQreal
* :setAlpha( nAlpha ) -> NIL
* :setAlphaF( nAlpha ) -> NIL
* :setBlue( nBlue ) -> NIL
* :setBlueF( nBlue ) -> NIL
* :setCmyk( nC, nM, nY, nK, nA ) -> NIL
* :setCmykF( nC, nM, nY, nK, nA ) -> NIL
* :setGreen( nGreen ) -> NIL
* :setGreenF( nGreen ) -> NIL
* :setHsv( nH, nS, nV, nA ) -> NIL
* :setHsvF( nH, nS, nV, nA ) -> NIL
* :setNamedColor( cName ) -> NIL
* :setRed( nRed ) -> NIL
* :setRedF( nRed ) -> NIL
* :setRgb( nRgb ) -> NIL
* :setRgb_1( nR, nG, nB, nA ) -> NIL
* :setRgba( nRgba ) -> NIL
* :setRgbF( nR, nG, nB, nA ) -> NIL
* :spec() -> nSpec
* :value() -> nInt
* :valueF() -> nQreal
* :yellow() -> nInt
* :yellowF() -> nQreal
* :colorNames() -> pQStringList
*
* $RETURNS$
* An instance of the object of type QColor
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oColor := QColor():new() // You will supply other parameter later
* oColor := QColor():new( nQt_Color ) // R: hbqt.ch
* oColor := QColor():new( nRGB ) // ( nR + ( nG * 256 ) + ( nB * 256 * 256 ) )
* oColor := QColor():new( cColorName ) // #RRGGBB
* oColor := QColor():new( pQColor ) // Pointer to previously obtained QColor
* oColor := QColor():new( nR, nG, nB ) // Red Green Blue values
* oColor := QColor():new( nR, nG, nB, nAlpha ) // Red Green Blue values with Alpha Channel
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QColor object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcolor.html
* $END$
*/

View File

@@ -1,68 +1,66 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QColorDialog()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcolordialog.html
$ONELINER$
Creates a new QColorDialog object.
$INHERITS$
QDialog
$SYNTAX$
QColorDialog():new( ... )
QColorDialog():from( pPtr_OR_oObj_of_type_QColorDialog )
QColorDialog():configure( pPtr_OR_oObj_of_type_QColorDialog )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QColorDialog
$METHODS$
:currentColor() -> pQColor
:open() -> NIL
:options() -> nColorDialogOptions
:selectedColor() -> pQColor
:setCurrentColor( pColor ) -> NIL
:setOption( nOption, lOn ) -> NIL
:setOptions( nOptions ) -> NIL
:setVisible( lVisible ) -> NIL
:testOption( nOption ) -> lBool
:customColor( nIndex ) -> nQRgb
:customCount() -> nInt
:getColor( pInitial, pParent, cTitle, nOptions ) -> pQColor
:getColor_1( pInitial, pParent ) -> pQColor
:setCustomColor( nIndex, nColor ) -> NIL
:setStandardColor( nIndex, nColor ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQColorDialog.prg
C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp
Library : hbqtgui
$SEEALSO$
QDialog
$END$
* $NAME$
* QColorDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQColorDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QColorDialog():new( ... )
* QColorDialog():from( pPtr_OR_oObj_of_type_QColorDialog )
* QColorDialog():configure( pPtr_OR_oObj_of_type_QColorDialog )
* $METHODS$
* :currentColor() -> pQColor
* :open() -> NIL
* :options() -> nColorDialogOptions
* :selectedColor() -> pQColor
* :setCurrentColor( pColor ) -> NIL
* :setOption( nOption, lOn ) -> NIL
* :setOptions( nOptions ) -> NIL
* :setVisible( lVisible ) -> NIL
* :testOption( nOption ) -> lBool
* :customColor( nIndex ) -> nQRgb
* :customCount() -> nInt
* :getColor( pInitial, pParent, cTitle, nOptions ) -> pQColor
* :getColor_1( pInitial, pParent ) -> pQColor
* :setCustomColor( nIndex, nColor ) -> NIL
* :setStandardColor( nIndex, nColor ) -> NIL
*
* $RETURNS$
* An instance of the object of type QColorDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QColorDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcolordialog.html
* $END$
*/

View File

@@ -1,112 +1,110 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QComboBox()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcombobox.html
$ONELINER$
Creates a new QComboBox object.
$INHERITS$
QWidget
$SYNTAX$
QComboBox():new( ... )
QComboBox():from( pPtr_OR_oObj_of_type_QComboBox )
QComboBox():configure( pPtr_OR_oObj_of_type_QComboBox )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QComboBox
$METHODS$
:addItem( cText, pUserData ) -> NIL
:addItem_1( cIcon, cText, pUserData ) -> NIL
:addItems( pTexts ) -> NIL
:completer() -> pQCompleter
:count() -> nInt
:currentIndex() -> nInt
:currentText() -> cQString
:duplicatesEnabled() -> lBool
:findData( pData, nRole, nFlags ) -> nInt
:findText( cText, nFlags ) -> nInt
:hasFrame() -> lBool
:hidePopup() -> NIL
:iconSize() -> pQSize
:insertItem( nIndex, cText, pUserData ) -> NIL
:insertItem_1( nIndex, cIcon, cText, pUserData ) -> NIL
:insertItems( nIndex, pList ) -> NIL
:insertPolicy() -> nInsertPolicy
:insertSeparator( nIndex ) -> NIL
:isEditable() -> lBool
:itemData( nIndex, nRole ) -> pQVariant
:itemDelegate() -> pQAbstractItemDelegate
:itemIcon( nIndex ) -> pQIcon
:itemText( nIndex ) -> cQString
:lineEdit() -> pQLineEdit
:maxCount() -> nInt
:maxVisibleItems() -> nInt
:minimumContentsLength() -> nInt
:model() -> pQAbstractItemModel
:modelColumn() -> nInt
:removeItem( nIndex ) -> NIL
:rootModelIndex() -> pQModelIndex
:setCompleter( pCompleter ) -> NIL
:setDuplicatesEnabled( lEnable ) -> NIL
:setEditable( lEditable ) -> NIL
:setFrame( lBool ) -> NIL
:setIconSize( pSize ) -> NIL
:setInsertPolicy( nPolicy ) -> NIL
:setItemData( nIndex, pValue, nRole ) -> NIL
:setItemDelegate( pDelegate ) -> NIL
:setItemIcon( nIndex, cIcon ) -> NIL
:setItemText( nIndex, cText ) -> NIL
:setLineEdit( pEdit ) -> NIL
:setMaxCount( nMax ) -> NIL
:setMaxVisibleItems( nMaxItems ) -> NIL
:setMinimumContentsLength( nCharacters ) -> NIL
:setModel( pModel ) -> NIL
:setModelColumn( nVisibleColumn ) -> NIL
:setRootModelIndex( pIndex ) -> NIL
:setSizeAdjustPolicy( nPolicy ) -> NIL
:setValidator( pValidator ) -> NIL
:setView( pItemView ) -> NIL
:showPopup() -> NIL
:sizeAdjustPolicy() -> nSizeAdjustPolicy
:validator() -> pQValidator
:view() -> pQAbstractItemView
:clear() -> NIL
:clearEditText() -> NIL
:setCurrentIndex( nIndex ) -> NIL
:setEditText( cText ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQComboBox.prg
C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QComboBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQComboBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QComboBox():new( ... )
* QComboBox():from( pPtr_OR_oObj_of_type_QComboBox )
* QComboBox():configure( pPtr_OR_oObj_of_type_QComboBox )
* $METHODS$
* :addItem( cText, pUserData ) -> NIL
* :addItem_1( cIcon, cText, pUserData ) -> NIL
* :addItems( pTexts ) -> NIL
* :completer() -> pQCompleter
* :count() -> nInt
* :currentIndex() -> nInt
* :currentText() -> cQString
* :duplicatesEnabled() -> lBool
* :findData( pData, nRole, nFlags ) -> nInt
* :findText( cText, nFlags ) -> nInt
* :hasFrame() -> lBool
* :hidePopup() -> NIL
* :iconSize() -> pQSize
* :insertItem( nIndex, cText, pUserData ) -> NIL
* :insertItem_1( nIndex, cIcon, cText, pUserData ) -> NIL
* :insertItems( nIndex, pList ) -> NIL
* :insertPolicy() -> nInsertPolicy
* :insertSeparator( nIndex ) -> NIL
* :isEditable() -> lBool
* :itemData( nIndex, nRole ) -> pQVariant
* :itemDelegate() -> pQAbstractItemDelegate
* :itemIcon( nIndex ) -> pQIcon
* :itemText( nIndex ) -> cQString
* :lineEdit() -> pQLineEdit
* :maxCount() -> nInt
* :maxVisibleItems() -> nInt
* :minimumContentsLength() -> nInt
* :model() -> pQAbstractItemModel
* :modelColumn() -> nInt
* :removeItem( nIndex ) -> NIL
* :rootModelIndex() -> pQModelIndex
* :setCompleter( pCompleter ) -> NIL
* :setDuplicatesEnabled( lEnable ) -> NIL
* :setEditable( lEditable ) -> NIL
* :setFrame( lBool ) -> NIL
* :setIconSize( pSize ) -> NIL
* :setInsertPolicy( nPolicy ) -> NIL
* :setItemData( nIndex, pValue, nRole ) -> NIL
* :setItemDelegate( pDelegate ) -> NIL
* :setItemIcon( nIndex, cIcon ) -> NIL
* :setItemText( nIndex, cText ) -> NIL
* :setLineEdit( pEdit ) -> NIL
* :setMaxCount( nMax ) -> NIL
* :setMaxVisibleItems( nMaxItems ) -> NIL
* :setMinimumContentsLength( nCharacters ) -> NIL
* :setModel( pModel ) -> NIL
* :setModelColumn( nVisibleColumn ) -> NIL
* :setRootModelIndex( pIndex ) -> NIL
* :setSizeAdjustPolicy( nPolicy ) -> NIL
* :setValidator( pValidator ) -> NIL
* :setView( pItemView ) -> NIL
* :showPopup() -> NIL
* :sizeAdjustPolicy() -> nSizeAdjustPolicy
* :validator() -> pQValidator
* :view() -> pQAbstractItemView
* :clear() -> NIL
* :clearEditText() -> NIL
* :setCurrentIndex( nIndex ) -> NIL
* :setEditText( cText ) -> NIL
*
* $RETURNS$
* An instance of the object of type QComboBox
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QComboBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcombobox.html
* $END$
*/

View File

@@ -1,55 +1,53 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QCommandLinkButton()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcommandlinkbutton.html
$ONELINER$
Creates a new QCommandLinkButton object.
$INHERITS$
QPushButton
$SYNTAX$
QCommandLinkButton():new( ... )
QCommandLinkButton():from( pPtr_OR_oObj_of_type_QCommandLinkButton )
QCommandLinkButton():configure( pPtr_OR_oObj_of_type_QCommandLinkButton )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QCommandLinkButton
$METHODS$
:description() -> cQString
:setDescription( cDescription ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQCommandLinkButton.prg
C++ wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp
Library : hbqtgui
$SEEALSO$
QPushButton
$END$
* $NAME$
* QCommandLinkButton()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCommandLinkButton.prg
* C++ wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QCommandLinkButton():new( ... )
* QCommandLinkButton():from( pPtr_OR_oObj_of_type_QCommandLinkButton )
* QCommandLinkButton():configure( pPtr_OR_oObj_of_type_QCommandLinkButton )
* $METHODS$
* :description() -> cQString
* :setDescription( cDescription ) -> NIL
*
* $RETURNS$
* An instance of the object of type QCommandLinkButton
* $SEEALSO$
* QPushButton
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QPushButton
* $ONELINER$
* Creates a new QCommandLinkButton object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcommandlinkbutton.html
* $END$
*/

View File

@@ -1,82 +1,80 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QCompleter()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcompleter.html
$ONELINER$
Creates a new QCompleter object.
$INHERITS$
QObject
$SYNTAX$
QCompleter():new( ... )
QCompleter():from( pPtr_OR_oObj_of_type_QCompleter )
QCompleter():configure( pPtr_OR_oObj_of_type_QCompleter )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QCompleter
$METHODS$
:caseSensitivity() -> nQt::CaseSensitivity
:completionColumn() -> nInt
:completionCount() -> nInt
:completionMode() -> nCompletionMode
:completionModel() -> pQAbstractItemModel
:completionPrefix() -> cQString
:completionRole() -> nInt
:currentCompletion() -> cQString
:currentIndex() -> pQModelIndex
:currentRow() -> nInt
:model() -> pQAbstractItemModel
:modelSorting() -> nModelSorting
:pathFromIndex( pIndex ) -> cQString
:popup() -> pQAbstractItemView
:setCaseSensitivity( nCaseSensitivity ) -> NIL
:setCompletionColumn( nColumn ) -> NIL
:setCompletionMode( nMode ) -> NIL
:setCompletionRole( nRole ) -> NIL
:setCurrentRow( nRow ) -> lBool
:setModel( pModel ) -> NIL
:setModelSorting( nSorting ) -> NIL
:setPopup( pPopup ) -> NIL
:setWidget( pWidget ) -> NIL
:splitPath( cPath ) -> pQStringList
:widget() -> pQWidget
:wrapAround() -> lBool
:complete( pRect ) -> NIL
:setCompletionPrefix( cPrefix ) -> NIL
:setWrapAround( lWrap ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQCompleter.prg
C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp
Library : hbqtgui
$SEEALSO$
QObject
$END$
* $NAME$
* QCompleter()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCompleter.prg
* C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QCompleter():new( ... )
* QCompleter():from( pPtr_OR_oObj_of_type_QCompleter )
* QCompleter():configure( pPtr_OR_oObj_of_type_QCompleter )
* $METHODS$
* :caseSensitivity() -> nQt::CaseSensitivity
* :completionColumn() -> nInt
* :completionCount() -> nInt
* :completionMode() -> nCompletionMode
* :completionModel() -> pQAbstractItemModel
* :completionPrefix() -> cQString
* :completionRole() -> nInt
* :currentCompletion() -> cQString
* :currentIndex() -> pQModelIndex
* :currentRow() -> nInt
* :model() -> pQAbstractItemModel
* :modelSorting() -> nModelSorting
* :pathFromIndex( pIndex ) -> cQString
* :popup() -> pQAbstractItemView
* :setCaseSensitivity( nCaseSensitivity ) -> NIL
* :setCompletionColumn( nColumn ) -> NIL
* :setCompletionMode( nMode ) -> NIL
* :setCompletionRole( nRole ) -> NIL
* :setCurrentRow( nRow ) -> lBool
* :setModel( pModel ) -> NIL
* :setModelSorting( nSorting ) -> NIL
* :setPopup( pPopup ) -> NIL
* :setWidget( pWidget ) -> NIL
* :splitPath( cPath ) -> pQStringList
* :widget() -> pQWidget
* :wrapAround() -> lBool
* :complete( pRect ) -> NIL
* :setCompletionPrefix( cPrefix ) -> NIL
* :setWrapAround( lWrap ) -> NIL
*
* $RETURNS$
* An instance of the object of type QCompleter
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QCompleter object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcompleter.html
* $END$
*/

View File

@@ -1,58 +1,56 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QConicalGradient()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qconicalgradient.html
$ONELINER$
Creates a new QConicalGradient object.
$INHERITS$
QGradient
$SYNTAX$
QConicalGradient():new( ... )
QConicalGradient():from( pPtr_OR_oObj_of_type_QConicalGradient )
QConicalGradient():configure( pPtr_OR_oObj_of_type_QConicalGradient )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QConicalGradient
$METHODS$
:angle() -> nQreal
:center() -> pQPointF
:setAngle( nAngle ) -> NIL
:setCenter( pCenter ) -> NIL
:setCenter_1( nX, nY ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQConicalGradient.prg
C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp
Library : hbqtgui
$SEEALSO$
QGradient
$END$
* $NAME$
* QConicalGradient()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQConicalGradient.prg
* C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QConicalGradient():new( ... )
* QConicalGradient():from( pPtr_OR_oObj_of_type_QConicalGradient )
* QConicalGradient():configure( pPtr_OR_oObj_of_type_QConicalGradient )
* $METHODS$
* :angle() -> nQreal
* :center() -> pQPointF
* :setAngle( nAngle ) -> NIL
* :setCenter( pCenter ) -> NIL
* :setCenter_1( nX, nY ) -> NIL
*
* $RETURNS$
* An instance of the object of type QConicalGradient
* $SEEALSO$
* QGradient
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QGradient
* $ONELINER$
* Creates a new QConicalGradient object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qconicalgradient.html
* $END$
*/

View File

@@ -1,60 +1,58 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QContextMenuEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcontextmenuevent.html
$ONELINER$
Creates a new QContextMenuEvent object.
$INHERITS$
QInputEvent
$SYNTAX$
QContextMenuEvent():new( ... )
QContextMenuEvent():from( pPtr_OR_oObj_of_type_QContextMenuEvent )
QContextMenuEvent():configure( pPtr_OR_oObj_of_type_QContextMenuEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QContextMenuEvent
$METHODS$
:globalPos() -> pQPoint
:globalX() -> nInt
:globalY() -> nInt
:pos() -> pQPoint
:reason() -> nReason
:x() -> nInt
:y() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQContextMenuEvent.prg
C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp
Library : hbqtgui
$SEEALSO$
QInputEvent
$END$
* $NAME$
* QContextMenuEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQContextMenuEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QContextMenuEvent():new( ... )
* QContextMenuEvent():from( pPtr_OR_oObj_of_type_QContextMenuEvent )
* QContextMenuEvent():configure( pPtr_OR_oObj_of_type_QContextMenuEvent )
* $METHODS$
* :globalPos() -> pQPoint
* :globalX() -> nInt
* :globalY() -> nInt
* :pos() -> pQPoint
* :reason() -> nReason
* :x() -> nInt
* :y() -> nInt
*
* $RETURNS$
* An instance of the object of type QContextMenuEvent
* $SEEALSO$
* QInputEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QInputEvent
* $ONELINER$
* Creates a new QContextMenuEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcontextmenuevent.html
* $END$
*/

View File

@@ -1,92 +1,90 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QCoreApplication()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcoreapplication.html
$ONELINER$
Creates a new QCoreApplication object.
$INHERITS$
QObject
$SYNTAX$
QCoreApplication():new( ... )
QCoreApplication():from( pPtr_OR_oObj_of_type_QCoreApplication )
QCoreApplication():configure( pPtr_OR_oObj_of_type_QCoreApplication )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QCoreApplication
$METHODS$
:notify( pReceiver, pEvent ) -> lBool
:addLibraryPath( cPath ) -> NIL
:applicationDirPath() -> cQString
:applicationFilePath() -> cQString
:applicationName() -> cQString
:applicationPid() -> nQint64
:applicationVersion() -> cQString
:arguments() -> pQStringList
:closingDown() -> lBool
:exec() -> nInt
:exit( nReturnCode ) -> NIL
:flush() -> NIL
:hasPendingEvents() -> lBool
:installTranslator( pTranslationFile ) -> NIL
:libraryPaths() -> pQStringList
:organizationDomain() -> cQString
:organizationName() -> cQString
:postEvent( pReceiver, pEvent ) -> NIL
:postEvent_1( pReceiver, pEvent, nPriority ) -> NIL
:processEvents( nFlags ) -> NIL
:processEvents_1( nFlags, nMaxtime ) -> NIL
:removeLibraryPath( cPath ) -> NIL
:removePostedEvents( pReceiver ) -> NIL
:removePostedEvents_1( pReceiver, nEventType ) -> NIL
:removeTranslator( pTranslationFile ) -> NIL
:sendEvent( pReceiver, pEvent ) -> lBool
:sendPostedEvents( pReceiver, nEvent_type ) -> NIL
:sendPostedEvents_1() -> NIL
:setApplicationName( cApplication ) -> NIL
:setApplicationVersion( cVersion ) -> NIL
:setAttribute( nAttribute, lOn ) -> NIL
:setLibraryPaths( pPaths ) -> NIL
:setOrganizationDomain( cOrgDomain ) -> NIL
:setOrganizationName( cOrgName ) -> NIL
:startingUp() -> lBool
:testAttribute( nAttribute ) -> lBool
:translate( pContext, pSourceText, pDisambiguation, nEncoding, nN ) -> cQString
:translate_1( pContext, pSourceText, pDisambiguation, nEncoding ) -> cQString
:quit() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQCoreApplication.prg
C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp
Library : hbqtcore
$SEEALSO$
QObject
$END$
* $NAME$
* QCoreApplication()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQCoreApplication.prg
* C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QCoreApplication():new( ... )
* QCoreApplication():from( pPtr_OR_oObj_of_type_QCoreApplication )
* QCoreApplication():configure( pPtr_OR_oObj_of_type_QCoreApplication )
* $METHODS$
* :notify( pReceiver, pEvent ) -> lBool
* :addLibraryPath( cPath ) -> NIL
* :applicationDirPath() -> cQString
* :applicationFilePath() -> cQString
* :applicationName() -> cQString
* :applicationPid() -> nQint64
* :applicationVersion() -> cQString
* :arguments() -> pQStringList
* :closingDown() -> lBool
* :exec() -> nInt
* :exit( nReturnCode ) -> NIL
* :flush() -> NIL
* :hasPendingEvents() -> lBool
* :installTranslator( pTranslationFile ) -> NIL
* :libraryPaths() -> pQStringList
* :organizationDomain() -> cQString
* :organizationName() -> cQString
* :postEvent( pReceiver, pEvent ) -> NIL
* :postEvent_1( pReceiver, pEvent, nPriority ) -> NIL
* :processEvents( nFlags ) -> NIL
* :processEvents_1( nFlags, nMaxtime ) -> NIL
* :removeLibraryPath( cPath ) -> NIL
* :removePostedEvents( pReceiver ) -> NIL
* :removePostedEvents_1( pReceiver, nEventType ) -> NIL
* :removeTranslator( pTranslationFile ) -> NIL
* :sendEvent( pReceiver, pEvent ) -> lBool
* :sendPostedEvents( pReceiver, nEvent_type ) -> NIL
* :sendPostedEvents_1() -> NIL
* :setApplicationName( cApplication ) -> NIL
* :setApplicationVersion( cVersion ) -> NIL
* :setAttribute( nAttribute, lOn ) -> NIL
* :setLibraryPaths( pPaths ) -> NIL
* :setOrganizationDomain( cOrgDomain ) -> NIL
* :setOrganizationName( cOrgName ) -> NIL
* :startingUp() -> lBool
* :testAttribute( nAttribute ) -> lBool
* :translate( pContext, pSourceText, pDisambiguation, nEncoding, nN ) -> cQString
* :translate_1( pContext, pSourceText, pDisambiguation, nEncoding ) -> cQString
* :quit() -> NIL
*
* $RETURNS$
* An instance of the object of type QCoreApplication
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QCoreApplication object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcoreapplication.html
* $END$
*/

View File

@@ -1,67 +1,65 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QCursor()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qcursor.html
$ONELINER$
Creates a new QCursor object.
$INHERITS$
$SYNTAX$
QCursor():new( ... )
QCursor():from( pPtr_OR_oObj_of_type_QCursor )
QCursor():configure( pPtr_OR_oObj_of_type_QCursor )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QCursor
$METHODS$
:bitmap() -> pQBitmap
:hotSpot() -> pQPoint
:mask() -> pQBitmap
:pixmap() -> pQPixmap
:setShape( nShape ) -> NIL
:shape() -> nQt::CursorShape
:pos() -> pQPoint
:setPos( nX, nY ) -> NIL
:setPos_1( pP ) -> NIL
$DESCRIPTION$
$EXAMPLES$
oCursor := QCursor():new()
oCursor := QCursor():new( pQCursor )
oCursor := QCursor():new( nQt_CursorShape )
oCursor := QCursor():new( "QPixmap", pQPixmap, [ nHotX = -1 ] , [ nHotY = -1 ] )
oCursor := QCursor():new( pQBitmap, pQBitmapAsMask, [ nHotX = -1 ], [ nHotY = -1 ] )
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQCursor.prg
C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QCursor()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQCursor.prg
* C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QCursor():new( ... )
* QCursor():from( pPtr_OR_oObj_of_type_QCursor )
* QCursor():configure( pPtr_OR_oObj_of_type_QCursor )
* $METHODS$
* :bitmap() -> pQBitmap
* :hotSpot() -> pQPoint
* :mask() -> pQBitmap
* :pixmap() -> pQPixmap
* :setShape( nShape ) -> NIL
* :shape() -> nQt::CursorShape
* :pos() -> pQPoint
* :setPos( nX, nY ) -> NIL
* :setPos_1( pP ) -> NIL
*
* $RETURNS$
* An instance of the object of type QCursor
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oCursor := QCursor():new()
* oCursor := QCursor():new( pQCursor )
* oCursor := QCursor():new( nQt_CursorShape )
* oCursor := QCursor():new( "QPixmap", pQPixmap, [ nHotX = -1 ] , [ nHotY = -1 ] )
* oCursor := QCursor():new( pQBitmap, pQBitmapAsMask, [ nHotX = -1 ], [ nHotY = -1 ] )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QCursor object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qcursor.html
* $END$
*/

View File

@@ -1,66 +1,64 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDataStream()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdatastream.html
$ONELINER$
Creates a new QDataStream object.
$INHERITS$
$SYNTAX$
QDataStream():new( ... )
QDataStream():from( pPtr_OR_oObj_of_type_QDataStream )
QDataStream():configure( pPtr_OR_oObj_of_type_QDataStream )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDataStream
$METHODS$
:atEnd() -> lBool
:byteOrder() -> nByteOrder
:device() -> pQIODevice
:readRawData( cS, nLen ) -> nInt
:resetStatus() -> NIL
:setByteOrder( nBo ) -> NIL
:setDevice( pD ) -> NIL
:setStatus( nStatus ) -> NIL
:setVersion( nV ) -> NIL
:skipRawData( nLen ) -> nInt
:status() -> nStatus
:version() -> nInt
:writeRawData( pS, nLen ) -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQDataStream.prg
C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QDataStream()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDataStream.prg
* C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDataStream():new( ... )
* QDataStream():from( pPtr_OR_oObj_of_type_QDataStream )
* QDataStream():configure( pPtr_OR_oObj_of_type_QDataStream )
* $METHODS$
* :atEnd() -> lBool
* :byteOrder() -> nByteOrder
* :device() -> pQIODevice
* :readRawData( cS, nLen ) -> nInt
* :resetStatus() -> NIL
* :setByteOrder( nBo ) -> NIL
* :setDevice( pD ) -> NIL
* :setStatus( nStatus ) -> NIL
* :setVersion( nV ) -> NIL
* :skipRawData( nLen ) -> nInt
* :status() -> nStatus
* :version() -> nInt
* :writeRawData( pS, nLen ) -> nInt
*
* $RETURNS$
* An instance of the object of type QDataStream
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QDataStream object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatastream.html
* $END$
*/

View File

@@ -1,69 +1,67 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDate()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdate.html
$ONELINER$
Creates a new QDate object.
$INHERITS$
$SYNTAX$
QDate():new( ... )
QDate():from( pPtr_OR_oObj_of_type_QDate )
QDate():configure( pPtr_OR_oObj_of_type_QDate )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDate
$METHODS$
:day() -> nInt
:dayOfWeek() -> nInt
:dayOfYear() -> nInt
:daysInMonth() -> nInt
:daysInYear() -> nInt
:daysTo( pD ) -> nInt
:getDate( @nYear, @nMonth, @nDay ) -> NIL
:isNull() -> lBool
:isValid() -> lBool
:month() -> nInt
:setDate( nYear, nMonth, nDay ) -> lBool
:toJulianDay() -> nInt
:toString( cFormat ) -> cQString
:toString_1( nFormat ) -> cQString
:weekNumber( @nYearNumber ) -> nInt
:year() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQDate.prg
C++ wrappers : contrib/hbqt/qtcore/QDate.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QDate()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDate.prg
* C++ wrappers : contrib/hbqt/qtcore/QDate.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDate():new( ... )
* QDate():from( pPtr_OR_oObj_of_type_QDate )
* QDate():configure( pPtr_OR_oObj_of_type_QDate )
* $METHODS$
* :day() -> nInt
* :dayOfWeek() -> nInt
* :dayOfYear() -> nInt
* :daysInMonth() -> nInt
* :daysInYear() -> nInt
* :daysTo( pD ) -> nInt
* :getDate( @nYear, @nMonth, @nDay ) -> NIL
* :isNull() -> lBool
* :isValid() -> lBool
* :month() -> nInt
* :setDate( nYear, nMonth, nDay ) -> lBool
* :toJulianDay() -> nInt
* :toString( cFormat ) -> cQString
* :toString_1( nFormat ) -> cQString
* :weekNumber( @nYearNumber ) -> nInt
* :year() -> nInt
*
* $RETURNS$
* An instance of the object of type QDate
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QDate object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdate.html
* $END$
*/

View File

@@ -1,67 +1,65 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDateTime()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdatetime.html
$ONELINER$
Creates a new QDateTime object.
$INHERITS$
$SYNTAX$
QDateTime():new( ... )
QDateTime():from( pPtr_OR_oObj_of_type_QDateTime )
QDateTime():configure( pPtr_OR_oObj_of_type_QDateTime )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDateTime
$METHODS$
:date() -> pQDate
:daysTo( pOther ) -> nInt
:isNull() -> lBool
:isValid() -> lBool
:secsTo( pOther ) -> nInt
:setDate( pDate ) -> NIL
:setTime( pTime ) -> NIL
:setTimeSpec( nSpec ) -> NIL
:setTime_t( nSeconds ) -> NIL
:time() -> pQTime
:timeSpec() -> nQt::TimeSpec
:toString( cFormat ) -> cQString
:toString_1( nFormat ) -> cQString
:toTime_t() -> nUint
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQDateTime.prg
C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QDateTime()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDateTime.prg
* C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDateTime():new( ... )
* QDateTime():from( pPtr_OR_oObj_of_type_QDateTime )
* QDateTime():configure( pPtr_OR_oObj_of_type_QDateTime )
* $METHODS$
* :date() -> pQDate
* :daysTo( pOther ) -> nInt
* :isNull() -> lBool
* :isValid() -> lBool
* :secsTo( pOther ) -> nInt
* :setDate( pDate ) -> NIL
* :setTime( pTime ) -> NIL
* :setTimeSpec( nSpec ) -> NIL
* :setTime_t( nSeconds ) -> NIL
* :time() -> pQTime
* :timeSpec() -> nQt::TimeSpec
* :toString( cFormat ) -> cQString
* :toString_1( nFormat ) -> cQString
* :toTime_t() -> nUint
*
* $RETURNS$
* An instance of the object of type QDateTime
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QDateTime object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatetime.html
* $END$
*/

View File

@@ -1,97 +1,95 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDateTimeEdit()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdatetimeedit.html
$ONELINER$
Creates a new QDateTimeEdit object.
$INHERITS$
QAbstractSpinBox
$SYNTAX$
QDateTimeEdit():new( ... )
QDateTimeEdit():from( pPtr_OR_oObj_of_type_QDateTimeEdit )
QDateTimeEdit():configure( pPtr_OR_oObj_of_type_QDateTimeEdit )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDateTimeEdit
$METHODS$
:calendarPopup() -> lBool
:calendarWidget() -> pQCalendarWidget
:clearMaximumDate() -> NIL
:clearMaximumDateTime() -> NIL
:clearMaximumTime() -> NIL
:clearMinimumDate() -> NIL
:clearMinimumDateTime() -> NIL
:clearMinimumTime() -> NIL
:currentSection() -> nSection
:currentSectionIndex() -> nInt
:date() -> pQDate
:dateTime() -> pQDateTime
:displayFormat() -> cQString
:displayedSections() -> nSections
:maximumDate() -> pQDate
:maximumDateTime() -> pQDateTime
:maximumTime() -> pQTime
:minimumDate() -> pQDate
:minimumDateTime() -> pQDateTime
:minimumTime() -> pQTime
:sectionAt( nIndex ) -> nSection
:sectionCount() -> nInt
:sectionText( nSection ) -> cQString
:setCalendarPopup( lEnable ) -> NIL
:setCalendarWidget( pCalendarWidget ) -> NIL
:setCurrentSection( nSection ) -> NIL
:setCurrentSectionIndex( nIndex ) -> NIL
:setDateRange( pMin, pMax ) -> NIL
:setDateTimeRange( pMin, pMax ) -> NIL
:setDisplayFormat( cFormat ) -> NIL
:setMaximumDate( pMax ) -> NIL
:setMaximumDateTime( pDt ) -> NIL
:setMaximumTime( pMax ) -> NIL
:setMinimumDate( pMin ) -> NIL
:setMinimumDateTime( pDt ) -> NIL
:setMinimumTime( pMin ) -> NIL
:setSelectedSection( nSection ) -> NIL
:setTimeRange( pMin, pMax ) -> NIL
:setTimeSpec( nSpec ) -> NIL
:time() -> pQTime
:timeSpec() -> nQt::TimeSpec
:setDate( pDate ) -> NIL
:setDateTime( pDateTime ) -> NIL
:setTime( pTime ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDateTimeEdit.prg
C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp
Library : hbqtgui
$SEEALSO$
QAbstractSpinBox
$END$
* $NAME$
* QDateTimeEdit()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDateTimeEdit.prg
* C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDateTimeEdit():new( ... )
* QDateTimeEdit():from( pPtr_OR_oObj_of_type_QDateTimeEdit )
* QDateTimeEdit():configure( pPtr_OR_oObj_of_type_QDateTimeEdit )
* $METHODS$
* :calendarPopup() -> lBool
* :calendarWidget() -> pQCalendarWidget
* :clearMaximumDate() -> NIL
* :clearMaximumDateTime() -> NIL
* :clearMaximumTime() -> NIL
* :clearMinimumDate() -> NIL
* :clearMinimumDateTime() -> NIL
* :clearMinimumTime() -> NIL
* :currentSection() -> nSection
* :currentSectionIndex() -> nInt
* :date() -> pQDate
* :dateTime() -> pQDateTime
* :displayFormat() -> cQString
* :displayedSections() -> nSections
* :maximumDate() -> pQDate
* :maximumDateTime() -> pQDateTime
* :maximumTime() -> pQTime
* :minimumDate() -> pQDate
* :minimumDateTime() -> pQDateTime
* :minimumTime() -> pQTime
* :sectionAt( nIndex ) -> nSection
* :sectionCount() -> nInt
* :sectionText( nSection ) -> cQString
* :setCalendarPopup( lEnable ) -> NIL
* :setCalendarWidget( pCalendarWidget ) -> NIL
* :setCurrentSection( nSection ) -> NIL
* :setCurrentSectionIndex( nIndex ) -> NIL
* :setDateRange( pMin, pMax ) -> NIL
* :setDateTimeRange( pMin, pMax ) -> NIL
* :setDisplayFormat( cFormat ) -> NIL
* :setMaximumDate( pMax ) -> NIL
* :setMaximumDateTime( pDt ) -> NIL
* :setMaximumTime( pMax ) -> NIL
* :setMinimumDate( pMin ) -> NIL
* :setMinimumDateTime( pDt ) -> NIL
* :setMinimumTime( pMin ) -> NIL
* :setSelectedSection( nSection ) -> NIL
* :setTimeRange( pMin, pMax ) -> NIL
* :setTimeSpec( nSpec ) -> NIL
* :time() -> pQTime
* :timeSpec() -> nQt::TimeSpec
* :setDate( pDate ) -> NIL
* :setDateTime( pDateTime ) -> NIL
* :setTime( pTime ) -> NIL
*
* $RETURNS$
* An instance of the object of type QDateTimeEdit
* $SEEALSO$
* QAbstractSpinBox
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractSpinBox
* $ONELINER$
* Creates a new QDateTimeEdit object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdatetimeedit.html
* $END$
*/

View File

@@ -1,65 +1,63 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDesktopWidget()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdesktopwidget.html
$ONELINER$
Creates a new QDesktopWidget object.
$INHERITS$
QWidget
$SYNTAX$
QDesktopWidget():new( ... )
QDesktopWidget():from( pPtr_OR_oObj_of_type_QDesktopWidget )
QDesktopWidget():configure( pPtr_OR_oObj_of_type_QDesktopWidget )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDesktopWidget
$METHODS$
:availableGeometry( nScreen ) -> pQRect
:availableGeometry_1( pWidget ) -> pQRect
:availableGeometry_2( pP ) -> pQRect
:isVirtualDesktop() -> lBool
:numScreens() -> nInt
:primaryScreen() -> nInt
:screen( nScreen ) -> pQWidget
:screenGeometry( nScreen ) -> pQRect
:screenGeometry_1( pWidget ) -> pQRect
:screenGeometry_2( pP ) -> pQRect
:screenNumber( pWidget ) -> nInt
:screenNumber_1( pPoint ) -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDesktopWidget.prg
C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QDesktopWidget()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDesktopWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDesktopWidget():new( ... )
* QDesktopWidget():from( pPtr_OR_oObj_of_type_QDesktopWidget )
* QDesktopWidget():configure( pPtr_OR_oObj_of_type_QDesktopWidget )
* $METHODS$
* :availableGeometry( nScreen ) -> pQRect
* :availableGeometry_1( pWidget ) -> pQRect
* :availableGeometry_2( pP ) -> pQRect
* :isVirtualDesktop() -> lBool
* :numScreens() -> nInt
* :primaryScreen() -> nInt
* :screen( nScreen ) -> pQWidget
* :screenGeometry( nScreen ) -> pQRect
* :screenGeometry_1( pWidget ) -> pQRect
* :screenGeometry_2( pP ) -> pQRect
* :screenNumber( pWidget ) -> nInt
* :screenNumber_1( pPoint ) -> nInt
*
* $RETURNS$
* An instance of the object of type QDesktopWidget
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QDesktopWidget object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdesktopwidget.html
* $END$
*/

View File

@@ -1,60 +1,58 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDial()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdial.html
$ONELINER$
Creates a new QDial object.
$INHERITS$
QAbstractSlider
$SYNTAX$
QDial():new( ... )
QDial():from( pPtr_OR_oObj_of_type_QDial )
QDial():configure( pPtr_OR_oObj_of_type_QDial )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDial
$METHODS$
:notchSize() -> nInt
:notchTarget() -> nQreal
:notchesVisible() -> lBool
:setNotchTarget( nTarget ) -> NIL
:wrapping() -> lBool
:setNotchesVisible( lVisible ) -> NIL
:setWrapping( lOn ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDial.prg
C++ wrappers : contrib/hbqt/qtgui/QDial.cpp
Library : hbqtgui
$SEEALSO$
QAbstractSlider
$END$
* $NAME$
* QDial()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDial.prg
* C++ wrappers : contrib/hbqt/qtgui/QDial.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDial():new( ... )
* QDial():from( pPtr_OR_oObj_of_type_QDial )
* QDial():configure( pPtr_OR_oObj_of_type_QDial )
* $METHODS$
* :notchSize() -> nInt
* :notchTarget() -> nQreal
* :notchesVisible() -> lBool
* :setNotchTarget( nTarget ) -> NIL
* :wrapping() -> lBool
* :setNotchesVisible( lVisible ) -> NIL
* :setWrapping( lOn ) -> NIL
*
* $RETURNS$
* An instance of the object of type QDial
* $SEEALSO$
* QAbstractSlider
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractSlider
* $ONELINER$
* Creates a new QDial object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdial.html
* $END$
*/

View File

@@ -1,63 +1,61 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDialog()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdialog.html
$ONELINER$
Creates a new QDialog object.
$INHERITS$
QWidget
$SYNTAX$
QDialog():new( ... )
QDialog():from( pPtr_OR_oObj_of_type_QDialog )
QDialog():configure( pPtr_OR_oObj_of_type_QDialog )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDialog
$METHODS$
:isSizeGripEnabled() -> lBool
:result() -> nInt
:setModal( lModal ) -> NIL
:setResult( nI ) -> NIL
:setSizeGripEnabled( lBool ) -> NIL
:accept() -> NIL
:done( nR ) -> NIL
:exec() -> nInt
:open() -> NIL
:reject() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDialog.prg
C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDialog():new( ... )
* QDialog():from( pPtr_OR_oObj_of_type_QDialog )
* QDialog():configure( pPtr_OR_oObj_of_type_QDialog )
* $METHODS$
* :isSizeGripEnabled() -> lBool
* :result() -> nInt
* :setModal( lModal ) -> NIL
* :setResult( nI ) -> NIL
* :setSizeGripEnabled( lBool ) -> NIL
* :accept() -> NIL
* :done( nR ) -> NIL
* :exec() -> nInt
* :open() -> NIL
* :reject() -> NIL
*
* $RETURNS$
* An instance of the object of type QDialog
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdialog.html
* $END$
*/

View File

@@ -1,102 +1,100 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDir()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdir.html
$ONELINER$
Creates a new QDir object.
$INHERITS$
$SYNTAX$
QDir():new( ... )
QDir():from( pPtr_OR_oObj_of_type_QDir )
QDir():configure( pPtr_OR_oObj_of_type_QDir )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDir
$METHODS$
:absoluteFilePath( cFileName ) -> cQString
:absolutePath() -> cQString
:canonicalPath() -> cQString
:cd( cDirName ) -> lBool
:cdUp() -> lBool
:count() -> nUint
:dirName() -> cQString
:entryList( pNameFilters, nFilters, nSort ) -> pQStringList
:entryList_1( nFilters, nSort ) -> pQStringList
:exists( cName ) -> lBool
:exists_1() -> lBool
:filePath( cFileName ) -> cQString
:filter() -> nFilters
:isAbsolute() -> lBool
:isReadable() -> lBool
:isRelative() -> lBool
:isRoot() -> lBool
:makeAbsolute() -> lBool
:mkdir( cDirName ) -> lBool
:mkpath( cDirPath ) -> lBool
:nameFilters() -> pQStringList
:path() -> cQString
:refresh() -> NIL
:relativeFilePath( cFileName ) -> cQString
:remove( cFileName ) -> lBool
:rename( cOldName, cNewName ) -> lBool
:rmdir( cDirName ) -> lBool
:rmpath( cDirPath ) -> lBool
:setFilter( nFilters ) -> NIL
:setNameFilters( pNameFilters ) -> NIL
:setPath( cPath ) -> NIL
:setSorting( nSort ) -> NIL
:sorting() -> nSortFlags
:addSearchPath( cPrefix, cPath ) -> NIL
:cleanPath( cPath ) -> cQString
:currentPath() -> cQString
:fromNativeSeparators( cPathName ) -> cQString
:homePath() -> cQString
:isAbsolutePath( cPath ) -> lBool
:isRelativePath( cPath ) -> lBool
:match( cFilter, cFileName ) -> lBool
:match_1( pFilters, cFileName ) -> lBool
:rootPath() -> cQString
:searchPaths( cPrefix ) -> pQStringList
:separator() -> pQChar
:setCurrent( cPath ) -> lBool
:setSearchPaths( cPrefix, pSearchPaths ) -> NIL
:tempPath() -> cQString
:toNativeSeparators( cPathName ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQDir.prg
C++ wrappers : contrib/hbqt/qtcore/QDir.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QDir()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQDir.prg
* C++ wrappers : contrib/hbqt/qtcore/QDir.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDir():new( ... )
* QDir():from( pPtr_OR_oObj_of_type_QDir )
* QDir():configure( pPtr_OR_oObj_of_type_QDir )
* $METHODS$
* :absoluteFilePath( cFileName ) -> cQString
* :absolutePath() -> cQString
* :canonicalPath() -> cQString
* :cd( cDirName ) -> lBool
* :cdUp() -> lBool
* :count() -> nUint
* :dirName() -> cQString
* :entryList( pNameFilters, nFilters, nSort ) -> pQStringList
* :entryList_1( nFilters, nSort ) -> pQStringList
* :exists( cName ) -> lBool
* :exists_1() -> lBool
* :filePath( cFileName ) -> cQString
* :filter() -> nFilters
* :isAbsolute() -> lBool
* :isReadable() -> lBool
* :isRelative() -> lBool
* :isRoot() -> lBool
* :makeAbsolute() -> lBool
* :mkdir( cDirName ) -> lBool
* :mkpath( cDirPath ) -> lBool
* :nameFilters() -> pQStringList
* :path() -> cQString
* :refresh() -> NIL
* :relativeFilePath( cFileName ) -> cQString
* :remove( cFileName ) -> lBool
* :rename( cOldName, cNewName ) -> lBool
* :rmdir( cDirName ) -> lBool
* :rmpath( cDirPath ) -> lBool
* :setFilter( nFilters ) -> NIL
* :setNameFilters( pNameFilters ) -> NIL
* :setPath( cPath ) -> NIL
* :setSorting( nSort ) -> NIL
* :sorting() -> nSortFlags
* :addSearchPath( cPrefix, cPath ) -> NIL
* :cleanPath( cPath ) -> cQString
* :currentPath() -> cQString
* :fromNativeSeparators( cPathName ) -> cQString
* :homePath() -> cQString
* :isAbsolutePath( cPath ) -> lBool
* :isRelativePath( cPath ) -> lBool
* :match( cFilter, cFileName ) -> lBool
* :match_1( pFilters, cFileName ) -> lBool
* :rootPath() -> cQString
* :searchPaths( cPrefix ) -> pQStringList
* :separator() -> pQChar
* :setCurrent( cPath ) -> lBool
* :setSearchPaths( cPrefix, pSearchPaths ) -> NIL
* :tempPath() -> cQString
* :toNativeSeparators( cPathName ) -> cQString
*
* $RETURNS$
* An instance of the object of type QDir
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QDir object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdir.html
* $END$
*/

View File

@@ -1,90 +1,88 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDirModel()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdirmodel.html
$ONELINER$
Creates a new QDirModel object.
$INHERITS$
QAbstractItemModel
$SYNTAX$
QDirModel():new( ... )
QDirModel():from( pPtr_OR_oObj_of_type_QDirModel )
QDirModel():configure( pPtr_OR_oObj_of_type_QDirModel )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDirModel
$METHODS$
:columnCount( pParent ) -> nInt
:data( pIndex, nRole ) -> pQVariant
:dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool
:fileIcon( pIndex ) -> pQIcon
:fileInfo( pIndex ) -> pQFileInfo
:fileName( pIndex ) -> cQString
:filePath( pIndex ) -> cQString
:filter() -> nQDir::Filters
:flags( pIndex ) -> nQt::ItemFlags
:hasChildren( pParent ) -> lBool
:headerData( nSection, nOrientation, nRole ) -> pQVariant
:iconProvider() -> pQFileIconProvider
:index( nRow, nColumn, pParent ) -> pQModelIndex
:index_1( cPath, nColumn ) -> pQModelIndex
:isDir( pIndex ) -> lBool
:isReadOnly() -> lBool
:lazyChildCount() -> lBool
:mimeTypes() -> pQStringList
:mkdir( pParent, cName ) -> pQModelIndex
:nameFilters() -> pQStringList
:parent( pChild ) -> pQModelIndex
:remove( pIndex ) -> lBool
:resolveSymlinks() -> lBool
:rmdir( pIndex ) -> lBool
:rowCount( pParent ) -> nInt
:setData( pIndex, pValue, nRole ) -> lBool
:setFilter( nFilters ) -> NIL
:setIconProvider( pProvider ) -> NIL
:setLazyChildCount( lEnable ) -> NIL
:setNameFilters( pFilters ) -> NIL
:setReadOnly( lEnable ) -> NIL
:setResolveSymlinks( lEnable ) -> NIL
:setSorting( nSort ) -> NIL
:sort( nColumn, nOrder ) -> NIL
:sorting() -> nQDir::SortFlags
:supportedDropActions() -> nQt::DropActions
:refresh( pParent ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDirModel.prg
C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp
Library : hbqtgui
$SEEALSO$
QAbstractItemModel
$END$
* $NAME$
* QDirModel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDirModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDirModel():new( ... )
* QDirModel():from( pPtr_OR_oObj_of_type_QDirModel )
* QDirModel():configure( pPtr_OR_oObj_of_type_QDirModel )
* $METHODS$
* :columnCount( pParent ) -> nInt
* :data( pIndex, nRole ) -> pQVariant
* :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool
* :fileIcon( pIndex ) -> pQIcon
* :fileInfo( pIndex ) -> pQFileInfo
* :fileName( pIndex ) -> cQString
* :filePath( pIndex ) -> cQString
* :filter() -> nQDir::Filters
* :flags( pIndex ) -> nQt::ItemFlags
* :hasChildren( pParent ) -> lBool
* :headerData( nSection, nOrientation, nRole ) -> pQVariant
* :iconProvider() -> pQFileIconProvider
* :index( nRow, nColumn, pParent ) -> pQModelIndex
* :index_1( cPath, nColumn ) -> pQModelIndex
* :isDir( pIndex ) -> lBool
* :isReadOnly() -> lBool
* :lazyChildCount() -> lBool
* :mimeTypes() -> pQStringList
* :mkdir( pParent, cName ) -> pQModelIndex
* :nameFilters() -> pQStringList
* :parent( pChild ) -> pQModelIndex
* :remove( pIndex ) -> lBool
* :resolveSymlinks() -> lBool
* :rmdir( pIndex ) -> lBool
* :rowCount( pParent ) -> nInt
* :setData( pIndex, pValue, nRole ) -> lBool
* :setFilter( nFilters ) -> NIL
* :setIconProvider( pProvider ) -> NIL
* :setLazyChildCount( lEnable ) -> NIL
* :setNameFilters( pFilters ) -> NIL
* :setReadOnly( lEnable ) -> NIL
* :setResolveSymlinks( lEnable ) -> NIL
* :setSorting( nSort ) -> NIL
* :sort( nColumn, nOrder ) -> NIL
* :sorting() -> nQDir::SortFlags
* :supportedDropActions() -> nQt::DropActions
* :refresh( pParent ) -> NIL
*
* $RETURNS$
* An instance of the object of type QDirModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QDirModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdirmodel.html
* $END$
*/

View File

@@ -1,65 +1,63 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDockWidget()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdockwidget.html
$ONELINER$
Creates a new QDockWidget object.
$INHERITS$
QWidget
$SYNTAX$
QDockWidget():new( ... )
QDockWidget():from( pPtr_OR_oObj_of_type_QDockWidget )
QDockWidget():configure( pPtr_OR_oObj_of_type_QDockWidget )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDockWidget
$METHODS$
:allowedAreas() -> nQt::DockWidgetAreas
:features() -> nDockWidgetFeatures
:isAreaAllowed( nArea ) -> lBool
:isFloating() -> lBool
:setAllowedAreas( nAreas ) -> NIL
:setFeatures( nFeatures ) -> NIL
:setFloating( lFloating ) -> NIL
:setTitleBarWidget( pWidget ) -> NIL
:setWidget( pWidget ) -> NIL
:titleBarWidget() -> pQWidget
:toggleViewAction() -> pQAction
:widget() -> pQWidget
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDockWidget.prg
C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QDockWidget()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDockWidget.prg
* C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDockWidget():new( ... )
* QDockWidget():from( pPtr_OR_oObj_of_type_QDockWidget )
* QDockWidget():configure( pPtr_OR_oObj_of_type_QDockWidget )
* $METHODS$
* :allowedAreas() -> nQt::DockWidgetAreas
* :features() -> nDockWidgetFeatures
* :isAreaAllowed( nArea ) -> lBool
* :isFloating() -> lBool
* :setAllowedAreas( nAreas ) -> NIL
* :setFeatures( nFeatures ) -> NIL
* :setFloating( lFloating ) -> NIL
* :setTitleBarWidget( pWidget ) -> NIL
* :setWidget( pWidget ) -> NIL
* :titleBarWidget() -> pQWidget
* :toggleViewAction() -> pQAction
* :widget() -> pQWidget
*
* $RETURNS$
* An instance of the object of type QDockWidget
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QDockWidget object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdockwidget.html
* $END$
*/

View File

@@ -1,71 +1,69 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDoubleSpinBox()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdoublespinbox.html
$ONELINER$
Creates a new QDoubleSpinBox object.
$INHERITS$
QAbstractSpinBox
$SYNTAX$
QDoubleSpinBox():new( ... )
QDoubleSpinBox():from( pPtr_OR_oObj_of_type_QDoubleSpinBox )
QDoubleSpinBox():configure( pPtr_OR_oObj_of_type_QDoubleSpinBox )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDoubleSpinBox
$METHODS$
:cleanText() -> cQString
:decimals() -> nInt
:maximum() -> nDouble
:minimum() -> nDouble
:prefix() -> cQString
:setDecimals( nPrec ) -> NIL
:setMaximum( nMax ) -> NIL
:setMinimum( nMin ) -> NIL
:setPrefix( cPrefix ) -> NIL
:setRange( nMinimum, nMaximum ) -> NIL
:setSingleStep( nVal ) -> NIL
:setSuffix( cSuffix ) -> NIL
:singleStep() -> nDouble
:suffix() -> cQString
:textFromValue( nValue ) -> cQString
:value() -> nDouble
:valueFromText( cText ) -> nDouble
:setValue( nVal ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDoubleSpinBox.prg
C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp
Library : hbqtgui
$SEEALSO$
QAbstractSpinBox
$END$
* $NAME$
* QDoubleSpinBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDoubleSpinBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDoubleSpinBox():new( ... )
* QDoubleSpinBox():from( pPtr_OR_oObj_of_type_QDoubleSpinBox )
* QDoubleSpinBox():configure( pPtr_OR_oObj_of_type_QDoubleSpinBox )
* $METHODS$
* :cleanText() -> cQString
* :decimals() -> nInt
* :maximum() -> nDouble
* :minimum() -> nDouble
* :prefix() -> cQString
* :setDecimals( nPrec ) -> NIL
* :setMaximum( nMax ) -> NIL
* :setMinimum( nMin ) -> NIL
* :setPrefix( cPrefix ) -> NIL
* :setRange( nMinimum, nMaximum ) -> NIL
* :setSingleStep( nVal ) -> NIL
* :setSuffix( cSuffix ) -> NIL
* :singleStep() -> nDouble
* :suffix() -> cQString
* :textFromValue( nValue ) -> cQString
* :value() -> nDouble
* :valueFromText( cText ) -> nDouble
* :setValue( nVal ) -> NIL
*
* $RETURNS$
* An instance of the object of type QDoubleSpinBox
* $SEEALSO$
* QAbstractSpinBox
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractSpinBox
* $ONELINER$
* Creates a new QDoubleSpinBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdoublespinbox.html
* $END$
*/

View File

@@ -1,58 +1,56 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDragMoveEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdragmoveevent.html
$ONELINER$
Creates a new QDragMoveEvent object.
$INHERITS$
QDropEvent
$SYNTAX$
QDragMoveEvent():new( ... )
QDragMoveEvent():from( pPtr_OR_oObj_of_type_QDragMoveEvent )
QDragMoveEvent():configure( pPtr_OR_oObj_of_type_QDragMoveEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDragMoveEvent
$METHODS$
:accept( pRectangle ) -> NIL
:accept_1() -> NIL
:answerRect() -> pQRect
:ignore( pRectangle ) -> NIL
:ignore_1() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDragMoveEvent.prg
C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp
Library : hbqtgui
$SEEALSO$
QDropEvent
$END$
* $NAME$
* QDragMoveEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDragMoveEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDragMoveEvent():new( ... )
* QDragMoveEvent():from( pPtr_OR_oObj_of_type_QDragMoveEvent )
* QDragMoveEvent():configure( pPtr_OR_oObj_of_type_QDragMoveEvent )
* $METHODS$
* :accept( pRectangle ) -> NIL
* :accept_1() -> NIL
* :answerRect() -> pQRect
* :ignore( pRectangle ) -> NIL
* :ignore_1() -> NIL
*
* $RETURNS$
* An instance of the object of type QDragMoveEvent
* $SEEALSO$
* QDropEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDropEvent
* $ONELINER$
* Creates a new QDragMoveEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdragmoveevent.html
* $END$
*/

View File

@@ -1,63 +1,61 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QDropEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qdropevent.html
$ONELINER$
Creates a new QDropEvent object.
$INHERITS$
QEvent
$SYNTAX$
QDropEvent():new( ... )
QDropEvent():from( pPtr_OR_oObj_of_type_QDropEvent )
QDropEvent():configure( pPtr_OR_oObj_of_type_QDropEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QDropEvent
$METHODS$
:acceptProposedAction() -> NIL
:dropAction() -> nQt::DropAction
:keyboardModifiers() -> nQt::KeyboardModifiers
:mimeData() -> pQMimeData
:mouseButtons() -> nQt::MouseButtons
:pos() -> pQPoint
:possibleActions() -> nQt::DropActions
:proposedAction() -> nQt::DropAction
:setDropAction( nAction ) -> NIL
:source() -> pQWidget
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQDropEvent.prg
C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp
Library : hbqtgui
$SEEALSO$
QEvent
$END$
* $NAME$
* QDropEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQDropEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QDropEvent():new( ... )
* QDropEvent():from( pPtr_OR_oObj_of_type_QDropEvent )
* QDropEvent():configure( pPtr_OR_oObj_of_type_QDropEvent )
* $METHODS$
* :acceptProposedAction() -> NIL
* :dropAction() -> nQt::DropAction
* :keyboardModifiers() -> nQt::KeyboardModifiers
* :mimeData() -> pQMimeData
* :mouseButtons() -> nQt::MouseButtons
* :pos() -> pQPoint
* :possibleActions() -> nQt::DropActions
* :proposedAction() -> nQt::DropAction
* :setDropAction( nAction ) -> NIL
* :source() -> pQWidget
*
* $RETURNS$
* An instance of the object of type QDropEvent
* $SEEALSO$
* QEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QEvent
* $ONELINER$
* Creates a new QDropEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qdropevent.html
* $END$
*/

View File

@@ -1,55 +1,53 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QErrorMessage()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qerrormessage.html
$ONELINER$
Creates a new QErrorMessage object.
$INHERITS$
QDialog
$SYNTAX$
QErrorMessage():new( ... )
QErrorMessage():from( pPtr_OR_oObj_of_type_QErrorMessage )
QErrorMessage():configure( pPtr_OR_oObj_of_type_QErrorMessage )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QErrorMessage
$METHODS$
:showMessage( cMessage ) -> NIL
:showMessage_1( cMessage, cType ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQErrorMessage.prg
C++ wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp
Library : hbqtgui
$SEEALSO$
QDialog
$END$
* $NAME$
* QErrorMessage()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQErrorMessage.prg
* C++ wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QErrorMessage():new( ... )
* QErrorMessage():from( pPtr_OR_oObj_of_type_QErrorMessage )
* QErrorMessage():configure( pPtr_OR_oObj_of_type_QErrorMessage )
* $METHODS$
* :showMessage( cMessage ) -> NIL
* :showMessage_1( cMessage, cType ) -> NIL
*
* $RETURNS$
* An instance of the object of type QErrorMessage
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QErrorMessage object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qerrormessage.html
* $END$
*/

View File

@@ -1,60 +1,58 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qevent.html
$ONELINER$
Creates a new QEvent object.
$INHERITS$
$SYNTAX$
QEvent():new( ... )
QEvent():from( pPtr_OR_oObj_of_type_QEvent )
QEvent():configure( pPtr_OR_oObj_of_type_QEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QEvent
$METHODS$
:accept() -> NIL
:ignore() -> NIL
:isAccepted() -> lBool
:setAccepted( lAccepted ) -> NIL
:spontaneous() -> lBool
:type() -> nType
:registerEventType( nHint ) -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQEvent.prg
C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQEvent.prg
* C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QEvent():new( ... )
* QEvent():from( pPtr_OR_oObj_of_type_QEvent )
* QEvent():configure( pPtr_OR_oObj_of_type_QEvent )
* $METHODS$
* :accept() -> NIL
* :ignore() -> NIL
* :isAccepted() -> lBool
* :setAccepted( lAccepted ) -> NIL
* :spontaneous() -> lBool
* :type() -> nType
* :registerEventType( nHint ) -> nInt
*
* $RETURNS$
* An instance of the object of type QEvent
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qevent.html
* $END$
*/

View File

@@ -1,59 +1,57 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QEventLoop()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qeventloop.html
$ONELINER$
Creates a new QEventLoop object.
$INHERITS$
QObject
$SYNTAX$
QEventLoop():new( ... )
QEventLoop():from( pPtr_OR_oObj_of_type_QEventLoop )
QEventLoop():configure( pPtr_OR_oObj_of_type_QEventLoop )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QEventLoop
$METHODS$
:exec( nFlags ) -> nInt
:exit( nReturnCode ) -> NIL
:isRunning() -> lBool
:processEvents( nFlags ) -> lBool
:processEvents_1( nFlags, nMaxTime ) -> NIL
:wakeUp() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQEventLoop.prg
C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp
Library : hbqtcore
$SEEALSO$
QObject
$END$
* $NAME$
* QEventLoop()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQEventLoop.prg
* C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QEventLoop():new( ... )
* QEventLoop():from( pPtr_OR_oObj_of_type_QEventLoop )
* QEventLoop():configure( pPtr_OR_oObj_of_type_QEventLoop )
* $METHODS$
* :exec( nFlags ) -> nInt
* :exit( nReturnCode ) -> NIL
* :isRunning() -> lBool
* :processEvents( nFlags ) -> lBool
* :processEvents_1( nFlags, nMaxTime ) -> NIL
* :wakeUp() -> NIL
*
* $RETURNS$
* An instance of the object of type QEventLoop
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QEventLoop object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qeventloop.html
* $END$
*/

View File

@@ -1,87 +1,85 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFile()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfile.html
$ONELINER$
Creates a new QFile object.
$INHERITS$
QIODevice
$SYNTAX$
QFile():new( ... )
QFile():from( pPtr_OR_oObj_of_type_QFile )
QFile():configure( pPtr_OR_oObj_of_type_QFile )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFile
$METHODS$
:atEnd() -> lBool
:close() -> NIL
:copy( cNewName ) -> lBool
:error() -> nFileError
:exists() -> lBool
:fileName() -> cQString
:flush() -> lBool
:handle() -> nInt
:isSequential() -> lBool
:link( cLinkName ) -> lBool
:map( nOffset, nSize, nFlags ) -> pUchar
:open( nMode ) -> lBool
:open_1( nFd, nMode ) -> lBool
:permissions() -> nPermissions
:remove() -> lBool
:rename( cNewName ) -> lBool
:resize( nSz ) -> lBool
:setFileName( cName ) -> NIL
:setPermissions( nPermissions ) -> lBool
:size() -> nQint64
:symLinkTarget() -> cQString
:unsetError() -> NIL
:copy_1( cFileName, cNewName ) -> lBool
:decodeName( pLocalFileName ) -> cQString
:decodeName_1( pLocalFileName ) -> cQString
:encodeName( cFileName ) -> pQByteArray
:exists_1( cFileName ) -> lBool
:link_1( cFileName, cLinkName ) -> lBool
:permissions_1( cFileName ) -> nPermissions
:remove_1( cFileName ) -> lBool
:rename_1( cOldName, cNewName ) -> lBool
:resize_1( cFileName, nSz ) -> lBool
:setPermissions_1( cFileName, nPermissions ) -> lBool
:symLinkTarget_1( cFileName ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQFile.prg
C++ wrappers : contrib/hbqt/qtcore/QFile.cpp
Library : hbqtcore
$SEEALSO$
QIODevice
$END$
* $NAME$
* QFile()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQFile.prg
* C++ wrappers : contrib/hbqt/qtcore/QFile.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFile():new( ... )
* QFile():from( pPtr_OR_oObj_of_type_QFile )
* QFile():configure( pPtr_OR_oObj_of_type_QFile )
* $METHODS$
* :atEnd() -> lBool
* :close() -> NIL
* :copy( cNewName ) -> lBool
* :error() -> nFileError
* :exists() -> lBool
* :fileName() -> cQString
* :flush() -> lBool
* :handle() -> nInt
* :isSequential() -> lBool
* :link( cLinkName ) -> lBool
* :map( nOffset, nSize, nFlags ) -> pUchar
* :open( nMode ) -> lBool
* :open_1( nFd, nMode ) -> lBool
* :permissions() -> nPermissions
* :remove() -> lBool
* :rename( cNewName ) -> lBool
* :resize( nSz ) -> lBool
* :setFileName( cName ) -> NIL
* :setPermissions( nPermissions ) -> lBool
* :size() -> nQint64
* :symLinkTarget() -> cQString
* :unsetError() -> NIL
* :copy_1( cFileName, cNewName ) -> lBool
* :decodeName( pLocalFileName ) -> cQString
* :decodeName_1( pLocalFileName ) -> cQString
* :encodeName( cFileName ) -> pQByteArray
* :exists_1( cFileName ) -> lBool
* :link_1( cFileName, cLinkName ) -> lBool
* :permissions_1( cFileName ) -> nPermissions
* :remove_1( cFileName ) -> lBool
* :rename_1( cOldName, cNewName ) -> lBool
* :resize_1( cFileName, nSz ) -> lBool
* :setPermissions_1( cFileName, nPermissions ) -> lBool
* :symLinkTarget_1( cFileName ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFile
* $SEEALSO$
* QIODevice
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QIODevice
* $ONELINER$
* Creates a new QFile object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfile.html
* $END$
*/

View File

@@ -1,99 +1,97 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFileDialog()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfiledialog.html
$ONELINER$
Creates a new QFileDialog object.
$INHERITS$
QDialog
$SYNTAX$
QFileDialog():new( ... )
QFileDialog():from( pPtr_OR_oObj_of_type_QFileDialog )
QFileDialog():configure( pPtr_OR_oObj_of_type_QFileDialog )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFileDialog
$METHODS$
:acceptMode() -> nAcceptMode
:confirmOverwrite() -> lBool
:defaultSuffix() -> cQString
:directory() -> pQDir
:fileMode() -> nFileMode
:filter() -> nQDir::Filters
:history() -> pQStringList
:iconProvider() -> pQFileIconProvider
:isNameFilterDetailsVisible() -> lBool
:isReadOnly() -> lBool
:itemDelegate() -> pQAbstractItemDelegate
:labelText( nLabel ) -> cQString
:nameFilters() -> pQStringList
:options() -> nOptions
:proxyModel() -> pQAbstractProxyModel
:resolveSymlinks() -> lBool
:restoreState( pState ) -> lBool
:saveState() -> pQByteArray
:selectFile( cFilename ) -> NIL
:selectNameFilter( cFilter ) -> NIL
:selectedFiles() -> pQStringList
:selectedNameFilter() -> cQString
:setAcceptMode( nMode ) -> NIL
:setConfirmOverwrite( lEnabled ) -> NIL
:setDefaultSuffix( cSuffix ) -> NIL
:setDirectory( cDirectory ) -> NIL
:setDirectory_1( pDirectory ) -> NIL
:setFileMode( nMode ) -> NIL
:setFilter( nFilters ) -> NIL
:setHistory( pPaths ) -> NIL
:setIconProvider( pProvider ) -> NIL
:setItemDelegate( pDelegate ) -> NIL
:setLabelText( nLabel, cText ) -> NIL
:setNameFilter( cFilter ) -> NIL
:setNameFilterDetailsVisible( lEnabled ) -> NIL
:setNameFilters( pFilters ) -> NIL
:setOption( nOption, lOn ) -> NIL
:setOptions( nOptions ) -> NIL
:setProxyModel( pProxyModel ) -> NIL
:setReadOnly( lEnabled ) -> NIL
:setResolveSymlinks( lEnabled ) -> NIL
:setViewMode( nMode ) -> NIL
:sidebarUrls() -> pQList<QUrl>
:testOption( nOption ) -> lBool
:viewMode() -> nViewMode
:getExistingDirectory( pParent, cCaption, cDir, nOptions ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFileDialog.prg
C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp
Library : hbqtgui
$SEEALSO$
QDialog
$END$
* $NAME$
* QFileDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFileDialog():new( ... )
* QFileDialog():from( pPtr_OR_oObj_of_type_QFileDialog )
* QFileDialog():configure( pPtr_OR_oObj_of_type_QFileDialog )
* $METHODS$
* :acceptMode() -> nAcceptMode
* :confirmOverwrite() -> lBool
* :defaultSuffix() -> cQString
* :directory() -> pQDir
* :fileMode() -> nFileMode
* :filter() -> nQDir::Filters
* :history() -> pQStringList
* :iconProvider() -> pQFileIconProvider
* :isNameFilterDetailsVisible() -> lBool
* :isReadOnly() -> lBool
* :itemDelegate() -> pQAbstractItemDelegate
* :labelText( nLabel ) -> cQString
* :nameFilters() -> pQStringList
* :options() -> nOptions
* :proxyModel() -> pQAbstractProxyModel
* :resolveSymlinks() -> lBool
* :restoreState( pState ) -> lBool
* :saveState() -> pQByteArray
* :selectFile( cFilename ) -> NIL
* :selectNameFilter( cFilter ) -> NIL
* :selectedFiles() -> pQStringList
* :selectedNameFilter() -> cQString
* :setAcceptMode( nMode ) -> NIL
* :setConfirmOverwrite( lEnabled ) -> NIL
* :setDefaultSuffix( cSuffix ) -> NIL
* :setDirectory( cDirectory ) -> NIL
* :setDirectory_1( pDirectory ) -> NIL
* :setFileMode( nMode ) -> NIL
* :setFilter( nFilters ) -> NIL
* :setHistory( pPaths ) -> NIL
* :setIconProvider( pProvider ) -> NIL
* :setItemDelegate( pDelegate ) -> NIL
* :setLabelText( nLabel, cText ) -> NIL
* :setNameFilter( cFilter ) -> NIL
* :setNameFilterDetailsVisible( lEnabled ) -> NIL
* :setNameFilters( pFilters ) -> NIL
* :setOption( nOption, lOn ) -> NIL
* :setOptions( nOptions ) -> NIL
* :setProxyModel( pProxyModel ) -> NIL
* :setReadOnly( lEnabled ) -> NIL
* :setResolveSymlinks( lEnabled ) -> NIL
* :setViewMode( nMode ) -> NIL
* :sidebarUrls() -> pQList<QUrl>
* :testOption( nOption ) -> lBool
* :viewMode() -> nViewMode
* :getExistingDirectory( pParent, cCaption, cDir, nOptions ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFileDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QFileDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfiledialog.html
* $END$
*/

View File

@@ -1,56 +1,54 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFileIconProvider()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfileiconprovider.html
$ONELINER$
Creates a new QFileIconProvider object.
$INHERITS$
$SYNTAX$
QFileIconProvider():new( ... )
QFileIconProvider():from( pPtr_OR_oObj_of_type_QFileIconProvider )
QFileIconProvider():configure( pPtr_OR_oObj_of_type_QFileIconProvider )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFileIconProvider
$METHODS$
:icon( nType ) -> pQIcon
:icon_1( pInfo ) -> pQIcon
:type( pInfo ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFileIconProvider.prg
C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QFileIconProvider()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileIconProvider.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFileIconProvider():new( ... )
* QFileIconProvider():from( pPtr_OR_oObj_of_type_QFileIconProvider )
* QFileIconProvider():configure( pPtr_OR_oObj_of_type_QFileIconProvider )
* $METHODS$
* :icon( nType ) -> pQIcon
* :icon_1( pInfo ) -> pQIcon
* :type( pInfo ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFileIconProvider
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFileIconProvider object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfileiconprovider.html
* $END$
*/

View File

@@ -1,97 +1,95 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFileInfo()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfileinfo.html
$ONELINER$
Creates a new QFileInfo object.
$INHERITS$
$SYNTAX$
QFileInfo():new( ... )
QFileInfo():from( pPtr_OR_oObj_of_type_QFileInfo )
QFileInfo():configure( pPtr_OR_oObj_of_type_QFileInfo )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFileInfo
$METHODS$
:absoluteDir() -> pQDir
:absoluteFilePath() -> cQString
:absolutePath() -> cQString
:baseName() -> cQString
:bundleName() -> cQString
:caching() -> lBool
:canonicalFilePath() -> cQString
:canonicalPath() -> cQString
:completeBaseName() -> cQString
:completeSuffix() -> cQString
:created() -> pQDateTime
:dir() -> pQDir
:exists() -> lBool
:fileName() -> cQString
:filePath() -> cQString
:group() -> cQString
:groupId() -> nUint
:isAbsolute() -> lBool
:isBundle() -> lBool
:isDir() -> lBool
:isExecutable() -> lBool
:isFile() -> lBool
:isHidden() -> lBool
:isReadable() -> lBool
:isRelative() -> lBool
:isRoot() -> lBool
:isSymLink() -> lBool
:isWritable() -> lBool
:lastModified() -> pQDateTime
:lastRead() -> pQDateTime
:makeAbsolute() -> lBool
:owner() -> cQString
:ownerId() -> nUint
:path() -> cQString
:permission( nPermissions ) -> lBool
:permissions() -> nQFile::Permissions
:refresh() -> NIL
:setCaching( lEnable ) -> NIL
:setFile( cFile ) -> NIL
:setFile_1( pFile ) -> NIL
:setFile_2( pDir, cFile ) -> NIL
:size() -> nQint64
:suffix() -> cQString
:symLinkTarget() -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQFileInfo.prg
C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QFileInfo()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQFileInfo.prg
* C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFileInfo():new( ... )
* QFileInfo():from( pPtr_OR_oObj_of_type_QFileInfo )
* QFileInfo():configure( pPtr_OR_oObj_of_type_QFileInfo )
* $METHODS$
* :absoluteDir() -> pQDir
* :absoluteFilePath() -> cQString
* :absolutePath() -> cQString
* :baseName() -> cQString
* :bundleName() -> cQString
* :caching() -> lBool
* :canonicalFilePath() -> cQString
* :canonicalPath() -> cQString
* :completeBaseName() -> cQString
* :completeSuffix() -> cQString
* :created() -> pQDateTime
* :dir() -> pQDir
* :exists() -> lBool
* :fileName() -> cQString
* :filePath() -> cQString
* :group() -> cQString
* :groupId() -> nUint
* :isAbsolute() -> lBool
* :isBundle() -> lBool
* :isDir() -> lBool
* :isExecutable() -> lBool
* :isFile() -> lBool
* :isHidden() -> lBool
* :isReadable() -> lBool
* :isRelative() -> lBool
* :isRoot() -> lBool
* :isSymLink() -> lBool
* :isWritable() -> lBool
* :lastModified() -> pQDateTime
* :lastRead() -> pQDateTime
* :makeAbsolute() -> lBool
* :owner() -> cQString
* :ownerId() -> nUint
* :path() -> cQString
* :permission( nPermissions ) -> lBool
* :permissions() -> nQFile::Permissions
* :refresh() -> NIL
* :setCaching( lEnable ) -> NIL
* :setFile( cFile ) -> NIL
* :setFile_1( pFile ) -> NIL
* :setFile_2( pDir, cFile ) -> NIL
* :size() -> nQint64
* :suffix() -> cQString
* :symLinkTarget() -> cQString
*
* $RETURNS$
* An instance of the object of type QFileInfo
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFileInfo object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfileinfo.html
* $END$
*/

View File

@@ -1,82 +1,80 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFileSystemModel()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfilesystemmodel.html
$ONELINER$
Creates a new QFileSystemModel object.
$INHERITS$
QAbstractItemModel
$SYNTAX$
QFileSystemModel():new( ... )
QFileSystemModel():from( pPtr_OR_oObj_of_type_QFileSystemModel )
QFileSystemModel():configure( pPtr_OR_oObj_of_type_QFileSystemModel )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFileSystemModel
$METHODS$
:dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool
:fileIcon( pIndex ) -> pQIcon
:fileInfo( pIndex ) -> pQFileInfo
:fileName( pIndex ) -> cQString
:filePath( pIndex ) -> cQString
:filter() -> nQDir::Filters
:index( cPath, nColumn ) -> pQModelIndex
:isDir( pIndex ) -> lBool
:isReadOnly() -> lBool
:lastModified( pIndex ) -> pQDateTime
:mimeTypes() -> pQStringList
:mkdir( pParent, cName ) -> pQModelIndex
:myComputer( nRole ) -> pQVariant
:nameFilterDisables() -> lBool
:nameFilters() -> pQStringList
:permissions( pIndex ) -> nQFile::Permissions
:remove( pIndex ) -> lBool
:resolveSymlinks() -> lBool
:rmdir( pIndex ) -> lBool
:rootDirectory() -> pQDir
:rootPath() -> cQString
:setFilter( nFilters ) -> NIL
:setNameFilterDisables( lEnable ) -> NIL
:setNameFilters( pFilters ) -> NIL
:setReadOnly( lEnable ) -> NIL
:setResolveSymlinks( lEnable ) -> NIL
:setRootPath( cNewPath ) -> pQModelIndex
:size( pIndex ) -> nQint64
:type( pIndex ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFileSystemModel.prg
C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp
Library : hbqtgui
$SEEALSO$
QAbstractItemModel
$END$
* $NAME$
* QFileSystemModel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFileSystemModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFileSystemModel():new( ... )
* QFileSystemModel():from( pPtr_OR_oObj_of_type_QFileSystemModel )
* QFileSystemModel():configure( pPtr_OR_oObj_of_type_QFileSystemModel )
* $METHODS$
* :dropMimeData( pData, nAction, nRow, nColumn, pParent ) -> lBool
* :fileIcon( pIndex ) -> pQIcon
* :fileInfo( pIndex ) -> pQFileInfo
* :fileName( pIndex ) -> cQString
* :filePath( pIndex ) -> cQString
* :filter() -> nQDir::Filters
* :index( cPath, nColumn ) -> pQModelIndex
* :isDir( pIndex ) -> lBool
* :isReadOnly() -> lBool
* :lastModified( pIndex ) -> pQDateTime
* :mimeTypes() -> pQStringList
* :mkdir( pParent, cName ) -> pQModelIndex
* :myComputer( nRole ) -> pQVariant
* :nameFilterDisables() -> lBool
* :nameFilters() -> pQStringList
* :permissions( pIndex ) -> nQFile::Permissions
* :remove( pIndex ) -> lBool
* :resolveSymlinks() -> lBool
* :rmdir( pIndex ) -> lBool
* :rootDirectory() -> pQDir
* :rootPath() -> cQString
* :setFilter( nFilters ) -> NIL
* :setNameFilterDisables( lEnable ) -> NIL
* :setNameFilters( pFilters ) -> NIL
* :setReadOnly( lEnable ) -> NIL
* :setResolveSymlinks( lEnable ) -> NIL
* :setRootPath( cNewPath ) -> pQModelIndex
* :size( pIndex ) -> nQint64
* :type( pIndex ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFileSystemModel
* $SEEALSO$
* QAbstractItemModel
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemModel
* $ONELINER$
* Creates a new QFileSystemModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfilesystemmodel.html
* $END$
*/

View File

@@ -1,56 +1,54 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFocusEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfocusevent.html
$ONELINER$
Creates a new QFocusEvent object.
$INHERITS$
QEvent
$SYNTAX$
QFocusEvent():new( ... )
QFocusEvent():from( pPtr_OR_oObj_of_type_QFocusEvent )
QFocusEvent():configure( pPtr_OR_oObj_of_type_QFocusEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFocusEvent
$METHODS$
:gotFocus() -> lBool
:lostFocus() -> lBool
:reason() -> nQt::FocusReason
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFocusEvent.prg
C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp
Library : hbqtgui
$SEEALSO$
QEvent
$END$
* $NAME$
* QFocusEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFocusEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFocusEvent():new( ... )
* QFocusEvent():from( pPtr_OR_oObj_of_type_QFocusEvent )
* QFocusEvent():configure( pPtr_OR_oObj_of_type_QFocusEvent )
* $METHODS$
* :gotFocus() -> lBool
* :lostFocus() -> lBool
* :reason() -> nQt::FocusReason
*
* $RETURNS$
* An instance of the object of type QFocusEvent
* $SEEALSO$
* QEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QEvent
* $ONELINER$
* Creates a new QFocusEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfocusevent.html
* $END$
*/

View File

@@ -1,55 +1,53 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFocusFrame()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfocusframe.html
$ONELINER$
Creates a new QFocusFrame object.
$INHERITS$
QWidget
$SYNTAX$
QFocusFrame():new( ... )
QFocusFrame():from( pPtr_OR_oObj_of_type_QFocusFrame )
QFocusFrame():configure( pPtr_OR_oObj_of_type_QFocusFrame )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFocusFrame
$METHODS$
:setWidget( pWidget ) -> NIL
:widget() -> pQWidget
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFocusFrame.prg
C++ wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QFocusFrame()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFocusFrame.prg
* C++ wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFocusFrame():new( ... )
* QFocusFrame():from( pPtr_OR_oObj_of_type_QFocusFrame )
* QFocusFrame():configure( pPtr_OR_oObj_of_type_QFocusFrame )
* $METHODS$
* :setWidget( pWidget ) -> NIL
* :widget() -> pQWidget
*
* $RETURNS$
* An instance of the object of type QFocusFrame
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QFocusFrame object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfocusframe.html
* $END$
*/

View File

@@ -1,118 +1,116 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFont()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfont.html
$ONELINER$
Creates a new QFont object.
$INHERITS$
$SYNTAX$
QFont():new( ... )
QFont():from( pPtr_OR_oObj_of_type_QFont )
QFont():configure( pPtr_OR_oObj_of_type_QFont )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFont
$METHODS$
:bold() -> lBool
:capitalization() -> nCapitalization
:defaultFamily() -> cQString
:exactMatch() -> lBool
:family() -> cQString
:fixedPitch() -> lBool
:fromString( cDescrip ) -> lBool
:italic() -> lBool
:kerning() -> lBool
:key() -> cQString
:lastResortFamily() -> cQString
:lastResortFont() -> cQString
:letterSpacing() -> nQreal
:letterSpacingType() -> nSpacingType
:overline() -> lBool
:pixelSize() -> nInt
:pointSize() -> nInt
:pointSizeF() -> nQreal
:rawMode() -> lBool
:rawName() -> cQString
:setBold( lEnable ) -> NIL
:setCapitalization( nCaps ) -> NIL
:setFamily( cFamily ) -> NIL
:setFixedPitch( lEnable ) -> NIL
:setItalic( lEnable ) -> NIL
:setKerning( lEnable ) -> NIL
:setLetterSpacing( nType, nSpacing ) -> NIL
:setOverline( lEnable ) -> NIL
:setPixelSize( nPixelSize ) -> NIL
:setPointSize( nPointSize ) -> NIL
:setPointSizeF( nPointSize ) -> NIL
:setRawMode( lEnable ) -> NIL
:setRawName( cName ) -> NIL
:setStretch( nFactor ) -> NIL
:setStrikeOut( lEnable ) -> NIL
:setStyle( nStyle ) -> NIL
:setStyleHint( nHint, nStrategy ) -> NIL
:setStyleStrategy( nS ) -> NIL
:setUnderline( lEnable ) -> NIL
:setWeight( nWeight ) -> NIL
:setWordSpacing( nSpacing ) -> NIL
:stretch() -> nInt
:strikeOut() -> lBool
:style() -> nStyle
:styleHint() -> nStyleHint
:styleStrategy() -> nStyleStrategy
:toString() -> cQString
:underline() -> lBool
:weight() -> nInt
:wordSpacing() -> nQreal
:cleanup() -> NIL
:initialize() -> NIL
:insertSubstitution( cFamilyName, cSubstituteName ) -> NIL
:insertSubstitutions( cFamilyName, pSubstituteNames ) -> NIL
:removeSubstitution( cFamilyName ) -> NIL
:substitute( cFamilyName ) -> cQString
:substitutes( cFamilyName ) -> pQStringList
:substitutions() -> pQStringList
$DESCRIPTION$
$EXAMPLES$
oFont := QFont():new()
oFont := QFont():new( cFontName )
oFont := QFont():new( cFontName, nPointSize )
oFont := QFont():new( cFontName, nPointSize, nWeight )
oFont := QFont():new( cFontName, nPointSize, nWeight, lItalic )
oFont := QFont():new( pFont )
oFont := QFont():new( pFont, pPaintDevice )
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFont.prg
C++ wrappers : contrib/hbqt/qtgui/QFont.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QFont()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFont.prg
* C++ wrappers : contrib/hbqt/qtgui/QFont.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFont():new( ... )
* QFont():from( pPtr_OR_oObj_of_type_QFont )
* QFont():configure( pPtr_OR_oObj_of_type_QFont )
* $METHODS$
* :bold() -> lBool
* :capitalization() -> nCapitalization
* :defaultFamily() -> cQString
* :exactMatch() -> lBool
* :family() -> cQString
* :fixedPitch() -> lBool
* :fromString( cDescrip ) -> lBool
* :italic() -> lBool
* :kerning() -> lBool
* :key() -> cQString
* :lastResortFamily() -> cQString
* :lastResortFont() -> cQString
* :letterSpacing() -> nQreal
* :letterSpacingType() -> nSpacingType
* :overline() -> lBool
* :pixelSize() -> nInt
* :pointSize() -> nInt
* :pointSizeF() -> nQreal
* :rawMode() -> lBool
* :rawName() -> cQString
* :setBold( lEnable ) -> NIL
* :setCapitalization( nCaps ) -> NIL
* :setFamily( cFamily ) -> NIL
* :setFixedPitch( lEnable ) -> NIL
* :setItalic( lEnable ) -> NIL
* :setKerning( lEnable ) -> NIL
* :setLetterSpacing( nType, nSpacing ) -> NIL
* :setOverline( lEnable ) -> NIL
* :setPixelSize( nPixelSize ) -> NIL
* :setPointSize( nPointSize ) -> NIL
* :setPointSizeF( nPointSize ) -> NIL
* :setRawMode( lEnable ) -> NIL
* :setRawName( cName ) -> NIL
* :setStretch( nFactor ) -> NIL
* :setStrikeOut( lEnable ) -> NIL
* :setStyle( nStyle ) -> NIL
* :setStyleHint( nHint, nStrategy ) -> NIL
* :setStyleStrategy( nS ) -> NIL
* :setUnderline( lEnable ) -> NIL
* :setWeight( nWeight ) -> NIL
* :setWordSpacing( nSpacing ) -> NIL
* :stretch() -> nInt
* :strikeOut() -> lBool
* :style() -> nStyle
* :styleHint() -> nStyleHint
* :styleStrategy() -> nStyleStrategy
* :toString() -> cQString
* :underline() -> lBool
* :weight() -> nInt
* :wordSpacing() -> nQreal
* :cleanup() -> NIL
* :initialize() -> NIL
* :insertSubstitution( cFamilyName, cSubstituteName ) -> NIL
* :insertSubstitutions( cFamilyName, pSubstituteNames ) -> NIL
* :removeSubstitution( cFamilyName ) -> NIL
* :substitute( cFamilyName ) -> cQString
* :substitutes( cFamilyName ) -> pQStringList
* :substitutions() -> pQStringList
*
* $RETURNS$
* An instance of the object of type QFont
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oFont := QFont():new()
* oFont := QFont():new( cFontName )
* oFont := QFont():new( cFontName, nPointSize )
* oFont := QFont():new( cFontName, nPointSize, nWeight )
* oFont := QFont():new( cFontName, nPointSize, nWeight, lItalic )
* oFont := QFont():new( pFont )
* oFont := QFont():new( pFont, pPaintDevice )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFont object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfont.html
* $END$
*/

View File

@@ -1,59 +1,57 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFontComboBox()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfontcombobox.html
$ONELINER$
Creates a new QFontComboBox object.
$INHERITS$
QComboBox
$SYNTAX$
QFontComboBox():new( ... )
QFontComboBox():from( pPtr_OR_oObj_of_type_QFontComboBox )
QFontComboBox():configure( pPtr_OR_oObj_of_type_QFontComboBox )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFontComboBox
$METHODS$
:currentFont() -> pQFont
:fontFilters() -> nFontFilters
:setFontFilters( nFilters ) -> NIL
:setWritingSystem( nScript ) -> NIL
:writingSystem() -> nQFontDatabase::WritingSystem
:setCurrentFont( pFont ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFontComboBox.prg
C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp
Library : hbqtgui
$SEEALSO$
QComboBox
$END$
* $NAME$
* QFontComboBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontComboBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFontComboBox():new( ... )
* QFontComboBox():from( pPtr_OR_oObj_of_type_QFontComboBox )
* QFontComboBox():configure( pPtr_OR_oObj_of_type_QFontComboBox )
* $METHODS$
* :currentFont() -> pQFont
* :fontFilters() -> nFontFilters
* :setFontFilters( nFilters ) -> NIL
* :setWritingSystem( nScript ) -> NIL
* :writingSystem() -> nQFontDatabase::WritingSystem
* :setCurrentFont( pFont ) -> NIL
*
* $RETURNS$
* An instance of the object of type QFontComboBox
* $SEEALSO$
* QComboBox
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QComboBox
* $ONELINER$
* Creates a new QFontComboBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontcombobox.html
* $END$
*/

View File

@@ -1,76 +1,74 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFontDatabase()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfontdatabase.html
$ONELINER$
Creates a new QFontDatabase object.
$INHERITS$
$SYNTAX$
QFontDatabase():new( ... )
QFontDatabase():from( pPtr_OR_oObj_of_type_QFontDatabase )
QFontDatabase():configure( pPtr_OR_oObj_of_type_QFontDatabase )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFontDatabase
$METHODS$
:bold( cFamily, cStyle ) -> lBool
:families( nWritingSystem ) -> pQStringList
:font( cFamily, cStyle, nPointSize ) -> pQFont
:isBitmapScalable( cFamily, cStyle ) -> lBool
:isFixedPitch( cFamily, cStyle ) -> lBool
:isScalable( cFamily, cStyle ) -> lBool
:isSmoothlyScalable( cFamily, cStyle ) -> lBool
:italic( cFamily, cStyle ) -> lBool
:pointSizes( cFamily, cStyle ) -> pQList<int>
:smoothSizes( cFamily, cStyle ) -> pQList<int>
:styleString( pFont ) -> cQString
:styleString_1( pFontInfo ) -> cQString
:styles( cFamily ) -> pQStringList
:weight( cFamily, cStyle ) -> nInt
:addApplicationFont( cFileName ) -> nInt
:addApplicationFontFromData( pFontData ) -> nInt
:applicationFontFamilies( nId ) -> pQStringList
:removeAllApplicationFonts() -> lBool
:removeApplicationFont( nId ) -> lBool
:standardSizes() -> pQList<int>
:supportsThreadedFontRendering() -> lBool
:writingSystemName( nWritingSystem ) -> cQString
:writingSystemSample( nWritingSystem ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFontDatabase.prg
C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QFontDatabase()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontDatabase.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFontDatabase():new( ... )
* QFontDatabase():from( pPtr_OR_oObj_of_type_QFontDatabase )
* QFontDatabase():configure( pPtr_OR_oObj_of_type_QFontDatabase )
* $METHODS$
* :bold( cFamily, cStyle ) -> lBool
* :families( nWritingSystem ) -> pQStringList
* :font( cFamily, cStyle, nPointSize ) -> pQFont
* :isBitmapScalable( cFamily, cStyle ) -> lBool
* :isFixedPitch( cFamily, cStyle ) -> lBool
* :isScalable( cFamily, cStyle ) -> lBool
* :isSmoothlyScalable( cFamily, cStyle ) -> lBool
* :italic( cFamily, cStyle ) -> lBool
* :pointSizes( cFamily, cStyle ) -> pQList<int>
* :smoothSizes( cFamily, cStyle ) -> pQList<int>
* :styleString( pFont ) -> cQString
* :styleString_1( pFontInfo ) -> cQString
* :styles( cFamily ) -> pQStringList
* :weight( cFamily, cStyle ) -> nInt
* :addApplicationFont( cFileName ) -> nInt
* :addApplicationFontFromData( pFontData ) -> nInt
* :applicationFontFamilies( nId ) -> pQStringList
* :removeAllApplicationFonts() -> lBool
* :removeApplicationFont( nId ) -> lBool
* :standardSizes() -> pQList<int>
* :supportsThreadedFontRendering() -> lBool
* :writingSystemName( nWritingSystem ) -> cQString
* :writingSystemSample( nWritingSystem ) -> cQString
*
* $RETURNS$
* An instance of the object of type QFontDatabase
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFontDatabase object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontdatabase.html
* $END$
*/

View File

@@ -1,65 +1,63 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFontDialog()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfontdialog.html
$ONELINER$
Creates a new QFontDialog object.
$INHERITS$
QDialog
$SYNTAX$
QFontDialog():new( ... )
QFontDialog():from( pPtr_OR_oObj_of_type_QFontDialog )
QFontDialog():configure( pPtr_OR_oObj_of_type_QFontDialog )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFontDialog
$METHODS$
:currentFont() -> pQFont
:options() -> nFontDialogOptions
:selectedFont() -> pQFont
:setCurrentFont( pFont ) -> NIL
:setOption( nOption, lOn ) -> NIL
:setOptions( nOptions ) -> NIL
:testOption( nOption ) -> lBool
:getFont( @lOk, pInitial, pParent, cTitle, nOptions ) -> pQFont
:getFont_1( @lOk, pInitial, pParent, pName ) -> pQFont
:getFont_2( @lOk, pInitial, pParent, cTitle ) -> pQFont
:getFont_3( @lOk, pInitial, pParent ) -> pQFont
:getFont_4( @lOk, pParent ) -> pQFont
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFontDialog.prg
C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp
Library : hbqtgui
$SEEALSO$
QDialog
$END$
* $NAME$
* QFontDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFontDialog():new( ... )
* QFontDialog():from( pPtr_OR_oObj_of_type_QFontDialog )
* QFontDialog():configure( pPtr_OR_oObj_of_type_QFontDialog )
* $METHODS$
* :currentFont() -> pQFont
* :options() -> nFontDialogOptions
* :selectedFont() -> pQFont
* :setCurrentFont( pFont ) -> NIL
* :setOption( nOption, lOn ) -> NIL
* :setOptions( nOptions ) -> NIL
* :testOption( nOption ) -> lBool
* :getFont( @lOk, pInitial, pParent, cTitle, nOptions ) -> pQFont
* :getFont_1( @lOk, pInitial, pParent, pName ) -> pQFont
* :getFont_2( @lOk, pInitial, pParent, cTitle ) -> pQFont
* :getFont_3( @lOk, pInitial, pParent ) -> pQFont
* :getFont_4( @lOk, pParent ) -> pQFont
*
* $RETURNS$
* An instance of the object of type QFontDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QFontDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontdialog.html
* $END$
*/

View File

@@ -1,65 +1,63 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFontInfo()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfontinfo.html
$ONELINER$
Creates a new QFontInfo object.
$INHERITS$
$SYNTAX$
QFontInfo():new( ... )
QFontInfo():from( pPtr_OR_oObj_of_type_QFontInfo )
QFontInfo():configure( pPtr_OR_oObj_of_type_QFontInfo )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFontInfo
$METHODS$
:bold() -> lBool
:exactMatch() -> lBool
:family() -> cQString
:fixedPitch() -> lBool
:italic() -> lBool
:pixelSize() -> nInt
:pointSize() -> nInt
:pointSizeF() -> nQreal
:rawMode() -> lBool
:style() -> nQFont::Style
:styleHint() -> nQFont::StyleHint
:weight() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFontInfo.prg
C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QFontInfo()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontInfo.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFontInfo():new( ... )
* QFontInfo():from( pPtr_OR_oObj_of_type_QFontInfo )
* QFontInfo():configure( pPtr_OR_oObj_of_type_QFontInfo )
* $METHODS$
* :bold() -> lBool
* :exactMatch() -> lBool
* :family() -> cQString
* :fixedPitch() -> lBool
* :italic() -> lBool
* :pixelSize() -> nInt
* :pointSize() -> nInt
* :pointSizeF() -> nQreal
* :rawMode() -> lBool
* :style() -> nQFont::Style
* :styleHint() -> nQFont::StyleHint
* :weight() -> nInt
*
* $RETURNS$
* An instance of the object of type QFontInfo
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFontInfo object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontinfo.html
* $END$
*/

View File

@@ -1,82 +1,80 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFontMetrics()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfontmetrics.html
$ONELINER$
Creates a new QFontMetrics object.
$INHERITS$
$SYNTAX$
QFontMetrics():new( ... )
QFontMetrics():from( pPtr_OR_oObj_of_type_QFontMetrics )
QFontMetrics():configure( pPtr_OR_oObj_of_type_QFontMetrics )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFontMetrics
$METHODS$
:ascent() -> nInt
:averageCharWidth() -> nInt
:boundingRect( pCh ) -> pQRect
:boundingRect_1( cText ) -> pQRect
:boundingRect_2( nX, nY, nWidth, nHeight, nFlags, cText, nTabStops, @nTabArray ) -> pQRect
:boundingRect_3( pRect, nFlags, cText, nTabStops, @nTabArray ) -> pQRect
:descent() -> nInt
:elidedText( cText, nMode, nWidth, nFlags ) -> cQString
:height() -> nInt
:inFont( pCh ) -> lBool
:leading() -> nInt
:leftBearing( pCh ) -> nInt
:lineSpacing() -> nInt
:lineWidth() -> nInt
:maxWidth() -> nInt
:minLeftBearing() -> nInt
:minRightBearing() -> nInt
:overlinePos() -> nInt
:rightBearing( pCh ) -> nInt
:size( nFlags, cText, nTabStops, @nTabArray ) -> pQSize
:strikeOutPos() -> nInt
:tightBoundingRect( cText ) -> pQRect
:underlinePos() -> nInt
:width( cText, nLen ) -> nInt
:width_1( pCh ) -> nInt
:xHeight() -> nInt
$DESCRIPTION$
$EXAMPLES$
oFontMetrics := QFontMetrics():new( pQFontMetrics )
oFontMetrics := QFontMetrics():new( "QFont", pQFont )
oFontMetrics := QFontMetrics():new( pQFont, pQPaintDevice )
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFontMetrics.prg
C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QFontMetrics()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontMetrics.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFontMetrics():new( ... )
* QFontMetrics():from( pPtr_OR_oObj_of_type_QFontMetrics )
* QFontMetrics():configure( pPtr_OR_oObj_of_type_QFontMetrics )
* $METHODS$
* :ascent() -> nInt
* :averageCharWidth() -> nInt
* :boundingRect( pCh ) -> pQRect
* :boundingRect_1( cText ) -> pQRect
* :boundingRect_2( nX, nY, nWidth, nHeight, nFlags, cText, nTabStops, @nTabArray ) -> pQRect
* :boundingRect_3( pRect, nFlags, cText, nTabStops, @nTabArray ) -> pQRect
* :descent() -> nInt
* :elidedText( cText, nMode, nWidth, nFlags ) -> cQString
* :height() -> nInt
* :inFont( pCh ) -> lBool
* :leading() -> nInt
* :leftBearing( pCh ) -> nInt
* :lineSpacing() -> nInt
* :lineWidth() -> nInt
* :maxWidth() -> nInt
* :minLeftBearing() -> nInt
* :minRightBearing() -> nInt
* :overlinePos() -> nInt
* :rightBearing( pCh ) -> nInt
* :size( nFlags, cText, nTabStops, @nTabArray ) -> pQSize
* :strikeOutPos() -> nInt
* :tightBoundingRect( cText ) -> pQRect
* :underlinePos() -> nInt
* :width( cText, nLen ) -> nInt
* :width_1( pCh ) -> nInt
* :xHeight() -> nInt
*
* $RETURNS$
* An instance of the object of type QFontMetrics
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oFontMetrics := QFontMetrics():new( pQFontMetrics )
* oFontMetrics := QFontMetrics():new( "QFont", pQFont )
* oFontMetrics := QFontMetrics():new( pQFont, pQPaintDevice )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFontMetrics object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontmetrics.html
* $END$
*/

View File

@@ -1,82 +1,80 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFontMetricsF()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qfontmetricsf.html
$ONELINER$
Creates a new QFontMetricsF object.
$INHERITS$
$SYNTAX$
QFontMetricsF():new( ... )
QFontMetricsF():from( pPtr_OR_oObj_of_type_QFontMetricsF )
QFontMetricsF():configure( pPtr_OR_oObj_of_type_QFontMetricsF )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFontMetricsF
$METHODS$
:ascent() -> nQreal
:averageCharWidth() -> nQreal
:boundingRect( cText ) -> pQRectF
:boundingRect_1( pCh ) -> pQRectF
:boundingRect_2( pRect, nFlags, cText, nTabStops, @nTabArray ) -> pQRectF
:descent() -> nQreal
:elidedText( cText, nMode, nWidth, nFlags ) -> cQString
:height() -> nQreal
:inFont( pCh ) -> lBool
:leading() -> nQreal
:leftBearing( pCh ) -> nQreal
:lineSpacing() -> nQreal
:lineWidth() -> nQreal
:maxWidth() -> nQreal
:minLeftBearing() -> nQreal
:minRightBearing() -> nQreal
:overlinePos() -> nQreal
:rightBearing( pCh ) -> nQreal
:size( nFlags, cText, nTabStops, @nTabArray ) -> pQSizeF
:strikeOutPos() -> nQreal
:tightBoundingRect( cText ) -> pQRectF
:underlinePos() -> nQreal
:width( cText ) -> nQreal
:width_1( pCh ) -> nQreal
:xHeight() -> nQreal
$DESCRIPTION$
$EXAMPLES$
oFontMetricsF := QFontMetricsF():new( pQFontMetricsF )
oFontMetricsF := QFontMetricsF():new( "QFontMetrics", pQFontMetrics )
oFontMetricsF := QFontMetricsF():new( "QFont", pQFont )
oFontMetricsF := QFontMetricsF():new( pQFont, pQPaintDevice )
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFontMetricsF.prg
C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QFontMetricsF()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFontMetricsF.prg
* C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFontMetricsF():new( ... )
* QFontMetricsF():from( pPtr_OR_oObj_of_type_QFontMetricsF )
* QFontMetricsF():configure( pPtr_OR_oObj_of_type_QFontMetricsF )
* $METHODS$
* :ascent() -> nQreal
* :averageCharWidth() -> nQreal
* :boundingRect( cText ) -> pQRectF
* :boundingRect_1( pCh ) -> pQRectF
* :boundingRect_2( pRect, nFlags, cText, nTabStops, @nTabArray ) -> pQRectF
* :descent() -> nQreal
* :elidedText( cText, nMode, nWidth, nFlags ) -> cQString
* :height() -> nQreal
* :inFont( pCh ) -> lBool
* :leading() -> nQreal
* :leftBearing( pCh ) -> nQreal
* :lineSpacing() -> nQreal
* :lineWidth() -> nQreal
* :maxWidth() -> nQreal
* :minLeftBearing() -> nQreal
* :minRightBearing() -> nQreal
* :overlinePos() -> nQreal
* :rightBearing( pCh ) -> nQreal
* :size( nFlags, cText, nTabStops, @nTabArray ) -> pQSizeF
* :strikeOutPos() -> nQreal
* :tightBoundingRect( cText ) -> pQRectF
* :underlinePos() -> nQreal
* :width( cText ) -> nQreal
* :width_1( pCh ) -> nQreal
* :xHeight() -> nQreal
*
* $RETURNS$
* An instance of the object of type QFontMetricsF
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oFontMetricsF := QFontMetricsF():new( pQFontMetricsF )
* oFontMetricsF := QFontMetricsF():new( "QFontMetrics", pQFontMetrics )
* oFontMetricsF := QFontMetricsF():new( "QFont", pQFont )
* oFontMetricsF := QFontMetricsF():new( pQFont, pQPaintDevice )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QFontMetricsF object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qfontmetricsf.html
* $END$
*/

View File

@@ -1,89 +1,87 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFormLayout()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qformlayout.html
$ONELINER$
Creates a new QFormLayout object.
$INHERITS$
QLayout
$SYNTAX$
QFormLayout():new( ... )
QFormLayout():from( pPtr_OR_oObj_of_type_QFormLayout )
QFormLayout():configure( pPtr_OR_oObj_of_type_QFormLayout )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFormLayout
$METHODS$
:addRow( pLabel, pField ) -> NIL
:addRow_1( pLabel, pField ) -> NIL
:addRow_2( pWidget ) -> NIL
:addRow_3( cLabelText, pField ) -> NIL
:addRow_4( cLabelText, pField ) -> NIL
:addRow_5( pLayout ) -> NIL
:fieldGrowthPolicy() -> nFieldGrowthPolicy
:formAlignment() -> nQt::Alignment
:getItemPosition( nIndex, @nRowPtr, @nRolePtr ) -> NIL
:getLayoutPosition( pLayout, @nRowPtr, @nRolePtr ) -> NIL
:getWidgetPosition( pWidget, @nRowPtr, @nRolePtr ) -> NIL
:horizontalSpacing() -> nInt
:insertRow( nRow, pLabel, pField ) -> NIL
:insertRow_1( nRow, pLabel, pField ) -> NIL
:insertRow_2( nRow, pWidget ) -> NIL
:insertRow_3( nRow, cLabelText, pField ) -> NIL
:insertRow_4( nRow, cLabelText, pField ) -> NIL
:insertRow_5( nRow, pLayout ) -> NIL
:itemAt( nRow, nRole ) -> pQLayoutItem
:labelAlignment() -> nQt::Alignment
:labelForField( pField ) -> pQWidget
:labelForField_1( pField ) -> pQWidget
:rowCount() -> nInt
:rowWrapPolicy() -> nRowWrapPolicy
:setFieldGrowthPolicy( nPolicy ) -> NIL
:setFormAlignment( nAlignment ) -> NIL
:setHorizontalSpacing( nSpacing ) -> NIL
:setItem( nRow, nRole, pItem ) -> NIL
:setLabelAlignment( nAlignment ) -> NIL
:setLayout( nRow, nRole, pLayout ) -> NIL
:setRowWrapPolicy( nPolicy ) -> NIL
:setSpacing( nSpacing ) -> NIL
:setVerticalSpacing( nSpacing ) -> NIL
:setWidget( nRow, nRole, pWidget ) -> NIL
:spacing() -> nInt
:verticalSpacing() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFormLayout.prg
C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp
Library : hbqtgui
$SEEALSO$
QLayout
$END$
* $NAME$
* QFormLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFormLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFormLayout():new( ... )
* QFormLayout():from( pPtr_OR_oObj_of_type_QFormLayout )
* QFormLayout():configure( pPtr_OR_oObj_of_type_QFormLayout )
* $METHODS$
* :addRow( pLabel, pField ) -> NIL
* :addRow_1( pLabel, pField ) -> NIL
* :addRow_2( pWidget ) -> NIL
* :addRow_3( cLabelText, pField ) -> NIL
* :addRow_4( cLabelText, pField ) -> NIL
* :addRow_5( pLayout ) -> NIL
* :fieldGrowthPolicy() -> nFieldGrowthPolicy
* :formAlignment() -> nQt::Alignment
* :getItemPosition( nIndex, @nRowPtr, @nRolePtr ) -> NIL
* :getLayoutPosition( pLayout, @nRowPtr, @nRolePtr ) -> NIL
* :getWidgetPosition( pWidget, @nRowPtr, @nRolePtr ) -> NIL
* :horizontalSpacing() -> nInt
* :insertRow( nRow, pLabel, pField ) -> NIL
* :insertRow_1( nRow, pLabel, pField ) -> NIL
* :insertRow_2( nRow, pWidget ) -> NIL
* :insertRow_3( nRow, cLabelText, pField ) -> NIL
* :insertRow_4( nRow, cLabelText, pField ) -> NIL
* :insertRow_5( nRow, pLayout ) -> NIL
* :itemAt( nRow, nRole ) -> pQLayoutItem
* :labelAlignment() -> nQt::Alignment
* :labelForField( pField ) -> pQWidget
* :labelForField_1( pField ) -> pQWidget
* :rowCount() -> nInt
* :rowWrapPolicy() -> nRowWrapPolicy
* :setFieldGrowthPolicy( nPolicy ) -> NIL
* :setFormAlignment( nAlignment ) -> NIL
* :setHorizontalSpacing( nSpacing ) -> NIL
* :setItem( nRow, nRole, pItem ) -> NIL
* :setLabelAlignment( nAlignment ) -> NIL
* :setLayout( nRow, nRole, pLayout ) -> NIL
* :setRowWrapPolicy( nPolicy ) -> NIL
* :setSpacing( nSpacing ) -> NIL
* :setVerticalSpacing( nSpacing ) -> NIL
* :setWidget( nRow, nRole, pWidget ) -> NIL
* :spacing() -> nInt
* :verticalSpacing() -> nInt
*
* $RETURNS$
* An instance of the object of type QFormLayout
* $SEEALSO$
* QLayout
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QLayout
* $ONELINER$
* Creates a new QFormLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qformlayout.html
* $END$
*/

View File

@@ -1,66 +1,64 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFrame()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qframe.html
$ONELINER$
Creates a new QFrame object.
$INHERITS$
QWidget
$SYNTAX$
QFrame():new( ... )
QFrame():from( pPtr_OR_oObj_of_type_QFrame )
QFrame():configure( pPtr_OR_oObj_of_type_QFrame )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFrame
$METHODS$
:frameRect() -> pQRect
:frameShadow() -> nShadow
:frameShape() -> nShape
:frameStyle() -> nInt
:frameWidth() -> nInt
:lineWidth() -> nInt
:midLineWidth() -> nInt
:setFrameRect( pQRect ) -> NIL
:setFrameShadow( nShadow ) -> NIL
:setFrameShape( nShape ) -> NIL
:setFrameStyle( nStyle ) -> NIL
:setLineWidth( nInt ) -> NIL
:setMidLineWidth( nInt ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQFrame.prg
C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QFrame()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQFrame.prg
* C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFrame():new( ... )
* QFrame():from( pPtr_OR_oObj_of_type_QFrame )
* QFrame():configure( pPtr_OR_oObj_of_type_QFrame )
* $METHODS$
* :frameRect() -> pQRect
* :frameShadow() -> nShadow
* :frameShape() -> nShape
* :frameStyle() -> nInt
* :frameWidth() -> nInt
* :lineWidth() -> nInt
* :midLineWidth() -> nInt
* :setFrameRect( pQRect ) -> NIL
* :setFrameShadow( nShadow ) -> NIL
* :setFrameShape( nShape ) -> NIL
* :setFrameStyle( nStyle ) -> NIL
* :setLineWidth( nInt ) -> NIL
* :setMidLineWidth( nInt ) -> NIL
*
* $RETURNS$
* An instance of the object of type QFrame
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QFrame object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qframe.html
* $END$
*/

View File

@@ -1,79 +1,77 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QFtp()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qftp.html
$ONELINER$
Creates a new QFtp object.
$INHERITS$
QObject
$SYNTAX$
QFtp():new( ... )
QFtp():from( pPtr_OR_oObj_of_type_QFtp )
QFtp():configure( pPtr_OR_oObj_of_type_QFtp )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QFtp
$METHODS$
:bytesAvailable() -> nQint64
:cd( cDir ) -> nInt
:clearPendingCommands() -> NIL
:close() -> nInt
:connectToHost( cHost, nPort ) -> nInt
:currentCommand() -> nCommand
:currentDevice() -> pQIODevice
:currentId() -> nInt
:error() -> nError
:errorString() -> cQString
:get( cFile, pDev, nType ) -> nInt
:hasPendingCommands() -> lBool
:list( cDir ) -> nInt
:login( cUser, cPassword ) -> nInt
:mkdir( cDir ) -> nInt
:put( pDev, cFile, nType ) -> nInt
:put_1( pData, cFile, nType ) -> nInt
:rawCommand( cCommand ) -> nInt
:readAll() -> pQByteArray
:remove( cFile ) -> nInt
:rename( cOldname, cNewname ) -> nInt
:rmdir( cDir ) -> nInt
:setProxy( cHost, nPort ) -> nInt
:setTransferMode( nMode ) -> nInt
:state() -> nState
:abort() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtnetwork/TQFtp.prg
C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp
Library : hbqtnetwork
$SEEALSO$
QObject
$END$
* $NAME$
* QFtp()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQFtp.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QFtp():new( ... )
* QFtp():from( pPtr_OR_oObj_of_type_QFtp )
* QFtp():configure( pPtr_OR_oObj_of_type_QFtp )
* $METHODS$
* :bytesAvailable() -> nQint64
* :cd( cDir ) -> nInt
* :clearPendingCommands() -> NIL
* :close() -> nInt
* :connectToHost( cHost, nPort ) -> nInt
* :currentCommand() -> nCommand
* :currentDevice() -> pQIODevice
* :currentId() -> nInt
* :error() -> nError
* :errorString() -> cQString
* :get( cFile, pDev, nType ) -> nInt
* :hasPendingCommands() -> lBool
* :list( cDir ) -> nInt
* :login( cUser, cPassword ) -> nInt
* :mkdir( cDir ) -> nInt
* :put( pDev, cFile, nType ) -> nInt
* :put_1( pData, cFile, nType ) -> nInt
* :rawCommand( cCommand ) -> nInt
* :readAll() -> pQByteArray
* :remove( cFile ) -> nInt
* :rename( cOldname, cNewname ) -> nInt
* :rmdir( cDir ) -> nInt
* :setProxy( cHost, nPort ) -> nInt
* :setTransferMode( nMode ) -> nInt
* :state() -> nState
* :abort() -> NIL
*
* $RETURNS$
* An instance of the object of type QFtp
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QFtp object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qftp.html
* $END$
*/

View File

@@ -1,59 +1,57 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QGradient()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qgradient.html
$ONELINER$
Creates a new QGradient object.
$INHERITS$
$SYNTAX$
QGradient():new( ... )
QGradient():from( pPtr_OR_oObj_of_type_QGradient )
QGradient():configure( pPtr_OR_oObj_of_type_QGradient )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QGradient
$METHODS$
:coordinateMode() -> nCoordinateMode
:setColorAt( nPosition, pColor ) -> NIL
:setCoordinateMode( nMode ) -> NIL
:setSpread( nMethod ) -> NIL
:spread() -> nSpread
:type() -> nType
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQGradient.prg
C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QGradient()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGradient.prg
* C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QGradient():new( ... )
* QGradient():from( pPtr_OR_oObj_of_type_QGradient )
* QGradient():configure( pPtr_OR_oObj_of_type_QGradient )
* $METHODS$
* :coordinateMode() -> nCoordinateMode
* :setColorAt( nPosition, pColor ) -> NIL
* :setCoordinateMode( nMode ) -> NIL
* :setSpread( nMethod ) -> NIL
* :spread() -> nSpread
* :type() -> nType
*
* $RETURNS$
* An instance of the object of type QGradient
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QGradient object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgradient.html
* $END$
*/

View File

@@ -1,79 +1,77 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QGridLayout()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qgridlayout.html
$ONELINER$
Creates a new QGridLayout object.
$INHERITS$
QLayout
$SYNTAX$
QGridLayout():new( ... )
QGridLayout():from( pPtr_OR_oObj_of_type_QGridLayout )
QGridLayout():configure( pPtr_OR_oObj_of_type_QGridLayout )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QGridLayout
$METHODS$
:addItem( pItem, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL
:addLayout( pLayout, nRow, nColumn, nAlignment ) -> NIL
:addLayout_1( pLayout, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL
:addWidget( pWidget, nRow, nColumn, nAlignment ) -> NIL
:addWidget_1( pWidget, nFromRow, nFromColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL
:cellRect( nRow, nColumn ) -> pQRect
:columnCount() -> nInt
:columnMinimumWidth( nColumn ) -> nInt
:columnStretch( nColumn ) -> nInt
:getItemPosition( nIndex, @nRow, @nColumn, @nRowSpan, @nColumnSpan ) -> NIL
:horizontalSpacing() -> nInt
:itemAtPosition( nRow, nColumn ) -> pQLayoutItem
:originCorner() -> nQt::Corner
:rowCount() -> nInt
:rowMinimumHeight( nRow ) -> nInt
:rowStretch( nRow ) -> nInt
:setColumnMinimumWidth( nColumn, nMinSize ) -> NIL
:setColumnStretch( nColumn, nStretch ) -> NIL
:setHorizontalSpacing( nSpacing ) -> NIL
:setOriginCorner( nCorner ) -> NIL
:setRowMinimumHeight( nRow, nMinSize ) -> NIL
:setRowStretch( nRow, nStretch ) -> NIL
:setSpacing( nSpacing ) -> NIL
:setVerticalSpacing( nSpacing ) -> NIL
:spacing() -> nInt
:verticalSpacing() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQGridLayout.prg
C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp
Library : hbqtgui
$SEEALSO$
QLayout
$END$
* $NAME$
* QGridLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGridLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QGridLayout():new( ... )
* QGridLayout():from( pPtr_OR_oObj_of_type_QGridLayout )
* QGridLayout():configure( pPtr_OR_oObj_of_type_QGridLayout )
* $METHODS$
* :addItem( pItem, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL
* :addLayout( pLayout, nRow, nColumn, nAlignment ) -> NIL
* :addLayout_1( pLayout, nRow, nColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL
* :addWidget( pWidget, nRow, nColumn, nAlignment ) -> NIL
* :addWidget_1( pWidget, nFromRow, nFromColumn, nRowSpan, nColumnSpan, nAlignment ) -> NIL
* :cellRect( nRow, nColumn ) -> pQRect
* :columnCount() -> nInt
* :columnMinimumWidth( nColumn ) -> nInt
* :columnStretch( nColumn ) -> nInt
* :getItemPosition( nIndex, @nRow, @nColumn, @nRowSpan, @nColumnSpan ) -> NIL
* :horizontalSpacing() -> nInt
* :itemAtPosition( nRow, nColumn ) -> pQLayoutItem
* :originCorner() -> nQt::Corner
* :rowCount() -> nInt
* :rowMinimumHeight( nRow ) -> nInt
* :rowStretch( nRow ) -> nInt
* :setColumnMinimumWidth( nColumn, nMinSize ) -> NIL
* :setColumnStretch( nColumn, nStretch ) -> NIL
* :setHorizontalSpacing( nSpacing ) -> NIL
* :setOriginCorner( nCorner ) -> NIL
* :setRowMinimumHeight( nRow, nMinSize ) -> NIL
* :setRowStretch( nRow, nStretch ) -> NIL
* :setSpacing( nSpacing ) -> NIL
* :setVerticalSpacing( nSpacing ) -> NIL
* :spacing() -> nInt
* :verticalSpacing() -> nInt
*
* $RETURNS$
* An instance of the object of type QGridLayout
* $SEEALSO$
* QLayout
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QLayout
* $ONELINER$
* Creates a new QGridLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgridlayout.html
* $END$
*/

View File

@@ -1,63 +1,61 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QGroupBox()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qgroupbox.html
$ONELINER$
Creates a new QGroupBox object.
$INHERITS$
QWidget
$SYNTAX$
QGroupBox():new( ... )
QGroupBox():from( pPtr_OR_oObj_of_type_QGroupBox )
QGroupBox():configure( pPtr_OR_oObj_of_type_QGroupBox )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QGroupBox
$METHODS$
:alignment() -> nQt::Alignment
:isCheckable() -> lBool
:isChecked() -> lBool
:isFlat() -> lBool
:setAlignment( nAlignment ) -> NIL
:setCheckable( lCheckable ) -> NIL
:setFlat( lFlat ) -> NIL
:setTitle( cTitle ) -> NIL
:title() -> cQString
:setChecked( lChecked ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQGroupBox.prg
C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp
Library : hbqtgui
$SEEALSO$
QWidget
$END$
* $NAME$
* QGroupBox()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQGroupBox.prg
* C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QGroupBox():new( ... )
* QGroupBox():from( pPtr_OR_oObj_of_type_QGroupBox )
* QGroupBox():configure( pPtr_OR_oObj_of_type_QGroupBox )
* $METHODS$
* :alignment() -> nQt::Alignment
* :isCheckable() -> lBool
* :isChecked() -> lBool
* :isFlat() -> lBool
* :setAlignment( nAlignment ) -> NIL
* :setCheckable( lCheckable ) -> NIL
* :setFlat( lFlat ) -> NIL
* :setTitle( cTitle ) -> NIL
* :title() -> cQString
* :setChecked( lChecked ) -> NIL
*
* $RETURNS$
* An instance of the object of type QGroupBox
* $SEEALSO$
* QWidget
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QWidget
* $ONELINER$
* Creates a new QGroupBox object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qgroupbox.html
* $END$
*/

View File

@@ -1,110 +1,108 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QHeaderView()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qheaderview.html
$ONELINER$
Creates a new QHeaderView object.
$INHERITS$
QAbstractItemView
$SYNTAX$
QHeaderView():new( ... )
QHeaderView():from( pPtr_OR_oObj_of_type_QHeaderView )
QHeaderView():configure( pPtr_OR_oObj_of_type_QHeaderView )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QHeaderView
$METHODS$
:cascadingSectionResizes() -> lBool
:count() -> nInt
:defaultAlignment() -> nQt::Alignment
:defaultSectionSize() -> nInt
:hiddenSectionCount() -> nInt
:hideSection( nLogicalIndex ) -> NIL
:highlightSections() -> lBool
:isClickable() -> lBool
:isMovable() -> lBool
:isSectionHidden( nLogicalIndex ) -> lBool
:isSortIndicatorShown() -> lBool
:length() -> nInt
:logicalIndex( nVisualIndex ) -> nInt
:logicalIndexAt( nPosition ) -> nInt
:logicalIndexAt_1( nX, nY ) -> nInt
:logicalIndexAt_2( pPos ) -> nInt
:minimumSectionSize() -> nInt
:moveSection( nFrom, nTo ) -> NIL
:offset() -> nInt
:orientation() -> nQt::Orientation
:resizeMode( nLogicalIndex ) -> nResizeMode
:resizeSection( nLogicalIndex, nSize ) -> NIL
:resizeSections( nMode ) -> NIL
:restoreState( pState ) -> lBool
:saveState() -> pQByteArray
:sectionPosition( nLogicalIndex ) -> nInt
:sectionSize( nLogicalIndex ) -> nInt
:sectionSizeHint( nLogicalIndex ) -> nInt
:sectionViewportPosition( nLogicalIndex ) -> nInt
:sectionsHidden() -> lBool
:sectionsMoved() -> lBool
:setCascadingSectionResizes( lEnable ) -> NIL
:setClickable( lClickable ) -> NIL
:setDefaultAlignment( nAlignment ) -> NIL
:setDefaultSectionSize( nSize ) -> NIL
:setHighlightSections( lHighlight ) -> NIL
:setMinimumSectionSize( nSize ) -> NIL
:setMovable( lMovable ) -> NIL
:setResizeMode( nMode ) -> NIL
:setResizeMode_1( nLogicalIndex, nMode ) -> NIL
:setSectionHidden( nLogicalIndex, lHide ) -> NIL
:setSortIndicator( nLogicalIndex, nOrder ) -> NIL
:setSortIndicatorShown( lShow ) -> NIL
:setStretchLastSection( lStretch ) -> NIL
:showSection( nLogicalIndex ) -> NIL
:sizeHint() -> pQSize
:sortIndicatorOrder() -> nQt::SortOrder
:sortIndicatorSection() -> nInt
:stretchLastSection() -> lBool
:stretchSectionCount() -> nInt
:swapSections( nFirst, nSecond ) -> NIL
:visualIndex( nLogicalIndex ) -> nInt
:visualIndexAt( nPosition ) -> nInt
:headerDataChanged( nOrientation, nLogicalFirst, nLogicalLast ) -> NIL
:setOffset( nOffset ) -> NIL
:setOffsetToLastSection() -> NIL
:setOffsetToSectionPosition( nVisualIndex ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQHeaderView.prg
C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp
Library : hbqtgui
$SEEALSO$
QAbstractItemView
$END$
* $NAME$
* QHeaderView()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQHeaderView.prg
* C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QHeaderView():new( ... )
* QHeaderView():from( pPtr_OR_oObj_of_type_QHeaderView )
* QHeaderView():configure( pPtr_OR_oObj_of_type_QHeaderView )
* $METHODS$
* :cascadingSectionResizes() -> lBool
* :count() -> nInt
* :defaultAlignment() -> nQt::Alignment
* :defaultSectionSize() -> nInt
* :hiddenSectionCount() -> nInt
* :hideSection( nLogicalIndex ) -> NIL
* :highlightSections() -> lBool
* :isClickable() -> lBool
* :isMovable() -> lBool
* :isSectionHidden( nLogicalIndex ) -> lBool
* :isSortIndicatorShown() -> lBool
* :length() -> nInt
* :logicalIndex( nVisualIndex ) -> nInt
* :logicalIndexAt( nPosition ) -> nInt
* :logicalIndexAt_1( nX, nY ) -> nInt
* :logicalIndexAt_2( pPos ) -> nInt
* :minimumSectionSize() -> nInt
* :moveSection( nFrom, nTo ) -> NIL
* :offset() -> nInt
* :orientation() -> nQt::Orientation
* :resizeMode( nLogicalIndex ) -> nResizeMode
* :resizeSection( nLogicalIndex, nSize ) -> NIL
* :resizeSections( nMode ) -> NIL
* :restoreState( pState ) -> lBool
* :saveState() -> pQByteArray
* :sectionPosition( nLogicalIndex ) -> nInt
* :sectionSize( nLogicalIndex ) -> nInt
* :sectionSizeHint( nLogicalIndex ) -> nInt
* :sectionViewportPosition( nLogicalIndex ) -> nInt
* :sectionsHidden() -> lBool
* :sectionsMoved() -> lBool
* :setCascadingSectionResizes( lEnable ) -> NIL
* :setClickable( lClickable ) -> NIL
* :setDefaultAlignment( nAlignment ) -> NIL
* :setDefaultSectionSize( nSize ) -> NIL
* :setHighlightSections( lHighlight ) -> NIL
* :setMinimumSectionSize( nSize ) -> NIL
* :setMovable( lMovable ) -> NIL
* :setResizeMode( nMode ) -> NIL
* :setResizeMode_1( nLogicalIndex, nMode ) -> NIL
* :setSectionHidden( nLogicalIndex, lHide ) -> NIL
* :setSortIndicator( nLogicalIndex, nOrder ) -> NIL
* :setSortIndicatorShown( lShow ) -> NIL
* :setStretchLastSection( lStretch ) -> NIL
* :showSection( nLogicalIndex ) -> NIL
* :sizeHint() -> pQSize
* :sortIndicatorOrder() -> nQt::SortOrder
* :sortIndicatorSection() -> nInt
* :stretchLastSection() -> lBool
* :stretchSectionCount() -> nInt
* :swapSections( nFirst, nSecond ) -> NIL
* :visualIndex( nLogicalIndex ) -> nInt
* :visualIndexAt( nPosition ) -> nInt
* :headerDataChanged( nOrientation, nLogicalFirst, nLogicalLast ) -> NIL
* :setOffset( nOffset ) -> NIL
* :setOffsetToLastSection() -> NIL
* :setOffsetToSectionPosition( nVisualIndex ) -> NIL
*
* $RETURNS$
* An instance of the object of type QHeaderView
* $SEEALSO$
* QAbstractItemView
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QAbstractItemView
* $ONELINER$
* Creates a new QHeaderView object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qheaderview.html
* $END$
*/

View File

@@ -1,59 +1,57 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QHelpEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qhelpevent.html
$ONELINER$
Creates a new QHelpEvent object.
$INHERITS$
$SYNTAX$
QHelpEvent():new( ... )
QHelpEvent():from( pPtr_OR_oObj_of_type_QHelpEvent )
QHelpEvent():configure( pPtr_OR_oObj_of_type_QHelpEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QHelpEvent
$METHODS$
:globalPos() -> pQPoint
:globalX() -> nInt
:globalY() -> nInt
:pos() -> pQPoint
:x() -> nInt
:y() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQHelpEvent.prg
C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QHelpEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQHelpEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QHelpEvent():new( ... )
* QHelpEvent():from( pPtr_OR_oObj_of_type_QHelpEvent )
* QHelpEvent():configure( pPtr_OR_oObj_of_type_QHelpEvent )
* $METHODS$
* :globalPos() -> pQPoint
* :globalX() -> nInt
* :globalY() -> nInt
* :pos() -> pQPoint
* :x() -> nInt
* :y() -> nInt
*
* $RETURNS$
* An instance of the object of type QHelpEvent
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QHelpEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhelpevent.html
* $END$
*/

View File

@@ -1,77 +1,75 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QHttp()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qhttp.html
$ONELINER$
Creates a new QHttp object.
$INHERITS$
QObject
$SYNTAX$
QHttp():new( ... )
QHttp():from( pPtr_OR_oObj_of_type_QHttp )
QHttp():configure( pPtr_OR_oObj_of_type_QHttp )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QHttp
$METHODS$
:bytesAvailable() -> nQint64
:clearPendingRequests() -> NIL
:close() -> nInt
:currentDestinationDevice() -> pQIODevice
:currentId() -> nInt
:currentRequest() -> RequestHeader
:currentSourceDevice() -> pQIODevice
:error() -> nError
:errorString() -> cQString
:get( cPath, pTo ) -> nInt
:hasPendingRequests() -> lBool
:head( cPath ) -> nInt
:lastResponse() -> ResponseHeader
:post( cPath, pData, pTo ) -> nInt
:post_1( cPath, pData, pTo ) -> nInt
:readAll() -> pQByteArray
:request( pHeader, pData, pTo ) -> nInt
:request_1( pHeader, pData, pTo ) -> nInt
:setHost( cHostName, nPort ) -> nInt
:setHost_1( cHostName, nMode, nPort ) -> nInt
:setProxy( cHost, nPort, cUsername, cPassword ) -> nInt
:setUser( cUserName, cPassword ) -> nInt
:state() -> nState
:abort() -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtnetwork/TQHttp.prg
C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp
Library : hbqtnetwork
$SEEALSO$
QObject
$END$
* $NAME$
* QHttp()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttp.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QHttp():new( ... )
* QHttp():from( pPtr_OR_oObj_of_type_QHttp )
* QHttp():configure( pPtr_OR_oObj_of_type_QHttp )
* $METHODS$
* :bytesAvailable() -> nQint64
* :clearPendingRequests() -> NIL
* :close() -> nInt
* :currentDestinationDevice() -> pQIODevice
* :currentId() -> nInt
* :currentRequest() -> RequestHeader
* :currentSourceDevice() -> pQIODevice
* :error() -> nError
* :errorString() -> cQString
* :get( cPath, pTo ) -> nInt
* :hasPendingRequests() -> lBool
* :head( cPath ) -> nInt
* :lastResponse() -> ResponseHeader
* :post( cPath, pData, pTo ) -> nInt
* :post_1( cPath, pData, pTo ) -> nInt
* :readAll() -> pQByteArray
* :request( pHeader, pData, pTo ) -> nInt
* :request_1( pHeader, pData, pTo ) -> nInt
* :setHost( cHostName, nPort ) -> nInt
* :setHost_1( cHostName, nMode, nPort ) -> nInt
* :setProxy( cHost, nPort, cUsername, cPassword ) -> nInt
* :setUser( cUserName, cPassword ) -> nInt
* :state() -> nState
* :abort() -> NIL
*
* $RETURNS$
* An instance of the object of type QHttp
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QHttp object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttp.html
* $END$
*/

View File

@@ -1,71 +1,69 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QHttpHeader()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qhttpheader.html
$ONELINER$
Creates a new QHttpHeader object.
$INHERITS$
$SYNTAX$
QHttpHeader():new( ... )
QHttpHeader():from( pPtr_OR_oObj_of_type_QHttpHeader )
QHttpHeader():configure( pPtr_OR_oObj_of_type_QHttpHeader )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QHttpHeader
$METHODS$
:addValue( cKey, cValue ) -> NIL
:allValues( cKey ) -> pQStringList
:contentLength() -> nUint
:contentType() -> cQString
:hasContentLength() -> lBool
:hasContentType() -> lBool
:hasKey( cKey ) -> lBool
:isValid() -> lBool
:keys() -> pQStringList
:majorVersion() -> nInt
:minorVersion() -> nInt
:removeAllValues( cKey ) -> NIL
:removeValue( cKey ) -> NIL
:setContentLength( nLen ) -> NIL
:setContentType( cType ) -> NIL
:setValue( cKey, cValue ) -> NIL
:toString() -> cQString
:value( cKey ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtnetwork/TQHttpHeader.prg
C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp
Library : hbqtnetwork
$SEEALSO$
$END$
* $NAME$
* QHttpHeader()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QHttpHeader():new( ... )
* QHttpHeader():from( pPtr_OR_oObj_of_type_QHttpHeader )
* QHttpHeader():configure( pPtr_OR_oObj_of_type_QHttpHeader )
* $METHODS$
* :addValue( cKey, cValue ) -> NIL
* :allValues( cKey ) -> pQStringList
* :contentLength() -> nUint
* :contentType() -> cQString
* :hasContentLength() -> lBool
* :hasContentType() -> lBool
* :hasKey( cKey ) -> lBool
* :isValid() -> lBool
* :keys() -> pQStringList
* :majorVersion() -> nInt
* :minorVersion() -> nInt
* :removeAllValues( cKey ) -> NIL
* :removeValue( cKey ) -> NIL
* :setContentLength( nLen ) -> NIL
* :setContentType( cType ) -> NIL
* :setValue( cKey, cValue ) -> NIL
* :toString() -> cQString
* :value( cKey ) -> cQString
*
* $RETURNS$
* An instance of the object of type QHttpHeader
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QHttpHeader object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttpheader.html
* $END$
*/

View File

@@ -1,58 +1,56 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QHttpRequestHeader()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qhttprequestheader.html
$ONELINER$
Creates a new QHttpRequestHeader object.
$INHERITS$
QHttpHeader
$SYNTAX$
QHttpRequestHeader():new( ... )
QHttpRequestHeader():from( pPtr_OR_oObj_of_type_QHttpRequestHeader )
QHttpRequestHeader():configure( pPtr_OR_oObj_of_type_QHttpRequestHeader )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QHttpRequestHeader
$METHODS$
:majorVersion() -> nInt
:method() -> cQString
:minorVersion() -> nInt
:path() -> cQString
:setRequest( cMethod, cPath, nMajorVer, nMinorVer ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg
C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp
Library : hbqtnetwork
$SEEALSO$
QHttpHeader
$END$
* $NAME$
* QHttpRequestHeader()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QHttpRequestHeader():new( ... )
* QHttpRequestHeader():from( pPtr_OR_oObj_of_type_QHttpRequestHeader )
* QHttpRequestHeader():configure( pPtr_OR_oObj_of_type_QHttpRequestHeader )
* $METHODS$
* :majorVersion() -> nInt
* :method() -> cQString
* :minorVersion() -> nInt
* :path() -> cQString
* :setRequest( cMethod, cPath, nMajorVer, nMinorVer ) -> NIL
*
* $RETURNS$
* An instance of the object of type QHttpRequestHeader
* $SEEALSO$
* QHttpHeader
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QHttpHeader
* $ONELINER$
* Creates a new QHttpRequestHeader object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttprequestheader.html
* $END$
*/

View File

@@ -1,58 +1,56 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QHttpResponseHeader()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qhttpresponseheader.html
$ONELINER$
Creates a new QHttpResponseHeader object.
$INHERITS$
QHttpHeader
$SYNTAX$
QHttpResponseHeader():new( ... )
QHttpResponseHeader():from( pPtr_OR_oObj_of_type_QHttpResponseHeader )
QHttpResponseHeader():configure( pPtr_OR_oObj_of_type_QHttpResponseHeader )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QHttpResponseHeader
$METHODS$
:majorVersion() -> nInt
:minorVersion() -> nInt
:reasonPhrase() -> cQString
:setStatusLine( nCode, cText, nMajorVer, nMinorVer ) -> NIL
:statusCode() -> nInt
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg
C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp
Library : hbqtnetwork
$SEEALSO$
QHttpHeader
$END$
* $NAME$
* QHttpResponseHeader()
* $FILES$
* Harbour source: contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg
* C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp
* Library : hbqtnetwork
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QHttpResponseHeader():new( ... )
* QHttpResponseHeader():from( pPtr_OR_oObj_of_type_QHttpResponseHeader )
* QHttpResponseHeader():configure( pPtr_OR_oObj_of_type_QHttpResponseHeader )
* $METHODS$
* :majorVersion() -> nInt
* :minorVersion() -> nInt
* :reasonPhrase() -> cQString
* :setStatusLine( nCode, cText, nMajorVer, nMinorVer ) -> NIL
* :statusCode() -> nInt
*
* $RETURNS$
* An instance of the object of type QHttpResponseHeader
* $SEEALSO$
* QHttpHeader
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QHttpHeader
* $ONELINER$
* Creates a new QHttpResponseHeader object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qhttpresponseheader.html
* $END$
*/

View File

@@ -1,67 +1,65 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QIcon()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qicon.html
$ONELINER$
Creates a new QIcon object.
$INHERITS$
$SYNTAX$
QIcon():new( ... )
QIcon():from( pPtr_OR_oObj_of_type_QIcon )
QIcon():configure( pPtr_OR_oObj_of_type_QIcon )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QIcon
$METHODS$
:actualSize( pSize, nMode, nState ) -> pQSize
:addFile( cFileName, pSize, nMode, nState ) -> NIL
:addPixmap( pPixmap, nMode, nState ) -> NIL
:availableSizes( nMode, nState ) -> pQList<QSize>
:cacheKey() -> nQint64
:isNull() -> lBool
:paint( pPainter, pRect, nAlignment, nMode, nState ) -> NIL
:paint_1( pPainter, nX, nY, nW, nH, nAlignment, nMode, nState ) -> NIL
:pixmap( pSize, nMode, nState ) -> pQPixmap
:pixmap_1( nW, nH, nMode, nState ) -> pQPixmap
:pixmap_2( nExtent, nMode, nState ) -> pQPixmap
$DESCRIPTION$
$EXAMPLES$
oIcon := QIcon():new()
oIcon := QIcon():new( cFileName )
oIcon := QIcon():new( pQPixmap )
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQIcon.prg
C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QIcon()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQIcon.prg
* C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QIcon():new( ... )
* QIcon():from( pPtr_OR_oObj_of_type_QIcon )
* QIcon():configure( pPtr_OR_oObj_of_type_QIcon )
* $METHODS$
* :actualSize( pSize, nMode, nState ) -> pQSize
* :addFile( cFileName, pSize, nMode, nState ) -> NIL
* :addPixmap( pPixmap, nMode, nState ) -> NIL
* :availableSizes( nMode, nState ) -> pQList<QSize>
* :cacheKey() -> nQint64
* :isNull() -> lBool
* :paint( pPainter, pRect, nAlignment, nMode, nState ) -> NIL
* :paint_1( pPainter, nX, nY, nW, nH, nAlignment, nMode, nState ) -> NIL
* :pixmap( pSize, nMode, nState ) -> pQPixmap
* :pixmap_1( nW, nH, nMode, nState ) -> pQPixmap
* :pixmap_2( nExtent, nMode, nState ) -> pQPixmap
*
* $RETURNS$
* An instance of the object of type QIcon
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oIcon := QIcon():new()
* oIcon := QIcon():new( cFileName )
* oIcon := QIcon():new( pQPixmap )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QIcon object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qicon.html
* $END$
*/

View File

@@ -1,107 +1,105 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QImage()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qimage.html
$ONELINER$
Creates a new QImage object.
$INHERITS$
$SYNTAX$
QImage():new( ... )
QImage():from( pPtr_OR_oObj_of_type_QImage )
QImage():configure( pPtr_OR_oObj_of_type_QImage )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QImage
$METHODS$
:allGray() -> lBool
:bits() -> pUchar
:bits_1() -> pUchar
:bytesPerLine() -> nInt
:cacheKey() -> nQint64
:color( nI ) -> nQRgb
:depth() -> nInt
:dotsPerMeterX() -> nInt
:dotsPerMeterY() -> nInt
:fill( nPixelValue ) -> NIL
:format() -> nFormat
:hasAlphaChannel() -> lBool
:height() -> nInt
:invertPixels( nMode ) -> NIL
:isGrayscale() -> lBool
:isNull() -> lBool
:load( cFileName, pFormat ) -> lBool
:load_1( pDevice, pFormat ) -> lBool
:loadFromData( pData, pFormat ) -> lBool
:numBytes() -> nInt
:numColors() -> nInt
:offset() -> pQPoint
:pixel( pPosition ) -> nQRgb
:pixel_1( nX, nY ) -> nQRgb
:pixelIndex( pPosition ) -> nInt
:pixelIndex_1( nX, nY ) -> nInt
:rect() -> pQRect
:save( cFileName, pFormat, nQuality ) -> lBool
:save_1( pDevice, pFormat, nQuality ) -> lBool
:scanLine( nI ) -> pUchar
:scanLine_1( nI ) -> pUchar
:setColor( nIndex, nColorValue ) -> NIL
:setDotsPerMeterX( nX ) -> NIL
:setDotsPerMeterY( nY ) -> NIL
:setNumColors( nNumColors ) -> NIL
:setOffset( pOffset ) -> NIL
:setPixel( pPosition, nIndex_or_rgb ) -> NIL
:setPixel_1( nX, nY, nIndex_or_rgb ) -> NIL
:setText( cKey, cText ) -> NIL
:size() -> pQSize
:text( cKey ) -> cQString
:textKeys() -> pQStringList
:valid( pPos ) -> lBool
:valid_1( nX, nY ) -> lBool
:width() -> nInt
$DESCRIPTION$
$EXAMPLES$
oImage := QImage():new()
oImage := QImage():new( pQSize, cFormat )
oImage := QImage():new( iWidth, iHeight, cFormat )
oImage := QImage():new( @cData, iWidth, iHeight, cFormat )
oImage := QImage():new( cData , iWidth, iHeight, cFormat )
oImage := QImage():new( @cData, iWidth, iHeight, iBytesPerLine, cFormat )
oImage := QImage():new( cData , iWidth, iHeight, iBytesPerLine, cFormat )
oImage := QImage():new( cFileName [, cFormat ] )
oImage := QImage():new( pQImage )
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQImage.prg
C++ wrappers : contrib/hbqt/qtgui/QImage.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QImage()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImage.prg
* C++ wrappers : contrib/hbqt/qtgui/QImage.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QImage():new( ... )
* QImage():from( pPtr_OR_oObj_of_type_QImage )
* QImage():configure( pPtr_OR_oObj_of_type_QImage )
* $METHODS$
* :allGray() -> lBool
* :bits() -> pUchar
* :bits_1() -> pUchar
* :bytesPerLine() -> nInt
* :cacheKey() -> nQint64
* :color( nI ) -> nQRgb
* :depth() -> nInt
* :dotsPerMeterX() -> nInt
* :dotsPerMeterY() -> nInt
* :fill( nPixelValue ) -> NIL
* :format() -> nFormat
* :hasAlphaChannel() -> lBool
* :height() -> nInt
* :invertPixels( nMode ) -> NIL
* :isGrayscale() -> lBool
* :isNull() -> lBool
* :load( cFileName, pFormat ) -> lBool
* :load_1( pDevice, pFormat ) -> lBool
* :loadFromData( pData, pFormat ) -> lBool
* :numBytes() -> nInt
* :numColors() -> nInt
* :offset() -> pQPoint
* :pixel( pPosition ) -> nQRgb
* :pixel_1( nX, nY ) -> nQRgb
* :pixelIndex( pPosition ) -> nInt
* :pixelIndex_1( nX, nY ) -> nInt
* :rect() -> pQRect
* :save( cFileName, pFormat, nQuality ) -> lBool
* :save_1( pDevice, pFormat, nQuality ) -> lBool
* :scanLine( nI ) -> pUchar
* :scanLine_1( nI ) -> pUchar
* :setColor( nIndex, nColorValue ) -> NIL
* :setDotsPerMeterX( nX ) -> NIL
* :setDotsPerMeterY( nY ) -> NIL
* :setNumColors( nNumColors ) -> NIL
* :setOffset( pOffset ) -> NIL
* :setPixel( pPosition, nIndex_or_rgb ) -> NIL
* :setPixel_1( nX, nY, nIndex_or_rgb ) -> NIL
* :setText( cKey, cText ) -> NIL
* :size() -> pQSize
* :text( cKey ) -> cQString
* :textKeys() -> pQStringList
* :valid( pPos ) -> lBool
* :valid_1( nX, nY ) -> lBool
* :width() -> nInt
*
* $RETURNS$
* An instance of the object of type QImage
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
* oImage := QImage():new()
* oImage := QImage():new( pQSize, cFormat )
* oImage := QImage():new( iWidth, iHeight, cFormat )
* oImage := QImage():new( @cData, iWidth, iHeight, cFormat )
* oImage := QImage():new( cData , iWidth, iHeight, cFormat )
* oImage := QImage():new( @cData, iWidth, iHeight, iBytesPerLine, cFormat )
* oImage := QImage():new( cData , iWidth, iHeight, iBytesPerLine, cFormat )
* oImage := QImage():new( cFileName [, cFormat ] )
* oImage := QImage():new( pQImage )
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QImage object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimage.html
* $END$
*/

View File

@@ -1,92 +1,90 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QImageReader()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qimagereader.html
$ONELINER$
Creates a new QImageReader object.
$INHERITS$
$SYNTAX$
QImageReader():new( ... )
QImageReader():from( pPtr_OR_oObj_of_type_QImageReader )
QImageReader():configure( pPtr_OR_oObj_of_type_QImageReader )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QImageReader
$METHODS$
:autoDetectImageFormat() -> lBool
:backgroundColor() -> pQColor
:canRead() -> lBool
:clipRect() -> pQRect
:currentImageNumber() -> nInt
:currentImageRect() -> pQRect
:device() -> pQIODevice
:error() -> nImageReaderError
:errorString() -> cQString
:fileName() -> cQString
:format() -> pQByteArray
:imageCount() -> nInt
:imageFormat() -> nQImage::Format
:jumpToImage( nImageNumber ) -> lBool
:jumpToNextImage() -> lBool
:loopCount() -> nInt
:nextImageDelay() -> nInt
:quality() -> nInt
:read() -> pQImage
:read_1( pImage ) -> lBool
:scaledClipRect() -> pQRect
:scaledSize() -> pQSize
:setAutoDetectImageFormat( lEnabled ) -> NIL
:setBackgroundColor( pColor ) -> NIL
:setClipRect( pRect ) -> NIL
:setDevice( pDevice ) -> NIL
:setFileName( cFileName ) -> NIL
:setFormat( pFormat ) -> NIL
:setQuality( nQuality ) -> NIL
:setScaledClipRect( pRect ) -> NIL
:setScaledSize( pSize ) -> NIL
:size() -> pQSize
:supportsAnimation() -> lBool
:supportsOption( nOption ) -> lBool
:text( cKey ) -> cQString
:textKeys() -> pQStringList
:imageFormat_1( cFileName ) -> pQByteArray
:imageFormat_2( pDevice ) -> pQByteArray
:supportedImageFormats() -> pQList<QByteArray>
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQImageReader.prg
C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QImageReader()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImageReader.prg
* C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QImageReader():new( ... )
* QImageReader():from( pPtr_OR_oObj_of_type_QImageReader )
* QImageReader():configure( pPtr_OR_oObj_of_type_QImageReader )
* $METHODS$
* :autoDetectImageFormat() -> lBool
* :backgroundColor() -> pQColor
* :canRead() -> lBool
* :clipRect() -> pQRect
* :currentImageNumber() -> nInt
* :currentImageRect() -> pQRect
* :device() -> pQIODevice
* :error() -> nImageReaderError
* :errorString() -> cQString
* :fileName() -> cQString
* :format() -> pQByteArray
* :imageCount() -> nInt
* :imageFormat() -> nQImage::Format
* :jumpToImage( nImageNumber ) -> lBool
* :jumpToNextImage() -> lBool
* :loopCount() -> nInt
* :nextImageDelay() -> nInt
* :quality() -> nInt
* :read() -> pQImage
* :read_1( pImage ) -> lBool
* :scaledClipRect() -> pQRect
* :scaledSize() -> pQSize
* :setAutoDetectImageFormat( lEnabled ) -> NIL
* :setBackgroundColor( pColor ) -> NIL
* :setClipRect( pRect ) -> NIL
* :setDevice( pDevice ) -> NIL
* :setFileName( cFileName ) -> NIL
* :setFormat( pFormat ) -> NIL
* :setQuality( nQuality ) -> NIL
* :setScaledClipRect( pRect ) -> NIL
* :setScaledSize( pSize ) -> NIL
* :size() -> pQSize
* :supportsAnimation() -> lBool
* :supportsOption( nOption ) -> lBool
* :text( cKey ) -> cQString
* :textKeys() -> pQStringList
* :imageFormat_1( cFileName ) -> pQByteArray
* :imageFormat_2( pDevice ) -> pQByteArray
* :supportedImageFormats() -> pQList<QByteArray>
*
* $RETURNS$
* An instance of the object of type QImageReader
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QImageReader object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimagereader.html
* $END$
*/

View File

@@ -1,72 +1,70 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QImageWriter()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qimagewriter.html
$ONELINER$
Creates a new QImageWriter object.
$INHERITS$
$SYNTAX$
QImageWriter():new( ... )
QImageWriter():from( pPtr_OR_oObj_of_type_QImageWriter )
QImageWriter():configure( pPtr_OR_oObj_of_type_QImageWriter )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QImageWriter
$METHODS$
:canWrite() -> lBool
:compression() -> nInt
:device() -> pQIODevice
:error() -> nImageWriterError
:errorString() -> cQString
:fileName() -> cQString
:format() -> pQByteArray
:gamma() -> nFloat
:quality() -> nInt
:setCompression( nCompression ) -> NIL
:setDevice( pDevice ) -> NIL
:setFileName( cFileName ) -> NIL
:setFormat( pFormat ) -> NIL
:setGamma( nGamma ) -> NIL
:setQuality( nQuality ) -> NIL
:setText( cKey, cText ) -> NIL
:supportsOption( nOption ) -> lBool
:write( pImage ) -> lBool
:supportedImageFormats() -> pQList<QByteArray>
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQImageWriter.prg
C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QImageWriter()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQImageWriter.prg
* C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QImageWriter():new( ... )
* QImageWriter():from( pPtr_OR_oObj_of_type_QImageWriter )
* QImageWriter():configure( pPtr_OR_oObj_of_type_QImageWriter )
* $METHODS$
* :canWrite() -> lBool
* :compression() -> nInt
* :device() -> pQIODevice
* :error() -> nImageWriterError
* :errorString() -> cQString
* :fileName() -> cQString
* :format() -> pQByteArray
* :gamma() -> nFloat
* :quality() -> nInt
* :setCompression( nCompression ) -> NIL
* :setDevice( pDevice ) -> NIL
* :setFileName( cFileName ) -> NIL
* :setFormat( pFormat ) -> NIL
* :setGamma( nGamma ) -> NIL
* :setQuality( nQuality ) -> NIL
* :setText( cKey, cText ) -> NIL
* :supportsOption( nOption ) -> lBool
* :write( pImage ) -> lBool
* :supportedImageFormats() -> pQList<QByteArray>
*
* $RETURNS$
* An instance of the object of type QImageWriter
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QImageWriter object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qimagewriter.html
* $END$
*/

View File

@@ -1,97 +1,95 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QInputDialog()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qinputdialog.html
$ONELINER$
Creates a new QInputDialog object.
$INHERITS$
QDialog
$SYNTAX$
QInputDialog():new( ... )
QInputDialog():from( pPtr_OR_oObj_of_type_QInputDialog )
QInputDialog():configure( pPtr_OR_oObj_of_type_QInputDialog )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QInputDialog
$METHODS$
:cancelButtonText() -> cQString
:comboBoxItems() -> pQStringList
:done( nResult ) -> NIL
:doubleDecimals() -> nInt
:doubleMaximum() -> nDouble
:doubleMinimum() -> nDouble
:doubleValue() -> nDouble
:inputMode() -> nInputMode
:intMaximum() -> nInt
:intMinimum() -> nInt
:intStep() -> nInt
:intValue() -> nInt
:isComboBoxEditable() -> lBool
:labelText() -> cQString
:okButtonText() -> cQString
:open( pReceiver, pMember ) -> NIL
:options() -> nInputDialogOptions
:setCancelButtonText( cText ) -> NIL
:setComboBoxEditable( lEditable ) -> NIL
:setComboBoxItems( pItems ) -> NIL
:setDoubleDecimals( nDecimals ) -> NIL
:setDoubleMaximum( nMax ) -> NIL
:setDoubleMinimum( nMin ) -> NIL
:setDoubleRange( nMin, nMax ) -> NIL
:setDoubleValue( nValue ) -> NIL
:setInputMode( nMode ) -> NIL
:setIntMaximum( nMax ) -> NIL
:setIntMinimum( nMin ) -> NIL
:setIntRange( nMin, nMax ) -> NIL
:setIntStep( nStep ) -> NIL
:setIntValue( nValue ) -> NIL
:setLabelText( cText ) -> NIL
:setOkButtonText( cText ) -> NIL
:setOption( nOption, lOn ) -> NIL
:setOptions( nOptions ) -> NIL
:setTextEchoMode( nMode ) -> NIL
:setTextValue( cText ) -> NIL
:testOption( nOption ) -> lBool
:textEchoMode() -> nQLineEdit::EchoMode
:textValue() -> cQString
:getDouble( pParent, cTitle, cLabel, nValue, nMin, nMax, nDecimals, @lOk, nFlags ) -> nDouble
:getInt( pParent, cTitle, cLabel, nValue, nMin, nMax, nStep, @lOk, nFlags ) -> nInt
:getItem( pParent, cTitle, cLabel, pItems, nCurrent, lEditable, @lOk, nFlags ) -> cQString
:getText( pParent, cTitle, cLabel, nMode, cText, @lOk, nFlags ) -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQInputDialog.prg
C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp
Library : hbqtgui
$SEEALSO$
QDialog
$END$
* $NAME$
* QInputDialog()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputDialog.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QInputDialog():new( ... )
* QInputDialog():from( pPtr_OR_oObj_of_type_QInputDialog )
* QInputDialog():configure( pPtr_OR_oObj_of_type_QInputDialog )
* $METHODS$
* :cancelButtonText() -> cQString
* :comboBoxItems() -> pQStringList
* :done( nResult ) -> NIL
* :doubleDecimals() -> nInt
* :doubleMaximum() -> nDouble
* :doubleMinimum() -> nDouble
* :doubleValue() -> nDouble
* :inputMode() -> nInputMode
* :intMaximum() -> nInt
* :intMinimum() -> nInt
* :intStep() -> nInt
* :intValue() -> nInt
* :isComboBoxEditable() -> lBool
* :labelText() -> cQString
* :okButtonText() -> cQString
* :open( pReceiver, pMember ) -> NIL
* :options() -> nInputDialogOptions
* :setCancelButtonText( cText ) -> NIL
* :setComboBoxEditable( lEditable ) -> NIL
* :setComboBoxItems( pItems ) -> NIL
* :setDoubleDecimals( nDecimals ) -> NIL
* :setDoubleMaximum( nMax ) -> NIL
* :setDoubleMinimum( nMin ) -> NIL
* :setDoubleRange( nMin, nMax ) -> NIL
* :setDoubleValue( nValue ) -> NIL
* :setInputMode( nMode ) -> NIL
* :setIntMaximum( nMax ) -> NIL
* :setIntMinimum( nMin ) -> NIL
* :setIntRange( nMin, nMax ) -> NIL
* :setIntStep( nStep ) -> NIL
* :setIntValue( nValue ) -> NIL
* :setLabelText( cText ) -> NIL
* :setOkButtonText( cText ) -> NIL
* :setOption( nOption, lOn ) -> NIL
* :setOptions( nOptions ) -> NIL
* :setTextEchoMode( nMode ) -> NIL
* :setTextValue( cText ) -> NIL
* :testOption( nOption ) -> lBool
* :textEchoMode() -> nQLineEdit::EchoMode
* :textValue() -> cQString
* :getDouble( pParent, cTitle, cLabel, nValue, nMin, nMax, nDecimals, @lOk, nFlags ) -> nDouble
* :getInt( pParent, cTitle, cLabel, nValue, nMin, nMax, nStep, @lOk, nFlags ) -> nInt
* :getItem( pParent, cTitle, cLabel, pItems, nCurrent, lEditable, @lOk, nFlags ) -> cQString
* :getText( pParent, cTitle, cLabel, nMode, cText, @lOk, nFlags ) -> cQString
*
* $RETURNS$
* An instance of the object of type QInputDialog
* $SEEALSO$
* QDialog
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QDialog
* $ONELINER$
* Creates a new QInputDialog object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qinputdialog.html
* $END$
*/

View File

@@ -1,54 +1,52 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QInputEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qinputevent.html
$ONELINER$
Creates a new QInputEvent object.
$INHERITS$
QEvent
$SYNTAX$
QInputEvent():new( ... )
QInputEvent():from( pPtr_OR_oObj_of_type_QInputEvent )
QInputEvent():configure( pPtr_OR_oObj_of_type_QInputEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QInputEvent
$METHODS$
:modifiers() -> nQt::KeyboardModifiers
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQInputEvent.prg
C++ wrappers : contrib/hbqt/qtgui/QInputEvent.cpp
Library : hbqtgui
$SEEALSO$
QEvent
$END$
* $NAME$
* QInputEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QInputEvent():new( ... )
* QInputEvent():from( pPtr_OR_oObj_of_type_QInputEvent )
* QInputEvent():configure( pPtr_OR_oObj_of_type_QInputEvent )
* $METHODS$
* :modifiers() -> nQt::KeyboardModifiers
*
* $RETURNS$
* An instance of the object of type QInputEvent
* $SEEALSO$
* QEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QEvent
* $ONELINER$
* Creates a new QInputEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qinputevent.html
* $END$
*/

View File

@@ -1,58 +1,56 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QInputMethodEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qinputmethodevent.html
$ONELINER$
Creates a new QInputMethodEvent object.
$INHERITS$
QEvent
$SYNTAX$
QInputMethodEvent():new( ... )
QInputMethodEvent():from( pPtr_OR_oObj_of_type_QInputMethodEvent )
QInputMethodEvent():configure( pPtr_OR_oObj_of_type_QInputMethodEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QInputMethodEvent
$METHODS$
:commitString() -> cQString
:preeditString() -> cQString
:replacementLength() -> nInt
:replacementStart() -> nInt
:setCommitString( cCommitString, nReplaceFrom, nReplaceLength ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQInputMethodEvent.prg
C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp
Library : hbqtgui
$SEEALSO$
QEvent
$END$
* $NAME$
* QInputMethodEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQInputMethodEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QInputMethodEvent():new( ... )
* QInputMethodEvent():from( pPtr_OR_oObj_of_type_QInputMethodEvent )
* QInputMethodEvent():configure( pPtr_OR_oObj_of_type_QInputMethodEvent )
* $METHODS$
* :commitString() -> cQString
* :preeditString() -> cQString
* :replacementLength() -> nInt
* :replacementStart() -> nInt
* :setCommitString( cCommitString, nReplaceFrom, nReplaceLength ) -> NIL
*
* $RETURNS$
* An instance of the object of type QInputMethodEvent
* $SEEALSO$
* QEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QEvent
* $ONELINER$
* Creates a new QInputMethodEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qinputmethodevent.html
* $END$
*/

View File

@@ -1,86 +1,84 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QIODevice()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qiodevice.html
$ONELINER$
Creates a new QIODevice object.
$INHERITS$
QObject
$SYNTAX$
QIODevice():new( ... )
QIODevice():from( pPtr_OR_oObj_of_type_QIODevice )
QIODevice():configure( pPtr_OR_oObj_of_type_QIODevice )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QIODevice
$METHODS$
:atEnd() -> lBool
:bytesAvailable() -> nQint64
:bytesToWrite() -> nQint64
:canReadLine() -> lBool
:close() -> NIL
:errorString() -> cQString
:getChar( cC ) -> lBool
:isOpen() -> lBool
:isReadable() -> lBool
:isSequential() -> lBool
:isTextModeEnabled() -> lBool
:isWritable() -> lBool
:open( nMode ) -> lBool
:openMode() -> nOpenMode
:peek( cData, nMaxSize ) -> nQint64
:peek_1( nMaxSize ) -> pQByteArray
:pos() -> nQint64
:putChar( cC ) -> lBool
:read( cData, nMaxSize ) -> nQint64
:read_1( nMaxSize ) -> pQByteArray
:readAll() -> pQByteArray
:readLine( cData, nMaxSize ) -> nQint64
:readLine_1( nMaxSize ) -> pQByteArray
:reset() -> lBool
:seek( nPos ) -> lBool
:setTextModeEnabled( lEnabled ) -> NIL
:size() -> nQint64
:ungetChar( cC ) -> NIL
:waitForBytesWritten( nMsecs ) -> lBool
:waitForReadyRead( nMsecs ) -> lBool
:write( pData, nMaxSize ) -> nQint64
:write_1( pData ) -> nQint64
:write_2( pByteArray ) -> nQint64
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQIODevice.prg
C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp
Library : hbqtcore
$SEEALSO$
QObject
$END$
* $NAME$
* QIODevice()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQIODevice.prg
* C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QIODevice():new( ... )
* QIODevice():from( pPtr_OR_oObj_of_type_QIODevice )
* QIODevice():configure( pPtr_OR_oObj_of_type_QIODevice )
* $METHODS$
* :atEnd() -> lBool
* :bytesAvailable() -> nQint64
* :bytesToWrite() -> nQint64
* :canReadLine() -> lBool
* :close() -> NIL
* :errorString() -> cQString
* :getChar( cC ) -> lBool
* :isOpen() -> lBool
* :isReadable() -> lBool
* :isSequential() -> lBool
* :isTextModeEnabled() -> lBool
* :isWritable() -> lBool
* :open( nMode ) -> lBool
* :openMode() -> nOpenMode
* :peek( cData, nMaxSize ) -> nQint64
* :peek_1( nMaxSize ) -> pQByteArray
* :pos() -> nQint64
* :putChar( cC ) -> lBool
* :read( cData, nMaxSize ) -> nQint64
* :read_1( nMaxSize ) -> pQByteArray
* :readAll() -> pQByteArray
* :readLine( cData, nMaxSize ) -> nQint64
* :readLine_1( nMaxSize ) -> pQByteArray
* :reset() -> lBool
* :seek( nPos ) -> lBool
* :setTextModeEnabled( lEnabled ) -> NIL
* :size() -> nQint64
* :ungetChar( cC ) -> NIL
* :waitForBytesWritten( nMsecs ) -> lBool
* :waitForReadyRead( nMsecs ) -> lBool
* :write( pData, nMaxSize ) -> nQint64
* :write_1( pData ) -> nQint64
* :write_2( pByteArray ) -> nQint64
*
* $RETURNS$
* An instance of the object of type QIODevice
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QIODevice object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qiodevice.html
* $END$
*/

View File

@@ -1,56 +1,54 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QItemSelection()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qitemselection.html
$ONELINER$
Creates a new QItemSelection object.
$INHERITS$
QList
$SYNTAX$
QItemSelection():new( ... )
QItemSelection():from( pPtr_OR_oObj_of_type_QItemSelection )
QItemSelection():configure( pPtr_OR_oObj_of_type_QItemSelection )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QItemSelection
$METHODS$
:contains( pIndex ) -> lBool
:merge( pOther, nCommand ) -> NIL
:select( pTopLeft, pBottomRight ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQItemSelection.prg
C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp
Library : hbqtgui
$SEEALSO$
QList
$END$
* $NAME$
* QItemSelection()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQItemSelection.prg
* C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QItemSelection():new( ... )
* QItemSelection():from( pPtr_OR_oObj_of_type_QItemSelection )
* QItemSelection():configure( pPtr_OR_oObj_of_type_QItemSelection )
* $METHODS$
* :contains( pIndex ) -> lBool
* :merge( pOther, nCommand ) -> NIL
* :select( pTopLeft, pBottomRight ) -> NIL
*
* $RETURNS$
* An instance of the object of type QItemSelection
* $SEEALSO$
* QList
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QList
* $ONELINER$
* Creates a new QItemSelection object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qitemselection.html
* $END$
*/

View File

@@ -1,68 +1,66 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QItemSelectionModel()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qitemselectionmodel.html
$ONELINER$
Creates a new QItemSelectionModel object.
$INHERITS$
QObject
$SYNTAX$
QItemSelectionModel():new( ... )
QItemSelectionModel():from( pPtr_OR_oObj_of_type_QItemSelectionModel )
QItemSelectionModel():configure( pPtr_OR_oObj_of_type_QItemSelectionModel )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QItemSelectionModel
$METHODS$
:columnIntersectsSelection( nColumn, pParent ) -> lBool
:currentIndex() -> pQModelIndex
:hasSelection() -> lBool
:isColumnSelected( nColumn, pParent ) -> lBool
:isRowSelected( nRow, pParent ) -> lBool
:isSelected( pIndex ) -> lBool
:model() -> pQAbstractItemModel
:rowIntersectsSelection( nRow, pParent ) -> lBool
:selection() -> pQItemSelection
:clear() -> NIL
:clearSelection() -> NIL
:reset() -> NIL
:select( pIndex, nCommand ) -> NIL
:select_1( pSelection, nCommand ) -> NIL
:setCurrentIndex( pIndex, nCommand ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQItemSelectionModel.prg
C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp
Library : hbqtgui
$SEEALSO$
QObject
$END$
* $NAME$
* QItemSelectionModel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQItemSelectionModel.prg
* C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QItemSelectionModel():new( ... )
* QItemSelectionModel():from( pPtr_OR_oObj_of_type_QItemSelectionModel )
* QItemSelectionModel():configure( pPtr_OR_oObj_of_type_QItemSelectionModel )
* $METHODS$
* :columnIntersectsSelection( nColumn, pParent ) -> lBool
* :currentIndex() -> pQModelIndex
* :hasSelection() -> lBool
* :isColumnSelected( nColumn, pParent ) -> lBool
* :isRowSelected( nRow, pParent ) -> lBool
* :isSelected( pIndex ) -> lBool
* :model() -> pQAbstractItemModel
* :rowIntersectsSelection( nRow, pParent ) -> lBool
* :selection() -> pQItemSelection
* :clear() -> NIL
* :clearSelection() -> NIL
* :reset() -> NIL
* :select( pIndex, nCommand ) -> NIL
* :select_1( pSelection, nCommand ) -> NIL
* :setCurrentIndex( pIndex, nCommand ) -> NIL
*
* $RETURNS$
* An instance of the object of type QItemSelectionModel
* $SEEALSO$
* QObject
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject
* $ONELINER$
* Creates a new QItemSelectionModel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qitemselectionmodel.html
* $END$
*/

View File

@@ -1,62 +1,60 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QKeyEvent()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qkeyevent.html
$ONELINER$
Creates a new QKeyEvent object.
$INHERITS$
QInputEvent
$SYNTAX$
QKeyEvent():new( ... )
QKeyEvent():from( pPtr_OR_oObj_of_type_QKeyEvent )
QKeyEvent():configure( pPtr_OR_oObj_of_type_QKeyEvent )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QKeyEvent
$METHODS$
:count() -> nInt
:isAutoRepeat() -> lBool
:key() -> nInt
:matches( nKey ) -> lBool
:modifiers() -> nQt::KeyboardModifiers
:nativeModifiers() -> nQuint32
:nativeScanCode() -> nQuint32
:nativeVirtualKey() -> nQuint32
:text() -> cQString
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQKeyEvent.prg
C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp
Library : hbqtgui
$SEEALSO$
QInputEvent
$END$
* $NAME$
* QKeyEvent()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQKeyEvent.prg
* C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QKeyEvent():new( ... )
* QKeyEvent():from( pPtr_OR_oObj_of_type_QKeyEvent )
* QKeyEvent():configure( pPtr_OR_oObj_of_type_QKeyEvent )
* $METHODS$
* :count() -> nInt
* :isAutoRepeat() -> lBool
* :key() -> nInt
* :matches( nKey ) -> lBool
* :modifiers() -> nQt::KeyboardModifiers
* :nativeModifiers() -> nQuint32
* :nativeScanCode() -> nQuint32
* :nativeVirtualKey() -> nQuint32
* :text() -> cQString
*
* $RETURNS$
* An instance of the object of type QKeyEvent
* $SEEALSO$
* QInputEvent
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QInputEvent
* $ONELINER$
* Creates a new QKeyEvent object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qkeyevent.html
* $END$
*/

View File

@@ -1,58 +1,56 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QKeySequence()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qkeysequence.html
$ONELINER$
Creates a new QKeySequence object.
$INHERITS$
$SYNTAX$
QKeySequence():new( ... )
QKeySequence():from( pPtr_OR_oObj_of_type_QKeySequence )
QKeySequence():configure( pPtr_OR_oObj_of_type_QKeySequence )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QKeySequence
$METHODS$
:count() -> nUint
:isEmpty() -> lBool
:matches( pSeq ) -> nSequenceMatch
:toString( nFormat ) -> cQString
:keyBindings( nKey ) -> pQList<QKeySequence>
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQKeySequence.prg
C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp
Library : hbqtgui
$SEEALSO$
$END$
* $NAME$
* QKeySequence()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQKeySequence.prg
* C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QKeySequence():new( ... )
* QKeySequence():from( pPtr_OR_oObj_of_type_QKeySequence )
* QKeySequence():configure( pPtr_OR_oObj_of_type_QKeySequence )
* $METHODS$
* :count() -> nUint
* :isEmpty() -> lBool
* :matches( pSeq ) -> nSequenceMatch
* :toString( nFormat ) -> cQString
* :keyBindings( nKey ) -> pQList<QKeySequence>
*
* $RETURNS$
* An instance of the object of type QKeySequence
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QKeySequence object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qkeysequence.html
* $END$
*/

View File

@@ -1,82 +1,80 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QLabel()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qlabel.html
$ONELINER$
Creates a new QLabel object.
$INHERITS$
QFrame
$SYNTAX$
QLabel():new( ... )
QLabel():from( pPtr_OR_oObj_of_type_QLabel )
QLabel():configure( pPtr_OR_oObj_of_type_QLabel )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QLabel
$METHODS$
:alignment() -> nQt::Alignment
:buddy() -> pQWidget
:hasScaledContents() -> lBool
:indent() -> nInt
:margin() -> nInt
:movie() -> pQMovie
:openExternalLinks() -> lBool
:picture() -> pQPicture
:pixmap() -> pQPixmap
:setAlignment( nQt::Alignment ) -> NIL
:setBuddy( pBuddy ) -> NIL
:setIndent( nInt ) -> NIL
:setMargin( nInt ) -> NIL
:setOpenExternalLinks( lOpen ) -> NIL
:setScaledContents( lBool ) -> NIL
:setTextFormat( nQt::TextFormat ) -> NIL
:setTextInteractionFlags( nFlags ) -> NIL
:setWordWrap( lOn ) -> NIL
:text() -> cQString
:textFormat() -> nQt::TextFormat
:textInteractionFlags() -> nQt::TextInteractionFlags
:wordWrap() -> lBool
:clear() -> NIL
:setMovie( pMovie ) -> NIL
:setNum( nNum ) -> NIL
:setNum_1( nNum ) -> NIL
:setPicture( pPicture ) -> NIL
:setPixmap( pQPixmap ) -> NIL
:setText( cQString ) -> NIL
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQLabel.prg
C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp
Library : hbqtgui
$SEEALSO$
QFrame
$END$
* $NAME$
* QLabel()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQLabel.prg
* C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QLabel():new( ... )
* QLabel():from( pPtr_OR_oObj_of_type_QLabel )
* QLabel():configure( pPtr_OR_oObj_of_type_QLabel )
* $METHODS$
* :alignment() -> nQt::Alignment
* :buddy() -> pQWidget
* :hasScaledContents() -> lBool
* :indent() -> nInt
* :margin() -> nInt
* :movie() -> pQMovie
* :openExternalLinks() -> lBool
* :picture() -> pQPicture
* :pixmap() -> pQPixmap
* :setAlignment( nQt::Alignment ) -> NIL
* :setBuddy( pBuddy ) -> NIL
* :setIndent( nInt ) -> NIL
* :setMargin( nInt ) -> NIL
* :setOpenExternalLinks( lOpen ) -> NIL
* :setScaledContents( lBool ) -> NIL
* :setTextFormat( nQt::TextFormat ) -> NIL
* :setTextInteractionFlags( nFlags ) -> NIL
* :setWordWrap( lOn ) -> NIL
* :text() -> cQString
* :textFormat() -> nQt::TextFormat
* :textInteractionFlags() -> nQt::TextInteractionFlags
* :wordWrap() -> lBool
* :clear() -> NIL
* :setMovie( pMovie ) -> NIL
* :setNum( nNum ) -> NIL
* :setNum_1( nNum ) -> NIL
* :setPicture( pPicture ) -> NIL
* :setPixmap( pQPixmap ) -> NIL
* :setText( cQString ) -> NIL
*
* $RETURNS$
* An instance of the object of type QLabel
* $SEEALSO$
* QFrame
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QFrame
* $ONELINER$
* Creates a new QLabel object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlabel.html
* $END$
*/

View File

@@ -1,55 +1,53 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QLatin1Char()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qlatin1char.html
$ONELINER$
Creates a new QLatin1Char object.
$INHERITS$
$SYNTAX$
QLatin1Char():new( ... )
QLatin1Char():from( pPtr_OR_oObj_of_type_QLatin1Char )
QLatin1Char():configure( pPtr_OR_oObj_of_type_QLatin1Char )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QLatin1Char
$METHODS$
:toLatin1() -> cChar
:unicode() -> nUshort
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQLatin1Char.prg
C++ wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QLatin1Char()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQLatin1Char.prg
* C++ wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QLatin1Char():new( ... )
* QLatin1Char():from( pPtr_OR_oObj_of_type_QLatin1Char )
* QLatin1Char():configure( pPtr_OR_oObj_of_type_QLatin1Char )
* $METHODS$
* :toLatin1() -> cChar
* :unicode() -> nUshort
*
* $RETURNS$
* An instance of the object of type QLatin1Char
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QLatin1Char object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlatin1char.html
* $END$
*/

View File

@@ -1,54 +1,52 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QLatin1String()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qlatin1string.html
$ONELINER$
Creates a new QLatin1String object.
$INHERITS$
$SYNTAX$
QLatin1String():new( ... )
QLatin1String():from( pPtr_OR_oObj_of_type_QLatin1String )
QLatin1String():configure( pPtr_OR_oObj_of_type_QLatin1String )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QLatin1String
$METHODS$
:latin1() -> cChar
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtcore/TQLatin1String.prg
C++ wrappers : contrib/hbqt/qtcore/QLatin1String.cpp
Library : hbqtcore
$SEEALSO$
$END$
* $NAME$
* QLatin1String()
* $FILES$
* Harbour source: contrib/hbqt/qtcore/TQLatin1String.prg
* C++ wrappers : contrib/hbqt/qtcore/QLatin1String.cpp
* Library : hbqtcore
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QLatin1String():new( ... )
* QLatin1String():from( pPtr_OR_oObj_of_type_QLatin1String )
* QLatin1String():configure( pPtr_OR_oObj_of_type_QLatin1String )
* $METHODS$
* :latin1() -> cChar
*
* $RETURNS$
* An instance of the object of type QLatin1String
* $SEEALSO$
*
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
*
* $ONELINER$
* Creates a new QLatin1String object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlatin1string.html
* $END$
*/

View File

@@ -1,82 +1,80 @@
/*
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
* Please do not modify this document as it is subject to change in future.
* Pritpal Bedi <bedipritpal@hotmail.com>
* $Id$
*/
/* $DOC$
$TEMPLATE$
Class
$NAME$
QLayout()
$CATEGORY$
Harbour Bindings for Qt
$SUBCATEGORY$
GUI
$EXTERNALLINK$
http://doc.trolltech.com/4.5/qlayout.html
$ONELINER$
Creates a new QLayout object.
$INHERITS$
QObject, QLayoutItem
$SYNTAX$
QLayout():new( ... )
QLayout():from( pPtr_OR_oObj_of_type_QLayout )
QLayout():configure( pPtr_OR_oObj_of_type_QLayout )
$ARGUMENTS$
$RETURNS$
An instance of the object of type QLayout
$METHODS$
:activate() -> lBool
:addItem( pItem ) -> NIL
:addWidget( pW ) -> NIL
:contentsRect() -> pQRect
:count() -> nInt
:expandingDirections() -> nQt::Orientations
:getContentsMargins( @nLeft, @nTop, @nRight, @nBottom ) -> NIL
:indexOf( pWidget ) -> nInt
:isEnabled() -> lBool
:itemAt( nIndex ) -> Item
:maximumSize() -> pQSize
:menuBar() -> pQWidget
:minimumSize() -> pQSize
:parentWidget() -> pQWidget
:removeItem( pItem ) -> NIL
:removeWidget( pWidget ) -> NIL
:setAlignment( pW, nAlignment ) -> lBool
:setAlignment_1( nAlignment ) -> NIL
:setAlignment_2( pL, nAlignment ) -> lBool
:setContentsMargins( nLeft, nTop, nRight, nBottom ) -> NIL
:setEnabled( lEnable ) -> NIL
:setMenuBar( pWidget ) -> NIL
:setSizeConstraint( nSizeConstraint ) -> NIL
:setSpacing( nInt ) -> NIL
:sizeConstraint() -> nSizeConstraint
:spacing() -> nInt
:takeAt( nIndex ) -> Item
:update() -> NIL
:closestAcceptableSize( pWidget, pSize ) -> pQSize
$DESCRIPTION$
$EXAMPLES$
$TESTS$
$STATUS$
R
$COMPLIANCE$
Not Clipper compatible
$PLATFORMS$
Windows, Linux, Mac OS X, OS/2
$VERSION$
4.5 or upper
$FILES$
Harbour source: contrib/hbqt/qtgui/TQLayout.prg
C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp
Library : hbqtgui
$SEEALSO$
QObject, QLayoutItem
$END$
* $NAME$
* QLayout()
* $FILES$
* Harbour source: contrib/hbqt/qtgui/TQLayout.prg
* C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp
* Library : hbqtgui
* $TESTS$
*
* $STATUS$
* R
* $SYNTAX$
* QLayout():new( ... )
* QLayout():from( pPtr_OR_oObj_of_type_QLayout )
* QLayout():configure( pPtr_OR_oObj_of_type_QLayout )
* $METHODS$
* :activate() -> lBool
* :addItem( pItem ) -> NIL
* :addWidget( pW ) -> NIL
* :contentsRect() -> pQRect
* :count() -> nInt
* :expandingDirections() -> nQt::Orientations
* :getContentsMargins( @nLeft, @nTop, @nRight, @nBottom ) -> NIL
* :indexOf( pWidget ) -> nInt
* :isEnabled() -> lBool
* :itemAt( nIndex ) -> Item
* :maximumSize() -> pQSize
* :menuBar() -> pQWidget
* :minimumSize() -> pQSize
* :parentWidget() -> pQWidget
* :removeItem( pItem ) -> NIL
* :removeWidget( pWidget ) -> NIL
* :setAlignment( pW, nAlignment ) -> lBool
* :setAlignment_1( nAlignment ) -> NIL
* :setAlignment_2( pL, nAlignment ) -> lBool
* :setContentsMargins( nLeft, nTop, nRight, nBottom ) -> NIL
* :setEnabled( lEnable ) -> NIL
* :setMenuBar( pWidget ) -> NIL
* :setSizeConstraint( nSizeConstraint ) -> NIL
* :setSpacing( nInt ) -> NIL
* :sizeConstraint() -> nSizeConstraint
* :spacing() -> nInt
* :takeAt( nIndex ) -> Item
* :update() -> NIL
* :closestAcceptableSize( pWidget, pSize ) -> pQSize
*
* $RETURNS$
* An instance of the object of type QLayout
* $SEEALSO$
* QObject, QLayoutItem
* $VERSION$
* 4.5 or upper
* $CATEGORY$
* Harbour Bindings for Qt
* $EXAMPLES$
*
* $INHERITS$
* QObject, QLayoutItem
* $ONELINER$
* Creates a new QLayout object.
* $TEMPLATE$
* Class
* $ARGUMENTS$
*
* $PLATFORMS$
* Windows, Linux, Mac OS X, OS/2
* $COMPLIANCE$
* Not Clipper compatible
* $DESCRIPTION$
*
* $SUBCATEGORY$
* GUI
* $EXTERNALLINK$
* http://doc.trolltech.com/4.5/qlayout.html
* $END$
*/

Some files were not shown because too many files have changed in this diff Show More