* utils/hbdoc/bld_vc.bat
* utils/hbmake/bld_vc.bat
% Minor cleanup.
* contrib/hbwhat32/whticon.c
* contrib/hbwhat32/whtcret.c
* contrib/hbwhat32/whthead.c
* contrib/hbwhat32/whtmous.c
* contrib/hbwhat32/whtmeta.c
* contrib/hbwhat32/whtrgn.c
* contrib/hbwhat32/whttbar.c
* contrib/hbwhat32/whtrect.c
* contrib/hbwhat32/whtbrsh.c
* contrib/hbwhat32/whtgdi.c
* contrib/hbwhat32/whtview.c
* contrib/hbwhat32/whtlv.c
* contrib/hbwhat32/whtwnd.c
* contrib/hbwhat32/whtcomm.c
* contrib/hbwhat32/whtprn.c
* contrib/hbwhat32/whttab.c
* contrib/hbwhat32/whtfont.c
* contrib/hbwhat32/whtbmp.c
* contrib/hbwhat32/whtpen.c
* contrib/hbwhat32/whtkbrd.c
* contrib/hbwhat32/whttext.c
* contrib/hbwhat32/whtdc.c
* contrib/hbwhat32/whtdraw.c
* contrib/hbnf/fttext.c
* contrib/hbnf/peek.c
* contrib/hbnf/ontick.c
* contrib/hbnf/origin.c
* contrib/hbnf/mouse.c
* contrib/hbnf/poke.c
! Fixed to use Harbour API instead of legacy Clipper API.
+ contrib/hbbtree/tests/bld_b32.bat
+ contrib/hbbtree/tests/bld_vc.bat
+ contrib/hbbtree/tests/bld_djgp.bat
- contrib/hbbtree/tests/mktest.bat
* contrib/hbbtree/tests/ctest.c
+ Added make files.
* Minor cleanups.
; One of the tests fail.
* contrib/hbbtree/tbtree.prg
! Fixed crash due to scope problem in class declaration.
* contrib/examples/pe/editorlo.c
! #include <x> -> #include "x" for Harbour headers.
562 lines
12 KiB
C
562 lines
12 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code
|
|
*
|
|
* mouse.c Support functions for Nanfor Library
|
|
*
|
|
* Copyright 2000 Luiz Rafael Culik <Culik@sl.conex.net>
|
|
* www - http://www.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 "hbapi.h"
|
|
#if defined(HB_OS_DOS)
|
|
#include "dos.h"
|
|
#endif
|
|
#include "hbapiitm.h"
|
|
#include "hbapigt.h"
|
|
|
|
HB_FUNC( _MGET_PAGE )
|
|
{
|
|
int iPage;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x1E;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iPage = regs.HB_XREGS.bx;
|
|
}
|
|
#else
|
|
{
|
|
iPage = 0;
|
|
}
|
|
#endif
|
|
hb_retni( iPage );
|
|
}
|
|
|
|
HB_FUNC( _MSET_PAGE )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x1D;
|
|
regs.HB_XREGS.bx = hb_parni( 1 );
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _MGET_MVERSION )
|
|
{
|
|
int iMinor;
|
|
int iType;
|
|
int iIRQ;
|
|
int iMajor;
|
|
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
|
|
regs.HB_XREGS.ax = 0x24;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
|
|
iMinor = regs.h.bl;
|
|
iType = regs.h.ch;
|
|
iIRQ = regs.h.cl;
|
|
iMajor = regs.h.bh;
|
|
}
|
|
#else
|
|
{
|
|
iMinor = 0;
|
|
iType = 0;
|
|
iIRQ = 0;
|
|
iMajor = 0;
|
|
}
|
|
#endif
|
|
|
|
{
|
|
PHB_ITEM pArray = hb_itemArrayNew( 4 );
|
|
|
|
PHB_ITEM pMinor = hb_itemPutNI( NULL, iMinor );
|
|
PHB_ITEM pType = hb_itemPutNI( NULL, iType );
|
|
PHB_ITEM pIRQ = hb_itemPutNI( NULL, iIRQ );
|
|
PHB_ITEM pMajor = hb_itemPutNI( NULL, iMajor );
|
|
|
|
hb_itemArrayPut( pArray, 1, pMinor );
|
|
hb_itemArrayPut( pArray, 2, pType );
|
|
hb_itemArrayPut( pArray, 3, pIRQ );
|
|
hb_itemArrayPut( pArray, 4, pMajor );
|
|
|
|
hb_itemReturn( pArray );
|
|
|
|
hb_itemRelease( pMajor );
|
|
hb_itemRelease( pIRQ );
|
|
hb_itemRelease( pType );
|
|
hb_itemRelease( pMinor );
|
|
|
|
hb_itemRelease( pArray );
|
|
}
|
|
}
|
|
|
|
HB_FUNC( _MGET_HORISPEED )
|
|
{
|
|
int iSpeed;
|
|
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x1B;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iSpeed = regs.HB_XREGS.bx;
|
|
}
|
|
#else
|
|
{
|
|
iSpeed = 0;
|
|
}
|
|
#endif
|
|
hb_retni( iSpeed );
|
|
}
|
|
|
|
HB_FUNC( _MGET_VERSPEED )
|
|
{
|
|
int iSpeed;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x1B;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iSpeed = regs.HB_XREGS.cx;
|
|
}
|
|
#else
|
|
{
|
|
iSpeed = 0;
|
|
}
|
|
#endif
|
|
hb_retni( iSpeed );
|
|
}
|
|
|
|
HB_FUNC( _MGET_DOUBLESPEED )
|
|
{
|
|
int iSpeed;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x1B;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iSpeed = regs.HB_XREGS.dx;
|
|
}
|
|
#else
|
|
{
|
|
iSpeed = 0;
|
|
}
|
|
#endif
|
|
hb_retni( iSpeed );
|
|
}
|
|
|
|
HB_FUNC( _MSET_SENSITIVE ) /* nHoriz,nVert,nDouble) */
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x1A;
|
|
regs.HB_XREGS.bx = hb_parni( 1 );
|
|
regs.HB_XREGS.cx = hb_parni( 2 );
|
|
regs.HB_XREGS.dx = hb_parni( 3 );
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _MSE_CONOFF ) /* nTop*8,nLeft*8,nBotton*8,nRight*8) */
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x1A;
|
|
regs.HB_XREGS.cx = hb_parni( 2 );
|
|
regs.HB_XREGS.dx = hb_parni( 1 );
|
|
regs.HB_XREGS.si = hb_parni( 4 );
|
|
regs.HB_XREGS.di = hb_parni( 3 );
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _MGET_MICS )
|
|
{
|
|
int iHori;
|
|
int iVert;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x0B;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iHori = regs.HB_XREGS.cx;
|
|
iVert = regs.HB_XREGS.dx;
|
|
}
|
|
#else
|
|
{
|
|
iHori = 0;
|
|
iVert = 0;
|
|
}
|
|
#endif
|
|
{
|
|
PHB_ITEM pArray = hb_itemArrayNew( 2 );
|
|
PHB_ITEM pHori = hb_itemPutNI( NULL, iHori );
|
|
PHB_ITEM pVert = hb_itemPutNI( NULL, iVert );
|
|
|
|
hb_itemArrayPut( pArray, 1, pHori );
|
|
hb_itemArrayPut( pArray, 2, pVert );
|
|
|
|
hb_itemReturn( pArray );
|
|
|
|
hb_itemRelease( pArray );
|
|
hb_itemRelease( pHori );
|
|
hb_itemRelease( pVert );
|
|
}
|
|
}
|
|
|
|
|
|
HB_FUNC( _M_RESET )
|
|
{
|
|
int iMouse;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iMouse = regs.HB_XREGS.ax;
|
|
}
|
|
#else
|
|
{
|
|
iMouse = 0;
|
|
}
|
|
#endif
|
|
{
|
|
hb_retl( iMouse );
|
|
}
|
|
}
|
|
|
|
HB_FUNC( _MSE_SHOWCURS )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 1;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _MSE_MHIDECRS )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 2;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _MSE_GETPOS )
|
|
{
|
|
int iHori;
|
|
int iVert;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 3;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iHori = regs.HB_XREGS.cx;
|
|
iVert = regs.HB_XREGS.dx;
|
|
}
|
|
#else
|
|
{
|
|
iHori = 0;
|
|
iVert = 0;
|
|
}
|
|
#endif
|
|
{
|
|
PHB_ITEM pArray = hb_itemArrayNew( 2 );
|
|
PHB_ITEM pHori = hb_itemPutNI( NULL, iHori );
|
|
PHB_ITEM pVert = hb_itemPutNI( NULL, iVert );
|
|
|
|
hb_itemArrayPut( pArray, 1, pHori );
|
|
hb_itemArrayPut( pArray, 2, pVert );
|
|
|
|
hb_itemReturn( pArray );
|
|
|
|
hb_itemRelease( pArray );
|
|
hb_itemRelease( pHori );
|
|
hb_itemRelease( pVert );
|
|
}
|
|
}
|
|
|
|
HB_FUNC( _M_GETX )
|
|
{
|
|
int iRow;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 3;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iRow = regs.HB_XREGS.dx;
|
|
}
|
|
#else
|
|
{
|
|
iRow = 0;
|
|
}
|
|
#endif
|
|
hb_retni( iRow );
|
|
}
|
|
|
|
HB_FUNC( _M_GETY )
|
|
{
|
|
int iCol;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 3;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
iCol = regs.HB_XREGS.cx;
|
|
}
|
|
#else
|
|
{
|
|
iCol = 0;
|
|
}
|
|
#endif
|
|
hb_retni( iCol );
|
|
}
|
|
|
|
HB_FUNC( _M_MSETPOS )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 4;
|
|
regs.HB_XREGS.cx = hb_parni( 1 );
|
|
regs.HB_XREGS.dx = hb_parni( 2 );
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _M_MSETCOORD )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 4;
|
|
regs.HB_XREGS.cx = hb_parni( 1 );
|
|
regs.HB_XREGS.dx = hb_parni( 2 );
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _M_MXLIMIT )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
int iMaxRow = hb_parni( 2 );
|
|
int iMinRow = hb_parni( 1 );
|
|
|
|
regs.HB_XREGS.ax = 7;
|
|
regs.HB_XREGS.cx = iMinRow;
|
|
regs.HB_XREGS.dx = iMaxRow;
|
|
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
|
|
HB_FUNC( _M_MYLIMIT )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
int iMaxCol = hb_parni( 2 );
|
|
int iMinCol = hb_parni( 1 );
|
|
regs.HB_XREGS.ax = 8;
|
|
|
|
regs.HB_XREGS.cx = iMinCol;
|
|
regs.HB_XREGS.dx = iMaxCol;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _M_MBUTPRS )
|
|
{
|
|
int inX;
|
|
int inY;
|
|
int inButton;
|
|
BOOL lStatus;
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 6;
|
|
regs.HB_XREGS.bx = hb_parni( 1 );
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
|
|
inY = regs.HB_XREGS.cx;
|
|
inX = regs.HB_XREGS.dx;
|
|
inButton = regs.HB_XREGS.bx;
|
|
lStatus = regs.HB_XREGS.ax;
|
|
}
|
|
#else
|
|
{
|
|
inY = 0;
|
|
inX = 0;
|
|
inButton = 0;
|
|
lStatus = 0;
|
|
}
|
|
#endif
|
|
{
|
|
PHB_ITEM pArray = hb_itemArrayNew( 4 );
|
|
PHB_ITEM pY = hb_itemPutNI( NULL, inY );
|
|
PHB_ITEM pX = hb_itemPutNI( NULL, inX );
|
|
PHB_ITEM pButton = hb_itemPutNI( NULL, inButton );
|
|
PHB_ITEM pStatus = hb_itemPutNI( NULL, lStatus );
|
|
|
|
hb_itemArrayPut( pArray, 1, pButton ); /* NOTE: I've changed 1 to 3 */
|
|
hb_itemArrayPut( pArray, 2, pX );
|
|
hb_itemArrayPut( pArray, 3, pY );
|
|
hb_itemArrayPut( pArray, 4, pStatus ); /* NOTE: I've changed 1 to 3 */
|
|
|
|
hb_itemReturn( pArray );
|
|
|
|
hb_itemRelease( pArray );
|
|
hb_itemRelease( pX );
|
|
hb_itemRelease( pY );
|
|
hb_itemRelease( pStatus );
|
|
hb_itemRelease( pButton );
|
|
}
|
|
}
|
|
|
|
HB_FUNC( _M_MBUTREL )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x0A;
|
|
regs.HB_XREGS.bx = hb_parni( 1 );
|
|
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
|
|
hb_reta( 4 );
|
|
hb_storni( regs.HB_XREGS.bx, -1, 1 );
|
|
hb_storni( regs.HB_XREGS.cx, -1, 2 );
|
|
hb_storni( regs.HB_XREGS.dx, -1, 3 );
|
|
hb_storni( regs.HB_XREGS.ax, -1, 4 );
|
|
#else
|
|
hb_reta( 4 );
|
|
hb_storni( 0, -1, 1 );
|
|
hb_storni( 0, -1, 2 );
|
|
hb_storni( 0, -1, 3 );
|
|
hb_storni( 0, -1, 4 );
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _M_MDEFCRS )
|
|
{
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 0x0A;
|
|
regs.HB_XREGS.bx = hb_parni( 1 );
|
|
regs.HB_XREGS.cx = hb_parni( 2 );
|
|
regs.HB_XREGS.dx = hb_parni( 3 );
|
|
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
}
|
|
#endif
|
|
}
|
|
|
|
HB_FUNC( _M_MGETCOORD )
|
|
{
|
|
int inX;
|
|
int inY;
|
|
int inButton;
|
|
|
|
#if defined(HB_OS_DOS)
|
|
{
|
|
union REGS regs;
|
|
regs.HB_XREGS.ax = 3;
|
|
HB_DOS_INT86( 0x33, ®s, ®s );
|
|
|
|
inButton = regs.HB_XREGS.bx;
|
|
inY = regs.HB_XREGS.cx;
|
|
inX = regs.HB_XREGS.dx;
|
|
}
|
|
#else
|
|
{
|
|
inX = 0;
|
|
inY = 0;
|
|
inButton = 0;
|
|
}
|
|
#endif
|
|
{
|
|
PHB_ITEM pArray = hb_itemArrayNew( 3 );
|
|
|
|
PHB_ITEM pnY = hb_itemPutNI( NULL, inY );
|
|
PHB_ITEM pnX = hb_itemPutNI( NULL, inX );
|
|
PHB_ITEM pnButton = hb_itemPutNI( NULL, inButton );
|
|
|
|
hb_itemArrayPut( pArray, 1, pnX );
|
|
hb_itemArrayPut( pArray, 2, pnY );
|
|
hb_itemArrayPut( pArray, 3, pnButton );
|
|
|
|
hb_itemReturn( pArray );
|
|
|
|
hb_itemRelease( pArray );
|
|
hb_itemRelease( pnY );
|
|
hb_itemRelease( pnX );
|
|
hb_itemRelease( pnButton );
|
|
}
|
|
}
|