2010-09-20 13:47 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
- contrib/hbqt/qtcore/g/THBQSlots.prg
- contrib/hbqt/qtcore/g/THBQEvents.prg
- Deleted. They should be renamed from old files.
This commit is contained in:
@@ -16,6 +16,11 @@
|
||||
The license applies to all entries newer than 2009-04-28.
|
||||
*/
|
||||
|
||||
2010-09-20 13:47 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
- contrib/hbqt/qtcore/g/THBQSlots.prg
|
||||
- contrib/hbqt/qtcore/g/THBQEvents.prg
|
||||
- Deleted. They should be renamed from old files.
|
||||
|
||||
2010-09-20 01:30 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
|
||||
* contrib/hbide/hbqreportsmanager.prg
|
||||
* contrib/hbide/idemisc.prg
|
||||
@@ -24,9 +29,9 @@
|
||||
* contrib/hbqt/qtgui/g/QPainter.cpp
|
||||
* contrib/hbqt/qtgui/g/TQPainter.prg
|
||||
* contrib/hbqt/qtgui/qth/QPainter.qth
|
||||
+ Implemented: all multiple entry functions of QPainter() class
|
||||
+ Implemented: all multiple entry functions of QPainter() class
|
||||
under single function call. Only exception is :fillRect()
|
||||
which accepts similar parameters for different overloadings.
|
||||
which accepts similar parameters for different overloadings.
|
||||
|
||||
2010-09-19 17:48 UTC-0800 Pritpal Bedi (bedipritpal@hotmail.com)
|
||||
+ contrib/hbqt/qtcore/g/THBQEvents.prg
|
||||
@@ -48,8 +53,8 @@
|
||||
Please make experiments.
|
||||
|
||||
WARNING: you may need to re-select appropriate
|
||||
codepage from <MainMenu><Setup><Codepages> menu option
|
||||
before saving any source. Better would be - select
|
||||
codepage from <MainMenu><Setup><Codepages> menu option
|
||||
before saving any source. Better would be - select
|
||||
codepage as above and exit hbIDE, reenter.
|
||||
|
||||
2010-09-20 01:35 UTC+0200 Viktor Szakats (harbour.01 syenar.hu)
|
||||
|
||||
@@ -1,100 +0,0 @@
|
||||
/*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/* WARNING: Automatically generated source file. DO NOT EDIT! */
|
||||
/* Instead, edit corresponding .qth file, */
|
||||
/* or the generator tool itself, and run regenarate. */
|
||||
/* -------------------------------------------------------------------- */
|
||||
|
||||
/*
|
||||
* Harbour Project source code:
|
||||
* QT wrapper main header
|
||||
*
|
||||
* Copyright 2009-2010 Pritpal Bedi <pritpal@vouchcac.com>
|
||||
*
|
||||
* Copyright 2009 Marcos Antonio Gambeta <marcosgambeta at gmail dot com>
|
||||
* www - http://harbour-project.org
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this software; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
||||
*
|
||||
* As a special exception, the Harbour Project gives permission for
|
||||
* additional uses of the text contained in its release of Harbour.
|
||||
*
|
||||
* The exception is that, if you link the Harbour libraries with other
|
||||
* files to produce an executable, this does not by itself cause the
|
||||
* resulting executable to be covered by the GNU General Public License.
|
||||
* Your use of that executable is in no way restricted on account of
|
||||
* linking the Harbour library code into it.
|
||||
*
|
||||
* This exception does not however invalidate any other reasons why
|
||||
* the executable file might be covered by the GNU General Public License.
|
||||
*
|
||||
* This exception applies only to the code released by the Harbour
|
||||
* Project under the name Harbour. If you copy code from other
|
||||
* Harbour Project or Free Software Foundation releases into a copy of
|
||||
* Harbour, as the General Public License permits, the exception does
|
||||
* not apply to the code that you add in this way. To avoid misleading
|
||||
* anyone as to the status of such modified files, you must delete
|
||||
* this exception notice from them.
|
||||
*
|
||||
* If you write modifications of your own for Harbour, it is your choice
|
||||
* whether to permit this exception to apply to your modifications.
|
||||
* If you do not wish that, delete this exception notice.
|
||||
*
|
||||
*/
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
|
||||
#include "hbclass.ch"
|
||||
|
||||
|
||||
FUNCTION HBQEvents( ... )
|
||||
RETURN HB_HBQEvents():new( ... )
|
||||
|
||||
|
||||
CREATE CLASS HBQEvents INHERIT HbQtObjectHandler, HB_QObject FUNCTION HB_HBQEvents
|
||||
|
||||
METHOD new( ... )
|
||||
|
||||
METHOD hbConnect( xObj, nEvent, xBlock )
|
||||
METHOD hbDisconnect( xObj, nEvent )
|
||||
METHOD hbClear()
|
||||
|
||||
ENDCLASS
|
||||
|
||||
|
||||
METHOD HBQEvents:new( ... )
|
||||
LOCAL p
|
||||
FOR EACH p IN { ... }
|
||||
hb_pvalue( p:__enumIndex(), hbqt_ptr( p ) )
|
||||
NEXT
|
||||
::pPtr := Qt_HBQEvents( ... )
|
||||
RETURN Self
|
||||
|
||||
|
||||
METHOD HBQEvents:hbConnect( xObj, nEvent, xBlock )
|
||||
RETURN Qt_HBQEvents_hbConnect( ::pPtr, xObj, nEvent, xBlock )
|
||||
|
||||
|
||||
METHOD HBQEvents:hbDisconnect( xObj, nEvent )
|
||||
RETURN Qt_HBQEvents_hbDisconnect( ::pPtr, xObj, nEvent )
|
||||
|
||||
|
||||
METHOD HBQEvents:hbClear()
|
||||
RETURN Qt_HBQEvents_hbClear( ::pPtr )
|
||||
|
||||
@@ -1,105 +0,0 @@
|
||||
/*
|
||||
* $Id$
|
||||
*/
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/* WARNING: Automatically generated source file. DO NOT EDIT! */
|
||||
/* Instead, edit corresponding .qth file, */
|
||||
/* or the generator tool itself, and run regenarate. */
|
||||
/* -------------------------------------------------------------------- */
|
||||
|
||||
/*
|
||||
* Harbour Project source code:
|
||||
* QT wrapper main header
|
||||
*
|
||||
* Copyright 2009-2010 Pritpal Bedi <pritpal@vouchcac.com>
|
||||
*
|
||||
* Copyright 2009 Marcos Antonio Gambeta <marcosgambeta at gmail dot com>
|
||||
* www - http://harbour-project.org
|
||||
*
|
||||
* This program is free software; you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation; either version 2, or (at your option)
|
||||
* any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this software; see the file COPYING. If not, write to
|
||||
* the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
|
||||
* Boston, MA 02111-1307 USA (or visit the web site http://www.gnu.org/).
|
||||
*
|
||||
* As a special exception, the Harbour Project gives permission for
|
||||
* additional uses of the text contained in its release of Harbour.
|
||||
*
|
||||
* The exception is that, if you link the Harbour libraries with other
|
||||
* files to produce an executable, this does not by itself cause the
|
||||
* resulting executable to be covered by the GNU General Public License.
|
||||
* Your use of that executable is in no way restricted on account of
|
||||
* linking the Harbour library code into it.
|
||||
*
|
||||
* This exception does not however invalidate any other reasons why
|
||||
* the executable file might be covered by the GNU General Public License.
|
||||
*
|
||||
* This exception applies only to the code released by the Harbour
|
||||
* Project under the name Harbour. If you copy code from other
|
||||
* Harbour Project or Free Software Foundation releases into a copy of
|
||||
* Harbour, as the General Public License permits, the exception does
|
||||
* not apply to the code that you add in this way. To avoid misleading
|
||||
* anyone as to the status of such modified files, you must delete
|
||||
* this exception notice from them.
|
||||
*
|
||||
* If you write modifications of your own for Harbour, it is your choice
|
||||
* whether to permit this exception to apply to your modifications.
|
||||
* If you do not wish that, delete this exception notice.
|
||||
*
|
||||
*/
|
||||
/*----------------------------------------------------------------------*/
|
||||
|
||||
|
||||
#include "hbclass.ch"
|
||||
|
||||
|
||||
FUNCTION HBQSlots( ... )
|
||||
RETURN HB_HBQSlots():new( ... )
|
||||
|
||||
|
||||
CREATE CLASS HBQSlots INHERIT HbQtObjectHandler, HB_QObject FUNCTION HB_HBQSlots
|
||||
|
||||
METHOD new( ... )
|
||||
|
||||
METHOD hbConnect( xPObj, pSlot, xBBlock )
|
||||
METHOD hbDisconnect( xObj, pSlot )
|
||||
METHOD hbIsConnected( xObj, pSlot )
|
||||
METHOD hbClear()
|
||||
|
||||
ENDCLASS
|
||||
|
||||
|
||||
METHOD HBQSlots:new( ... )
|
||||
LOCAL p
|
||||
FOR EACH p IN { ... }
|
||||
hb_pvalue( p:__enumIndex(), hbqt_ptr( p ) )
|
||||
NEXT
|
||||
::pPtr := Qt_HBQSlots( ... )
|
||||
RETURN Self
|
||||
|
||||
|
||||
METHOD HBQSlots:hbConnect( xPObj, pSlot, xBBlock )
|
||||
RETURN Qt_HBQSlots_hbConnect( ::pPtr, xPObj, hbqt_ptr( pSlot ), xBBlock )
|
||||
|
||||
|
||||
METHOD HBQSlots:hbDisconnect( xObj, pSlot )
|
||||
RETURN Qt_HBQSlots_hbDisconnect( ::pPtr, xObj, hbqt_ptr( pSlot ) )
|
||||
|
||||
|
||||
METHOD HBQSlots:hbIsConnected( xObj, pSlot )
|
||||
RETURN Qt_HBQSlots_hbIsConnected( ::pPtr, xObj, hbqt_ptr( pSlot ) )
|
||||
|
||||
|
||||
METHOD HBQSlots:hbClear()
|
||||
RETURN Qt_HBQSlots_hbClear( ::pPtr )
|
||||
|
||||
Reference in New Issue
Block a user