Visual Servoing Platform  version 3.0.0
vpWin32API.h
1 /****************************************************************************
2  *
3  * This file is part of the ViSP software.
4  * Copyright (C) 2005 - 2015 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * ("GPL") version 2 as published by the Free Software Foundation.
9  * See the file LICENSE.txt at the root directory of this source
10  * distribution for additional information about the GNU GPL.
11  *
12  * For using ViSP with software that can not be combined with the GNU
13  * GPL, please contact Inria about acquiring a ViSP Professional
14  * Edition License.
15  *
16  * See http://visp.inria.fr for more information.
17  *
18  * This software was developed at:
19  * Inria Rennes - Bretagne Atlantique
20  * Campus Universitaire de Beaulieu
21  * 35042 Rennes Cedex
22  * France
23  *
24  * If you have questions regarding the use of this file, please contact
25  * Inria at visp@inria.fr
26  *
27  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29  *
30  * Description:
31  * GDI renderer for windows 32 display
32  *
33  * Authors:
34  * Filip Novotny
35  *
36  *****************************************************************************/
37 
38 #ifndef vpWin32API_HH
39 #define vpWin32API_HH
40 
41 #include <visp3/core/vpConfig.h>
42 
43 #if ( defined(VISP_HAVE_GDI) || defined(VISP_HAVE_D3D9) )
44 
45 #include <windows.h>
46 #include <string>
47 
48 DWORD vpProcessErrors(const std::string &api_name);
49 void vpSelectObject(HWND hWnd, HDC hDC, HDC hDCMem, HGDIOBJ h);
50 void vpPrepareImageWithPen(CRITICAL_SECTION* CriticalSection, HWND hWnd,HBITMAP bmp,COLORREF color,unsigned int thickness, int style, HDC& hDCScreen,HDC& hDCMem,HPEN& hPen);
51 void vpEnterCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
52 void vpLeaveCriticalSection(LPCRITICAL_SECTION lpCriticalSection);
53 BOOL vpReleaseSemaphore(HANDLE hSemaphore,LONG IReleaseCount,LPLONG lpPreviousCount);
54 BOOL vpLineTo(HDC hdc, int nXEnd, int nYEnd);
55 BOOL vpMoveToEx(HDC hdc, int X, int Y, LPPOINT lpPoint);
56 BOOL vpBitBlt(HDC hdcDest, int nXDest, int nYDest, int nWidth, int nHeight, HDC hdcSrc, int nXSrc, int nYSrc, DWORD dwRop);
57 BOOL vpInvalidateRect(HWND hWnd, const RECT *lpRect, BOOL bErase);
58 COLORREF vpSetPixel(HDC hdc, int X, int Y, COLORREF crColor);
59 HBITMAP vpCreateBitmap(int nWidth, int nHeight, UINT cPlanes, UINT cBitsPerPel, const VOID *lpvBits);
60 #endif
61 #endif