* contrib/hbwin/wapi_wingdi.c
* contrib/hbwin/wapi_winuser.c
* contrib/hbwin/hbwapi.h
+ Added hbwapi_stor_*() functions to store Windows structures
RECT, POINT and DEVMODE. Latter supports hash only (due
to large number of structure members), other two supports
both array and hash.
Please review my code.
+ WAPI_MOVETOEX() now uses hbwapi_stor_POINT().
! WAPI_DRAWTEXT() fixed to return RECT (using hbwapi_stor_RECT()).
* contrib/hbwin/legacy.prg
* contrib/xhb/xhw32prn.prg
* Moved Win32Bmp compatibility class from hbwin to xhb lib.
! Deleted Win32Prn compatibility clsss from hbwin, as it's
now implemented in xhb in a better way.
* harbour-win-spec
* harbour-wce-spec
* harbour.spec
* include/hbver.h
* config/global.mk
+ Changed to new major version number:
2.1.0dev (from 2.0.1dev)
This gives way for 2.0.x branch to take
the 2.0.1dev version number.
405 lines
12 KiB
C
405 lines
12 KiB
C
/*
|
|
* $Id$
|
|
*/
|
|
|
|
/*
|
|
* Harbour Project source code:
|
|
* Windows API functions (winuser)
|
|
*
|
|
* Copyright 2009 Pritpal Bedi <pritpal@vouchcac.com>
|
|
* Copyright 2009 Viktor Szakats (harbour.01 syenar.hu)
|
|
* 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 xHarbour Project gives permission for
|
|
* additional uses of the text contained in its release of xHarbour.
|
|
*
|
|
* The exception is that, if you link the xHarbour 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 xHarbour 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 xHarbour
|
|
* Project under the name xHarbour. If you copy code from other
|
|
* xHarbour Project or Free Software Foundation releases into a copy of
|
|
* xHarbour, 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 xHarbour, it is your choice
|
|
* whether to permit this exception to apply to your modifications.
|
|
* If you do not wish that, delete this exception notice.
|
|
*
|
|
*/
|
|
|
|
#define HB_OS_WIN_USED
|
|
|
|
#include "hbapi.h"
|
|
#include "hbapierr.h"
|
|
#include "hbwinuni.h"
|
|
#include "hbwapi.h"
|
|
|
|
HB_FUNC( WAPI_GETSYSTEMMETRICS )
|
|
{
|
|
int iResult = GetSystemMetrics( hb_parni( 1 ) );
|
|
hbwapi_SetLastError( GetLastError() );
|
|
hb_retni( iResult );
|
|
}
|
|
|
|
HB_FUNC( WAPI_GETKEYSTATE )
|
|
{
|
|
hb_retni( GetKeyState( hb_parni( 1 ) ) );
|
|
}
|
|
|
|
HB_FUNC( WAPI_GETDESKTOPWINDOW )
|
|
{
|
|
hb_retptr( GetDesktopWindow() );
|
|
}
|
|
|
|
HB_FUNC( WAPI_MESSAGEBOX )
|
|
{
|
|
void * hStr1;
|
|
void * hStr2;
|
|
int iResult = MessageBox( ( HWND ) hb_parptr( 1 ), HB_PARSTR( 2, &hStr1, NULL ), HB_PARSTR( 3, &hStr2, NULL ), hb_parni( 4 ) );
|
|
hbwapi_SetLastError( GetLastError() );
|
|
hb_retni( iResult );
|
|
hb_strfree( hStr1 );
|
|
hb_strfree( hStr2 );
|
|
}
|
|
|
|
HB_FUNC( WAPI_CREATEWINDOWEX )
|
|
{
|
|
void * hClassName;
|
|
void * hWindowName;
|
|
|
|
HWND hResult = CreateWindowEx(
|
|
( DWORD ) hb_parnl( 1 ) /* dwExStyle */,
|
|
HB_PARSTRDEF( 2, &hClassName, NULL ),
|
|
HB_PARSTRDEF( 3, &hWindowName, NULL ),
|
|
HB_ISNUM( 4 ) ? ( DWORD ) hb_parnl( 4 ) : WS_OVERLAPPEDWINDOW /* dwStyle */,
|
|
HB_ISNUM( 5 ) ? ( int ) hb_parni( 5 ) : ( int ) CW_USEDEFAULT /* x */,
|
|
HB_ISNUM( 6 ) ? ( int ) hb_parni( 6 ) : ( int ) CW_USEDEFAULT /* y */,
|
|
( int ) hb_parni( 7 ) /* nWidth */,
|
|
( int ) hb_parni( 8 ) /* nHeight */,
|
|
HB_ISPOINTER( 9 ) ? ( HWND ) hb_parptr( 9 ) : HWND_DESKTOP /* hWndParent */,
|
|
( HMENU ) hb_parptr( 10 ) /* hMenu */,
|
|
( HINSTANCE ) hb_parptr( 11 ) /* hInstance */,
|
|
( LPVOID ) hb_parptr( 12 ) /* lpParam */ );
|
|
|
|
hbwapi_SetLastError( GetLastError() );
|
|
hb_retptr( hResult );
|
|
|
|
hb_strfree( hClassName );
|
|
hb_strfree( hWindowName );
|
|
}
|
|
|
|
HB_FUNC( WAPI_DESTROYWINDOW )
|
|
{
|
|
BOOL bResult = DestroyWindow( ( HWND ) hb_parptr( 1 ) );
|
|
hbwapi_SetLastError( GetLastError() );
|
|
hb_retl( bResult );
|
|
}
|
|
|
|
HB_FUNC( WAPI_DRAWTEXT )
|
|
{
|
|
HDC hDC = hbwapi_par_HDC( 1 );
|
|
RECT rect;
|
|
|
|
if( hDC && hbwapi_par_RECT( &rect, 3, HB_TRUE ) )
|
|
{
|
|
void * hText;
|
|
HB_SIZE nTextLen;
|
|
LPCTSTR lpText = HB_PARSTR( 2, &hText, &nTextLen );
|
|
|
|
hb_retni( DrawText( hDC,
|
|
lpText,
|
|
nTextLen,
|
|
&rect,
|
|
( UINT ) hb_parni( 4 ) ) );
|
|
|
|
hb_strfree( hText );
|
|
|
|
hbwapi_stor_RECT( &rect, 3 );
|
|
}
|
|
else
|
|
hb_errRT_BASE( EG_ARG, 2010, NULL, HB_ERR_FUNCNAME, HB_ERR_ARGS_BASEPARAMS );
|
|
}
|
|
|
|
/*-----------------------------------------------------------------------/
|
|
BEGIN SCROLLBAR MANIPULATION WINAPI FUNCTIONS
|
|
/-----------------------------------------------------------------------*/
|
|
/*
|
|
BOOL EnableScrollBar( HWND hWnd, UINT wSBflags, UINT wArrows );
|
|
*/
|
|
HB_FUNC( WAPI_ENABLESCROLLBAR )
|
|
{
|
|
BOOL bResult;
|
|
DWORD dwLastError;
|
|
|
|
#if defined( HB_OS_WIN_CE )
|
|
bResult = FALSE;
|
|
dwLastError = ERROR_INVALID_FUNCTION;
|
|
#else
|
|
bResult = EnableScrollBar( wapi_par_HWND( 1 ),
|
|
wapi_par_UINT( 2 ),
|
|
wapi_par_UINT( 3 ) );
|
|
dwLastError = GetLastError();
|
|
#endif
|
|
|
|
hbwapi_SetLastError( dwLastError );
|
|
wapi_ret_L( bResult );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
BOOL GetScrollBarInfo( HWND hwnd, LONG idObject, PSCROLLBARINFO psbi );
|
|
$$
|
|
Local strSCROLLBARINFO IS SCROLLBARINFO
|
|
Local cSCROLLBARINFO = strSCROLLBARINFO:value
|
|
Local nCtrlType = OBJID_CLIENT | OBJID_HSCROLL | OBJID_VSCROLL
|
|
|
|
lSuccess := WAPI_GetScrollInfo( hWnd, nCtrType, @cSCROLLINFO )
|
|
|
|
strSCROLLBARINFO:buffer( cSCROLLBARINFO )
|
|
? strSCROLLINFO:
|
|
$$
|
|
*/
|
|
#if 0
|
|
HB_FUNC( WAPI_GETSCROLLBARINFO )
|
|
{
|
|
PSCROLLBARINFO sbi = ( PSCROLLBARINFO ) wapi_par_STRUCT( 3 );
|
|
BOOL bSuccess;
|
|
|
|
memset( &sbi, 0, sizeof( SCROLLBARINFO ) );
|
|
sbi->cbSize = sizeof( SCROLLBARINFO );
|
|
|
|
bSuccess = GetScrollBarInfo( wapi_par_HWND( 1 ),
|
|
wapi_par_LONG( 2 ),
|
|
sbi );
|
|
|
|
hbwapi_SetLastError( GetLastError() );
|
|
|
|
if( bSuccess )
|
|
hb_storclen( ( char * ) &sbi, sizeof( SCROLLBARINFO ), 3 );
|
|
|
|
wapi_ret_L( bSuccess );
|
|
}
|
|
#endif
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
BOOL GetScrollInfo( HWND hwnd, int fnBar, LPSCROLLINFO lpsi );
|
|
*/
|
|
HB_FUNC( WAPI_GETSCROLLINFO )
|
|
{
|
|
LPSCROLLINFO si = ( LPSCROLLINFO ) wapi_par_STRUCT( 3 );
|
|
BOOL bSuccess;
|
|
|
|
bSuccess = GetScrollInfo( wapi_par_HWND( 1 ),
|
|
wapi_par_INT( 2 ),
|
|
si );
|
|
|
|
hbwapi_SetLastError( GetLastError() );
|
|
|
|
if( bSuccess )
|
|
hb_storclen( ( char * ) &si, 3, sizeof( SCROLLINFO ) );
|
|
|
|
wapi_ret_L( bSuccess );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
int GetScrollPos( HWND hWnd, int nBar );
|
|
*/
|
|
HB_FUNC( WAPI_GETSCROLLPOS )
|
|
{
|
|
int iResult;
|
|
DWORD dwLastError;
|
|
|
|
#if defined( HB_OS_WIN_CE )
|
|
iResult = 0;
|
|
dwLastError = ERROR_INVALID_FUNCTION;
|
|
#else
|
|
iResult = GetScrollPos( wapi_par_HWND( 1 ),
|
|
wapi_par_INT( 2 ) );
|
|
dwLastError = GetLastError();
|
|
#endif
|
|
|
|
hbwapi_SetLastError( dwLastError );
|
|
wapi_ret_NI( iResult );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
BOOL GetScrollRange( HWND hWnd, int nBar, LPINT lpMinPos, LPINT lpMaxPos );
|
|
*/
|
|
HB_FUNC( WAPI_GETSCROLLRANGE )
|
|
{
|
|
BOOL bSuccess;
|
|
DWORD dwLastError;
|
|
|
|
#if defined( HB_OS_WIN_CE )
|
|
bSuccess = FALSE;
|
|
dwLastError = ERROR_INVALID_FUNCTION;
|
|
#else
|
|
{
|
|
int minPos, maxPos;
|
|
|
|
bSuccess = GetScrollRange( wapi_par_HWND( 1 ),
|
|
wapi_par_INT( 2 ),
|
|
&minPos,
|
|
&maxPos );
|
|
|
|
dwLastError = GetLastError();
|
|
|
|
hb_storni( minPos, 3 );
|
|
hb_storni( maxPos, 4 );
|
|
}
|
|
#endif
|
|
|
|
hbwapi_SetLastError( dwLastError );
|
|
wapi_ret_L( bSuccess );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
#if 0
|
|
/*
|
|
BOOL ScrollDC( HDC hDC, int dx, int dy, const RECT *lprcScroll, const RECT *lprcClip,
|
|
HRGN hrgnUpdate, LPRECT lprcUpdate );
|
|
*/
|
|
HB_FUNC( WAPI_SCROLLDC )
|
|
{
|
|
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
BOOL ScrollWindow( HWND hWnd, int XAmount, int YAmount, const RECT *lpRect,
|
|
const RECT *lpClipRect );
|
|
*/
|
|
HB_FUNC( WAPI_SCROLLWINDOW )
|
|
{
|
|
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
int ScrollWindowEx( HWND hWnd, int dx, int dy, const RECT *prcScroll, const RECT *prcClip,
|
|
HRGN hrgnUpdate, LPRECT prcUpdate, UINT flags );
|
|
*/
|
|
HB_FUNC( WAPI_SCROLLWINDOWEX )
|
|
{
|
|
|
|
}
|
|
#endif
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
int SetScrollInfo( HWND hwnd, int fnBar, LPCSCROLLINFO lpsi, BOOL fRedraw );
|
|
*/
|
|
HB_FUNC( WAPI_SETSCROLLINFO )
|
|
{
|
|
LPSCROLLINFO si = ( LPSCROLLINFO ) wapi_par_STRUCT( 3 );
|
|
|
|
wapi_ret_NI( SetScrollInfo( wapi_par_HWND( 1 ),
|
|
wapi_par_INT( 2 ),
|
|
si,
|
|
HB_ISLOG( 4 ) ? wapi_par_BOOL( 4 ) : TRUE ) );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
int SetScrollPos( HWND hWnd, int nBar, int nPos, BOOL bRedraw );
|
|
*/
|
|
HB_FUNC( WAPI_SETSCROLLPOS )
|
|
{
|
|
int iResult = SetScrollPos( wapi_par_HWND( 1 ),
|
|
wapi_par_INT( 2 ),
|
|
wapi_par_INT( 3 ),
|
|
wapi_par_BOOL( 4 ) );
|
|
hbwapi_SetLastError( GetLastError() );
|
|
wapi_ret_NI( iResult );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
BOOL SetScrollRange( HWND hWnd, int nBar, int nMinPos, int nMaxPos, BOOL bRedraw );
|
|
*/
|
|
HB_FUNC( WAPI_SETSCROLLRANGE )
|
|
{
|
|
BOOL bResult = SetScrollRange( wapi_par_HWND( 1 ),
|
|
wapi_par_INT( 2 ),
|
|
wapi_par_INT( 3 ),
|
|
wapi_par_INT( 4 ),
|
|
HB_ISLOG( 5 ) ? wapi_par_BOOL( 5 ) : TRUE );
|
|
hbwapi_SetLastError( GetLastError() );
|
|
wapi_ret_L( bResult );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
BOOL ShowScrollBar( HWND hWnd, int wBar, BOOL bShow );
|
|
*/
|
|
HB_FUNC( WAPI_SHOWSCROLLBAR )
|
|
{
|
|
BOOL bResult;
|
|
DWORD dwLastError;
|
|
|
|
#if defined( HB_OS_WIN_CE )
|
|
bResult = FALSE;
|
|
dwLastError = ERROR_INVALID_FUNCTION;
|
|
#else
|
|
bResult = ShowScrollBar( wapi_par_HWND( 1 ),
|
|
wapi_par_INT( 2 ),
|
|
wapi_par_BOOL( 3 ) );
|
|
dwLastError = GetLastError();
|
|
#endif
|
|
|
|
hbwapi_SetLastError( dwLastError );
|
|
wapi_ret_L( bResult );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
/*
|
|
HWND SetFocus( HWND hWnd );
|
|
*/
|
|
HB_FUNC( WAPI_SETFOCUS )
|
|
{
|
|
HWND hResult = SetFocus( wapi_par_HWND( 1 ) );
|
|
hbwapi_SetLastError( GetLastError() );
|
|
wapi_ret_HANDLE( hResult );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
#if 0
|
|
HB_FUNC( WAPI_LOADBITMAP )
|
|
{
|
|
if( HB_ISNUM( 2 ) )
|
|
hb_retptr( LoadBitmap( wapi_par_HINSTANCE( 1 ), ( LPTSTR ) MAKEINTRESOURCE( wapi_par_INT( 2 ) ) ) );
|
|
else
|
|
{
|
|
void * hBmp;
|
|
hb_retptr( LoadBitmap( wapi_par_HINSTANCE( 1 ), HB_PARSTRDEF( 2, &hBmp, NULL ) ) );
|
|
hb_strfree( hBmp );
|
|
}
|
|
}
|
|
#endif
|
|
/*----------------------------------------------------------------------*/
|
|
HB_FUNC( WAPI_GETACTIVEWINDOW )
|
|
{
|
|
hb_retptr( GetActiveWindow() );
|
|
}
|
|
/*----------------------------------------------------------------------*/
|
|
HB_FUNC( WAPI_SETACTIVEWINDOW )
|
|
{
|
|
HWND hResult = SetActiveWindow( wapi_par_HWND( 1 ) );
|
|
hbwapi_SetLastError( GetLastError() );
|
|
hb_retptr( hResult );
|
|
}
|