diff --git a/harbour/ChangeLog b/harbour/ChangeLog index 6dcbad36ce..3c587f184b 100644 --- a/harbour/ChangeLog +++ b/harbour/ChangeLog @@ -16,6 +16,87 @@ The license applies to all entries newer than 2009-04-28. */ +2010-07-31 13:44 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) + * contrib/make.hbs + % Code consolidation. + ! Fixed recent regression, whereas now again the root project's + .hbc file will be added to the make process in HB_BUILD_CONTRIB_DYN + mode. + + Changed the way filter is processed, now dependent packages will + always be built, so there is no need to manually pick all the + dependencies too. + * Internal terminology cleanup. + + Will now also rebuild the _dependencies_ in HB_BUILD_CONTRIB_DYN mode. + - Deleted forcing English language for hbmk2 output. + ; Regressions are possible + ; NOTE: This dynamic stuff is a real can of worms. Virtually infinite + combinations of dynamic vs static libs may be supported, plus + there is ST vs MT issue, where we must decide about this at + dynlib build time, and f.e. what happens when trying to load + two .dlls one with was linked against MT Harbour and the other + against ST? It's a combinatorical explosion. + + * src/vm/vmmt/Makefile + ! Fixed missing procaddr.c causing unresolved externals when creating + MT mode dynlibs. + + * config/global.mk + ! Attempt to fix LD_LIBRARY_PATH problem, adding dynamic lib build + dir to this envvar while doing the build, pls test it, I didn't. + + + contrib/hbplist + - contrib/pkglist + * Renamed. + + * contrib/hbct/ctwin.h + ! Added missing HB_EXPORT. + + * contrib/xhb/xhb.hbp + * contrib/hbgd/hbgd.hbp + ! Added missing project references also to .hbp files. + + * utils/hbmk2/hbmk2.prg + ! Fixed regression with mingw -hbdyn after adding new stub which + stole the show by explicitly exporting one symbol which (due + to autoexport function in mingw) prevented regular symbols to + be exported. This fix will remove the exception so far applied + to mingw/cygwin compilers where HB_DYNLIB was not used with these, + now it's used equally on all compilers/platforms. For this to + be effective, it should be noted that HB_EXPORT must be used + in all public declarations, even in contrib. + ! Fix (?) to not include MAIN proc force code when building with + hbmaindllp. + + * contrib/xhb/thtm.prg + % Changed hbct LTOC to simple iif() + ; TOFIX: xhb makes reference to (deprecated) hb_symEval symbol: + Info: resolving _hb_symEval by linking to __imp__hb_symEval (auto-import) + + * contrib/rddsql/hbrddsql.h + ! Added HB_EXTERN_BEGIN/END + ! Added HB_EXPORT + ! Added extern + + * contrib/sddoci/sddoci.hbp + ! Restored some flags present in old Makefile to make it + work with mingw and bcc. + + * contrib/hbqt/generator/hbqtgen.prg + * contrib/hbqt/hbqt.h + ! Fixed to add HB_EXPORT to public declarations. + ; TOFIX: hbqt still doesn't link in hbdyn mode. + + * contrib/hbqt/hbqt_garbage.h + * contrib/hbqt/doc/en/*.txt + * Regenerated. + + * contrib/hbqt/hbqt.hbc + ! Fixed to not include QtUiTools in -hbdyn mode. It creates duplicate + symbols at link. Maybe this is not the right fix, go figure. + (HB_STATIC_QT mode still has to be checked) + + ; TODO: Add ${__HB_DYN__} to all .hbc files. + 2010-07-31 02:44 UTC+0200 Viktor Szakats (harbour.01 syenar.hu) * include/Makefile + include/hbexturs.ch diff --git a/harbour/config/global.mk b/harbour/config/global.mk index 277c5d73a2..397f655b85 100644 --- a/harbour/config/global.mk +++ b/harbour/config/global.mk @@ -1136,6 +1136,14 @@ ifeq ($(HB_PLATFORM_UNIX),) else DYN_DIR := $(LIB_DIR) IMP_DIR := + ifeq ($(HB_LD_PATH_SET),) + ifneq ($(HB_SRC_ROOTPATH),) + export LD_LIBRARY_PATH := $(HB_SRC_ROOTPATH)$(PLAT_COMP):$(LD_LIBRARY_PATH) + else + export LD_LIBRARY_PATH := $(realpath $(DYN_DIR)):$(LD_LIBRARY_PATH) + endif + export HB_LD_PATH_SET := yes + endif endif DYN_PREF := # define PKG_DIR only if run from root Makefile diff --git a/harbour/contrib/hbct/ctwin.h b/harbour/contrib/hbct/ctwin.h index ebca4b75f9..1993fdb037 100644 --- a/harbour/contrib/hbct/ctwin.h +++ b/harbour/contrib/hbct/ctwin.h @@ -68,31 +68,31 @@ HB_EXTERN_BEGIN -extern HB_BOOL hb_ctwInit( void ); -extern int hb_ctwSetShadowAttr( int iAttr ); -extern int hb_ctwSetMoveMode( int iMode ); -extern int hb_ctwSetMoveStep( int iVertical, int iHorizontal ); -extern int hb_ctwSetWindowBoard( int iTop, int iLeft, int iBottom, int iRight ); -extern int hb_ctwSetBorderMode( int iTop, int iLeft, int iBottom, int iRight ); -extern int hb_ctwCreateWindow( int iTop, int iLeft, int iBottom, int iRight, HB_BOOL fClear, int iColor, HB_BOOL fVisible ); -extern int hb_ctwCloseAllWindows( void ); -extern int hb_ctwCloseWindow( int iWindow ); -extern int hb_ctwCurrentWindow( void ); -extern int hb_ctwSelectWindow( int iWindow, HB_BOOL fToTop ); -extern int hb_ctwVisible( int iWindow, int iVisible ); -extern int hb_ctwSetWindowShadow( int iWindow, int iAttr ); -extern int hb_ctwSetWindowLevel( int iWindow, int iLevel ); -extern int hb_ctwMaxWindow( void ); -extern int hb_ctwChangeMargins( int iWindow, int iTop, int iLeft, int iBottom, int iRight ); -extern int hb_ctwSetWindowClip( int iWindow, int iTop, int iLeft, int iBottom, int iRight ); -extern int hb_ctwGetWindowCords( int iWindow, HB_BOOL fCenter, int * piTop, int * piLeft, int * piBottom, int * piRight ); -extern int hb_ctwGetFormatCords( int iWindow, HB_BOOL fRelative, int * piTop, int * piLeft, int * piBottom, int * piRight ); -extern int hb_ctwMoveWindow( int iWindow, int iRow, int iCol ); -extern int hb_ctwCenterWindow( int iWindow, HB_BOOL fCenter ); -extern int hb_ctwAddWindowBox( int iWindow, const char * szBox, int iColor ); -extern int hb_ctwSwapWindows( int iWindow1, int iWindow2 ); -extern int hb_ctwGetPosWindow( int iRow, int iCol ); -extern int hb_ctwLastKey( void ); +extern HB_EXPORT HB_BOOL hb_ctwInit( void ); +extern HB_EXPORT int hb_ctwSetShadowAttr( int iAttr ); +extern HB_EXPORT int hb_ctwSetMoveMode( int iMode ); +extern HB_EXPORT int hb_ctwSetMoveStep( int iVertical, int iHorizontal ); +extern HB_EXPORT int hb_ctwSetWindowBoard( int iTop, int iLeft, int iBottom, int iRight ); +extern HB_EXPORT int hb_ctwSetBorderMode( int iTop, int iLeft, int iBottom, int iRight ); +extern HB_EXPORT int hb_ctwCreateWindow( int iTop, int iLeft, int iBottom, int iRight, HB_BOOL fClear, int iColor, HB_BOOL fVisible ); +extern HB_EXPORT int hb_ctwCloseAllWindows( void ); +extern HB_EXPORT int hb_ctwCloseWindow( int iWindow ); +extern HB_EXPORT int hb_ctwCurrentWindow( void ); +extern HB_EXPORT int hb_ctwSelectWindow( int iWindow, HB_BOOL fToTop ); +extern HB_EXPORT int hb_ctwVisible( int iWindow, int iVisible ); +extern HB_EXPORT int hb_ctwSetWindowShadow( int iWindow, int iAttr ); +extern HB_EXPORT int hb_ctwSetWindowLevel( int iWindow, int iLevel ); +extern HB_EXPORT int hb_ctwMaxWindow( void ); +extern HB_EXPORT int hb_ctwChangeMargins( int iWindow, int iTop, int iLeft, int iBottom, int iRight ); +extern HB_EXPORT int hb_ctwSetWindowClip( int iWindow, int iTop, int iLeft, int iBottom, int iRight ); +extern HB_EXPORT int hb_ctwGetWindowCords( int iWindow, HB_BOOL fCenter, int * piTop, int * piLeft, int * piBottom, int * piRight ); +extern HB_EXPORT int hb_ctwGetFormatCords( int iWindow, HB_BOOL fRelative, int * piTop, int * piLeft, int * piBottom, int * piRight ); +extern HB_EXPORT int hb_ctwMoveWindow( int iWindow, int iRow, int iCol ); +extern HB_EXPORT int hb_ctwCenterWindow( int iWindow, HB_BOOL fCenter ); +extern HB_EXPORT int hb_ctwAddWindowBox( int iWindow, const char * szBox, int iColor ); +extern HB_EXPORT int hb_ctwSwapWindows( int iWindow1, int iWindow2 ); +extern HB_EXPORT int hb_ctwGetPosWindow( int iRow, int iCol ); +extern HB_EXPORT int hb_ctwLastKey( void ); HB_EXTERN_END diff --git a/harbour/contrib/hbgd/hbgd.hbp b/harbour/contrib/hbgd/hbgd.hbp index 04ae581321..6ec90532ff 100644 --- a/harbour/contrib/hbgd/hbgd.hbp +++ b/harbour/contrib/hbgd/hbgd.hbp @@ -9,6 +9,8 @@ -w3 -es2 +../hbct/hbct.hbc + -deppkgname=gd:gd-devel -depkeyhead=gd:gd.h -depcontrol=gd:${HB_WITH_GD} diff --git a/harbour/contrib/pkglist b/harbour/contrib/hbplist similarity index 100% rename from harbour/contrib/pkglist rename to harbour/contrib/hbplist diff --git a/harbour/contrib/hbqt/doc/en/class_hbevents.txt b/harbour/contrib/hbqt/doc/en/class_hbevents.txt index ba202d80ed..b22e078c01 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbevents.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbevents.txt @@ -41,15 +41,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/THBEvents.prg - C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/THBEvents.prg + C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt index cd7c072c36..edf50e67d2 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqsyntaxhighlighter.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg - C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg + C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp + Library : hbqtgui $SEEALSO$ QSyntaxHighlighter $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt index 8752ee71cd..f82106c0f4 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbqtextblockuserdata.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/THBQTextBlockUserData.prg - C++ wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/THBQTextBlockUserData.prg + C++ wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_hbslots.txt b/harbour/contrib/hbqt/doc/en/class_hbslots.txt index 3c3008272f..40977cec62 100644 --- a/harbour/contrib/hbqt/doc/en/class_hbslots.txt +++ b/harbour/contrib/hbqt/doc/en/class_hbslots.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/THBSlots.prg - C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/THBSlots.prg + C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt index 01f66ba447..3eccd3c4c4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractbutton.txt @@ -64,15 +64,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractButton.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractButton.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt index d52c06d8aa..92e3d15219 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemdelegate.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractItemDelegate.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractItemDelegate.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt index 45ceb49694..0201bbf586 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemmodel.txt @@ -70,15 +70,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQAbstractItemModel.prg - C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQAbstractItemModel.prg + C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt index 9e1053fa74..31b86f01ad 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractitemview.txt @@ -101,15 +101,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractItemView.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractItemView.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp + Library : hbqtgui $SEEALSO$ QAbstractScrollArea $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt index fe247fc06b..e765a4ed05 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractlistmodel.txt @@ -39,15 +39,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQAbstractListModel.prg - C++ wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQAbstractListModel.prg + C++ wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp + Library : hbqtcore $SEEALSO$ QAbstractItemModel $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt index cf67c0cb1a..054616b785 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractprintdialog.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractPrintDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractPrintDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt index 22c140e54f..d5b00cdda7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractproxymodel.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractProxyModel.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractProxyModel.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp + Library : hbqtgui $SEEALSO$ QAbstractItemModel $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt index 48a0211162..5e5aedaca9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractscrollarea.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractScrollArea.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractScrollArea.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp + Library : hbqtgui $SEEALSO$ QFrame $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt index 135f38845e..029cd045f1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractslider.txt @@ -62,15 +62,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractSlider.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractSlider.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt index c486a1537a..96bf1a07d3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstractspinbox.txt @@ -64,15 +64,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractSpinBox.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractSpinBox.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt index 781a86fadc..efe0f0a02a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstracttablemodel.txt @@ -39,15 +39,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQAbstractTableModel.prg - C++ wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQAbstractTableModel.prg + C++ wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp + Library : hbqtcore $SEEALSO$ QAbstractItemModel $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt index 07c5590767..86e23e3daf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qabstracttextdocumentlayout.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qaction.txt b/harbour/contrib/hbqt/doc/en/class_qaction.txt index 5922b80265..079aafca60 100644 --- a/harbour/contrib/hbqt/doc/en/class_qaction.txt +++ b/harbour/contrib/hbqt/doc/en/class_qaction.txt @@ -88,15 +88,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQAction.prg - C++ wrappers : contrib/hbqt/qtgui/QAction.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQAction.prg + C++ wrappers : contrib/hbqt/qtgui/QAction.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt index fce7994ea0..88b78c86ed 100644 --- a/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt +++ b/harbour/contrib/hbqt/doc/en/class_qactiongroup.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQActionGroup.prg - C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQActionGroup.prg + C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qapplication.txt b/harbour/contrib/hbqt/doc/en/class_qapplication.txt index d4292e836a..a4f4ca0a5a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qapplication.txt +++ b/harbour/contrib/hbqt/doc/en/class_qapplication.txt @@ -112,15 +112,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQApplication.prg - C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQApplication.prg + C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp + Library : hbqtgui $SEEALSO$ QCoreApplication $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qbitarray.txt b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt index 41e0a53943..1d9bb6e471 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbitarray.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbitarray.txt @@ -54,15 +54,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQBitArray.prg - C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQBitArray.prg + C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qbitmap.txt b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt index d9b1973f2b..a8f5536667 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbitmap.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbitmap.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQBitmap.prg - C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQBitmap.prg + C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp + Library : hbqtgui $SEEALSO$ QPixmap $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt index 7ed93b2960..2dc668bdb2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qboxlayout.txt @@ -58,15 +58,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQBoxLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQBoxLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp + Library : hbqtgui $SEEALSO$ QLayout $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qbrush.txt b/harbour/contrib/hbqt/doc/en/class_qbrush.txt index 1cdc0a34c7..912f9ef944 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbrush.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbrush.txt @@ -63,15 +63,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQBrush.prg - C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQBrush.prg + C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qbuffer.txt b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt index e0a0eb1621..0a50979b34 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbuffer.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbuffer.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQBuffer.prg - C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQBuffer.prg + C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp + Library : hbqtcore $SEEALSO$ QIODevice $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt index 3539b20d20..d92cfbfabc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbuttongroup.txt @@ -49,15 +49,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQButtonGroup.prg - C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQButtonGroup.prg + C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qbytearray.txt b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt index be6aa9d231..f412ef927c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qbytearray.txt +++ b/harbour/contrib/hbqt/doc/en/class_qbytearray.txt @@ -88,15 +88,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQByteArray.prg - C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQByteArray.prg + C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt index 0f9e47619c..377338b305 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcalendarwidget.txt @@ -76,15 +76,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQCalendarWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQCalendarWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qchar.txt b/harbour/contrib/hbqt/doc/en/class_qchar.txt index 56be063569..eb6e02d524 100644 --- a/harbour/contrib/hbqt/doc/en/class_qchar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qchar.txt @@ -66,15 +66,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQChar.prg - C++ wrappers : contrib/hbqt/qtcore/QChar.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQChar.prg + C++ wrappers : contrib/hbqt/qtcore/QChar.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt index 8adc6ef965..e5cf349b9d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcheckbox.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQCheckBox.prg - C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQCheckBox.prg + C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp + Library : hbqtgui $SEEALSO$ QAbstractButton $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qclipboard.txt b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt index 10ca99c937..cab9519264 100644 --- a/harbour/contrib/hbqt/doc/en/class_qclipboard.txt +++ b/harbour/contrib/hbqt/doc/en/class_qclipboard.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQClipboard.prg - C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQClipboard.prg + C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcolor.txt b/harbour/contrib/hbqt/doc/en/class_qcolor.txt index 6a82e0c78d..3f9b02d9bb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcolor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcolor.txt @@ -96,15 +96,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQColor.prg - C++ wrappers : contrib/hbqt/qtgui/QColor.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQColor.prg + C++ wrappers : contrib/hbqt/qtgui/QColor.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt index 1e9ab096ca..b6844a5444 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcolordialog.txt @@ -53,15 +53,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQColorDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQColorDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcombobox.txt b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt index 640a4a8bc6..250457dabb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcombobox.txt @@ -97,15 +97,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQComboBox.prg - C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQComboBox.prg + C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt index 4cd08815f9..a08c4360ab 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcommandlinkbutton.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQCommandLinkButton.prg - C++ wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQCommandLinkButton.prg + C++ wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp + Library : hbqtgui $SEEALSO$ QPushButton $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcompleter.txt b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt index bb60dfbfbc..f6fae21045 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcompleter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcompleter.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQCompleter.prg - C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQCompleter.prg + C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt index 98d55729e2..54c1f896bd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qconicalgradient.txt @@ -43,15 +43,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQConicalGradient.prg - C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQConicalGradient.prg + C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp + Library : hbqtgui $SEEALSO$ QGradient $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt index dcffa56c9f..c6d2670188 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcontextmenuevent.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQContextMenuEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQContextMenuEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp + Library : hbqtgui $SEEALSO$ QInputEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt index b6110631f0..872f160bfd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcoreapplication.txt @@ -77,15 +77,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQCoreApplication.prg - C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQCoreApplication.prg + C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qcursor.txt b/harbour/contrib/hbqt/doc/en/class_qcursor.txt index 2840341174..38dcb8ac35 100644 --- a/harbour/contrib/hbqt/doc/en/class_qcursor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qcursor.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQCursor.prg - C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQCursor.prg + C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatastream.txt b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt index 9712cec480..5b51cd85b9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatastream.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatastream.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQDataStream.prg - C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQDataStream.prg + C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdate.txt b/harbour/contrib/hbqt/doc/en/class_qdate.txt index 9c3ba46cb7..65343ab8f8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdate.txt @@ -54,15 +54,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQDate.prg - C++ wrappers : contrib/hbqt/qtcore/QDate.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQDate.prg + C++ wrappers : contrib/hbqt/qtcore/QDate.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatetime.txt b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt index 48534639f9..c29fcfc80e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatetime.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatetime.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQDateTime.prg - C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQDateTime.prg + C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt index 9f19c55801..7ae7142d84 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdatetimeedit.txt @@ -82,15 +82,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDateTimeEdit.prg - C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDateTimeEdit.prg + C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp + Library : hbqtgui $SEEALSO$ QAbstractSpinBox $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt index 3eef75f7dc..158824b56b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdesktopwidget.txt @@ -50,15 +50,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDesktopWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDesktopWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdial.txt b/harbour/contrib/hbqt/doc/en/class_qdial.txt index 9ce08ab09c..cd82e02500 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdial.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdial.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDial.prg - C++ wrappers : contrib/hbqt/qtgui/QDial.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDial.prg + C++ wrappers : contrib/hbqt/qtgui/QDial.cpp + Library : hbqtgui $SEEALSO$ QAbstractSlider $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdialog.txt b/harbour/contrib/hbqt/doc/en/class_qdialog.txt index 91d3d6d04f..ed92defdbf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdialog.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdir.txt b/harbour/contrib/hbqt/doc/en/class_qdir.txt index 211b2d847c..493510e082 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdir.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdir.txt @@ -87,15 +87,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQDir.prg - C++ wrappers : contrib/hbqt/qtcore/QDir.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQDir.prg + C++ wrappers : contrib/hbqt/qtcore/QDir.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt index 65677effba..1957e4acf7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdirmodel.txt @@ -75,15 +75,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDirModel.prg - C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDirModel.prg + C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp + Library : hbqtgui $SEEALSO$ QAbstractItemModel $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt index 8119a13f41..606ff6a875 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdockwidget.txt @@ -50,15 +50,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDockWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDockWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt index 34431ecc5f..a2b7dbf80b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdoublespinbox.txt @@ -56,15 +56,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDoubleSpinBox.prg - C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDoubleSpinBox.prg + C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp + Library : hbqtgui $SEEALSO$ QAbstractSpinBox $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt index 26cab1ebc6..1a43bae961 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdragmoveevent.txt @@ -43,15 +43,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDragMoveEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDragMoveEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp + Library : hbqtgui $SEEALSO$ QDropEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qdropevent.txt b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt index 56d1765ac1..cf173ad1cb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qdropevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qdropevent.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQDropEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQDropEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp + Library : hbqtgui $SEEALSO$ QEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt index 2c5a1e21a7..625b528108 100644 --- a/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qerrormessage.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQErrorMessage.prg - C++ wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQErrorMessage.prg + C++ wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qevent.txt b/harbour/contrib/hbqt/doc/en/class_qevent.txt index 7e2af6ab8b..f5882074f9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qevent.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQEvent.prg - C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQEvent.prg + C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qeventloop.txt b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt index 9877570f6b..f179fc4862 100644 --- a/harbour/contrib/hbqt/doc/en/class_qeventloop.txt +++ b/harbour/contrib/hbqt/doc/en/class_qeventloop.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQEventLoop.prg - C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQEventLoop.prg + C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfile.txt b/harbour/contrib/hbqt/doc/en/class_qfile.txt index 2a4c274c07..06f11445ed 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfile.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfile.txt @@ -72,15 +72,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQFile.prg - C++ wrappers : contrib/hbqt/qtcore/QFile.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQFile.prg + C++ wrappers : contrib/hbqt/qtcore/QFile.cpp + Library : hbqtcore $SEEALSO$ QIODevice $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt index de4e458d28..6b9d81d167 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfiledialog.txt @@ -84,15 +84,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFileDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFileDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt index 3eaba06889..01968659aa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfileiconprovider.txt @@ -41,15 +41,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFileIconProvider.prg - C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFileIconProvider.prg + C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt index 8310e8d6e6..3e90525007 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfileinfo.txt @@ -82,15 +82,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQFileInfo.prg - C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQFileInfo.prg + C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt index abee6de4d9..ccb4129d62 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfilesystemmodel.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFileSystemModel.prg - C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFileSystemModel.prg + C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp + Library : hbqtgui $SEEALSO$ QAbstractItemModel $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt index 282c822166..f1456b076f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfocusevent.txt @@ -41,15 +41,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFocusEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFocusEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp + Library : hbqtgui $SEEALSO$ QEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt index 19a116c9be..bf3588966a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfocusframe.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFocusFrame.prg - C++ wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFocusFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfont.txt b/harbour/contrib/hbqt/doc/en/class_qfont.txt index 4f276de193..adeaf510f1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfont.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfont.txt @@ -103,15 +103,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFont.prg - C++ wrappers : contrib/hbqt/qtgui/QFont.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFont.prg + C++ wrappers : contrib/hbqt/qtgui/QFont.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt index 44d5abd338..27500d91cf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontcombobox.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFontComboBox.prg - C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFontComboBox.prg + C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp + Library : hbqtgui $SEEALSO$ QComboBox $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt index dd95003231..b4693a5ac3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontdatabase.txt @@ -61,15 +61,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFontDatabase.prg - C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFontDatabase.prg + C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt index 0d5d567d2a..fd5bc15c74 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontdialog.txt @@ -50,15 +50,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFontDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFontDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt index f9357c2d2f..c19a746d70 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontinfo.txt @@ -50,15 +50,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFontInfo.prg - C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFontInfo.prg + C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt index 421f2fc78e..10230905f1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontmetrics.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFontMetrics.prg - C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFontMetrics.prg + C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt index c4156cf5c3..258f2052fa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qfontmetricsf.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFontMetricsF.prg - C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFontMetricsF.prg + C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qformlayout.txt b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt index eab57bbb60..7d85d45974 100644 --- a/harbour/contrib/hbqt/doc/en/class_qformlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qformlayout.txt @@ -74,15 +74,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFormLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFormLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp + Library : hbqtgui $SEEALSO$ QLayout $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qframe.txt b/harbour/contrib/hbqt/doc/en/class_qframe.txt index 855b21eab9..96437c41b5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qframe.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQFrame.prg - C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qftp.txt b/harbour/contrib/hbqt/doc/en/class_qftp.txt index f59be5c9be..7ca7f77c4d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qftp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qftp.txt @@ -64,15 +64,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtnetwork/TQFtp.prg - C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp - Library : hbqtnetwork + Harbour source: contrib/hbqt/qtnetwork/TQFtp.prg + C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp + Library : hbqtnetwork $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qgradient.txt b/harbour/contrib/hbqt/doc/en/class_qgradient.txt index 3f41268cac..a7573964dc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgradient.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQGradient.prg - C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQGradient.prg + C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt index f8bf61da4f..94082956d5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgridlayout.txt @@ -64,15 +64,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQGridLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQGridLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp + Library : hbqtgui $SEEALSO$ QLayout $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt index 9116123cb7..79e4e7116d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qgroupbox.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQGroupBox.prg - C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQGroupBox.prg + C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qheaderview.txt b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt index 34de2d095f..ad5e516eeb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qheaderview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qheaderview.txt @@ -95,15 +95,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQHeaderView.prg - C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQHeaderView.prg + C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp + Library : hbqtgui $SEEALSO$ QAbstractItemView $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt index c6f155a62a..9512d646fc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhelpevent.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQHelpEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQHelpEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttp.txt b/harbour/contrib/hbqt/doc/en/class_qhttp.txt index 46c8ea60b1..7fbb666f0f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttp.txt @@ -62,15 +62,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtnetwork/TQHttp.prg - C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp - Library : hbqtnetwork + Harbour source: contrib/hbqt/qtnetwork/TQHttp.prg + C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp + Library : hbqtnetwork $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt index 2492cb5127..891d8b1937 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttpheader.txt @@ -56,15 +56,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtnetwork/TQHttpHeader.prg - C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp - Library : hbqtnetwork + Harbour source: contrib/hbqt/qtnetwork/TQHttpHeader.prg + C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp + Library : hbqtnetwork $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt index b1c54da581..60230f456e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttprequestheader.txt @@ -43,15 +43,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg - C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp - Library : hbqtnetwork + Harbour source: contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg + C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp + Library : hbqtnetwork $SEEALSO$ QHttpHeader $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt index ac654cc9cd..b97d050ecf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qhttpresponseheader.txt @@ -43,15 +43,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg - C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp - Library : hbqtnetwork + Harbour source: contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg + C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp + Library : hbqtnetwork $SEEALSO$ QHttpHeader $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qicon.txt b/harbour/contrib/hbqt/doc/en/class_qicon.txt index a44183bca1..4e840b82d4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qicon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qicon.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQIcon.prg - C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQIcon.prg + C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qimage.txt b/harbour/contrib/hbqt/doc/en/class_qimage.txt index caacfed11b..5305947dab 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimage.txt @@ -92,15 +92,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQImage.prg - C++ wrappers : contrib/hbqt/qtgui/QImage.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQImage.prg + C++ wrappers : contrib/hbqt/qtgui/QImage.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qimagereader.txt b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt index e8902a4f07..3456448a50 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimagereader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimagereader.txt @@ -77,15 +77,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQImageReader.prg - C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQImageReader.prg + C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt index 8f843ddc7b..b6fdfc3786 100644 --- a/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qimagewriter.txt @@ -57,15 +57,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQImageWriter.prg - C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQImageWriter.prg + C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt index 76dc80e03a..74eb1b5565 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputdialog.txt @@ -82,15 +82,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQInputDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQInputDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputevent.txt b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt index a8a6cebbb2..71803a77fc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputevent.txt @@ -39,15 +39,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQInputEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QInputEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQInputEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QInputEvent.cpp + Library : hbqtgui $SEEALSO$ QEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt index d57c599559..b8d9072624 100644 --- a/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qinputmethodevent.txt @@ -43,15 +43,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQInputMethodEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQInputMethodEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp + Library : hbqtgui $SEEALSO$ QEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qiodevice.txt b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt index fd0ff68746..288c8cae37 100644 --- a/harbour/contrib/hbqt/doc/en/class_qiodevice.txt +++ b/harbour/contrib/hbqt/doc/en/class_qiodevice.txt @@ -71,15 +71,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQIODevice.prg - C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQIODevice.prg + C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qitemselection.txt b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt index 9df4fd82f3..77b810a381 100644 --- a/harbour/contrib/hbqt/doc/en/class_qitemselection.txt +++ b/harbour/contrib/hbqt/doc/en/class_qitemselection.txt @@ -41,15 +41,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQItemSelection.prg - C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQItemSelection.prg + C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp + Library : hbqtgui $SEEALSO$ QList $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt index c60eac1587..130a9b7e12 100644 --- a/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qitemselectionmodel.txt @@ -53,15 +53,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQItemSelectionModel.prg - C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQItemSelectionModel.prg + C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt index ebd377a041..5ede4ee290 100644 --- a/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qkeyevent.txt @@ -47,15 +47,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQKeyEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQKeyEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp + Library : hbqtgui $SEEALSO$ QInputEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt index 6366b45d78..43f7509624 100644 --- a/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt +++ b/harbour/contrib/hbqt/doc/en/class_qkeysequence.txt @@ -43,15 +43,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQKeySequence.prg - C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQKeySequence.prg + C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlabel.txt b/harbour/contrib/hbqt/doc/en/class_qlabel.txt index 8b69a47394..3ad5749768 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlabel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlabel.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQLabel.prg - C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQLabel.prg + C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp + Library : hbqtgui $SEEALSO$ QFrame $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt index 89b01d84b4..ad680f79ce 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlatin1char.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQLatin1Char.prg - C++ wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQLatin1Char.prg + C++ wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt index 6b96f4f109..ed24fa6f75 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlatin1string.txt @@ -39,15 +39,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQLatin1String.prg - C++ wrappers : contrib/hbqt/qtcore/QLatin1String.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQLatin1String.prg + C++ wrappers : contrib/hbqt/qtcore/QLatin1String.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlayout.txt b/harbour/contrib/hbqt/doc/en/class_qlayout.txt index 2e976a224c..72b43997e1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlayout.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QLayout.cpp + Library : hbqtgui $SEEALSO$ QObject, QLayoutItem $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt index 7d3d5ba1ed..a374ae4a74 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlayoutitem.txt @@ -55,15 +55,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQLayoutItem.prg - C++ wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQLayoutItem.prg + C++ wrappers : contrib/hbqt/qtgui/QLayoutItem.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt index b8df4a2f90..b668cf8d31 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlcdnumber.txt @@ -57,15 +57,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQLCDNumber.prg - C++ wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQLCDNumber.prg + C++ wrappers : contrib/hbqt/qtgui/QLCDNumber.cpp + Library : hbqtgui $SEEALSO$ QFrame $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qline.txt b/harbour/contrib/hbqt/doc/en/class_qline.txt index 2d739a61c3..ed57f786ed 100644 --- a/harbour/contrib/hbqt/doc/en/class_qline.txt +++ b/harbour/contrib/hbqt/doc/en/class_qline.txt @@ -57,15 +57,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQLine.prg - C++ wrappers : contrib/hbqt/qtcore/QLine.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQLine.prg + C++ wrappers : contrib/hbqt/qtcore/QLine.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt index 8b3fa07b62..6c1abea619 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlineargradient.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQLinearGradient.prg - C++ wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQLinearGradient.prg + C++ wrappers : contrib/hbqt/qtgui/QLinearGradient.cpp + Library : hbqtgui $SEEALSO$ QGradient $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlineedit.txt b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt index fbde2415aa..2453dd74a9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlineedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlineedit.txt @@ -93,15 +93,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQLineEdit.prg - C++ wrappers : contrib/hbqt/qtgui/QLineEdit.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQLineEdit.prg + C++ wrappers : contrib/hbqt/qtgui/QLineEdit.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlinef.txt b/harbour/contrib/hbqt/doc/en/class_qlinef.txt index 74fbc969ba..90d70a8215 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlinef.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlinef.txt @@ -61,15 +61,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQLineF.prg - C++ wrappers : contrib/hbqt/qtcore/QLineF.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQLineF.prg + C++ wrappers : contrib/hbqt/qtcore/QLineF.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlist.txt b/harbour/contrib/hbqt/doc/en/class_qlist.txt index ab446b58d7..91caf2ba60 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlist.txt @@ -78,15 +78,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQList.prg - C++ wrappers : contrib/hbqt/qtcore/QList.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQList.prg + C++ wrappers : contrib/hbqt/qtcore/QList.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistview.txt b/harbour/contrib/hbqt/doc/en/class_qlistview.txt index 89d1506b98..c6d6a6f6b7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistview.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQListView.prg - C++ wrappers : contrib/hbqt/qtgui/QListView.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQListView.prg + C++ wrappers : contrib/hbqt/qtgui/QListView.cpp + Library : hbqtgui $SEEALSO$ QAbstractItemView $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt index 6aa770080f..ba7a3daade 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistwidget.txt @@ -70,15 +70,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQListWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QListWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQListWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QListWidget.cpp + Library : hbqtgui $SEEALSO$ QListView $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt index 679c071574..1a1425bbd0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlistwidgetitem.txt @@ -72,15 +72,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQListWidgetItem.prg - C++ wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQListWidgetItem.prg + C++ wrappers : contrib/hbqt/qtgui/QListWidgetItem.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qlocale.txt b/harbour/contrib/hbqt/doc/en/class_qlocale.txt index dfc013fac6..be401d979e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qlocale.txt +++ b/harbour/contrib/hbqt/doc/en/class_qlocale.txt @@ -91,15 +91,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQLocale.prg - C++ wrappers : contrib/hbqt/qtcore/QLocale.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQLocale.prg + C++ wrappers : contrib/hbqt/qtcore/QLocale.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt index 4fb51a2a08..7b37e17063 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmainwindow.txt @@ -87,15 +87,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMainWindow.prg - C++ wrappers : contrib/hbqt/qtgui/QMainWindow.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMainWindow.prg + C++ wrappers : contrib/hbqt/qtgui/QMainWindow.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmatrix.txt b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt index ba09627033..fe99cfffdb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmatrix.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmatrix.txt @@ -62,15 +62,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMatrix.prg - C++ wrappers : contrib/hbqt/qtgui/QMatrix.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMatrix.prg + C++ wrappers : contrib/hbqt/qtgui/QMatrix.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt index 2827e8bfa1..6211c7e8cb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmdiarea.txt @@ -64,15 +64,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMdiArea.prg - C++ wrappers : contrib/hbqt/qtgui/QMdiArea.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMdiArea.prg + C++ wrappers : contrib/hbqt/qtgui/QMdiArea.cpp + Library : hbqtgui $SEEALSO$ QAbstractScrollArea $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt index aea85f47aa..3dcab3328a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmdisubwindow.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMdiSubWindow.prg - C++ wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMdiSubWindow.prg + C++ wrappers : contrib/hbqt/qtgui/QMdiSubWindow.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmenu.txt b/harbour/contrib/hbqt/doc/en/class_qmenu.txt index bb3dc93d41..c36ca66061 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmenu.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmenu.txt @@ -69,15 +69,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMenu.prg - C++ wrappers : contrib/hbqt/qtgui/QMenu.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMenu.prg + C++ wrappers : contrib/hbqt/qtgui/QMenu.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmenubar.txt b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt index 41a1a2ed90..eeccdce3e2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmenubar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmenubar.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMenuBar.prg - C++ wrappers : contrib/hbqt/qtgui/QMenuBar.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMenuBar.prg + C++ wrappers : contrib/hbqt/qtgui/QMenuBar.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt index b707c01d0c..719089bbde 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmessagebox.txt @@ -77,15 +77,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMessageBox.prg - C++ wrappers : contrib/hbqt/qtgui/QMessageBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMessageBox.prg + C++ wrappers : contrib/hbqt/qtgui/QMessageBox.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmimedata.txt b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt index 69820bde6a..0ab295a732 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmimedata.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmimedata.txt @@ -59,15 +59,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQMimeData.prg - C++ wrappers : contrib/hbqt/qtcore/QMimeData.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQMimeData.prg + C++ wrappers : contrib/hbqt/qtcore/QMimeData.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt index e6b3f3fed2..56999a15a7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmodelindex.txt @@ -46,15 +46,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQModelIndex.prg - C++ wrappers : contrib/hbqt/qtcore/QModelIndex.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQModelIndex.prg + C++ wrappers : contrib/hbqt/qtcore/QModelIndex.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt index bd54c321e3..8f52749a24 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmouseevent.txt @@ -47,15 +47,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMouseEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMouseEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QMouseEvent.cpp + Library : hbqtgui $SEEALSO$ QInputEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt index f27d397c02..9a10384066 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmoveevent.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMoveEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QMoveEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMoveEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QMoveEvent.cpp + Library : hbqtgui $SEEALSO$ QEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qmovie.txt b/harbour/contrib/hbqt/doc/en/class_qmovie.txt index e5612a6b3c..bfe07d3d73 100644 --- a/harbour/contrib/hbqt/doc/en/class_qmovie.txt +++ b/harbour/contrib/hbqt/doc/en/class_qmovie.txt @@ -66,15 +66,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQMovie.prg - C++ wrappers : contrib/hbqt/qtgui/QMovie.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQMovie.prg + C++ wrappers : contrib/hbqt/qtgui/QMovie.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt index ce408aeb83..b323d2282a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt +++ b/harbour/contrib/hbqt/doc/en/class_qnetworkrequest.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtnetwork/TQNetworkRequest.prg - C++ wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp - Library : hbqtnetwork + Harbour source: contrib/hbqt/qtnetwork/TQNetworkRequest.prg + C++ wrappers : contrib/hbqt/qtnetwork/QNetworkRequest.cpp + Library : hbqtnetwork $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qobject.txt b/harbour/contrib/hbqt/doc/en/class_qobject.txt index ef7f284bb2..3946ebb75e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qobject.txt @@ -66,15 +66,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQObject.prg - C++ wrappers : contrib/hbqt/qtcore/QObject.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQObject.prg + C++ wrappers : contrib/hbqt/qtcore/QObject.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt index 2ae984607a..3dd84fe0d4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpagesetupdialog.txt @@ -46,15 +46,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPageSetupDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPageSetupDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QPageSetupDialog.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt index b81aaa4d31..a1751a9ad7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintdevice.txt @@ -50,15 +50,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPaintDevice.prg - C++ wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPaintDevice.prg + C++ wrappers : contrib/hbqt/qtgui/QPaintDevice.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt index 6d4cd52570..067bf304ee 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintengine.txt @@ -62,15 +62,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPaintEngine.prg - C++ wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPaintEngine.prg + C++ wrappers : contrib/hbqt/qtgui/QPaintEngine.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpainter.txt b/harbour/contrib/hbqt/doc/en/class_qpainter.txt index 1c225312b5..22477c8409 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpainter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpainter.txt @@ -220,15 +220,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPainter.prg - C++ wrappers : contrib/hbqt/qtgui/QPainter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPainter.prg + C++ wrappers : contrib/hbqt/qtgui/QPainter.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt index 4f0e21b7ea..ffcf1ce48a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpainterpath.txt @@ -88,15 +88,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPainterPath.prg - C++ wrappers : contrib/hbqt/qtgui/QPainterPath.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPainterPath.prg + C++ wrappers : contrib/hbqt/qtgui/QPainterPath.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt index a7075ca204..35ee273720 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpaintevent.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPaintEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QPaintEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPaintEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QPaintEvent.cpp + Library : hbqtgui $SEEALSO$ QEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpalette.txt b/harbour/contrib/hbqt/doc/en/class_qpalette.txt index ab1554ece3..bd26dc9003 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpalette.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpalette.txt @@ -81,15 +81,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPalette.prg - C++ wrappers : contrib/hbqt/qtgui/QPalette.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPalette.prg + C++ wrappers : contrib/hbqt/qtgui/QPalette.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpen.txt b/harbour/contrib/hbqt/doc/en/class_qpen.txt index 876fc9bf08..c790aa0c21 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpen.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpen.txt @@ -69,15 +69,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPen.prg - C++ wrappers : contrib/hbqt/qtgui/QPen.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPen.prg + C++ wrappers : contrib/hbqt/qtgui/QPen.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpicture.txt b/harbour/contrib/hbqt/doc/en/class_qpicture.txt index 4e850365f3..b0bebbdc28 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpicture.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpicture.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPicture.prg - C++ wrappers : contrib/hbqt/qtgui/QPicture.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPicture.prg + C++ wrappers : contrib/hbqt/qtgui/QPicture.cpp + Library : hbqtgui $SEEALSO$ QPaintDevice $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpixmap.txt b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt index e1951442bb..5285ecbca6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpixmap.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpixmap.txt @@ -70,15 +70,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPixmap.prg - C++ wrappers : contrib/hbqt/qtgui/QPixmap.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPixmap.prg + C++ wrappers : contrib/hbqt/qtgui/QPixmap.cpp + Library : hbqtgui $SEEALSO$ QPaintDevice $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt index 330abedf1f..88a96f722e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qplaintextdocumentlayout.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPlainTextDocumentLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPlainTextDocumentLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QPlainTextDocumentLayout.cpp + Library : hbqtgui $SEEALSO$ QAbstractTextDocumentLayout $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt index a0b2f727ac..808ede6cdc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qplaintextedit.txt @@ -95,15 +95,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPlainTextEdit.prg - C++ wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPlainTextEdit.prg + C++ wrappers : contrib/hbqt/qtgui/QPlainTextEdit.cpp + Library : hbqtgui $SEEALSO$ QAbstractScrollArea $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpoint.txt b/harbour/contrib/hbqt/doc/en/class_qpoint.txt index fca53a7834..08d3e6c947 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpoint.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpoint.txt @@ -49,15 +49,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQPoint.prg - C++ wrappers : contrib/hbqt/qtcore/QPoint.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQPoint.prg + C++ wrappers : contrib/hbqt/qtcore/QPoint.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpointf.txt b/harbour/contrib/hbqt/doc/en/class_qpointf.txt index ab317d0310..a59cce9f5c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpointf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpointf.txt @@ -49,15 +49,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQPointF.prg - C++ wrappers : contrib/hbqt/qtcore/QPointF.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQPointF.prg + C++ wrappers : contrib/hbqt/qtcore/QPointF.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpolygon.txt b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt index 5fd4adc332..bcea489d07 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpolygon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpolygon.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPolygon.prg - C++ wrappers : contrib/hbqt/qtgui/QPolygon.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPolygon.prg + C++ wrappers : contrib/hbqt/qtgui/QPolygon.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt index 5b2d0d7fa4..8fffa0396d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpolygonf.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPolygonF.prg - C++ wrappers : contrib/hbqt/qtgui/QPolygonF.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPolygonF.prg + C++ wrappers : contrib/hbqt/qtgui/QPolygonF.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt index 6701a77b7b..0b0a8d97ee 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintdialog.txt @@ -47,15 +47,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPrintDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPrintDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QPrintDialog.cpp + Library : hbqtgui $SEEALSO$ QAbstractPrintDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintengine.txt b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt index c5f3d9acb4..383355f0fb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintengine.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintengine.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPrintEngine.prg - C++ wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPrintEngine.prg + C++ wrappers : contrib/hbqt/qtgui/QPrintEngine.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprinter.txt b/harbour/contrib/hbqt/doc/en/class_qprinter.txt index be4cb97fe5..d0897503ef 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprinter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprinter.txt @@ -94,15 +94,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPrinter.prg - C++ wrappers : contrib/hbqt/qtgui/QPrinter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPrinter.prg + C++ wrappers : contrib/hbqt/qtgui/QPrinter.cpp + Library : hbqtgui $SEEALSO$ QPaintDevice $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt index 18daa744ba..e441615e50 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprintpreviewdialog.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPrintPreviewDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QPrintPreviewDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPrintPreviewDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QPrintPreviewDialog.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprocess.txt b/harbour/contrib/hbqt/doc/en/class_qprocess.txt index fedde33181..9a283ad22f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprocess.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprocess.txt @@ -71,15 +71,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQProcess.prg - C++ wrappers : contrib/hbqt/qtcore/QProcess.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQProcess.prg + C++ wrappers : contrib/hbqt/qtcore/QProcess.cpp + Library : hbqtcore $SEEALSO$ QIODevice $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt index ccfa5b8bf1..c041750b79 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprogressbar.txt @@ -59,15 +59,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQProgressBar.prg - C++ wrappers : contrib/hbqt/qtgui/QProgressBar.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQProgressBar.prg + C++ wrappers : contrib/hbqt/qtgui/QProgressBar.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt index 8d52975e1e..a3d79ad53a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt +++ b/harbour/contrib/hbqt/doc/en/class_qprogressdialog.txt @@ -62,15 +62,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQProgressDialog.prg - C++ wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQProgressDialog.prg + C++ wrappers : contrib/hbqt/qtgui/QProgressDialog.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt index 4ec1840da4..7b34071d25 100644 --- a/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qpushbutton.txt @@ -47,15 +47,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQPushButton.prg - C++ wrappers : contrib/hbqt/qtgui/QPushButton.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQPushButton.prg + C++ wrappers : contrib/hbqt/qtgui/QPushButton.cpp + Library : hbqtgui $SEEALSO$ QAbstractButton $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt index c7f0c04ac8..b443d7b0a6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt +++ b/harbour/contrib/hbqt/doc/en/class_qradialgradient.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQRadialGradient.prg - C++ wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQRadialGradient.prg + C++ wrappers : contrib/hbqt/qtgui/QRadialGradient.cpp + Library : hbqtgui $SEEALSO$ QGradient $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qrect.txt b/harbour/contrib/hbqt/doc/en/class_qrect.txt index 56ed3e2b25..d5757b8655 100644 --- a/harbour/contrib/hbqt/doc/en/class_qrect.txt +++ b/harbour/contrib/hbqt/doc/en/class_qrect.txt @@ -99,15 +99,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQRect.prg - C++ wrappers : contrib/hbqt/qtcore/QRect.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQRect.prg + C++ wrappers : contrib/hbqt/qtcore/QRect.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qrectf.txt b/harbour/contrib/hbqt/doc/en/class_qrectf.txt index b358eef94e..ae10f02ec5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qrectf.txt +++ b/harbour/contrib/hbqt/doc/en/class_qrectf.txt @@ -100,15 +100,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQRectF.prg - C++ wrappers : contrib/hbqt/qtcore/QRectF.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQRectF.prg + C++ wrappers : contrib/hbqt/qtcore/QRectF.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qregexp.txt b/harbour/contrib/hbqt/doc/en/class_qregexp.txt index 02111ff075..4f9bc51e8a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qregexp.txt +++ b/harbour/contrib/hbqt/doc/en/class_qregexp.txt @@ -57,15 +57,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQRegExp.prg - C++ wrappers : contrib/hbqt/qtcore/QRegExp.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQRegExp.prg + C++ wrappers : contrib/hbqt/qtcore/QRegExp.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qregion.txt b/harbour/contrib/hbqt/doc/en/class_qregion.txt index 6d82c54d9b..71ef239d5c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qregion.txt +++ b/harbour/contrib/hbqt/doc/en/class_qregion.txt @@ -55,15 +55,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQRegion.prg - C++ wrappers : contrib/hbqt/qtgui/QRegion.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQRegion.prg + C++ wrappers : contrib/hbqt/qtgui/QRegion.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt index e42ffc52cf..6ec4a8984e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qresizeevent.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQResizeEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QResizeEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQResizeEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QResizeEvent.cpp + Library : hbqtgui $SEEALSO$ QEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qresource.txt b/harbour/contrib/hbqt/doc/en/class_qresource.txt index a63e30c533..3a804d31c6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qresource.txt +++ b/harbour/contrib/hbqt/doc/en/class_qresource.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQResource.prg - C++ wrappers : contrib/hbqt/qtcore/QResource.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQResource.prg + C++ wrappers : contrib/hbqt/qtcore/QResource.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt index f84f2d9c08..e9a170875b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt +++ b/harbour/contrib/hbqt/doc/en/class_qscrollarea.txt @@ -47,15 +47,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQScrollArea.prg - C++ wrappers : contrib/hbqt/qtgui/QScrollArea.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQScrollArea.prg + C++ wrappers : contrib/hbqt/qtgui/QScrollArea.cpp + Library : hbqtgui $SEEALSO$ QAbstractScrollArea $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt index eecedd5021..f6b899d0f7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsessionmanager.txt @@ -54,15 +54,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSessionManager.prg - C++ wrappers : contrib/hbqt/qtgui/QSessionManager.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSessionManager.prg + C++ wrappers : contrib/hbqt/qtgui/QSessionManager.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsettings.txt b/harbour/contrib/hbqt/doc/en/class_qsettings.txt index 0f8c2b454a..8f88bcb9b2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsettings.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsettings.txt @@ -69,15 +69,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQSettings.prg - C++ wrappers : contrib/hbqt/qtcore/QSettings.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQSettings.prg + C++ wrappers : contrib/hbqt/qtcore/QSettings.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt index d2ec59864e..56f19187e1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsignalmapper.txt @@ -49,15 +49,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQSignalMapper.prg - C++ wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQSignalMapper.prg + C++ wrappers : contrib/hbqt/qtcore/QSignalMapper.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsize.txt b/harbour/contrib/hbqt/doc/en/class_qsize.txt index 4c16159c63..b1ce746fb8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsize.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsize.txt @@ -53,15 +53,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQSize.prg - C++ wrappers : contrib/hbqt/qtcore/QSize.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQSize.prg + C++ wrappers : contrib/hbqt/qtcore/QSize.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsizef.txt b/harbour/contrib/hbqt/doc/en/class_qsizef.txt index b168c56690..6d7a2481cd 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsizef.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsizef.txt @@ -53,15 +53,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQSizeF.prg - C++ wrappers : contrib/hbqt/qtcore/QSizeF.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQSizeF.prg + C++ wrappers : contrib/hbqt/qtcore/QSizeF.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt index af0021a763..12e2861e43 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsizepolicy.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSizePolicy.prg - C++ wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSizePolicy.prg + C++ wrappers : contrib/hbqt/qtgui/QSizePolicy.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qslider.txt b/harbour/contrib/hbqt/doc/en/class_qslider.txt index 76dd6e3adf..50e115d862 100644 --- a/harbour/contrib/hbqt/doc/en/class_qslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qslider.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSlider.prg - C++ wrappers : contrib/hbqt/qtgui/QSlider.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSlider.prg + C++ wrappers : contrib/hbqt/qtgui/QSlider.cpp + Library : hbqtgui $SEEALSO$ QAbstractSlider $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsound.txt b/harbour/contrib/hbqt/doc/en/class_qsound.txt index d9fe7672fb..426db157d0 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsound.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsound.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSound.prg - C++ wrappers : contrib/hbqt/qtgui/QSound.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSound.prg + C++ wrappers : contrib/hbqt/qtgui/QSound.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt index 9237dfda62..2fc4d37ecc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qspaceritem.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSpacerItem.prg - C++ wrappers : contrib/hbqt/qtgui/QSpacerItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSpacerItem.prg + C++ wrappers : contrib/hbqt/qtgui/QSpacerItem.cpp + Library : hbqtgui $SEEALSO$ QLayoutItem $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt index e37b0f39c9..60c4eeac09 100644 --- a/harbour/contrib/hbqt/doc/en/class_qspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qspinbox.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSpinBox.prg - C++ wrappers : contrib/hbqt/qtgui/QSpinBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSpinBox.prg + C++ wrappers : contrib/hbqt/qtgui/QSpinBox.cpp + Library : hbqtgui $SEEALSO$ QAbstractSpinBox $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt index 92997f334b..f41b0fec17 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsplashscreen.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSplashScreen.prg - C++ wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSplashScreen.prg + C++ wrappers : contrib/hbqt/qtgui/QSplashScreen.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsplitter.txt b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt index b2e91ba75f..df32c95480 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsplitter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsplitter.txt @@ -59,15 +59,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSplitter.prg - C++ wrappers : contrib/hbqt/qtgui/QSplitter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSplitter.prg + C++ wrappers : contrib/hbqt/qtgui/QSplitter.cpp + Library : hbqtgui $SEEALSO$ QFrame $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt index a9596b9e6e..e58794c632 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstackedwidget.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStackedWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStackedWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QStackedWidget.cpp + Library : hbqtgui $SEEALSO$ QFrame $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt index 3510ecbfd8..a988b24866 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstandarditem.txt @@ -107,15 +107,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStandardItem.prg - C++ wrappers : contrib/hbqt/qtgui/QStandardItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStandardItem.prg + C++ wrappers : contrib/hbqt/qtgui/QStandardItem.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt index ea2efe7c35..408cd7a75f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstandarditemmodel.txt @@ -66,15 +66,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStandardItemModel.prg - C++ wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStandardItemModel.prg + C++ wrappers : contrib/hbqt/qtgui/QStandardItemModel.cpp + Library : hbqtgui $SEEALSO$ QAbstractItemModeL $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt index 0c8f9c8892..7eeea5dae2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstatusbar.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStatusBar.prg - C++ wrappers : contrib/hbqt/qtgui/QStatusBar.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStatusBar.prg + C++ wrappers : contrib/hbqt/qtgui/QStatusBar.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstringlist.txt b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt index b25cfab23b..16afa1b5da 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstringlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstringlist.txt @@ -72,15 +72,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQStringList.prg - C++ wrappers : contrib/hbqt/qtcore/QStringList.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQStringList.prg + C++ wrappers : contrib/hbqt/qtcore/QStringList.cpp + Library : hbqtcore $SEEALSO$ QList $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt index 9a9a61935f..0cfedcc72b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstringlistmodel.txt @@ -46,15 +46,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStringListModel.prg - C++ wrappers : contrib/hbqt/qtgui/QStringListModel.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStringListModel.prg + C++ wrappers : contrib/hbqt/qtgui/QStringListModel.cpp + Library : hbqtgui $SEEALSO$ QAbstractListModel $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyle.txt b/harbour/contrib/hbqt/doc/en/class_qstyle.txt index 16fd089caf..bc216fee29 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyle.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyle.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyle.prg - C++ wrappers : contrib/hbqt/qtgui/QStyle.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyle.prg + C++ wrappers : contrib/hbqt/qtgui/QStyle.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt index ca37f8b468..5acec1983a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleditemdelegate.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyledItemDelegate.prg - C++ wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyledItemDelegate.prg + C++ wrappers : contrib/hbqt/qtgui/QStyledItemDelegate.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt index dc5d879459..335a869965 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstylefactory.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleFactory.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleFactory.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleFactory.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleFactory.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt index c49cd59a57..8e73069dc2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoption.txt @@ -46,15 +46,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOption.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOption.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOption.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOption.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt index e23c6f744e..7fc643ce26 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionbutton.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionButton.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionButton.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionButton.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt index b8ad110bae..66f2654c4a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncombobox.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionComboBox.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionComboBox.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComboBox.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt index 9eeec986af..5774a6f67d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptioncomplex.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionComplex.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComplex.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionComplex.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionComplex.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt index 618999bd2a..101920f47c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiondockwidget.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionDockWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionDockWidget.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt index 0e9818e22f..66b97bcafc 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionfocusrect.txt @@ -39,15 +39,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionFocusRect.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFocusRect.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt index 42b107281f..83ccf44062 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionframe.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionFrame.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFrame.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionFrame.cpp + Library : hbqtgui $SEEALSO$ qStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt index b20c7365cc..00db19dfd7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiongroupbox.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionGroupBox.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionGroupBox.cpp + Library : hbqtgui $SEEALSO$ QStyleOptionComplex $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt index 72e8e6f8c9..dbc64911e4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionheader.txt @@ -47,15 +47,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionHeader.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionHeader.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionHeader.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt index d7c9d35134..556c534a7e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionmenuitem.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionMenuItem.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionMenuItem.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt index 398fada992..c9d50c13d8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionprogressbar.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionProgressBar.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionProgressBar.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt index 14a6e9dbd3..9f734352a8 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionsizegrip.txt @@ -39,15 +39,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionSizeGrip.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSizeGrip.cpp + Library : hbqtgui $SEEALSO$ QStyleOptionComplex $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt index 1002cd3324..bbb61e64a9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionslider.txt @@ -50,15 +50,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionSlider.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionSlider.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSlider.cpp + Library : hbqtgui $SEEALSO$ QStyleOptionComplex $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt index 78771c2a97..4bf0449739 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionspinbox.txt @@ -41,15 +41,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionSpinBox.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionSpinBox.cpp + Library : hbqtgui $SEEALSO$ QStyleOptionComplex $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt index a8811f0e3b..169dbddcc2 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontab.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionTab.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionTab.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTab.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt index cf905eafeb..3ac83d141d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabbarbase.txt @@ -41,15 +41,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionTabBarBase.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabBarBase.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt index 1edc6285e7..f542a00d81 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontabwidgetframe.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionTabWidgetFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTabWidgetFrame.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt index 61d06f4a49..0060d29e6c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontitlebar.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionTitleBar.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionTitleBar.cpp + Library : hbqtgui $SEEALSO$ QStyleOptionComplex $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt index 4beb89710b..d0cb86937b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbar.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionToolBar.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionToolBar.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBar.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt index a0177f00a8..9f83abf71c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbox.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionToolBox.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionToolBox.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolBox.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt index 702094d878..ee6dfd124e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptiontoolbutton.txt @@ -46,15 +46,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionToolButton.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionToolButton.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionToolButton.cpp + Library : hbqtgui $SEEALSO$ QStyleOptionComplex $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt index 6e2a7ae68f..cd5573f536 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstyleoptionviewitem.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStyleOptionViewItem.prg - C++ wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStyleOptionViewItem.prg + C++ wrappers : contrib/hbqt/qtgui/QStyleOptionViewItem.cpp + Library : hbqtgui $SEEALSO$ QStyleOption $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt index a05ebd9855..7b5c9b7b4f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qstylepainter.txt @@ -46,15 +46,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQStylePainter.prg - C++ wrappers : contrib/hbqt/qtgui/QStylePainter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQStylePainter.prg + C++ wrappers : contrib/hbqt/qtgui/QStylePainter.cpp + Library : hbqtgui $SEEALSO$ QPainter $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt index 51d4898c28..1e8db4bd45 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsyntaxhighlighter.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSyntaxHighlighter.prg - C++ wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSyntaxHighlighter.prg + C++ wrappers : contrib/hbqt/qtgui/QSyntaxHighlighter.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt index cc81e51f5c..98b00e640d 100644 --- a/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt +++ b/harbour/contrib/hbqt/doc/en/class_qsystemtrayicon.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQSystemTrayIcon.prg - C++ wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQSystemTrayIcon.prg + C++ wrappers : contrib/hbqt/qtgui/QSystemTrayIcon.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtabbar.txt b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt index 5fddd3a2ae..0794e1d4ba 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtabbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtabbar.txt @@ -82,15 +82,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTabBar.prg - C++ wrappers : contrib/hbqt/qtgui/QTabBar.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTabBar.prg + C++ wrappers : contrib/hbqt/qtgui/QTabBar.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtableview.txt b/harbour/contrib/hbqt/doc/en/class_qtableview.txt index 3c87cc74c7..38a71a85c5 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtableview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtableview.txt @@ -80,15 +80,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTableView.prg - C++ wrappers : contrib/hbqt/qtgui/QTableView.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTableView.prg + C++ wrappers : contrib/hbqt/qtgui/QTableView.cpp + Library : hbqtgui $SEEALSO$ QAbstractItemView $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt index cf4f64fa21..a58141e31e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidget.txt @@ -87,15 +87,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTableWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QTableWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTableWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QTableWidget.cpp + Library : hbqtgui $SEEALSO$ QTableView $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt index e4e0787c87..ee311cdf4c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetitem.txt @@ -72,15 +72,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTableWidgetItem.prg - C++ wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTableWidgetItem.prg + C++ wrappers : contrib/hbqt/qtgui/QTableWidgetItem.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt index 434bae72d9..b9056f4974 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtablewidgetselectionrange.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg - C++ wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTableWidgetSelectionRange.prg + C++ wrappers : contrib/hbqt/qtgui/QTableWidgetSelectionRange.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt index 7cca2007d4..202dea5c24 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtabwidget.txt @@ -79,15 +79,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTabWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QTabWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTabWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QTabWidget.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextblock.txt b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt index 1c7c5778b3..e83666b3b4 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextblock.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextblock.txt @@ -63,15 +63,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextBlock.prg - C++ wrappers : contrib/hbqt/qtgui/QTextBlock.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextBlock.prg + C++ wrappers : contrib/hbqt/qtgui/QTextBlock.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt index f627d53ee9..48144fe269 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextblockformat.txt @@ -57,15 +57,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextBlockFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextBlockFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextBlockFormat.cpp + Library : hbqtgui $SEEALSO$ QTextFormat $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt index be645dc581..1c83eff1b9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextboundaryfinder.txt @@ -49,15 +49,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQTextBoundaryFinder.prg - C++ wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQTextBoundaryFinder.prg + C++ wrappers : contrib/hbqt/qtcore/QTextBoundaryFinder.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt index 2044f55ffe..5a579d3d48 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextbrowser.txt @@ -58,15 +58,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextBrowser.prg - C++ wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextBrowser.prg + C++ wrappers : contrib/hbqt/qtgui/QTextBrowser.cpp + Library : hbqtgui $SEEALSO$ QTextEdit $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt index 8cda734628..442133d50a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcharformat.txt @@ -85,15 +85,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextCharFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextCharFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextCharFormat.cpp + Library : hbqtgui $SEEALSO$ QTextFormat $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt index 00137a0165..410fadf7bf 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcodec.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQTextCodec.prg - C++ wrappers : contrib/hbqt/qtcore/QTextCodec.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQTextCodec.prg + C++ wrappers : contrib/hbqt/qtcore/QTextCodec.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt index 3aa9de2a0b..a8f326aaab 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextcursor.txt @@ -101,15 +101,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextCursor.prg - C++ wrappers : contrib/hbqt/qtgui/QTextCursor.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextCursor.prg + C++ wrappers : contrib/hbqt/qtgui/QTextCursor.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt index db2a80a44d..a9e6a3cca3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdecoder.txt @@ -39,15 +39,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQTextDecoder.prg - C++ wrappers : contrib/hbqt/qtcore/QTextDecoder.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQTextDecoder.prg + C++ wrappers : contrib/hbqt/qtcore/QTextDecoder.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt index 51104fb5b0..43c65275fa 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocument.txt @@ -104,15 +104,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextDocument.prg - C++ wrappers : contrib/hbqt/qtgui/QTextDocument.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextDocument.prg + C++ wrappers : contrib/hbqt/qtgui/QTextDocument.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt index c0af9c6ae3..984f288427 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentfragment.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextDocumentFragment.prg - C++ wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextDocumentFragment.prg + C++ wrappers : contrib/hbqt/qtgui/QTextDocumentFragment.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt index b223ab260c..906b56c302 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextdocumentwriter.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextDocumentWriter.prg - C++ wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextDocumentWriter.prg + C++ wrappers : contrib/hbqt/qtgui/QTextDocumentWriter.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextedit.txt b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt index 47556795d2..becb1fb0f9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextedit.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextedit.txt @@ -119,15 +119,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextEdit.prg - C++ wrappers : contrib/hbqt/qtgui/QTextEdit.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextEdit.prg + C++ wrappers : contrib/hbqt/qtgui/QTextEdit.cpp + Library : hbqtgui $SEEALSO$ QAbstractScrollArea $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt index 5c92eacd88..8171dfbef6 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextencoder.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQTextEncoder.prg - C++ wrappers : contrib/hbqt/qtcore/QTextEncoder.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQTextEncoder.prg + C++ wrappers : contrib/hbqt/qtcore/QTextEncoder.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt index 515afe31e0..97e8c7baae 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextformat.txt @@ -79,15 +79,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextFormat.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextFormat.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt index 512ff7fab0..c2c3239f9f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextfragment.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextFragment.prg - C++ wrappers : contrib/hbqt/qtgui/QTextFragment.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextFragment.prg + C++ wrappers : contrib/hbqt/qtgui/QTextFragment.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextframe.txt b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt index 128160abfe..95decc0bf3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextframe.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextframe.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextFrame.prg - C++ wrappers : contrib/hbqt/qtgui/QTextFrame.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextFrame.prg + C++ wrappers : contrib/hbqt/qtgui/QTextFrame.cpp + Library : hbqtgui $SEEALSO$ QTextObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt index 9379377c85..54ab7c0536 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextframeformat.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextFrameFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextFrameFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextFrameFormat.cpp + Library : hbqtgui $SEEALSO$ QTextFormat $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt index a55c9f3332..f055a2fa2e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextimageformat.txt @@ -45,15 +45,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextImageFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextImageFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextImageFormat.cpp + Library : hbqtgui $SEEALSO$ QTextCharFormat $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt index bbd8a7d324..c75078e624 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextinlineobject.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextInlineObject.prg - C++ wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextInlineObject.prg + C++ wrappers : contrib/hbqt/qtgui/QTextInlineObject.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextitem.txt b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt index 95e41a6fe4..fe20c41fe3 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextitem.txt @@ -44,15 +44,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextItem.prg - C++ wrappers : contrib/hbqt/qtgui/QTextItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextItem.prg + C++ wrappers : contrib/hbqt/qtgui/QTextItem.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt index c8ebad5281..63dcfe3805 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlayout.txt @@ -67,15 +67,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextLayout.prg - C++ wrappers : contrib/hbqt/qtgui/QTextLayout.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextLayout.prg + C++ wrappers : contrib/hbqt/qtgui/QTextLayout.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlength.txt b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt index 88d42bf7c8..89c4b50d4f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlength.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlength.txt @@ -41,15 +41,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextLength.prg - C++ wrappers : contrib/hbqt/qtgui/QTextLength.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextLength.prg + C++ wrappers : contrib/hbqt/qtgui/QTextLength.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextline.txt b/harbour/contrib/hbqt/doc/en/class_qtextline.txt index a83b6826b2..ddca003e8b 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextline.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextline.txt @@ -59,15 +59,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextLine.prg - C++ wrappers : contrib/hbqt/qtgui/QTextLine.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextLine.prg + C++ wrappers : contrib/hbqt/qtgui/QTextLine.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlist.txt b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt index df296005da..71c591f6d1 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlist.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlist.txt @@ -47,15 +47,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextList.prg - C++ wrappers : contrib/hbqt/qtgui/QTextList.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextList.prg + C++ wrappers : contrib/hbqt/qtgui/QTextList.cpp + Library : hbqtgui $SEEALSO$ QTextBlockGroup $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt index 9c8414ac9f..bd76f37961 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextlistformat.txt @@ -43,15 +43,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextListFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextListFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextListFormat.cpp + Library : hbqtgui $SEEALSO$ QTextFormat $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextobject.txt b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt index 0b30e8486f..c902175361 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextobject.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextobject.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextObject.prg - C++ wrappers : contrib/hbqt/qtgui/QTextObject.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextObject.prg + C++ wrappers : contrib/hbqt/qtgui/QTextObject.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextoption.txt b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt index baac7ad03e..a91c02c0ae 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextoption.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextoption.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextOption.prg - C++ wrappers : contrib/hbqt/qtgui/QTextOption.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextOption.prg + C++ wrappers : contrib/hbqt/qtgui/QTextOption.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtextstream.txt b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt index 5d411cff20..4e5c7012ee 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtextstream.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtextstream.txt @@ -75,15 +75,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQTextStream.prg - C++ wrappers : contrib/hbqt/qtcore/QTextStream.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQTextStream.prg + C++ wrappers : contrib/hbqt/qtcore/QTextStream.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt index 839ec5c67b..44066ff93c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtexttableformat.txt @@ -49,15 +49,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTextTableFormat.prg - C++ wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTextTableFormat.prg + C++ wrappers : contrib/hbqt/qtgui/QTextTableFormat.cpp + Library : hbqtgui $SEEALSO$ QTextFrameFormat $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qthread.txt b/harbour/contrib/hbqt/doc/en/class_qthread.txt index 1fe4153533..f73bfb1731 100644 --- a/harbour/contrib/hbqt/doc/en/class_qthread.txt +++ b/harbour/contrib/hbqt/doc/en/class_qthread.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQThread.prg - C++ wrappers : contrib/hbqt/qtcore/QThread.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQThread.prg + C++ wrappers : contrib/hbqt/qtcore/QThread.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtime.txt b/harbour/contrib/hbqt/doc/en/class_qtime.txt index 4e1ece0f94..c90a77f19a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtime.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtime.txt @@ -53,15 +53,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQTime.prg - C++ wrappers : contrib/hbqt/qtcore/QTime.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQTime.prg + C++ wrappers : contrib/hbqt/qtcore/QTime.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtimer.txt b/harbour/contrib/hbqt/doc/en/class_qtimer.txt index 4ffa582665..d88080787c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtimer.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtimer.txt @@ -48,15 +48,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQTimer.prg - C++ wrappers : contrib/hbqt/qtcore/QTimer.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQTimer.prg + C++ wrappers : contrib/hbqt/qtcore/QTimer.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt index 6b75b3c8f5..3176ea8fb7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbar.txt @@ -66,15 +66,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQToolBar.prg - C++ wrappers : contrib/hbqt/qtgui/QToolBar.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQToolBar.prg + C++ wrappers : contrib/hbqt/qtgui/QToolBar.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt index 6a7cacf954..67a7a5a37a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbox.txt @@ -58,15 +58,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQToolBox.prg - C++ wrappers : contrib/hbqt/qtgui/QToolBox.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQToolBox.prg + C++ wrappers : contrib/hbqt/qtgui/QToolBox.cpp + Library : hbqtgui $SEEALSO$ QFrame $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt index 86188b44cf..90277519e9 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtoolbutton.txt @@ -51,15 +51,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQToolButton.prg - C++ wrappers : contrib/hbqt/qtgui/QToolButton.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQToolButton.prg + C++ wrappers : contrib/hbqt/qtgui/QToolButton.cpp + Library : hbqtgui $SEEALSO$ QAbstractButton $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtransform.txt b/harbour/contrib/hbqt/doc/en/class_qtransform.txt index 49381ea6d8..7488ff6d93 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtransform.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtransform.txt @@ -77,15 +77,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTransform.prg - C++ wrappers : contrib/hbqt/qtgui/QTransform.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTransform.prg + C++ wrappers : contrib/hbqt/qtgui/QTransform.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtranslator.txt b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt index 114cf090c6..3a73bb7127 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtranslator.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtranslator.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQTranslator.prg - C++ wrappers : contrib/hbqt/qtcore/QTranslator.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQTranslator.prg + C++ wrappers : contrib/hbqt/qtcore/QTranslator.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreeview.txt b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt index 2e57f74ac4..d57bebcb35 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreeview.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreeview.txt @@ -87,15 +87,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTreeView.prg - C++ wrappers : contrib/hbqt/qtgui/QTreeView.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTreeView.prg + C++ wrappers : contrib/hbqt/qtgui/QTreeView.cpp + Library : hbqtgui $SEEALSO$ QAbstractItemView $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt index b288a598b8..5fdc8287e7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreewidget.txt @@ -77,15 +77,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTreeWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTreeWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QTreeWidget.cpp + Library : hbqtgui $SEEALSO$ QTreeView $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt index a4ffb9fece..2e861ac786 100644 --- a/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qtreewidgetitem.txt @@ -87,15 +87,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQTreeWidgetItem.prg - C++ wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQTreeWidgetItem.prg + C++ wrappers : contrib/hbqt/qtgui/QTreeWidgetItem.cpp + Library : hbqtgui $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_quiloader.txt b/harbour/contrib/hbqt/doc/en/class_quiloader.txt index 831e61b77f..8827344e18 100644 --- a/harbour/contrib/hbqt/doc/en/class_quiloader.txt +++ b/harbour/contrib/hbqt/doc/en/class_quiloader.txt @@ -52,15 +52,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQUiLoader.prg - C++ wrappers : contrib/hbqt/qtcore/QUiLoader.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQUiLoader.prg + C++ wrappers : contrib/hbqt/qtcore/QUiLoader.cpp + Library : hbqtcore $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qurl.txt b/harbour/contrib/hbqt/doc/en/class_qurl.txt index bfb81bde3f..4eba37549a 100644 --- a/harbour/contrib/hbqt/doc/en/class_qurl.txt +++ b/harbour/contrib/hbqt/doc/en/class_qurl.txt @@ -104,15 +104,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQUrl.prg - C++ wrappers : contrib/hbqt/qtcore/QUrl.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQUrl.prg + C++ wrappers : contrib/hbqt/qtcore/QUrl.cpp + Library : hbqtcore $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qvalidator.txt b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt index 18ea5640b0..dae4a893f7 100644 --- a/harbour/contrib/hbqt/doc/en/class_qvalidator.txt +++ b/harbour/contrib/hbqt/doc/en/class_qvalidator.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQValidator.prg - C++ wrappers : contrib/hbqt/qtgui/QValidator.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQValidator.prg + C++ wrappers : contrib/hbqt/qtgui/QValidator.cpp + Library : hbqtgui $SEEALSO$ QObject $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qvariant.txt b/harbour/contrib/hbqt/doc/en/class_qvariant.txt index e68f2c91aa..2c44319882 100644 --- a/harbour/contrib/hbqt/doc/en/class_qvariant.txt +++ b/harbour/contrib/hbqt/doc/en/class_qvariant.txt @@ -75,15 +75,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtcore/TQVariant.prg - C++ wrappers : contrib/hbqt/qtcore/QVariant.cpp - Library : hbqtcore + Harbour source: contrib/hbqt/qtcore/TQVariant.prg + C++ wrappers : contrib/hbqt/qtcore/QVariant.cpp + Library : hbqtcore $SEEALSO$ $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt b/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt index 3154a30905..f8797011ba 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwheelevent.txt @@ -47,15 +47,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQWheelEvent.prg - C++ wrappers : contrib/hbqt/qtgui/QWheelEvent.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQWheelEvent.prg + C++ wrappers : contrib/hbqt/qtgui/QWheelEvent.cpp + Library : hbqtgui $SEEALSO$ QInputEvent $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidget.txt b/harbour/contrib/hbqt/doc/en/class_qwidget.txt index 1b068a9b8f..e805b388cb 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidget.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidget.txt @@ -234,15 +234,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQWidget.prg - C++ wrappers : contrib/hbqt/qtgui/QWidget.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQWidget.prg + C++ wrappers : contrib/hbqt/qtgui/QWidget.cpp + Library : hbqtgui $SEEALSO$ QObject, QPaintDevice $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt b/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt index f31a97e564..f7e0c29008 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidgetaction.txt @@ -42,15 +42,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQWidgetAction.prg - C++ wrappers : contrib/hbqt/qtgui/QWidgetAction.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQWidgetAction.prg + C++ wrappers : contrib/hbqt/qtgui/QWidgetAction.cpp + Library : hbqtgui $SEEALSO$ QAction $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt b/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt index 38da965d40..070ad2e98f 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwidgetitem.txt @@ -40,15 +40,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQWidgetItem.prg - C++ wrappers : contrib/hbqt/qtgui/QWidgetItem.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQWidgetItem.prg + C++ wrappers : contrib/hbqt/qtgui/QWidgetItem.cpp + Library : hbqtgui $SEEALSO$ QLayoutItem $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qwizard.txt b/harbour/contrib/hbqt/doc/en/class_qwizard.txt index a8763c0afa..ec78988f6e 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwizard.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwizard.txt @@ -73,15 +73,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQWizard.prg - C++ wrappers : contrib/hbqt/qtgui/QWizard.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQWizard.prg + C++ wrappers : contrib/hbqt/qtgui/QWizard.cpp + Library : hbqtgui $SEEALSO$ QDialog $END$ diff --git a/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt b/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt index 4214df813c..5b8a1ea98c 100644 --- a/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt +++ b/harbour/contrib/hbqt/doc/en/class_qwizardpage.txt @@ -55,15 +55,15 @@ $STATUS$ R $COMPLIANCE$ - Not Clipper Compatible + Not Clipper compatible $PLATFORMS$ - Windows, Linux, MacOS, OS2 + Windows, Linux, Mac OS X, OS/2 $VERSION$ 4.5 or upper $FILES$ - Prg source : contrib/hbqt/qtgui/TQWizardPage.prg - C++ wrappers : contrib/hbqt/qtgui/QWizardPage.cpp - Library : hbqtgui + Harbour source: contrib/hbqt/qtgui/TQWizardPage.prg + C++ wrappers : contrib/hbqt/qtgui/QWizardPage.cpp + Library : hbqtgui $SEEALSO$ QWidget $END$ diff --git a/harbour/contrib/hbqt/generator/hbqtgen.prg b/harbour/contrib/hbqt/generator/hbqtgen.prg index 7687b987bd..8eafb1886a 100644 --- a/harbour/contrib/hbqt/generator/hbqtgen.prg +++ b/harbour/contrib/hbqt/generator/hbqtgen.prg @@ -1875,13 +1875,13 @@ STATIC FUNCTION Build_GarbageFile( cpp_, cPathOut ) aadd( txt_, " " ) FOR EACH s IN cpp_ - aadd( txt_, "extern QT_G_FUNC( hbqt_gcRelease_" + s + " );" ) + aadd( txt_, "extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_" + s + " );" ) NEXT aadd( txt_, "" ) IF ( lNewGCtoQT ) FOR EACH s IN cpp_ - aadd( txt_, "extern void * hbqt_gcAllocate_" + s + "( void * pObj, bool bNew );" ) + aadd( txt_, "extern HB_EXPORT void * hbqt_gcAllocate_" + s + "( void * pObj, bool bNew );" ) NEXT aadd( txt_, "" ) ENDIF diff --git a/harbour/contrib/hbqt/hbqt.h b/harbour/contrib/hbqt/hbqt.h index 95d90db898..8fef6ef64a 100644 --- a/harbour/contrib/hbqt/hbqt.h +++ b/harbour/contrib/hbqt/hbqt.h @@ -86,11 +86,11 @@ typedef struct HB_GARBAGE_FUNC( Q_release ); -extern void * hbqt_gcpointer( int iParam ); -extern const HB_GC_FUNCS * hbqt_gcFuncs( void ); +extern HB_EXPORT void * hbqt_gcpointer( int iParam ); +extern HB_EXPORT const HB_GC_FUNCS * hbqt_gcFuncs( void ); -extern void * hbqt_pPtrFromObj( int iParam ); -extern void * hbqt_pPtrFromItem( PHB_ITEM pObj ); +extern HB_EXPORT void * hbqt_pPtrFromObj( int iParam ); +extern HB_EXPORT void * hbqt_pPtrFromItem( PHB_ITEM pObj ); #include "hbqt_garbage.h" diff --git a/harbour/contrib/hbqt/hbqt.hbc b/harbour/contrib/hbqt/hbqt.hbc index 914cda84d0..0dcd39425e 100644 --- a/harbour/contrib/hbqt/hbqt.hbc +++ b/harbour/contrib/hbqt/hbqt.hbc @@ -13,13 +13,12 @@ plugins=hbmk2_plugin_qt.hbs {allwin|os2}libpaths=${HB_WITH_QT}\..\lib {!HB_STATIC_QT}libs=hbqt${__HB_DYN__} hbqtcore${__HB_DYN__} hbqtgui${__HB_DYN__} hbqtnetwork${__HB_DYN__} -{!HB_STATIC_QT&allwin}libs=QtCore4 QtGui4 QtNetwork4 QtUiTools -{!HB_STATIC_QT&os2}libs=QtCore4 QtGui4 QtNet4 QtUiTools -{!HB_STATIC_QT&linux}libs=QtCore QtGui QtNetwork QtUiTools +{!HB_STATIC_QT&(allwin|os2)}libs=QtCore4 QtGui4 QtNetwork4 +{!HB_STATIC_QT&linux}libs=QtCore QtGui QtNetwork {!HB_STATIC_QT&darwin}libs=/Library/Frameworks/QtCore.framework/QtCore {!HB_STATIC_QT&darwin}libs=/Library/Frameworks/QtGui.framework/QtGui {!HB_STATIC_QT&darwin}libs=/Library/Frameworks/QtNetwork.framework/QtNetwork -{!HB_STATIC_QT&darwin}libs=QtUiTools +{!HB_STATIC_QT&!hbdyn}libs=QtUiTools {HB_STATIC_QT&allwin}libs=hbqts${__HB_DYN__} hbqtcores${__HB_DYN__} hbqtguis${__HB_DYN__} hbqtnetworks${__HB_DYN__} {HB_STATIC_QT&linux}libs=hbqt hbqtcore hbqtgui hbqtnetwork {HB_STATIC_QT&(allwin|linux)}libs=QtCore QtGui QtNetwork QtUiTools diff --git a/harbour/contrib/hbqt/hbqt_garbage.h b/harbour/contrib/hbqt/hbqt_garbage.h index b6a8731170..a1ca73fddf 100644 --- a/harbour/contrib/hbqt/hbqt_garbage.h +++ b/harbour/contrib/hbqt/hbqt_garbage.h @@ -8,566 +8,567 @@ /* or the generator tool itself, and run regenarate. */ /* -------------------------------------------------------------------- */ -extern QT_G_FUNC( hbqt_gcRelease_HBQAbstractItemModel ); -extern QT_G_FUNC( hbqt_gcRelease_HBEvents ); -extern QT_G_FUNC( hbqt_gcRelease_HBQMainWindow ); -extern QT_G_FUNC( hbqt_gcRelease_HBQPlainTextEdit ); -extern QT_G_FUNC( hbqt_gcRelease_HBQSyntaxHighlighter ); -extern QT_G_FUNC( hbqt_gcRelease_HBQTableView ); -extern QT_G_FUNC( hbqt_gcRelease_HBQTextBlockUserData ); -extern QT_G_FUNC( hbqt_gcRelease_HBSlots ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractButton ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractItemDelegate ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractItemModel ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractItemView ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractListModel ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractProxyModel ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractPrintDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractScrollArea ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractSlider ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractSpinBox ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractTableModel ); -extern QT_G_FUNC( hbqt_gcRelease_QAbstractTextDocumentLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QAction ); -extern QT_G_FUNC( hbqt_gcRelease_QActionGroup ); -extern QT_G_FUNC( hbqt_gcRelease_QApplication ); -extern QT_G_FUNC( hbqt_gcRelease_QBitArray ); -extern QT_G_FUNC( hbqt_gcRelease_QBitmap ); -extern QT_G_FUNC( hbqt_gcRelease_QBoxLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QBrush ); -extern QT_G_FUNC( hbqt_gcRelease_QBuffer ); -extern QT_G_FUNC( hbqt_gcRelease_QButtonGroup ); -extern QT_G_FUNC( hbqt_gcRelease_QByteArray ); -extern QT_G_FUNC( hbqt_gcRelease_QCalendarWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QChar ); -extern QT_G_FUNC( hbqt_gcRelease_QCheckBox ); -extern QT_G_FUNC( hbqt_gcRelease_QClipboard ); -extern QT_G_FUNC( hbqt_gcRelease_QColor ); -extern QT_G_FUNC( hbqt_gcRelease_QColorDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QComboBox ); -extern QT_G_FUNC( hbqt_gcRelease_QCommandLinkButton ); -extern QT_G_FUNC( hbqt_gcRelease_QCommonStyle ); -extern QT_G_FUNC( hbqt_gcRelease_QCompleter ); -extern QT_G_FUNC( hbqt_gcRelease_QConicalGradient ); -extern QT_G_FUNC( hbqt_gcRelease_QContextMenuEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QCoreApplication ); -extern QT_G_FUNC( hbqt_gcRelease_QCursor ); -extern QT_G_FUNC( hbqt_gcRelease_QDataStream ); -extern QT_G_FUNC( hbqt_gcRelease_QDate ); -extern QT_G_FUNC( hbqt_gcRelease_QDateEdit ); -extern QT_G_FUNC( hbqt_gcRelease_QDateTime ); -extern QT_G_FUNC( hbqt_gcRelease_QDateTimeEdit ); -extern QT_G_FUNC( hbqt_gcRelease_QDesktopWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QDial ); -extern QT_G_FUNC( hbqt_gcRelease_QDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QDir ); -extern QT_G_FUNC( hbqt_gcRelease_QDirModel ); -extern QT_G_FUNC( hbqt_gcRelease_QDockWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QDoubleSpinBox ); -extern QT_G_FUNC( hbqt_gcRelease_QDropEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QDragMoveEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QDragEnterEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QDragLeaveEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QErrorMessage ); -extern QT_G_FUNC( hbqt_gcRelease_QEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QEventLoop ); -extern QT_G_FUNC( hbqt_gcRelease_QFile ); -extern QT_G_FUNC( hbqt_gcRelease_QFileDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QFileInfo ); -extern QT_G_FUNC( hbqt_gcRelease_QFileIconProvider ); -extern QT_G_FUNC( hbqt_gcRelease_QFileSystemModel ); -extern QT_G_FUNC( hbqt_gcRelease_QFocusEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QFocusFrame ); -extern QT_G_FUNC( hbqt_gcRelease_QFont ); -extern QT_G_FUNC( hbqt_gcRelease_QFontComboBox ); -extern QT_G_FUNC( hbqt_gcRelease_QFontDatabase ); -extern QT_G_FUNC( hbqt_gcRelease_QFontDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QFontInfo ); -extern QT_G_FUNC( hbqt_gcRelease_QFontMetrics ); -extern QT_G_FUNC( hbqt_gcRelease_QFontMetricsF ); -extern QT_G_FUNC( hbqt_gcRelease_QFormLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QFrame ); -extern QT_G_FUNC( hbqt_gcRelease_QFtp ); -extern QT_G_FUNC( hbqt_gcRelease_QGradient ); -extern QT_G_FUNC( hbqt_gcRelease_QGridLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QGroupBox ); -extern QT_G_FUNC( hbqt_gcRelease_QHBoxLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QHeaderView ); -extern QT_G_FUNC( hbqt_gcRelease_QHelpEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QHideEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QHttp ); -extern QT_G_FUNC( hbqt_gcRelease_QHttpHeader ); -extern QT_G_FUNC( hbqt_gcRelease_QHttpRequestHeader ); -extern QT_G_FUNC( hbqt_gcRelease_QHttpResponseHeader ); -extern QT_G_FUNC( hbqt_gcRelease_QIcon ); -extern QT_G_FUNC( hbqt_gcRelease_QInputMethodEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QImage ); -extern QT_G_FUNC( hbqt_gcRelease_QImageReader ); -extern QT_G_FUNC( hbqt_gcRelease_QImageWriter ); -extern QT_G_FUNC( hbqt_gcRelease_QInputDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QInputEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QIODevice ); -extern QT_G_FUNC( hbqt_gcRelease_QItemDelegate ); -extern QT_G_FUNC( hbqt_gcRelease_QItemEditorCreatorBase ); -extern QT_G_FUNC( hbqt_gcRelease_QItemEditorFactory ); -extern QT_G_FUNC( hbqt_gcRelease_QItemSelection ); -extern QT_G_FUNC( hbqt_gcRelease_QItemSelectionModel ); -extern QT_G_FUNC( hbqt_gcRelease_QKeyEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QKeySequence ); -extern QT_G_FUNC( hbqt_gcRelease_QLabel ); -extern QT_G_FUNC( hbqt_gcRelease_QLatin1Char ); -extern QT_G_FUNC( hbqt_gcRelease_QLatin1String ); -extern QT_G_FUNC( hbqt_gcRelease_QLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QLayoutItem ); -extern QT_G_FUNC( hbqt_gcRelease_QLCDNumber ); -extern QT_G_FUNC( hbqt_gcRelease_QLine ); -extern QT_G_FUNC( hbqt_gcRelease_QLineF ); -extern QT_G_FUNC( hbqt_gcRelease_QLinearGradient ); -extern QT_G_FUNC( hbqt_gcRelease_QLineEdit ); -extern QT_G_FUNC( hbqt_gcRelease_QList ); -extern QT_G_FUNC( hbqt_gcRelease_QListView ); -extern QT_G_FUNC( hbqt_gcRelease_QListWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QListWidgetItem ); -extern QT_G_FUNC( hbqt_gcRelease_QLocale ); -extern QT_G_FUNC( hbqt_gcRelease_QMainWindow ); -extern QT_G_FUNC( hbqt_gcRelease_QMatrix ); -extern QT_G_FUNC( hbqt_gcRelease_QMdiArea ); -extern QT_G_FUNC( hbqt_gcRelease_QMdiSubWindow ); -extern QT_G_FUNC( hbqt_gcRelease_QMenu ); -extern QT_G_FUNC( hbqt_gcRelease_QMenuBar ); -extern QT_G_FUNC( hbqt_gcRelease_QMessageBox ); -extern QT_G_FUNC( hbqt_gcRelease_QMimeData ); -extern QT_G_FUNC( hbqt_gcRelease_QModelIndex ); -extern QT_G_FUNC( hbqt_gcRelease_QMouseEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QMoveEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QMovie ); -extern QT_G_FUNC( hbqt_gcRelease_QNetworkRequest ); -extern QT_G_FUNC( hbqt_gcRelease_QObject ); -extern QT_G_FUNC( hbqt_gcRelease_QPageSetupDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QPaintDevice ); -extern QT_G_FUNC( hbqt_gcRelease_QPaintEngine ); -extern QT_G_FUNC( hbqt_gcRelease_QPainter ); -extern QT_G_FUNC( hbqt_gcRelease_QPainterPath ); -extern QT_G_FUNC( hbqt_gcRelease_QPaintEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QPalette ); -extern QT_G_FUNC( hbqt_gcRelease_QPen ); -extern QT_G_FUNC( hbqt_gcRelease_QPicture ); -extern QT_G_FUNC( hbqt_gcRelease_QPixmap ); -extern QT_G_FUNC( hbqt_gcRelease_QPlainTextDocumentLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QPlainTextEdit ); -extern QT_G_FUNC( hbqt_gcRelease_QPoint ); -extern QT_G_FUNC( hbqt_gcRelease_QPointF ); -extern QT_G_FUNC( hbqt_gcRelease_QPolygon ); -extern QT_G_FUNC( hbqt_gcRelease_QPolygonF ); -extern QT_G_FUNC( hbqt_gcRelease_QPrintDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QPrintEngine ); -extern QT_G_FUNC( hbqt_gcRelease_QPrinter ); -extern QT_G_FUNC( hbqt_gcRelease_QPrintPreviewDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QProcess ); -extern QT_G_FUNC( hbqt_gcRelease_QProgressBar ); -extern QT_G_FUNC( hbqt_gcRelease_QProgressDialog ); -extern QT_G_FUNC( hbqt_gcRelease_QPushButton ); -extern QT_G_FUNC( hbqt_gcRelease_QRadialGradient ); -extern QT_G_FUNC( hbqt_gcRelease_QRadioButton ); -extern QT_G_FUNC( hbqt_gcRelease_QRect ); -extern QT_G_FUNC( hbqt_gcRelease_QRectF ); -extern QT_G_FUNC( hbqt_gcRelease_QRegion ); -extern QT_G_FUNC( hbqt_gcRelease_QRegExp ); -extern QT_G_FUNC( hbqt_gcRelease_QResizeEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QResource ); -extern QT_G_FUNC( hbqt_gcRelease_QScrollArea ); -extern QT_G_FUNC( hbqt_gcRelease_QScrollBar ); -extern QT_G_FUNC( hbqt_gcRelease_QSessionManager ); -extern QT_G_FUNC( hbqt_gcRelease_QSettings ); -extern QT_G_FUNC( hbqt_gcRelease_QShowEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QSignalMapper ); -extern QT_G_FUNC( hbqt_gcRelease_QSize ); -extern QT_G_FUNC( hbqt_gcRelease_QSizeF ); -extern QT_G_FUNC( hbqt_gcRelease_QSizeGrip ); -extern QT_G_FUNC( hbqt_gcRelease_QSizePolicy ); -extern QT_G_FUNC( hbqt_gcRelease_QSlider ); -extern QT_G_FUNC( hbqt_gcRelease_QSound ); -extern QT_G_FUNC( hbqt_gcRelease_QSpacerItem ); -extern QT_G_FUNC( hbqt_gcRelease_QSpinBox ); -extern QT_G_FUNC( hbqt_gcRelease_QSplashScreen ); -extern QT_G_FUNC( hbqt_gcRelease_QSplitter ); -extern QT_G_FUNC( hbqt_gcRelease_QStackedWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QStandardItem ); -extern QT_G_FUNC( hbqt_gcRelease_QStandardItemModel ); -extern QT_G_FUNC( hbqt_gcRelease_QStatusBar ); -extern QT_G_FUNC( hbqt_gcRelease_QStringList ); -extern QT_G_FUNC( hbqt_gcRelease_QStringListModel ); -extern QT_G_FUNC( hbqt_gcRelease_QStyle ); -extern QT_G_FUNC( hbqt_gcRelease_QStyledItemDelegate ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleFactory ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleHintReturn ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleHintReturnMask ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleHintReturnVariant ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOption ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionButton ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionComboBox ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionComplex ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionDockWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionFocusRect ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionFrame ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionGroupBox ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionHeader ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionMenuItem ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionProgressBar ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionSizeGrip ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionSlider ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionSpinBox ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionTab ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionTabBarBase ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionTabWidgetFrame ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionTitleBar ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolBar ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolBox ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolButton ); -extern QT_G_FUNC( hbqt_gcRelease_QStyleOptionViewItem ); -extern QT_G_FUNC( hbqt_gcRelease_QStylePainter ); -extern QT_G_FUNC( hbqt_gcRelease_QSyntaxHighlighter ); -extern QT_G_FUNC( hbqt_gcRelease_QSystemTrayIcon ); -extern QT_G_FUNC( hbqt_gcRelease_QTabBar ); -extern QT_G_FUNC( hbqt_gcRelease_QTableView ); -extern QT_G_FUNC( hbqt_gcRelease_QTableWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QTableWidgetItem ); -extern QT_G_FUNC( hbqt_gcRelease_QTabWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QTableWidgetSelectionRange ); -extern QT_G_FUNC( hbqt_gcRelease_QTextBlock ); -extern QT_G_FUNC( hbqt_gcRelease_QTextBlockFormat ); -extern QT_G_FUNC( hbqt_gcRelease_QTextBlockGroup ); -extern QT_G_FUNC( hbqt_gcRelease_QTextBrowser ); -extern QT_G_FUNC( hbqt_gcRelease_QTextBoundaryFinder ); -extern QT_G_FUNC( hbqt_gcRelease_QTextCharFormat ); -extern QT_G_FUNC( hbqt_gcRelease_QTextCodec ); -extern QT_G_FUNC( hbqt_gcRelease_QTextCursor ); -extern QT_G_FUNC( hbqt_gcRelease_QTextDecoder ); -extern QT_G_FUNC( hbqt_gcRelease_QTextDocument ); -extern QT_G_FUNC( hbqt_gcRelease_QTextDocumentFragment ); -extern QT_G_FUNC( hbqt_gcRelease_QTextDocumentWriter ); -extern QT_G_FUNC( hbqt_gcRelease_QTextEdit ); -extern QT_G_FUNC( hbqt_gcRelease_QTextEncoder ); -extern QT_G_FUNC( hbqt_gcRelease_QTextFormat ); -extern QT_G_FUNC( hbqt_gcRelease_QTextFragment ); -extern QT_G_FUNC( hbqt_gcRelease_QTextFrame ); -extern QT_G_FUNC( hbqt_gcRelease_QTextFrameFormat ); -extern QT_G_FUNC( hbqt_gcRelease_QTextImageFormat ); -extern QT_G_FUNC( hbqt_gcRelease_QTextInlineObject ); -extern QT_G_FUNC( hbqt_gcRelease_QTextItem ); -extern QT_G_FUNC( hbqt_gcRelease_QTextLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QTextLength ); -extern QT_G_FUNC( hbqt_gcRelease_QTextLine ); -extern QT_G_FUNC( hbqt_gcRelease_QTextList ); -extern QT_G_FUNC( hbqt_gcRelease_QTextListFormat ); -extern QT_G_FUNC( hbqt_gcRelease_QTextObject ); -extern QT_G_FUNC( hbqt_gcRelease_QTextOption ); -extern QT_G_FUNC( hbqt_gcRelease_QTextStream ); -extern QT_G_FUNC( hbqt_gcRelease_QTextTableFormat ); -extern QT_G_FUNC( hbqt_gcRelease_QThread ); -extern QT_G_FUNC( hbqt_gcRelease_QTime ); -extern QT_G_FUNC( hbqt_gcRelease_QTimeEdit ); -extern QT_G_FUNC( hbqt_gcRelease_QTimer ); -extern QT_G_FUNC( hbqt_gcRelease_QToolBar ); -extern QT_G_FUNC( hbqt_gcRelease_QToolBox ); -extern QT_G_FUNC( hbqt_gcRelease_QToolButton ); -extern QT_G_FUNC( hbqt_gcRelease_QTransform ); -extern QT_G_FUNC( hbqt_gcRelease_QTranslator ); -extern QT_G_FUNC( hbqt_gcRelease_QTreeView ); -extern QT_G_FUNC( hbqt_gcRelease_QTreeWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QTreeWidgetItem ); -extern QT_G_FUNC( hbqt_gcRelease_QUiLoader ); -extern QT_G_FUNC( hbqt_gcRelease_QUrl ); -extern QT_G_FUNC( hbqt_gcRelease_QValidator ); -extern QT_G_FUNC( hbqt_gcRelease_QVariant ); -extern QT_G_FUNC( hbqt_gcRelease_QVBoxLayout ); -extern QT_G_FUNC( hbqt_gcRelease_QWheelEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QWidget ); -extern QT_G_FUNC( hbqt_gcRelease_QWidgetAction ); -extern QT_G_FUNC( hbqt_gcRelease_QWidgetItem ); -extern QT_G_FUNC( hbqt_gcRelease_QWindowsStyle ); -extern QT_G_FUNC( hbqt_gcRelease_QWindowStateChangeEvent ); -extern QT_G_FUNC( hbqt_gcRelease_QWizard ); -extern QT_G_FUNC( hbqt_gcRelease_QWizardPage ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQAbstractItemModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBEvents ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQMainWindow ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQPlainTextEdit ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQSyntaxHighlighter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQTableView ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBQTextBlockUserData ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_HBSlots ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractButton ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractItemDelegate ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractItemModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractItemView ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractListModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractProxyModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractPrintDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractScrollArea ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractSlider ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractSpinBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractTableModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAbstractTextDocumentLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QAction ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QActionGroup ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QApplication ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBitArray ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBitmap ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBoxLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBrush ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QBuffer ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QButtonGroup ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QByteArray ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCalendarWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QChar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCheckBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QClipboard ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QColor ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QColorDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QComboBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCommandLinkButton ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCommonStyle ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCompleter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QConicalGradient ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QContextMenuEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCoreApplication ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QCursor ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDataStream ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDate ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDateEdit ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDateTime ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDateTimeEdit ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDesktopWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDial ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDir ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDirModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDockWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDoubleSpinBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDropEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDragMoveEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDragEnterEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QDragLeaveEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QErrorMessage ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QEventLoop ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFile ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileInfo ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileIconProvider ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFileSystemModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFocusEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFocusFrame ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFont ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFontComboBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFontDatabase ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFontDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFontInfo ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFontMetrics ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFontMetricsF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFormLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFrame ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QFtp ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QGradient ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QGridLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QGroupBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHBoxLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHeaderView ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHelpEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHideEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttp ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpHeader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpRequestHeader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QHttpResponseHeader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QIcon ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QInputMethodEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QImage ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QImageReader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QImageWriter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QInputDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QInputEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QIODevice ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemDelegate ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemEditorCreatorBase ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemEditorFactory ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemSelection ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QItemSelectionModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QKeyEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QKeySequence ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLabel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLatin1Char ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLatin1String ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLayoutItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLCDNumber ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLine ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLineF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLinearGradient ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLineEdit ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QList ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QListView ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QListWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QListWidgetItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QLocale ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMainWindow ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMatrix ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMdiArea ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMdiSubWindow ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMenu ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMenuBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMessageBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMimeData ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QModelIndex ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMouseEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMoveEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QMovie ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QNetworkRequest ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QObject ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPageSetupDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPaintDevice ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPaintEngine ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPainter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPainterPath ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPaintEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPalette ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPen ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPicture ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPixmap ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPlainTextDocumentLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPlainTextEdit ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPoint ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPointF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPolygon ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPolygonF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPrintDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPrintEngine ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPrinter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPrintPreviewDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QProcess ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QProgressBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QProgressDialog ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QPushButton ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRadialGradient ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRadioButton ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRect ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRectF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRegion ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QRegExp ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QResizeEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QResource ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QScrollArea ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QScrollBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSessionManager ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSettings ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QShowEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSignalMapper ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSize ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSizeF ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSizeGrip ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSizePolicy ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSlider ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSound ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSpacerItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSpinBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSplashScreen ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSplitter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStackedWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStandardItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStandardItemModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStatusBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStringList ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStringListModel ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyle ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyledItemDelegate ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleFactory ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleHintReturn ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleHintReturnMask ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleHintReturnVariant ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOption ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionButton ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionComboBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionComplex ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionDockWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionFocusRect ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionFrame ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionGroupBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionHeader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionMenuItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionProgressBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionSizeGrip ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionSlider ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionSpinBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionTab ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionTabBarBase ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionTabWidgetFrame ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionTitleBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionToolButton ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStyleOptionViewItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QStylePainter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSyntaxHighlighter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QSystemTrayIcon ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTabBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTableView ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTableWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTableWidgetItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTabWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTableWidgetSelectionRange ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBlock ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBlockFormat ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBlockGroup ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBrowser ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextBoundaryFinder ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextCharFormat ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextCodec ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextCursor ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDecoder ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDocument ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDocumentFragment ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextDocumentWriter ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextEdit ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextEncoder ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextFormat ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextFragment ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextFrame ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextFrameFormat ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextImageFormat ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextInlineObject ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextLength ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextLine ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextList ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextListFormat ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextObject ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextOption ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextStream ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTextTableFormat ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QThread ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTime ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTimeEdit ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTimer ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QToolBar ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QToolBox ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QToolButton ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTransform ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTranslator ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTreeView ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTreeWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QTreeWidgetItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QUiLoader ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QUrl ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QValidator ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QVariant ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QVBoxLayout ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWheelEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWidget ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWidgetAction ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWidgetItem ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWindowsStyle ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWindowStateChangeEvent ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWizard ); +extern HB_EXPORT QT_G_FUNC( hbqt_gcRelease_QWizardPage ); + +extern HB_EXPORT void * hbqt_gcAllocate_HBQAbstractItemModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_HBEvents( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_HBQMainWindow( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_HBQPlainTextEdit( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_HBQSyntaxHighlighter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_HBQTableView( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_HBQTextBlockUserData( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_HBSlots( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractButton( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractItemDelegate( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractItemModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractItemView( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractListModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractProxyModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractPrintDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractScrollArea( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractSlider( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractSpinBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractTableModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAbstractTextDocumentLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QAction( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QActionGroup( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QApplication( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QBitArray( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QBitmap( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QBoxLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QBrush( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QBuffer( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QButtonGroup( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QByteArray( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QCalendarWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QChar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QCheckBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QClipboard( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QColor( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QColorDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QComboBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QCommandLinkButton( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QCommonStyle( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QCompleter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QConicalGradient( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QContextMenuEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QCoreApplication( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QCursor( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDataStream( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDate( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDateEdit( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDateTime( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDateTimeEdit( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDesktopWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDial( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDir( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDirModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDockWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDoubleSpinBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDropEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDragMoveEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDragEnterEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QDragLeaveEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QErrorMessage( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QEventLoop( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFile( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFileDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFileInfo( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFileIconProvider( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFileSystemModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFocusEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFocusFrame( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFont( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFontComboBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFontDatabase( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFontDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFontInfo( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFontMetrics( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFontMetricsF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFormLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFrame( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QFtp( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QGradient( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QGridLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QGroupBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHBoxLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHeaderView( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHelpEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHideEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHttp( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHttpHeader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHttpRequestHeader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QHttpResponseHeader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QIcon( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QInputMethodEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QImage( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QImageReader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QImageWriter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QInputDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QInputEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QIODevice( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QItemDelegate( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QItemEditorCreatorBase( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QItemEditorFactory( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QItemSelection( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QItemSelectionModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QKeyEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QKeySequence( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLabel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLatin1Char( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLatin1String( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLayoutItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLCDNumber( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLine( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLineF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLinearGradient( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLineEdit( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QList( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QListView( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QListWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QListWidgetItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QLocale( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMainWindow( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMatrix( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMdiArea( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMdiSubWindow( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMenu( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMenuBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMessageBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMimeData( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QModelIndex( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMouseEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMoveEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QMovie( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QNetworkRequest( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QObject( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPageSetupDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPaintDevice( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPaintEngine( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPainter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPainterPath( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPaintEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPalette( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPen( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPicture( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPixmap( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPlainTextDocumentLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPlainTextEdit( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPoint( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPointF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPolygon( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPolygonF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPrintDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPrintEngine( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPrinter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPrintPreviewDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QProcess( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QProgressBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QProgressDialog( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QPushButton( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRadialGradient( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRadioButton( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRect( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRectF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRegion( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QRegExp( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QResizeEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QResource( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QScrollArea( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QScrollBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSessionManager( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSettings( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QShowEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSignalMapper( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSize( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSizeF( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSizeGrip( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSizePolicy( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSlider( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSound( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSpacerItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSpinBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSplashScreen( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSplitter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStackedWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStandardItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStandardItemModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStatusBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStringList( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStringListModel( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyle( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyledItemDelegate( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleFactory( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleHintReturn( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleHintReturnMask( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleHintReturnVariant( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOption( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionButton( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionComboBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionComplex( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionDockWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionFocusRect( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionFrame( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionGroupBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionHeader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionMenuItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionProgressBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionSizeGrip( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionSlider( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionSpinBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionTab( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionTabBarBase( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionTabWidgetFrame( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionTitleBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionToolBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionToolBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionToolButton( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStyleOptionViewItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QStylePainter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSyntaxHighlighter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QSystemTrayIcon( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTabBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTableView( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTableWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTableWidgetItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTabWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTableWidgetSelectionRange( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextBlock( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextBlockFormat( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextBlockGroup( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextBrowser( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextBoundaryFinder( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextCharFormat( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextCodec( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextCursor( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextDecoder( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextDocument( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextDocumentFragment( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextDocumentWriter( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextEdit( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextEncoder( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextFormat( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextFragment( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextFrame( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextFrameFormat( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextImageFormat( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextInlineObject( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextLength( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextLine( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextList( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextListFormat( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextObject( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextOption( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextStream( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTextTableFormat( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QThread( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTime( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTimeEdit( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTimer( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QToolBar( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QToolBox( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QToolButton( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTransform( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTranslator( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTreeView( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTreeWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QTreeWidgetItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QUiLoader( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QUrl( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QValidator( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QVariant( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QVBoxLayout( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QWheelEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QWidget( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QWidgetAction( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QWidgetItem( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QWindowsStyle( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QWindowStateChangeEvent( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QWizard( void * pObj, bool bNew ); +extern HB_EXPORT void * hbqt_gcAllocate_QWizardPage( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_HBQAbstractItemModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_HBEvents( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_HBQMainWindow( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_HBQPlainTextEdit( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_HBQSyntaxHighlighter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_HBQTableView( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_HBQTextBlockUserData( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_HBSlots( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractButton( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractItemDelegate( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractItemModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractItemView( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractListModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractProxyModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractPrintDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractScrollArea( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractSlider( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractSpinBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractTableModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAbstractTextDocumentLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QAction( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QActionGroup( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QApplication( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QBitArray( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QBitmap( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QBoxLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QBrush( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QBuffer( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QButtonGroup( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QByteArray( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QCalendarWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QChar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QCheckBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QClipboard( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QColor( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QColorDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QComboBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QCommandLinkButton( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QCommonStyle( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QCompleter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QConicalGradient( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QContextMenuEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QCoreApplication( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QCursor( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDataStream( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDate( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDateEdit( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDateTime( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDateTimeEdit( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDesktopWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDial( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDir( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDirModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDockWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDoubleSpinBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDropEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDragMoveEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDragEnterEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QDragLeaveEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QErrorMessage( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QEventLoop( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFile( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFileDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFileInfo( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFileIconProvider( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFileSystemModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFocusEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFocusFrame( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFont( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFontComboBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFontDatabase( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFontDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFontInfo( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFontMetrics( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFontMetricsF( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFormLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFrame( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QFtp( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QGradient( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QGridLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QGroupBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QHBoxLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QHeaderView( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QHelpEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QHideEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QHttp( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QHttpHeader( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QHttpRequestHeader( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QHttpResponseHeader( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QIcon( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QInputMethodEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QImage( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QImageReader( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QImageWriter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QInputDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QInputEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QIODevice( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QItemDelegate( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QItemEditorCreatorBase( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QItemEditorFactory( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QItemSelection( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QItemSelectionModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QKeyEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QKeySequence( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLabel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLatin1Char( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLatin1String( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLayoutItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLCDNumber( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLine( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLineF( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLinearGradient( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLineEdit( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QList( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QListView( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QListWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QListWidgetItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QLocale( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMainWindow( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMatrix( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMdiArea( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMdiSubWindow( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMenu( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMenuBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMessageBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMimeData( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QModelIndex( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMouseEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMoveEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QMovie( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QNetworkRequest( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QObject( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPageSetupDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPaintDevice( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPaintEngine( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPainter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPainterPath( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPaintEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPalette( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPen( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPicture( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPixmap( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPlainTextDocumentLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPlainTextEdit( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPoint( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPointF( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPolygon( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPolygonF( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPrintDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPrintEngine( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPrinter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPrintPreviewDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QProcess( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QProgressBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QProgressDialog( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QPushButton( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QRadialGradient( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QRadioButton( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QRect( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QRectF( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QRegion( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QRegExp( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QResizeEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QResource( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QScrollArea( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QScrollBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSessionManager( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSettings( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QShowEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSignalMapper( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSize( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSizeF( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSizeGrip( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSizePolicy( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSlider( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSound( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSpacerItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSpinBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSplashScreen( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSplitter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStackedWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStandardItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStandardItemModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStatusBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStringList( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStringListModel( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyle( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyledItemDelegate( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleFactory( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleHintReturn( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleHintReturnMask( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleHintReturnVariant( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOption( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionButton( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionComboBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionComplex( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionDockWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionFocusRect( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionFrame( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionGroupBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionHeader( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionMenuItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionProgressBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionSizeGrip( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionSlider( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionSpinBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionTab( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionTabBarBase( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionTabWidgetFrame( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionTitleBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionToolBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionToolBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionToolButton( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStyleOptionViewItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QStylePainter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSyntaxHighlighter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QSystemTrayIcon( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTabBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTableView( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTableWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTableWidgetItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTabWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTableWidgetSelectionRange( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextBlock( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextBlockFormat( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextBlockGroup( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextBrowser( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextBoundaryFinder( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextCharFormat( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextCodec( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextCursor( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextDecoder( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextDocument( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextDocumentFragment( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextDocumentWriter( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextEdit( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextEncoder( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextFormat( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextFragment( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextFrame( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextFrameFormat( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextImageFormat( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextInlineObject( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextLength( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextLine( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextList( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextListFormat( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextObject( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextOption( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextStream( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTextTableFormat( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QThread( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTime( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTimeEdit( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTimer( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QToolBar( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QToolBox( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QToolButton( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTransform( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTranslator( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTreeView( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTreeWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QTreeWidgetItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QUiLoader( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QUrl( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QValidator( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QVariant( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QVBoxLayout( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QWheelEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QWidget( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QWidgetAction( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QWidgetItem( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QWindowsStyle( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QWindowStateChangeEvent( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QWizard( void * pObj, bool bNew ); -extern void * hbqt_gcAllocate_QWizardPage( void * pObj, bool bNew ); diff --git a/harbour/contrib/make.hbs b/harbour/contrib/make.hbs index a992b7f5f9..0352092849 100755 --- a/harbour/contrib/make.hbs +++ b/harbour/contrib/make.hbs @@ -68,12 +68,17 @@ STATIC s_cBinDir STATIC s_cReBase PROCEDURE Main( ... ) - LOCAL hPackageList + LOCAL hProjectList s_cBase := "" - s_cHome := StrTran( hb_DirBase(), hb_ps(), "/" ) - s_cRoot := s_cHome + "../" s_cReBase := "" + IF Empty( GetEnv( "HB_HOST_BIN_DIR" ) ) + s_cHome := StrTran( hb_DirBase(), hb_ps(), "/" ) + s_cRoot := s_cHome + "../" + ELSE + s_cHome := "" + s_cRoot := "../" + ENDIF #if defined( __HBSCRIPT__HBRUN ) s_cBinDir := hbrun_DirBase() @@ -81,19 +86,19 @@ PROCEDURE Main( ... ) s_cBinDir := hb_DirBase() #endif - /* Load list of packages */ + /* Load list of projects */ - hPackageList := { => } - hb_HKeepOrder( hPackageList, .T. ) + hProjectList := { => } + hb_HKeepOrder( hProjectList, .T. ) - LoadPkgListFromFile( hPackageList, s_cHome + "pkglist" ) - LoadPkgListFromString( hPackageList, GetEnv( "HB_BUILD_ADDONS" ) ) + LoadProjectListFromFile( hProjectList, s_cHome + "hbplist" ) + LoadProjectListFromString( hProjectList, GetEnv( "HB_BUILD_ADDONS" ) ) /* Build */ IF Empty( GetEnv( "HB_HOST_BIN_DIR" ) ) - Standalone( hb_AParams(), hPackageList ) + Standalone( hb_AParams(), hProjectList ) ELSE - GNUMake( hb_AParams(), hPackageList ) + GNUMake( hb_AParams(), hProjectList ) ENDIF RETURN @@ -108,15 +113,9 @@ PROCEDURE Main( ... ) #4 install install _ACT_INC_INST -inc -instpath= #5 clean install clean install _ACT_INC_REBUILD_INST -inc -rebuild -instpath= */ -PROCEDURE Standalone( aParams, hPackageList ) - LOCAL aSortedList +PROCEDURE Standalone( aParams, hProjectList ) + LOCAL hProjectReqList - LOCAL cPWD - LOCAL cPackage - LOCAL hHomePackage := { => } - LOCAL cProject - - LOCAL cOptions LOCAL cOptionsUser LOCAL nAction @@ -125,8 +124,6 @@ PROCEDURE Standalone( aParams, hPackageList ) LOCAL lCustom - LOCAL aPairList - /* Processing cmdline options */ DO CASE @@ -146,6 +143,14 @@ PROCEDURE Standalone( aParams, hPackageList ) nAction := _ACT_INC ENDCASE + /* Strip install action */ + DO CASE + CASE nAction == _ACT_INC_REBUILD_INST ; nAction := _ACT_INC_REBUILD + CASE nAction == _ACT_INC_INST ; nAction := _ACT_INC + ENDCASE + + /* Processing user options */ + cOptionsUser := "" lCustom := .F. FOR EACH tmp IN aParams @@ -164,66 +169,35 @@ PROCEDURE Standalone( aParams, hPackageList ) ENDIF NEXT + /* Assemble list of primary targets (registered projects in current directory) */ + + hProjectReqList := { => } + hb_HKeepOrder( hProjectReqList, .T. ) + IF ! lCustom - cPWD := hb_pwd() - /* Find out which package are in current dir, these will be our primary targets */ - FOR EACH tmp IN hPackageList + /* Find out which projects are in current dir, these will be our primary targets */ + FOR EACH tmp IN hProjectList tmp1 := hb_ps() + FNameDirGet( PathSepToSelf( tmp:__enumKey() ) ) - IF tmp1 == Right( cPWD, Len( tmp1 ) ) /* Not ultimate solution */ - hHomePackage[ tmp:__enumKey() ] := tmp:__enumKey() + IF tmp1 == Right( hb_pwd(), Len( tmp1 ) ) /* Not ultimate solution */ + hProjectReqList[ tmp:__enumKey() ] := tmp:__enumKey() s_cReBase := SubStr( tmp1, 2 ) ENDIF NEXT - IF Empty( hHomePackage ) + IF Empty( hProjectReqList ) lCustom := .T. ELSE - OutStd( hb_StrFormat( "! Package %1$s... (%2$s project(s))", hActions[ nAction ], hb_ntos( Len( hHomePackage ) ) ) + hb_eol() ) + OutStd( hb_StrFormat( "! Package %1$s... %2$s project(s)", hActions[ nAction ], hb_ntos( Len( hProjectReqList ) ) ) + hb_eol() ) ENDIF ENDIF IF lCustom mk_hb_processRun( s_cBinDir + "hbmk2" + cOptionsUser ) - ELSE - /* Converting build options to hbmk2 options */ - - cOptions := " -inc" - IF nAction == _ACT_INC_CLEAN - cOptions += " -clean" - ELSE - IF nAction == _ACT_INC_REBUILD .OR. ; - nAction == _ACT_INC_REBUILD_INST - cOptions += " -rebuild" - ENDIF - ENDIF - - /* Query project information and dependencies and calculate build order */ - aPairList := {} - - FOR EACH cPackage IN hHomePackage - call_hbmk2_hbinfo( s_cBase + s_cHome + cPackage, hPackageList[ cPackage ] ) - DeptLinesToDeptPairList( aPairList, cPackage, hPackageList[ cPackage ][ "aDept" ] ) - NEXT - - aSortedList := TopoSort( aPairList ) - - /* Build the dependencies and ourselves in in sorted order */ - FOR EACH cPackage IN aSortedList DESCEND - - cProject := s_cBase + s_cHome + cPackage - - IF cPackage $ hHomePackage /* Primary target */ - call_hbmk2( cProject, cOptions + cOptionsUser ) - - IF hPackageList[ cPackage ][ "cType" ] == "hblib" .AND. GetEnv( "HB_BUILD_CONTRIB_DYN" ) == "yes" - call_hbmk2( cProject, cOptions + cOptionsUser, hPackageList[ cPackage ][ "aDept" ] ) - ENDIF - ELSE - call_hbmk2( cProject, " -inc" ) - ENDIF - NEXT + RETURN ENDIF - ErrorLevel( 0 ) + /* Start building */ + + build_projects( nAction, hProjectList, hProjectReqList, cOptionsUser ) RETURN @@ -241,12 +215,9 @@ PROCEDURE Standalone( aParams, hPackageList ) #6 install clean install install clean _ACT_INC_INST -inc -instpath= clean install clean _ACT_INC_CLEAN -inc -clean */ -PROCEDURE GNUMake( aParams, hPackageList ) - LOCAL hProject +PROCEDURE GNUMake( aParams, hProjectList ) LOCAL cProject - LOCAL cPackage - - LOCAL cOptions + LOCAL hProjectReqList LOCAL cFilter LOCAL aFilter @@ -254,10 +225,7 @@ PROCEDURE GNUMake( aParams, hPackageList ) LOCAL aGNUMakeParams LOCAL nAction - - LOCAL aPairList - - LOCAL aSortedList + LOCAL tmp /* Check if the requirements are met and if we have anything to do */ @@ -268,21 +236,6 @@ PROCEDURE GNUMake( aParams, hPackageList ) RETURN ENDIF - cFilter := GetEnv( "HB_BUILD_CONTRIBS" ) - /* Compatibility */ - IF Empty( cFilter ) - cFilter := GetEnv( "HB_CONTRIBLIBS" ) - ENDIF - - IF ! Empty( cFilter ) - OutStd( "! HB_BUILD_CONTRIBS: " + cFilter + hb_eol() ) - ENDIF - - IF cFilter == "no" - ErrorLevel( 0 ) - RETURN - ENDIF - /* Determine the mode of operation */ aGNUMakeParams := hb_ATokens( Lower( GetEnv( "HB_MAKECMDGOALS" ) ) ) @@ -321,7 +274,17 @@ PROCEDURE GNUMake( aParams, hPackageList ) nAction := _ACT_INC ENDCASE - /* Parse filter */ + /* Assemble list of projects to be built */ + + cFilter := GetEnv( "HB_BUILD_CONTRIBS" ) + + IF ! Empty( cFilter ) + OutStd( "! HB_BUILD_CONTRIBS: " + cFilter + hb_eol() ) + ENDIF + + IF cFilter == "no" + RETURN + ENDIF aFilter := iif( Empty( cFilter ), {}, hb_ATokens( cFilter,, .T. ) ) IF Len( aFilter ) >= 1 .AND. aFilter[ 1 ] == "no" @@ -331,6 +294,37 @@ PROCEDURE GNUMake( aParams, hPackageList ) lFilterNegative := .F. ENDIF + hProjectReqList := { => } + hb_HKeepOrder( hProjectReqList, .T. ) + + FOR EACH tmp IN hProjectList + hProjectReqList[ tmp:__enumKey() ] := tmp:__enumKey() + NEXT + + IF ! Empty( aFilter ) + IF ! lFilterNegative + hProjectReqList := { => } + ENDIF + FOR EACH cProject IN aFilter + FOR EACH tmp IN hProjectList + IF hb_FileMatch( cProject, tmp:__enumKey() ) .OR. ; + hb_FileMatch( cProject, FNameDirGet( PathSepToSelf( tmp:__enumKey() ) ) ) + IF lFilterNegative + IF tmp:__enumKey() $ hProjectReqList + hb_HDel( hProjectReqList, tmp:__enumKey() ) + ENDIF + ELSE + hProjectReqList[ tmp:__enumKey() ] := tmp:__enumKey() + ENDIF + ENDIF + NEXT + NEXT + ENDIF + + IF Empty( hProjectReqList ) + RETURN + ENDIF + /* Clearing envvars that may interact with hbmk2 */ /* Saving original install dirs to our own variables */ @@ -348,72 +342,86 @@ PROCEDURE GNUMake( aParams, hPackageList ) hb_setenv( "HB_INSTALL_DYN" ) hb_setenv( "HB_INSTALL_INC", s_cRoot + "include" ) - /* Preprocessing */ - - OutStd( "! Calculating build order for packages..." + hb_eol() ) - - aPairList := {} - - FOR EACH hProject IN hPackageList - call_hbmk2_hbinfo( s_cBase + hProject:__enumKey(), hProject ) - DeptLinesToDeptPairList( aPairList, hProject:__enumKey(), hProject[ "aDept" ] ) - NEXT - - aSortedList := TopoSort( aPairList ) - - /* Converting build options to hbmk2 options */ - - hb_setenv( "_HB_BUILD_INSTALL" ) - - cOptions := " -inc" - IF nAction == _ACT_INC_CLEAN - cOptions += " -clean" - ELSE - IF nAction == _ACT_INC_REBUILD .OR. ; - nAction == _ACT_INC_REBUILD_INST - cOptions += " -rebuild" - ENDIF - IF nAction == _ACT_INC_INST .OR. ; - nAction == _ACT_INC_REBUILD_INST - hb_setenv( "_HB_BUILD_INSTALL", "yes" ) - ENDIF - ENDIF - /* Start building */ OutStd( hb_StrFormat( "! Started package %1$s...", hActions[ nAction ] ) + hb_eol() ) - FOR EACH cPackage IN aSortedList DESCEND + build_projects( nAction, hProjectList, hProjectReqList, "" ) - IF Empty( aFilter ) .OR. ; - iif( lFilterNegative,; - AScan( aFilter, {| tmp | tmp == cPackage } ) == 0,; - AScan( aFilter, {| tmp | tmp == cPackage } ) > 0 ) - - cProject := s_cBase + cPackage - - call_hbmk2( cProject, cOptions ) - - IF hPackageList[ cPackage ][ "cType" ] == "hblib" .AND. ; - GetEnv( "HB_BUILD_CONTRIB_DYN" ) == "yes" - - call_hbmk2( cProject, cOptions, hPackageList[ cPackage ][ "aDept" ] ) - ENDIF - - /* Compile documentation */ - IF nAction == _ACT_INC_INST .OR. ; - nAction == _ACT_INC_REBUILD_INST - mk_hbd( PathSepToSelf( cPackage ) ) - ENDIF - ELSE - /* OutStd( hb_StrFormat( "! package '%1$s' skipped due to custom filter", cPackage ) + hb_eol() ) */ - ENDIF - NEXT - - OutStd( hb_eol() ) OutStd( hb_StrFormat( "! Finished package %1$s...", hActions[ nAction ] ) + hb_eol() ) - ErrorLevel( 0 ) + RETURN + +STATIC PROCEDURE build_projects( nAction, hProjectList, hProjectReqList, cOptionsUser ) + LOCAL aPairList + LOCAL aSortedList + + LOCAL cOptions + LOCAL lInstall + + LOCAL cProject + LOCAL cProjectPath + LOCAL lPrimary + + /* Preprocessing */ + + IF Len( hProjectReqList ) > 1 + OutStd( hb_StrFormat( "! Calculating build order for %1$s projects...", hb_ntos( Len( hProjectReqList ) ) ) + hb_eol() ) + ENDIF + + aPairList := {} + + FOR EACH cProject IN hProjectReqList + call_hbmk2_hbinfo( s_cBase + s_cHome + cProject, hProjectList[ cProject ] ) + DeptLinesToDeptPairList( aPairList, cProject, hProjectList[ cProject ][ "aDept" ] ) + NEXT + + aSortedList := TopoSort( aPairList ) + + /* Load project information for dependencies too + (we need "cType" to decide about dynamic build) */ + IF GetEnv( "HB_BUILD_CONTRIB_DYN" ) == "yes" + FOR EACH cProject IN aSortedList + IF !( cProject $ hProjectReqList ) + call_hbmk2_hbinfo( s_cBase + s_cHome + cProject, hProjectList[ cProject ] ) + ENDIF + NEXT + ENDIF + + /* Convert action to hbmk2 options */ + + cOptions := " -inc" + IF nAction == _ACT_INC_CLEAN + cOptions += " -clean" + ELSEIF nAction == _ACT_INC_REBUILD .OR. ; + nAction == _ACT_INC_REBUILD_INST + cOptions += " -rebuild" + ENDIF + + lInstall := nAction == _ACT_INC_INST .OR. ; + nAction == _ACT_INC_REBUILD_INST + + hb_setenv( "_HB_BUILD_INSTALL", iif( lInstall, "yes", NIL ) ) + + /* Build the dependencies and primary targets in sorted order */ + + FOR EACH cProject IN aSortedList DESCEND + + cProjectPath := s_cBase + s_cHome + cProject + lPrimary := cProject $ hProjectReqList + + call_hbmk2( cProjectPath, iif( lPrimary, cOptions + cOptionsUser, " -inc" ), .F. ) + + /* Build dynamic lib */ + IF GetEnv( "HB_BUILD_CONTRIB_DYN" ) == "yes" .AND. hProjectList[ cProject ][ "cType" ] == "hblib" + call_hbmk2( cProjectPath, iif( lPrimary, cOptions + cOptionsUser, " -inc" ), .T. ) + ENDIF + + /* Compile documentation */ + IF lPrimary .AND. lInstall + mk_hbd( PathSepToSelf( cProjectPath ) ) + ENDIF + NEXT RETURN @@ -428,7 +436,7 @@ STATIC PROCEDURE clear_hbmk2_envvars() RETURN -STATIC FUNCTION call_hbmk2_hbinfo( cProject, hProject ) +STATIC FUNCTION call_hbmk2_hbinfo( cProjectPath, hProject ) LOCAL cStdOut LOCAL cDir LOCAL cName @@ -439,7 +447,7 @@ STATIC FUNCTION call_hbmk2_hbinfo( cProject, hProject ) clear_hbmk2_envvars() - IF hb_processRun( s_cBinDir + "hbmk2 --hbinfo " + StrTran( cProject, "\", "/" ),, @cStdOut ) == 0 + IF hb_processRun( s_cBinDir + "hbmk2 --hbinfo " + StrTran( cProjectPath, "\", "/" ),, @cStdOut ) == 0 hProject[ "cType" ] := hbmk2_hbinfo_getitem( cStdOut, "targettype" ) @@ -477,35 +485,45 @@ STATIC FUNCTION hbmk2_hbinfo_getitem( cString, cItem, lAll ) RETURN cRetVal -STATIC FUNCTION call_hbmk2( cProject, cOptionsPre, aDeptHBC ) - LOCAL nErrorLevel - +STATIC FUNCTION DepListToStr( aDeptHBC ) LOCAL cOptionsLibDyn := "" LOCAL hDept + FOR EACH hDept IN aDeptHBC + cOptionsLibDyn += " " + hDept[ "cFileName_HBC" ] + NEXT + + RETURN cOptionsLibDyn + +STATIC FUNCTION call_hbmk2( cProjectPath, cOptionsPre, lLibDyn ) + LOCAL nErrorLevel + LOCAL cOptionsLibDyn := "" + clear_hbmk2_envvars() - IF aDeptHBC == NIL - hb_setenv( "__HB_DYN__" ) - hb_setenv( "_HB_BUILD_LIBDYN" ) - ELSE - FOR EACH hDept IN aDeptHBC - cOptionsLibDyn += " " + hDept[ "cFileName_HBC" ] - NEXT + IF lLibDyn hb_setenv( "__HB_DYN__", "_dll" ) /* Request dll version of Harbour contrib dependencies (the implibs) to be linked (experimental) */ hb_setenv( "_HB_BUILD_LIBDYN", "yes" ) + + IF hb_FileExists( FNameExtSet( cProjectPath, ".hbc" ) ) + cOptionsLibDyn := " " + FNameExtSet( cProjectPath, ".hbc" ) + ENDIF + ELSE + cOptionsLibDyn := "" + hb_setenv( "__HB_DYN__" ) + hb_setenv( "_HB_BUILD_LIBDYN" ) ENDIF nErrorLevel := mk_hb_processRun( s_cBinDir + "hbmk2" +; - " -quiet -lang=en -width=0" +; + " -quiet -width=0" +; " @" + StrTran( s_cHome + "hbpre", "\", "/" ) +; cOptionsPre +; - " " + StrTran( cProject, "\", "/" ) +; + " " + StrTran( cProjectPath, "\", "/" ) +; " @" + StrTran( s_cHome, "\", "/" ) + "hbpost" +; cOptionsLibDyn ) IF nErrorLevel != 0 - OutStd( hb_StrFormat( "! '%1$s' returned status: %2$s", cProject, hb_ntos( nErrorLevel ) ) + hb_eol() ) + OutStd( hb_StrFormat( "! '%1$s' returned status: %2$s", cProjectPath, hb_ntos( nErrorLevel ) ) + hb_eol() ) RETURN .F. ENDIF @@ -763,7 +781,7 @@ STATIC FUNCTION TopoSort( aEdgeList ) RETURN aList -PROCEDURE AddPkg( hPackageList, cFileName ) +PROCEDURE AddProject( hProjectList, cFileName ) LOCAL cDir LOCAL cName LOCAL cExt @@ -786,12 +804,12 @@ PROCEDURE AddPkg( hPackageList, cFileName ) cFileName := hb_FNameMerge( cDir, cName, cExt ) - hPackageList[ StrTran( cFileName, "\", "/" ) ] := { => } + hProjectList[ StrTran( cFileName, "\", "/" ) ] := { => } ENDIF RETURN -PROCEDURE LoadPkgListFromFile( hPackageList, cFileName ) +PROCEDURE LoadProjectListFromFile( hProjectList, cFileName ) LOCAL cFile := StrTran( MemoRead( cFileName ), Chr( 13 ) ) LOCAL cItem @@ -799,16 +817,16 @@ PROCEDURE LoadPkgListFromFile( hPackageList, cFileName ) IF "#" $ cItem cItem := Left( cItem, At( "#", cItem ) - 1 ) ENDIF - AddPkg( hPackageList, cItem ) + AddProject( hProjectList, cItem ) NEXT RETURN -PROCEDURE LoadPkgListFromString( hPackageList, cString ) +PROCEDURE LoadProjectListFromString( hProjectList, cString ) LOCAL cItem FOR EACH cItem IN hb_ATokens( cString,, .T. ) - AddPkg( hPackageList, cItem ) + AddProject( hProjectList, cItem ) NEXT RETURN diff --git a/harbour/contrib/rddsql/hbrddsql.h b/harbour/contrib/rddsql/hbrddsql.h index f1b11e0fdd..dea9618f91 100644 --- a/harbour/contrib/rddsql/hbrddsql.h +++ b/harbour/contrib/rddsql/hbrddsql.h @@ -250,8 +250,11 @@ typedef struct _SDDNODE #define ESQLDD_CONNALLOC 1912 #define ESQLDD_ENVALLOC 1913 +HB_EXTERN_BEGIN -int hb_sddRegister( PSDDNODE pSdd ); -void hb_rddsqlSetError( HB_ERRCODE errCode, const char * szError, const char * szQuery, PHB_ITEM pItem, unsigned long ulAffectedRows ); +extern HB_EXPORT int hb_sddRegister( PSDDNODE pSdd ); +extern HB_EXPORT void hb_rddsqlSetError( HB_ERRCODE errCode, const char * szError, const char * szQuery, PHB_ITEM pItem, unsigned long ulAffectedRows ); + +HB_EXTERN_END #endif diff --git a/harbour/contrib/sddoci/sddoci.hbp b/harbour/contrib/sddoci/sddoci.hbp index f0a3c9d425..e0245a385f 100644 --- a/harbour/contrib/sddoci/sddoci.hbp +++ b/harbour/contrib/sddoci/sddoci.hbp @@ -21,4 +21,9 @@ -depimplibs=ocilib:../lib32/ocilibm.dll -depimplibs=ocilib:../lib32/ocilibw.dll +# Using prebuilt static libs with MinGW +-cflag=-DOCI_API=_stdcall{mingw} +# Required to link against generated implib +-cflag=-DOCI_API=_stdcall{bcc} + sddoci.c diff --git a/harbour/contrib/xhb/thtm.prg b/harbour/contrib/xhb/thtm.prg index 1b0616753f..10e687f30c 100644 --- a/harbour/contrib/xhb/thtm.prg +++ b/harbour/contrib/xhb/thtm.prg @@ -2280,7 +2280,7 @@ FUNCTION HTMLANY2STR( xVal ) xRet := Dtoc( xVal ) ELSEIF ISLOGICAL( xVal ) - xRet := LTOC( xVal ) + xRet := iif( xVal, "T", "F" ) ELSEIF ISBLOCK( xVal ) xRet := "{||...}" diff --git a/harbour/contrib/xhb/xhb.hbp b/harbour/contrib/xhb/xhb.hbp index 9a1238b0c9..173b3a6b59 100644 --- a/harbour/contrib/xhb/xhb.hbp +++ b/harbour/contrib/xhb/xhb.hbp @@ -14,6 +14,10 @@ -instfile=inc:hbcompat.ch -instfile=inc:xhb.ch +../hbct/hbct.hbc +../hbtip/hbtip.hbc +../hbwin/hbwin.hbc + bkgtsks.c cstructc.c datesxhb.c diff --git a/harbour/src/vm/vmmt/Makefile b/harbour/src/vm/vmmt/Makefile index e17be52eb1..1e31e77fb9 100644 --- a/harbour/src/vm/vmmt/Makefile +++ b/harbour/src/vm/vmmt/Makefile @@ -71,6 +71,7 @@ C_SOURCES += \ pcount.c \ pvalue.c \ proc.c \ + procaddr.c \ runner.c \ vm.c \ $(C_MAIN) \ diff --git a/harbour/utils/hbmk2/hbmk2.prg b/harbour/utils/hbmk2/hbmk2.prg index 07f729d130..6a64cf42cf 100644 --- a/harbour/utils/hbmk2/hbmk2.prg +++ b/harbour/utils/hbmk2/hbmk2.prg @@ -4342,10 +4342,7 @@ FUNCTION hbmk2( aArgs, nArgTarget, /* @ */ lPause, nLevel ) ENDCASE - /* NOTE: We only use different shared object flags when compiling for - "( win || wce ) & !( allmingw | cygwin )". This may change in the future. - IMPORTANT: Keep this condition in sync with workdir default settings */ - IF hbmk[ _HBMK_lCreateDyn ] .AND. !( hbmk[ _HBMK_cCOMP ] $ "mingw|mingw64|mingwarm|cygwin" ) + IF hbmk[ _HBMK_lCreateDyn ] IF _HBMODE_IS_XHB( hbmk[ _HBMK_nHBMODE ] ) .OR. ; hbmk[ _HBMK_nHBMODE ] == _HBMODE_HB10 AAdd( hbmk[ _HBMK_aOPTC ], "-D__EXPORT__" ) @@ -4826,7 +4823,7 @@ FUNCTION hbmk2( aArgs, nArgTarget, /* @ */ lPause, nLevel ) '#include "hbapi.h"' + Chr( 10 ) +; '' + Chr( 10 ) - IF ! Empty( array ) .OR. l_cCMAIN != NIL + IF ( ! Empty( array ) .OR. l_cCMAIN != NIL ) .AND. ! lHBMAINDLLP AEval( array, {| tmp, i | array[ i ] := FuncNameEncode( tmp ) } ) AEval( array, {| tmp | cFile += 'HB_FUNC_EXTERN( ' + tmp + ' );' + Chr( 10 ) } ) IF l_cCMAIN != NIL @@ -6032,14 +6029,11 @@ FUNCTION hbmk2( aArgs, nArgTarget, /* @ */ lPause, nLevel ) /* NOTE: We store -hbdyn objects in different dirs by default as - for Windows platforms - they're always built using different compilation options than normal targets. [vszakats] */ -/* NOTE: We only use different shared object flags when compiling for - "( win || wce ) & !( allmingw | cygwin )". This may change in the future. - IMPORTANT: Keep this condition in sync with setting -DHB_DYNLIB C compiler flag logic */ STATIC PROCEDURE Set_lCreateDyn( hbmk, lValue ) hbmk[ _HBMK_lCreateDyn ] := lValue - IF hbmk[ _HBMK_lCreateDyn ] .AND. ! Empty( hbmk[ _HBMK_cCOMP ] ) .AND. !( hbmk[ _HBMK_cCOMP ] $ "mingw|mingw64|mingwarm|cygwin" ) + IF hbmk[ _HBMK_lCreateDyn ] hbmk[ _HBMK_cWorkDirDynSub ] := hb_ps() + "hbdyn" ELSE hbmk[ _HBMK_cWorkDirDynSub ] := ""