2010-07-17 20:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
* include/hbdefs.h
+ Added HB_SIZE_SIGNED macro which enables signed HB_SIZE
types. It so far dangerous setting because it may generate
breakage without compiler warning, f.e. STUFF() GPFs
in hbtest after enabling it. Plus there is about 40-60
new warnings shown, I'm out of ideas how to fix most
of them.
* src/rtl/filesys.c
* Changed to pass LPDWORD to ReadFile()/WriteFile()
win32 branch, instead of *HB_SIZE. It caused warnings
for signed HB_SIZE.
; Please review me.
* ChangeLog
* Updated VxWorks notes in 2010-07-16 18:22 UTC+0200 Viktor Szakats
with missing hb_secondsCPU() support yet.
* contrib/gtalleg/gtallegs.hbp
* contrib/hbcurl/hbcurls.hbp
* contrib/hbssl/hbssls.hbp
* contrib/hbtip/hbtipssl.hbp
+ Added -hblib options to make it easy for tools to detect
target types.
* contrib/gtalleg/gtalleg.c
! Fixed C mode MSVC function pointer cast warning.
* src/rtl/hbsocket.c
* Minor cosmetic.
* contrib/hbqt/qtgui/QFormLayout.cpp
* contrib/hbqt/doc/en/*.txt
* Regenerated.
* contrib/hbqt/generator/hbqtgen.prg
! Fixed missing initialization for enums returned
by reference. An msvc warning was shown about them.
; TOFIX: I've reported similar warnings long ago with msvc. Anybody to fix them?
---
hbqt_hbqplaintextedit.cpp
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager'
hbqt_hbqsyntaxhighlighter.cpp
...\qt\4.5.3\include\qtcore\../../src/corelib/global/qglobal.h(2078) : warning C4512: 'QForeachContainer<T>' : assignment operator could not be generated
with
[
T=QMap<QString,HBQSyntaxHighlighter::HighlightingRule>
]
hbqt\hbqt_hbqsyntaxhighlighter.cpp(172) : see reference to class template instantiation 'QForeachContainer<T>' being compiled
with
[
T=QMap<QString,HBQSyntaxHighlighter::HighlightingRule>
]
moc_hbqt_hbqplaintextedit.cpp
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager'
QMimeData.cpp
...\qt\4.5.3\include\qtcore\../../src/corelib/global/qglobal.h(2078) : warning C4512: 'QForeachContainer<T>' : assignment operator could not be generated
with
[
T=QList<QUrl>
]
hbqt\qtcore\QMimeData.cpp(451) : see reference to class template instantiation 'QForeachContainer<T>' being compiled
with
[
T=QList<QUrl>
]
HBQPlainTextEdit.cpp
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager'
---
This commit is contained in:
@@ -16,6 +16,81 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2010-07-17 20:07 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* include/hbdefs.h
|
||||
+ Added HB_SIZE_SIGNED macro which enables signed HB_SIZE
|
||||
types. It so far dangerous setting because it may generate
|
||||
breakage without compiler warning, f.e. STUFF() GPFs
|
||||
in hbtest after enabling it. Plus there is about 40-60
|
||||
new warnings shown, I'm out of ideas how to fix most
|
||||
of them.
|
||||
|
||||
* src/rtl/filesys.c
|
||||
* Changed to pass LPDWORD to ReadFile()/WriteFile()
|
||||
win32 branch, instead of *HB_SIZE. It caused warnings
|
||||
for signed HB_SIZE.
|
||||
; Please review me.
|
||||
|
||||
* ChangeLog
|
||||
* Updated VxWorks notes in 2010-07-16 18:22 UTC+0200 Viktor Szakats
|
||||
with missing hb_secondsCPU() support yet.
|
||||
|
||||
* contrib/gtalleg/gtallegs.hbp
|
||||
* contrib/hbcurl/hbcurls.hbp
|
||||
* contrib/hbssl/hbssls.hbp
|
||||
* contrib/hbtip/hbtipssl.hbp
|
||||
+ Added -hblib options to make it easy for tools to detect
|
||||
target types.
|
||||
|
||||
* contrib/gtalleg/gtalleg.c
|
||||
! Fixed C mode MSVC function pointer cast warning.
|
||||
|
||||
* src/rtl/hbsocket.c
|
||||
* Minor cosmetic.
|
||||
|
||||
* contrib/hbqt/qtgui/QFormLayout.cpp
|
||||
* contrib/hbqt/doc/en/*.txt
|
||||
* Regenerated.
|
||||
|
||||
* contrib/hbqt/generator/hbqtgen.prg
|
||||
! Fixed missing initialization for enums returned
|
||||
by reference. An msvc warning was shown about them.
|
||||
|
||||
; TOFIX: I've reported similar warnings long ago with msvc. Anybody to fix them?
|
||||
---
|
||||
hbqt_hbqplaintextedit.cpp
|
||||
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated
|
||||
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager'
|
||||
hbqt_hbqsyntaxhighlighter.cpp
|
||||
...\qt\4.5.3\include\qtcore\../../src/corelib/global/qglobal.h(2078) : warning C4512: 'QForeachContainer<T>' : assignment operator could not be generated
|
||||
with
|
||||
[
|
||||
T=QMap<QString,HBQSyntaxHighlighter::HighlightingRule>
|
||||
]
|
||||
hbqt\hbqt_hbqsyntaxhighlighter.cpp(172) : see reference to class template instantiation 'QForeachContainer<T>' being compiled
|
||||
with
|
||||
[
|
||||
T=QMap<QString,HBQSyntaxHighlighter::HighlightingRule>
|
||||
]
|
||||
moc_hbqt_hbqplaintextedit.cpp
|
||||
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated
|
||||
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager'
|
||||
QMimeData.cpp
|
||||
...\qt\4.5.3\include\qtcore\../../src/corelib/global/qglobal.h(2078) : warning C4512: 'QForeachContainer<T>' : assignment operator could not be generated
|
||||
with
|
||||
[
|
||||
T=QList<QUrl>
|
||||
]
|
||||
hbqt\qtcore\QMimeData.cpp(451) : see reference to class template instantiation 'QForeachContainer<T>' being compiled
|
||||
with
|
||||
[
|
||||
T=QList<QUrl>
|
||||
]
|
||||
HBQPlainTextEdit.cpp
|
||||
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(101) : warning C4512: 'QtConcurrent::BlockSizeManager' : assignment operator could not be generated
|
||||
...\qt\4.5.3\include\qtcore\../../src/corelib/concurrent/qtconcurrentiteratekernel.h(83) : see declaration of 'QtConcurrent::BlockSizeManager'
|
||||
---
|
||||
|
||||
2010-07-17 17:10 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
* ChangeLog
|
||||
* src/vm/dynlibhb.c
|
||||
@@ -263,6 +338,7 @@
|
||||
but the latter stayed to be a zero length file.
|
||||
HB_USE_SHARELOCKS_OFF changes the situation a bit but
|
||||
still no good.
|
||||
- hb_secondsCPU() support is missing.
|
||||
|
||||
2010-07-16 09:04 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
|
||||
* contrib/hbide/idebrowse.prg
|
||||
@@ -13310,7 +13386,7 @@
|
||||
---
|
||||
../../../win_srv.c: In function 'hbwin_SrvFunction':
|
||||
../../../win_srv.c:102:4: warning: passing argument 1 of 'RegisterServiceCtrlHandlerW' from incompatible pointer type
|
||||
f:\devl\mingw-450\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsvc.h:234:40: note: expected 'LPCWSTR' but argument is of type 'char *'
|
||||
...\mingw-450\bin\../lib/gcc/mingw32/4.5.0/../../../../include/winsvc.h:234:40: note: expected 'LPCWSTR' but argument is of type 'char *'
|
||||
../../../win_srv.c: In function 'HB_FUN_WIN_SERVICESTART':
|
||||
../../../win_srv.c:279:21: warning: assignment from incompatible pointer type
|
||||
../../../win_srv.c:280:21: warning: assignment from incompatible pointer type
|
||||
|
||||
@@ -1177,4 +1177,7 @@ int _mangled_main( int argc, char * argv[] )
|
||||
hb_vmInit( HB_TRUE );
|
||||
return hb_vmQuit();
|
||||
}
|
||||
void * _mangled_main_address = ( void * ) _mangled_main;
|
||||
|
||||
typedef int ( * _hballeg_main_t ) ( int argc, char * argv[] );
|
||||
|
||||
_hballeg_main_t _mangled_main_address = _mangled_main;
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
-hblib
|
||||
|
||||
gtalleg.hbp
|
||||
|
||||
-stop{!msvc}
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
# $Id$
|
||||
#
|
||||
|
||||
-hblib
|
||||
|
||||
-stop{!(win|wce)}
|
||||
|
||||
hbcurl.hbp
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -45,10 +45,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/THBDbfModel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/HBDbfModel.cpp
|
||||
Prg source : contrib/hbqt/qtcore/THBDbfModel.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/HBDbfModel.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QAbstractItemModel
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -45,10 +45,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/THBEvents.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/HBEvents.cpp
|
||||
Prg source : contrib/hbqt/qtcore/THBEvents.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/HBEvents.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -48,10 +48,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp
|
||||
Prg source : contrib/hbqt/qtgui/THBQSyntaxHighlighter.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/HBQSyntaxHighlighter.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QSyntaxHighlighter
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -44,10 +44,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/THBQTextBlockUserData.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp
|
||||
Prg source : contrib/hbqt/qtgui/THBQTextBlockUserData.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/HBQTextBlockUserData.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -46,10 +46,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/THBSlots.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/HBSlots.cpp
|
||||
Prg source : contrib/hbqt/qtcore/THBSlots.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/HBSlots.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -68,10 +68,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractButton.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractButton.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractButton.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -49,10 +49,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractItemDelegate.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractItemDelegate.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractItemDelegate.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -74,10 +74,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQAbstractItemModel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQAbstractItemModel.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QAbstractItemModel.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -105,10 +105,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractItemView.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractItemView.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractItemView.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractScrollArea
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -43,10 +43,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQAbstractListModel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQAbstractListModel.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QAbstractListModel.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QAbstractItemModel
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -52,10 +52,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractPrintDialog.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractPrintDialog.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractPrintDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -48,10 +48,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractProxyModel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractProxyModel.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractProxyModel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractItemModel
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -56,10 +56,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractScrollArea.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractScrollArea.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractScrollArea.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QFrame
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -66,10 +66,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractSlider.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractSlider.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractSlider.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -68,10 +68,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractSpinBox.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractSpinBox.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractSpinBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -43,10 +43,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQAbstractTableModel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQAbstractTableModel.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QAbstractTableModel.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QAbstractItemModel
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -52,10 +52,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAbstractTextDocumentLayout.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAbstractTextDocumentLayout.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -92,10 +92,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQAction.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QAction.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQAction.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QAction.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -55,10 +55,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQActionGroup.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QActionGroup.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQActionGroup.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QActionGroup.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -116,10 +116,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQApplication.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QApplication.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQApplication.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QApplication.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QCoreApplication
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -58,10 +58,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQBitArray.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QBitArray.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQBitArray.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QBitArray.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -49,10 +49,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQBitmap.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QBitmap.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQBitmap.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QBitmap.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QPixmap
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -62,10 +62,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQBoxLayout.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQBoxLayout.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QBoxLayout.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QLayout
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -67,10 +67,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQBrush.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QBrush.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQBrush.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QBrush.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -48,10 +48,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQBuffer.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QBuffer.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQBuffer.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QBuffer.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QIODevice
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -53,10 +53,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQButtonGroup.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQButtonGroup.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QButtonGroup.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -92,10 +92,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQByteArray.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QByteArray.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQByteArray.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QByteArray.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -80,10 +80,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQCalendarWidget.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQCalendarWidget.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QCalendarWidget.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -70,10 +70,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQChar.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QChar.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQChar.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QChar.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -46,10 +46,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQCheckBox.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCheckBox.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQCheckBox.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QCheckBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractButton
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -55,10 +55,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQClipboard.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QClipboard.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQClipboard.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QClipboard.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -100,10 +100,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQColor.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QColor.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQColor.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QColor.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -57,10 +57,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQColorDialog.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QColorDialog.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQColorDialog.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QColorDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -101,10 +101,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQComboBox.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QComboBox.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQComboBox.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QComboBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -44,10 +44,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQCommandLinkButton.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQCommandLinkButton.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QCommandLinkButton.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QPushButton
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -71,10 +71,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQCompleter.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCompleter.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQCompleter.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QCompleter.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -47,10 +47,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQConicalGradient.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQConicalGradient.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QConicalGradient.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QGradient
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -49,10 +49,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQContextMenuEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQContextMenuEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QContextMenuEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QInputEvent
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -81,10 +81,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQCoreApplication.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQCoreApplication.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QCoreApplication.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -56,10 +56,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQCursor.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QCursor.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQCursor.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QCursor.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -55,10 +55,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQDataStream.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QDataStream.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQDataStream.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QDataStream.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -58,10 +58,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQDate.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QDate.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQDate.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QDate.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -56,10 +56,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQDateTime.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QDateTime.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQDateTime.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QDateTime.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -86,10 +86,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDateTimeEdit.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDateTimeEdit.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDateTimeEdit.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractSpinBox
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -54,10 +54,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDesktopWidget.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDesktopWidget.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDesktopWidget.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -49,10 +49,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDial.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDial.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDial.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDial.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractSlider
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -52,10 +52,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDialog.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDialog.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDialog.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -91,10 +91,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQDir.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QDir.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQDir.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QDir.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -79,10 +79,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDirModel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDirModel.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDirModel.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDirModel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractItemModel
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -54,10 +54,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDockWidget.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDockWidget.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDockWidget.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDockWidget.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -60,10 +60,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDoubleSpinBox.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDoubleSpinBox.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDoubleSpinBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractSpinBox
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -47,10 +47,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDragMoveEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDragMoveEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDragMoveEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDropEvent
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -52,10 +52,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQDropEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QDropEvent.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQDropEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QDropEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QEvent
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -44,10 +44,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQErrorMessage.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQErrorMessage.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QErrorMessage.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -49,10 +49,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QEvent.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QEvent.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -48,10 +48,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQEventLoop.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QEventLoop.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQEventLoop.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QEventLoop.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -76,10 +76,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQFile.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QFile.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQFile.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QFile.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QIODevice
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -88,10 +88,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFileDialog.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFileDialog.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFileDialog.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFileDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -45,10 +45,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFileIconProvider.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFileIconProvider.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFileIconProvider.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -86,10 +86,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQFileInfo.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QFileInfo.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQFileInfo.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QFileInfo.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -71,10 +71,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFileSystemModel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFileSystemModel.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFileSystemModel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractItemModel
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -45,10 +45,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFocusEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFocusEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFocusEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QEvent
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -44,10 +44,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFocusFrame.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFocusFrame.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFocusFrame.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -107,10 +107,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFont.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFont.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFont.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFont.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -48,10 +48,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFontComboBox.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFontComboBox.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFontComboBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QComboBox
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -65,10 +65,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFontDatabase.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFontDatabase.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFontDatabase.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -54,10 +54,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFontDialog.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontDialog.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFontDialog.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFontDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -54,10 +54,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFontInfo.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontInfo.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFontInfo.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFontInfo.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -71,10 +71,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFontMetrics.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFontMetrics.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFontMetrics.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -71,10 +71,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFontMetricsF.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFontMetricsF.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFontMetricsF.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -78,10 +78,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFormLayout.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFormLayout.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFormLayout.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFormLayout.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QLayout
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -55,10 +55,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQFrame.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QFrame.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQFrame.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QFrame.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -68,10 +68,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtnetwork/TQFtp.prg
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QFtp.cpp
|
||||
Prg source : contrib/hbqt/qtnetwork/TQFtp.prg
|
||||
C++ wrappers : contrib/hbqt/qtnetwork/QFtp.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -48,10 +48,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQGradient.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QGradient.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQGradient.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QGradient.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -68,10 +68,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQGridLayout.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QGridLayout.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQGridLayout.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QGridLayout.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QLayout
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -52,10 +52,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQGroupBox.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QGroupBox.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQGroupBox.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QGroupBox.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QWidget
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -99,10 +99,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQHeaderView.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QHeaderView.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQHeaderView.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QHeaderView.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QAbstractItemView
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -48,10 +48,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQHelpEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQHelpEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QHelpEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -66,10 +66,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtnetwork/TQHttp.prg
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QHttp.cpp
|
||||
Prg source : contrib/hbqt/qtnetwork/TQHttp.prg
|
||||
C++ wrappers : contrib/hbqt/qtnetwork/QHttp.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -60,10 +60,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtnetwork/TQHttpHeader.prg
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp
|
||||
Prg source : contrib/hbqt/qtnetwork/TQHttpHeader.prg
|
||||
C++ wrappers : contrib/hbqt/qtnetwork/QHttpHeader.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -47,10 +47,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp
|
||||
Prg source : contrib/hbqt/qtnetwork/TQHttpRequestHeader.prg
|
||||
C++ wrappers : contrib/hbqt/qtnetwork/QHttpRequestHeader.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
QHttpHeader
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -47,10 +47,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg
|
||||
C++ Wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp
|
||||
Prg source : contrib/hbqt/qtnetwork/TQHttpResponseHeader.prg
|
||||
C++ wrappers : contrib/hbqt/qtnetwork/QHttpResponseHeader.cpp
|
||||
Library : hbqtnetwork
|
||||
$SEEALSO$
|
||||
QHttpHeader
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -56,10 +56,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQIcon.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QIcon.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQIcon.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QIcon.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -96,10 +96,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQImage.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QImage.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQImage.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QImage.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -81,10 +81,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQImageReader.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QImageReader.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQImageReader.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QImageReader.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -61,10 +61,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQImageWriter.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QImageWriter.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQImageWriter.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QImageWriter.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -86,10 +86,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQInputDialog.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QInputDialog.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQInputDialog.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QInputDialog.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QDialog
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -43,10 +43,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQInputEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QInputEvent.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQInputEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QInputEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QEvent
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -47,10 +47,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQInputMethodEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQInputMethodEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QInputMethodEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QEvent
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -75,10 +75,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQIODevice.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QIODevice.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQIODevice.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QIODevice.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -45,10 +45,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQItemSelection.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QItemSelection.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQItemSelection.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QItemSelection.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QList
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -57,10 +57,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQItemSelectionModel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQItemSelectionModel.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QItemSelectionModel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QObject
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -51,10 +51,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQKeyEvent.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQKeyEvent.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QKeyEvent.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QInputEvent
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -47,10 +47,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQKeySequence.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QKeySequence.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQKeySequence.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QKeySequence.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -71,10 +71,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtgui/TQLabel.prg
|
||||
C++ Wrappers : contrib/hbqt/qtgui/QLabel.cpp
|
||||
Prg source : contrib/hbqt/qtgui/TQLabel.prg
|
||||
C++ wrappers : contrib/hbqt/qtgui/QLabel.cpp
|
||||
Library : hbqtgui
|
||||
$SEEALSO$
|
||||
QFrame
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5.3+
|
||||
* hbQTgen v1.0 - Harbour Callable Wrappers Generator for Qt v4.5+
|
||||
* Please do not modify this document as it is subject to change in future.
|
||||
* Pritpal Bedi <bedipritpal@hotmail.com>
|
||||
*/
|
||||
@@ -44,10 +44,10 @@
|
||||
$PLATFORMS$
|
||||
Windows, Linux, MacOS, OS2
|
||||
$VERSION$
|
||||
4.5.3
|
||||
4.5 or upper
|
||||
$FILES$
|
||||
Prg Source : contrib/hbqt/qtcore/TQLatin1Char.prg
|
||||
C++ Wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp
|
||||
Prg source : contrib/hbqt/qtcore/TQLatin1Char.prg
|
||||
C++ wrappers : contrib/hbqt/qtcore/QLatin1Char.cpp
|
||||
Library : hbqtcore
|
||||
$SEEALSO$
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user