winspool.drv: Convert string table resources to po files.
[wine.git] / dlls / gdi32 / icm.c
blobafbc0eee27cc752c8c89d03e6ed8022b60c24f75
1 /*
2 * Image Color Management
4 * Copyright 2004 Marcus Meissner
5 * Copyright 2008 Hans Leidekker
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
22 #include "config.h"
24 #include <stdarg.h>
25 #include <string.h>
27 #include "windef.h"
28 #include "winbase.h"
29 #include "wingdi.h"
30 #include "winnls.h"
31 #include "winreg.h"
33 #include "gdi_private.h"
35 #include "wine/debug.h"
36 #include "wine/unicode.h"
38 WINE_DEFAULT_DEBUG_CHANNEL(icm);
41 struct enum_profiles
43 BOOL unicode;
44 union
46 ICMENUMPROCA funcA;
47 ICMENUMPROCW funcW;
48 } callback;
49 LPARAM data;
52 INT CALLBACK enum_profiles_callback( LPWSTR filename, LPARAM lparam )
54 int len, ret = -1;
55 struct enum_profiles *ep = (struct enum_profiles *)lparam;
56 char *filenameA;
58 if (ep->unicode)
59 return ep->callback.funcW( filename, ep->data );
61 len = WideCharToMultiByte( CP_ACP, 0, filename, -1, NULL, 0, NULL, NULL );
62 filenameA = HeapAlloc( GetProcessHeap(), 0, len );
63 if (filenameA)
65 WideCharToMultiByte( CP_ACP, 0, filename, -1, filenameA, len, NULL, NULL );
66 ret = ep->callback.funcA( filenameA, ep->data );
67 HeapFree( GetProcessHeap(), 0, filenameA );
69 return ret;
72 /***********************************************************************
73 * EnumICMProfilesA (GDI32.@)
75 INT WINAPI EnumICMProfilesA(HDC hdc, ICMENUMPROCA func, LPARAM lparam)
77 DC *dc;
78 INT ret = -1;
80 TRACE("%p, %p, 0x%08lx\n", hdc, func, lparam);
82 if (!func) return -1;
83 if ((dc = get_dc_ptr(hdc)))
85 if (dc->funcs->pEnumICMProfiles)
87 struct enum_profiles ep;
89 ep.unicode = FALSE;
90 ep.callback.funcA = func;
91 ep.data = lparam;
92 ret = dc->funcs->pEnumICMProfiles(dc->physDev, enum_profiles_callback, (LPARAM)&ep);
94 release_dc_ptr(dc);
96 return ret;
99 /***********************************************************************
100 * EnumICMProfilesW (GDI32.@)
102 INT WINAPI EnumICMProfilesW(HDC hdc, ICMENUMPROCW func, LPARAM lparam)
104 DC *dc;
105 INT ret = -1;
107 TRACE("%p, %p, 0x%08lx\n", hdc, func, lparam);
109 if (!func) return -1;
110 if ((dc = get_dc_ptr(hdc)))
112 if (dc->funcs->pEnumICMProfiles)
114 struct enum_profiles ep;
116 ep.unicode = TRUE;
117 ep.callback.funcW = func;
118 ep.data = lparam;
119 ret = dc->funcs->pEnumICMProfiles(dc->physDev, enum_profiles_callback, (LPARAM)&ep);
121 release_dc_ptr(dc);
123 return ret;
126 /**********************************************************************
127 * GetICMProfileA (GDI32.@)
129 * Returns the filename of the specified device context's color
130 * management profile, even if color management is not enabled
131 * for that DC.
133 * RETURNS
134 * TRUE if filename is copied successfully.
135 * FALSE if the buffer length pointed to by size is too small.
137 * FIXME
138 * How does Windows assign these? Some registry key?
140 BOOL WINAPI GetICMProfileA(HDC hdc, LPDWORD size, LPSTR filename)
142 WCHAR filenameW[MAX_PATH];
143 DWORD buflen = MAX_PATH;
144 BOOL ret = FALSE;
146 TRACE("%p, %p, %p\n", hdc, size, filename);
148 if (!hdc || !size || !filename) return FALSE;
150 if (GetICMProfileW(hdc, &buflen, filenameW))
152 int len = WideCharToMultiByte(CP_ACP, 0, filenameW, -1, NULL, 0, NULL, NULL);
153 if (*size >= len)
155 WideCharToMultiByte(CP_ACP, 0, filenameW, -1, filename, *size, NULL, NULL);
156 ret = TRUE;
158 else SetLastError(ERROR_INSUFFICIENT_BUFFER);
159 *size = len;
161 return ret;
164 /**********************************************************************
165 * GetICMProfileW (GDI32.@)
167 BOOL WINAPI GetICMProfileW(HDC hdc, LPDWORD size, LPWSTR filename)
169 BOOL ret = FALSE;
170 DC *dc = get_dc_ptr(hdc);
172 TRACE("%p, %p, %p\n", hdc, size, filename);
174 if (dc)
176 if (dc->funcs->pGetICMProfile)
177 ret = dc->funcs->pGetICMProfile(dc->physDev, size, filename);
178 release_dc_ptr(dc);
180 return ret;
183 /**********************************************************************
184 * GetLogColorSpaceA (GDI32.@)
186 BOOL WINAPI GetLogColorSpaceA(HCOLORSPACE colorspace, LPLOGCOLORSPACEA buffer, DWORD size)
188 FIXME("%p %p 0x%08x stub\n", colorspace, buffer, size);
189 return FALSE;
192 /**********************************************************************
193 * GetLogColorSpaceW (GDI32.@)
195 BOOL WINAPI GetLogColorSpaceW(HCOLORSPACE colorspace, LPLOGCOLORSPACEW buffer, DWORD size)
197 FIXME("%p %p 0x%08x stub\n", colorspace, buffer, size);
198 return FALSE;
201 /**********************************************************************
202 * SetICMProfileA (GDI32.@)
204 BOOL WINAPI SetICMProfileA(HDC hdc, LPSTR filename)
206 FIXME("%p %s stub\n", hdc, debugstr_a(filename));
208 if (!filename)
210 SetLastError( ERROR_INVALID_PARAMETER );
211 return FALSE;
213 if (!hdc)
215 SetLastError( ERROR_INVALID_HANDLE );
216 return FALSE;
218 return TRUE;
221 /**********************************************************************
222 * SetICMProfileW (GDI32.@)
224 BOOL WINAPI SetICMProfileW(HDC hdc, LPWSTR filename)
226 FIXME("%p %s stub\n", hdc, debugstr_w(filename));
228 if (!filename)
230 SetLastError( ERROR_INVALID_PARAMETER );
231 return FALSE;
233 if (!hdc)
235 SetLastError( ERROR_INVALID_HANDLE );
236 return FALSE;
238 return TRUE;
241 /**********************************************************************
242 * UpdateICMRegKeyA (GDI32.@)
244 BOOL WINAPI UpdateICMRegKeyA(DWORD reserved, LPSTR cmid, LPSTR filename, UINT command)
246 FIXME("0x%08x, %s, %s, 0x%08x stub\n", reserved, debugstr_a(cmid), debugstr_a(filename), command);
247 return TRUE;
250 /**********************************************************************
251 * UpdateICMRegKeyW (GDI32.@)
253 BOOL WINAPI UpdateICMRegKeyW(DWORD reserved, LPWSTR cmid, LPWSTR filename, UINT command)
255 FIXME("0x%08x, %s, %s, 0x%08x stub\n", reserved, debugstr_w(cmid), debugstr_w(filename), command);
256 return TRUE;