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.
This commit is contained in:
Viktor Szakats
2010-07-31 11:51:37 +00:00
parent 94cfb1a339
commit ff5a1d161b
272 changed files with 2176 additions and 2060 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -9,6 +9,8 @@
-w3 -es2
../hbct/hbct.hbc
-deppkgname=gd:gd-devel
-depkeyhead=gd:gd.h
-depcontrol=gd:${HB_WITH_GD}

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

View File

@@ -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$

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