2011-07-01 00:17:55 +04:00
|
|
|
/**
|
2012-10-09 07:02:04 +04:00
|
|
|
* FreeRDP: A Remote Desktop Protocol Implementation
|
2011-07-01 00:17:55 +04:00
|
|
|
* GDI Pen Functions
|
|
|
|
*
|
|
|
|
* Copyright 2010-2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* GDI Pen Functions: http://msdn.microsoft.com/en-us/library/dd162790 */
|
|
|
|
|
2012-08-15 01:09:01 +04:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2011-07-01 00:17:55 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
2011-08-31 12:35:50 +04:00
|
|
|
#include <freerdp/api.h>
|
2011-07-01 00:17:55 +04:00
|
|
|
#include <freerdp/freerdp.h>
|
2011-08-15 22:33:04 +04:00
|
|
|
#include <freerdp/gdi/gdi.h>
|
2012-05-07 17:44:37 +04:00
|
|
|
#include <freerdp/utils/memory.h>
|
2011-07-01 00:17:55 +04:00
|
|
|
|
2011-08-22 21:08:01 +04:00
|
|
|
#include <freerdp/gdi/pen.h>
|
2011-07-01 00:17:55 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new pen.\n
|
|
|
|
* @msdn{dd183509}
|
|
|
|
* @param fnPenStyle pen style
|
|
|
|
* @param nWidth pen width
|
|
|
|
* @param crColor pen color
|
|
|
|
* @return new pen
|
|
|
|
*/
|
|
|
|
|
|
|
|
HGDI_PEN gdi_CreatePen(int fnPenStyle, int nWidth, int crColor)
|
|
|
|
{
|
2012-10-09 07:21:26 +04:00
|
|
|
HGDI_PEN hPen = (HGDI_PEN) malloc(sizeof(GDI_PEN));
|
2011-07-01 00:17:55 +04:00
|
|
|
hPen->objectType = GDIOBJECT_PEN;
|
|
|
|
hPen->style = fnPenStyle;
|
|
|
|
hPen->color = crColor;
|
|
|
|
hPen->width = nWidth;
|
|
|
|
return hPen;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
INLINE BYTE gdi_GetPenColor_8bpp(HGDI_PEN pen)
|
2011-07-01 00:17:55 +04:00
|
|
|
{
|
|
|
|
/* TODO: implement conversion using palette */
|
|
|
|
return 0xFF;
|
|
|
|
}
|
|
|
|
|
2012-10-09 11:01:37 +04:00
|
|
|
INLINE UINT16 gdi_GetPenColor_16bpp(HGDI_PEN pen)
|
2011-07-01 00:17:55 +04:00
|
|
|
{
|
2012-10-09 11:01:37 +04:00
|
|
|
UINT16 p;
|
2011-07-01 00:17:55 +04:00
|
|
|
int r, g, b;
|
|
|
|
GetRGB32(r, g, b, pen->color);
|
|
|
|
RGB_888_565(r, g, b);
|
|
|
|
p = RGB16(r, g, b);
|
|
|
|
return p;
|
|
|
|
}
|
|
|
|
|
2011-08-31 12:35:50 +04:00
|
|
|
INLINE uint32 gdi_GetPenColor_32bpp(HGDI_PEN pen)
|
2011-07-01 00:17:55 +04:00
|
|
|
{
|
|
|
|
return pen->color;
|
|
|
|
}
|