]>
Commit | Line | Data |
---|---|---|
ff910433 | 1 | ///////////////////////////////////////////////////////////////////////////// |
389076f1 | 2 | // Name: src/gtk/gnome/gprint.cpp |
f85b45fb RR |
3 | // Author: Robert Roebling |
4 | // Purpose: Implement GNOME printing support | |
5 | // Created: 09/20/04 | |
389076f1 | 6 | // RCS-ID: $Id$ |
f85b45fb RR |
7 | // Copyright: Robert Roebling |
8 | // Licence: wxWindows Licence | |
ff910433 RR |
9 | ///////////////////////////////////////////////////////////////////////////// |
10 | ||
ff910433 RR |
11 | // For compilers that support precompilation, includes "wx/wx.h". |
12 | #include "wx/wxprec.h" | |
13 | ||
14 | #ifdef __BORLANDC__ | |
15 | #pragma hdrstop | |
16 | #endif | |
17 | ||
7c72311f RR |
18 | #include "wx/gtk/gnome/gprint.h" |
19 | ||
20 | #if wxUSE_LIBGNOMEPRINT | |
21 | ||
e4db172a WS |
22 | #ifndef WX_PRECOMP |
23 | #include "wx/log.h" | |
f38924e8 | 24 | #include "wx/dcmemory.h" |
923d28da | 25 | #include "wx/icon.h" |
18680f86 | 26 | #include "wx/math.h" |
bceff574 | 27 | #include "wx/image.h" |
02761f6c | 28 | #include "wx/module.h" |
e4db172a WS |
29 | #endif |
30 | ||
ff910433 | 31 | #include "wx/fontutil.h" |
ff910433 | 32 | #include "wx/gtk/private.h" |
c6efd6e0 | 33 | #include "wx/dynlib.h" |
459dbfc0 | 34 | #include "wx/paper.h" |
ff910433 RR |
35 | |
36 | #include <libgnomeprint/gnome-print.h> | |
37 | #include <libgnomeprint/gnome-print-pango.h> | |
06cfd325 | 38 | #include <libgnomeprint/gnome-print-config.h> |
ff910433 | 39 | #include <libgnomeprintui/gnome-print-dialog.h> |
0be7709e | 40 | #include <libgnomeprintui/gnome-print-job-preview.h> |
08680429 | 41 | #include <libgnomeprintui/gnome-print-paper-selector.h> |
ff910433 | 42 | |
2f41910a | 43 | static const double RAD2DEG = 180.0 / M_PI; |
d6c6acd6 RR |
44 | |
45 | #include "wx/html/forcelnk.h" | |
46 | FORCE_LINK_ME(gnome_print) | |
47 | ||
c6efd6e0 RR |
48 | //---------------------------------------------------------------------------- |
49 | // wxGnomePrintLibrary | |
50 | //---------------------------------------------------------------------------- | |
51 | ||
52 | #define wxDL_METHOD_DEFINE( rettype, name, args, shortargs, defret ) \ | |
53 | typedef rettype (* name ## Type) args ; \ | |
54 | name ## Type pfn_ ## name; \ | |
55 | rettype name args \ | |
56 | { if (m_ok) return pfn_ ## name shortargs ; return defret; } | |
389076f1 | 57 | |
c6efd6e0 RR |
58 | #define wxDL_METHOD_LOAD( lib, name, success ) \ |
59 | pfn_ ## name = (name ## Type) lib->GetSymbol( wxT(#name), &success ); \ | |
60 | if (!success) return; | |
61 | ||
62 | class wxGnomePrintLibrary | |
63 | { | |
64 | public: | |
65 | wxGnomePrintLibrary(); | |
66 | ~wxGnomePrintLibrary(); | |
389076f1 | 67 | |
c6efd6e0 RR |
68 | bool IsOk(); |
69 | void InitializeMethods(); | |
389076f1 | 70 | |
c6efd6e0 RR |
71 | private: |
72 | bool m_ok; | |
73 | wxDynamicLibrary *m_gnome_print_lib; | |
59c73be8 | 74 | wxDynamicLibrary *m_gnome_printui_lib; |
c6efd6e0 RR |
75 | |
76 | public: | |
389076f1 | 77 | wxDL_METHOD_DEFINE( gint, gnome_print_newpath, |
c6efd6e0 | 78 | (GnomePrintContext *pc), (pc), 0 ) |
389076f1 | 79 | wxDL_METHOD_DEFINE( gint, gnome_print_moveto, |
c6efd6e0 | 80 | (GnomePrintContext *pc, gdouble x, gdouble y), (pc, x, y), 0 ) |
389076f1 | 81 | wxDL_METHOD_DEFINE( gint, gnome_print_lineto, |
c6efd6e0 | 82 | (GnomePrintContext *pc, gdouble x, gdouble y), (pc, x, y), 0 ) |
389076f1 | 83 | wxDL_METHOD_DEFINE( gint, gnome_print_arcto, |
16744532 | 84 | (GnomePrintContext *pc, gdouble x, gdouble y, gdouble radius, gdouble angle1, gdouble angle2, gint direction ), (pc, x, y, radius, angle1, angle2, direction), 0 ) |
389076f1 | 85 | wxDL_METHOD_DEFINE( gint, gnome_print_curveto, |
c6efd6e0 | 86 | (GnomePrintContext *pc, gdouble x1, gdouble y1, gdouble x2, gdouble y2, gdouble x3, gdouble y3), (pc, x1, y1, x2, y2, x3, y3), 0 ) |
389076f1 | 87 | wxDL_METHOD_DEFINE( gint, gnome_print_closepath, |
c6efd6e0 | 88 | (GnomePrintContext *pc), (pc), 0 ) |
389076f1 | 89 | wxDL_METHOD_DEFINE( gint, gnome_print_stroke, |
c6efd6e0 | 90 | (GnomePrintContext *pc), (pc), 0 ) |
389076f1 | 91 | wxDL_METHOD_DEFINE( gint, gnome_print_fill, |
c6efd6e0 | 92 | (GnomePrintContext *pc), (pc), 0 ) |
389076f1 | 93 | wxDL_METHOD_DEFINE( gint, gnome_print_setrgbcolor, |
c6efd6e0 | 94 | (GnomePrintContext *pc, gdouble r, gdouble g, gdouble b), (pc, r, g, b), 0 ) |
389076f1 | 95 | wxDL_METHOD_DEFINE( gint, gnome_print_setlinewidth, |
c6efd6e0 | 96 | (GnomePrintContext *pc, gdouble width), (pc, width), 0 ) |
59c73be8 RR |
97 | wxDL_METHOD_DEFINE( gint, gnome_print_setdash, |
98 | (GnomePrintContext *pc, gint n_values, const gdouble *values, gdouble offset), (pc, n_values, values, offset), 0 ) | |
99 | ||
100 | wxDL_METHOD_DEFINE( gint, gnome_print_rgbimage, | |
101 | (GnomePrintContext *pc, const guchar *data, gint width, gint height, gint rowstride), (pc, data, width, height, rowstride ), 0 ) | |
102 | wxDL_METHOD_DEFINE( gint, gnome_print_rgbaimage, | |
103 | (GnomePrintContext *pc, const guchar *data, gint width, gint height, gint rowstride), (pc, data, width, height, rowstride ), 0 ) | |
389076f1 | 104 | |
59c73be8 RR |
105 | wxDL_METHOD_DEFINE( gint, gnome_print_concat, |
106 | (GnomePrintContext *pc, const gdouble *matrix), (pc, matrix), 0 ) | |
107 | wxDL_METHOD_DEFINE( gint, gnome_print_scale, | |
108 | (GnomePrintContext *pc, gdouble sx, gdouble sy), (pc, sx, sy), 0 ) | |
109 | wxDL_METHOD_DEFINE( gint, gnome_print_rotate, | |
110 | (GnomePrintContext *pc, gdouble theta), (pc, theta), 0 ) | |
16744532 RR |
111 | wxDL_METHOD_DEFINE( gint, gnome_print_translate, |
112 | (GnomePrintContext *pc, gdouble x, gdouble y), (pc, x, y), 0 ) | |
59c73be8 RR |
113 | |
114 | wxDL_METHOD_DEFINE( gint, gnome_print_gsave, | |
115 | (GnomePrintContext *pc), (pc), 0 ) | |
116 | wxDL_METHOD_DEFINE( gint, gnome_print_grestore, | |
117 | (GnomePrintContext *pc), (pc), 0 ) | |
389076f1 | 118 | |
59c73be8 RR |
119 | wxDL_METHOD_DEFINE( gint, gnome_print_beginpage, |
120 | (GnomePrintContext *pc, const guchar* name), (pc, name), 0 ) | |
121 | wxDL_METHOD_DEFINE( gint, gnome_print_showpage, | |
122 | (GnomePrintContext *pc), (pc), 0 ) | |
123 | wxDL_METHOD_DEFINE( gint, gnome_print_end_doc, | |
124 | (GnomePrintContext *pc), (pc), 0 ) | |
389076f1 | 125 | |
59c73be8 RR |
126 | wxDL_METHOD_DEFINE( PangoLayout*, gnome_print_pango_create_layout, |
127 | (GnomePrintContext *gpc), (gpc), NULL ) | |
128 | wxDL_METHOD_DEFINE( void, gnome_print_pango_layout, | |
129 | (GnomePrintContext *gpc, PangoLayout *layout), (gpc, layout), /**/ ) | |
389076f1 | 130 | |
59c73be8 RR |
131 | wxDL_METHOD_DEFINE( GnomePrintJob*, gnome_print_job_new, |
132 | (GnomePrintConfig *config), (config), NULL ) | |
133 | wxDL_METHOD_DEFINE( GnomePrintContext*, gnome_print_job_get_context, | |
134 | (GnomePrintJob *job), (job), NULL ) | |
135 | wxDL_METHOD_DEFINE( gint, gnome_print_job_close, | |
136 | (GnomePrintJob *job), (job), 0 ) | |
137 | wxDL_METHOD_DEFINE( gint, gnome_print_job_print, | |
138 | (GnomePrintJob *job), (job), 0 ) | |
139 | wxDL_METHOD_DEFINE( gboolean, gnome_print_job_get_page_size, | |
140 | (GnomePrintJob *job, gdouble *width, gdouble *height), (job, width, height), 0 ) | |
141 | ||
142 | wxDL_METHOD_DEFINE( GnomePrintUnit*, gnome_print_unit_get_by_abbreviation, | |
143 | (const guchar *abbreviation), (abbreviation), NULL ) | |
144 | wxDL_METHOD_DEFINE( gboolean, gnome_print_convert_distance, | |
145 | (gdouble *distance, const GnomePrintUnit *from, const GnomePrintUnit *to), (distance, from, to), false ) | |
146 | ||
147 | wxDL_METHOD_DEFINE( GnomePrintConfig*, gnome_print_config_default, | |
148 | (void), (), NULL ) | |
149 | wxDL_METHOD_DEFINE( gboolean, gnome_print_config_set, | |
150 | (GnomePrintConfig *config, const guchar *key, const guchar *value), (config, key, value), false ) | |
151 | wxDL_METHOD_DEFINE( gboolean, gnome_print_config_get_length, | |
152 | (GnomePrintConfig *config, const guchar *key, gdouble *val, const GnomePrintUnit **unit), (config, key, val, unit), false ) | |
153 | ||
389076f1 | 154 | wxDL_METHOD_DEFINE( GtkWidget*, gnome_print_dialog_new, |
59c73be8 RR |
155 | (GnomePrintJob *gpj, const guchar *title, gint flags), (gpj, title, flags), NULL ) |
156 | wxDL_METHOD_DEFINE( void, gnome_print_dialog_construct_range_page, | |
157 | (GnomePrintDialog *gpd, gint flags, gint start, gint end, | |
158 | const guchar *currentlabel, const guchar *rangelabel), | |
159 | (gpd, flags, start, end, currentlabel, rangelabel), /**/ ) | |
160 | wxDL_METHOD_DEFINE( void, gnome_print_dialog_get_copies, | |
161 | (GnomePrintDialog *gpd, gint *copies, gboolean *collate), (gpd, copies, collate), /**/ ) | |
162 | wxDL_METHOD_DEFINE( void, gnome_print_dialog_set_copies, | |
163 | (GnomePrintDialog *gpd, gint copies, gint collate), (gpd, copies, collate), /**/ ) | |
164 | wxDL_METHOD_DEFINE( GnomePrintRangeType, gnome_print_dialog_get_range, | |
165 | (GnomePrintDialog *gpd), (gpd), GNOME_PRINT_RANGETYPE_NONE ) | |
166 | wxDL_METHOD_DEFINE( int, gnome_print_dialog_get_range_page, | |
167 | (GnomePrintDialog *gpd, gint *start, gint *end), (gpd, start, end), 0 ) | |
389076f1 | 168 | |
59c73be8 RR |
169 | wxDL_METHOD_DEFINE( GtkWidget*, gnome_paper_selector_new_with_flags, |
170 | (GnomePrintConfig *config, gint flags), (config, flags), NULL ) | |
171 | ||
172 | wxDL_METHOD_DEFINE( GtkWidget*, gnome_print_job_preview_new, | |
173 | (GnomePrintJob *gpm, const guchar *title), (gpm, title), NULL ) | |
c6efd6e0 RR |
174 | }; |
175 | ||
176 | wxGnomePrintLibrary::wxGnomePrintLibrary() | |
177 | { | |
59c73be8 RR |
178 | m_gnome_print_lib = NULL; |
179 | m_gnome_printui_lib = NULL; | |
180 | ||
c6efd6e0 | 181 | wxLogNull log; |
389076f1 | 182 | |
a92964a2 | 183 | m_gnome_print_lib = new wxDynamicLibrary( wxT("libgnomeprint-2-2.so.0") ); |
c6efd6e0 | 184 | m_ok = m_gnome_print_lib->IsLoaded(); |
389076f1 WS |
185 | if (!m_ok) return; |
186 | ||
a92964a2 | 187 | m_gnome_printui_lib = new wxDynamicLibrary( wxT("libgnomeprintui-2-2.so.0") ); |
59c73be8 | 188 | m_ok = m_gnome_printui_lib->IsLoaded(); |
389076f1 WS |
189 | if (!m_ok) return; |
190 | ||
59c73be8 | 191 | InitializeMethods(); |
c6efd6e0 RR |
192 | } |
193 | ||
194 | wxGnomePrintLibrary::~wxGnomePrintLibrary() | |
195 | { | |
59c73be8 RR |
196 | if (m_gnome_print_lib) |
197 | delete m_gnome_print_lib; | |
198 | if (m_gnome_printui_lib) | |
199 | delete m_gnome_printui_lib; | |
c6efd6e0 RR |
200 | } |
201 | ||
202 | bool wxGnomePrintLibrary::IsOk() | |
203 | { | |
204 | return m_ok; | |
205 | } | |
206 | ||
207 | void wxGnomePrintLibrary::InitializeMethods() | |
208 | { | |
209 | m_ok = false; | |
210 | bool success; | |
211 | ||
212 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_newpath, success ) | |
213 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_moveto, success ) | |
214 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_lineto, success ) | |
215 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_curveto, success ) | |
16744532 | 216 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_arcto, success ) |
c6efd6e0 RR |
217 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_closepath, success ) |
218 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_stroke, success ) | |
219 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_fill, success ) | |
220 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_setrgbcolor, success ) | |
221 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_setlinewidth, success ) | |
59c73be8 | 222 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_setdash, success ) |
389076f1 | 223 | |
59c73be8 RR |
224 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_rgbimage, success ) |
225 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_rgbaimage, success ) | |
389076f1 | 226 | |
59c73be8 RR |
227 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_concat, success ) |
228 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_scale, success ) | |
229 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_rotate, success ) | |
16744532 | 230 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_translate, success ) |
389076f1 | 231 | |
59c73be8 RR |
232 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_gsave, success ) |
233 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_grestore, success ) | |
389076f1 | 234 | |
59c73be8 RR |
235 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_beginpage, success ) |
236 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_showpage, success ) | |
237 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_end_doc, success ) | |
238 | ||
239 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_pango_create_layout, success ) | |
240 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_pango_layout, success ) | |
241 | ||
242 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_job_new, success ) | |
243 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_job_get_context, success ) | |
244 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_job_close, success ) | |
245 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_job_print, success ) | |
246 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_job_get_page_size, success ) | |
247 | ||
248 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_unit_get_by_abbreviation, success ) | |
249 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_convert_distance, success ) | |
250 | ||
251 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_config_default, success ) | |
252 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_config_set, success ) | |
253 | wxDL_METHOD_LOAD( m_gnome_print_lib, gnome_print_config_get_length, success ) | |
254 | ||
255 | wxDL_METHOD_LOAD( m_gnome_printui_lib, gnome_print_dialog_new, success ) | |
256 | wxDL_METHOD_LOAD( m_gnome_printui_lib, gnome_print_dialog_construct_range_page, success ) | |
257 | wxDL_METHOD_LOAD( m_gnome_printui_lib, gnome_print_dialog_get_copies, success ) | |
258 | wxDL_METHOD_LOAD( m_gnome_printui_lib, gnome_print_dialog_set_copies, success ) | |
259 | wxDL_METHOD_LOAD( m_gnome_printui_lib, gnome_print_dialog_get_range, success ) | |
260 | wxDL_METHOD_LOAD( m_gnome_printui_lib, gnome_print_dialog_get_range_page, success ) | |
261 | ||
262 | wxDL_METHOD_LOAD( m_gnome_printui_lib, gnome_paper_selector_new_with_flags, success ) | |
263 | ||
264 | wxDL_METHOD_LOAD( m_gnome_printui_lib, gnome_print_job_preview_new, success ) | |
389076f1 | 265 | |
c6efd6e0 RR |
266 | m_ok = true; |
267 | } | |
268 | ||
269 | static wxGnomePrintLibrary* gs_lgp = NULL; | |
270 | ||
ff910433 RR |
271 | //---------------------------------------------------------------------------- |
272 | // wxGnomePrintNativeData | |
273 | //---------------------------------------------------------------------------- | |
274 | ||
275 | IMPLEMENT_CLASS(wxGnomePrintNativeData, wxPrintNativeDataBase) | |
276 | ||
277 | wxGnomePrintNativeData::wxGnomePrintNativeData() | |
278 | { | |
59c73be8 RR |
279 | m_config = gs_lgp->gnome_print_config_default(); |
280 | m_job = gs_lgp->gnome_print_job_new( m_config ); | |
ff910433 RR |
281 | } |
282 | ||
283 | wxGnomePrintNativeData::~wxGnomePrintNativeData() | |
284 | { | |
3fe39b0c | 285 | g_object_unref (m_config); |
ff910433 RR |
286 | } |
287 | ||
288 | bool wxGnomePrintNativeData::TransferTo( wxPrintData &data ) | |
289 | { | |
290 | // TODO | |
291 | return true; | |
292 | } | |
293 | ||
294 | bool wxGnomePrintNativeData::TransferFrom( const wxPrintData &data ) | |
295 | { | |
296 | // TODO | |
297 | return true; | |
298 | } | |
389076f1 | 299 | |
ff910433 RR |
300 | //---------------------------------------------------------------------------- |
301 | // wxGnomePrintFactory | |
302 | //---------------------------------------------------------------------------- | |
303 | ||
304 | wxPrinterBase* wxGnomePrintFactory::CreatePrinter( wxPrintDialogData *data ) | |
305 | { | |
306 | return new wxGnomePrinter( data ); | |
307 | } | |
389076f1 WS |
308 | |
309 | wxPrintPreviewBase *wxGnomePrintFactory::CreatePrintPreview( wxPrintout *preview, | |
310 | wxPrintout *printout, | |
ff910433 RR |
311 | wxPrintDialogData *data ) |
312 | { | |
147bf263 | 313 | return new wxGnomePrintPreview( preview, printout, data ); |
ff910433 RR |
314 | } |
315 | ||
389076f1 WS |
316 | wxPrintPreviewBase *wxGnomePrintFactory::CreatePrintPreview( wxPrintout *preview, |
317 | wxPrintout *printout, | |
ff910433 RR |
318 | wxPrintData *data ) |
319 | { | |
147bf263 | 320 | return new wxGnomePrintPreview( preview, printout, data ); |
ff910433 RR |
321 | } |
322 | ||
389076f1 | 323 | wxPrintDialogBase *wxGnomePrintFactory::CreatePrintDialog( wxWindow *parent, |
ff910433 RR |
324 | wxPrintDialogData *data ) |
325 | { | |
2934005d | 326 | return new wxGnomePrintDialog( parent, data ); |
ff910433 RR |
327 | } |
328 | ||
389076f1 | 329 | wxPrintDialogBase *wxGnomePrintFactory::CreatePrintDialog( wxWindow *parent, |
ff910433 RR |
330 | wxPrintData *data ) |
331 | { | |
2934005d | 332 | return new wxGnomePrintDialog( parent, data ); |
ff910433 | 333 | } |
389076f1 | 334 | |
08680429 RR |
335 | wxPageSetupDialogBase *wxGnomePrintFactory::CreatePageSetupDialog( wxWindow *parent, |
336 | wxPageSetupDialogData * data ) | |
389076f1 | 337 | { |
06cfd325 RR |
338 | // The native page setup dialog is broken. It |
339 | // miscalculates newly entered values for the | |
340 | // margins if you have not chose "points" but | |
389076f1 | 341 | // e.g. centimerters. |
cffcf831 RR |
342 | // This has been fixed in GNOME CVS (maybe |
343 | // fixed in libgnomeprintui 2.8.1) | |
06cfd325 | 344 | |
cffcf831 | 345 | return new wxGnomePageSetupDialog( parent, data ); |
08680429 | 346 | } |
389076f1 | 347 | |
ff910433 RR |
348 | bool wxGnomePrintFactory::HasPrintSetupDialog() |
349 | { | |
2934005d | 350 | return false; |
ff910433 RR |
351 | } |
352 | ||
353 | wxDialog *wxGnomePrintFactory::CreatePrintSetupDialog( wxWindow *parent, wxPrintData *data ) | |
354 | { | |
2934005d | 355 | return NULL; |
ff910433 RR |
356 | } |
357 | ||
147bf263 JS |
358 | wxDC* wxGnomePrintFactory::CreatePrinterDC( const wxPrintData& data ) |
359 | { | |
360 | return new wxGnomePrintDC(data); | |
361 | } | |
362 | ||
ff910433 RR |
363 | bool wxGnomePrintFactory::HasOwnPrintToFile() |
364 | { | |
365 | return true; | |
366 | } | |
367 | ||
368 | bool wxGnomePrintFactory::HasPrinterLine() | |
369 | { | |
370 | return true; | |
371 | } | |
372 | ||
373 | wxString wxGnomePrintFactory::CreatePrinterLine() | |
374 | { | |
2934005d RR |
375 | // redundant now |
376 | return wxEmptyString; | |
ff910433 RR |
377 | } |
378 | ||
379 | bool wxGnomePrintFactory::HasStatusLine() | |
380 | { | |
2934005d | 381 | // redundant now |
389076f1 | 382 | return true; |
ff910433 RR |
383 | } |
384 | ||
385 | wxString wxGnomePrintFactory::CreateStatusLine() | |
386 | { | |
2934005d RR |
387 | // redundant now |
388 | return wxEmptyString; | |
ff910433 RR |
389 | } |
390 | ||
391 | wxPrintNativeDataBase *wxGnomePrintFactory::CreatePrintNativeData() | |
392 | { | |
393 | return new wxGnomePrintNativeData; | |
394 | } | |
395 | ||
396 | //---------------------------------------------------------------------------- | |
397 | // wxGnomePrintSetupDialog | |
398 | //---------------------------------------------------------------------------- | |
399 | ||
2934005d RR |
400 | IMPLEMENT_CLASS(wxGnomePrintDialog, wxPrintDialogBase) |
401 | ||
402 | wxGnomePrintDialog::wxGnomePrintDialog( wxWindow *parent, wxPrintDialogData *data ) | |
403 | : wxPrintDialogBase(parent, wxID_ANY, _("Print"), | |
404 | wxPoint(0, 0), wxSize(600, 600), | |
405 | wxDEFAULT_DIALOG_STYLE | | |
406 | wxTAB_TRAVERSAL) | |
407 | { | |
408 | if (data) | |
409 | m_printDialogData = *data; | |
389076f1 | 410 | |
2934005d RR |
411 | Init(); |
412 | } | |
413 | ||
414 | wxGnomePrintDialog::wxGnomePrintDialog( wxWindow *parent, wxPrintData *data ) | |
415 | : wxPrintDialogBase(parent, wxID_ANY, _("Print"), | |
416 | wxPoint(0, 0), wxSize(600, 600), | |
417 | wxDEFAULT_DIALOG_STYLE | | |
418 | wxTAB_TRAVERSAL) | |
419 | { | |
420 | if (data) | |
421 | m_printDialogData = *data; | |
422 | ||
423 | Init(); | |
424 | } | |
ff910433 | 425 | |
2934005d | 426 | void wxGnomePrintDialog::Init() |
ff910433 | 427 | { |
2934005d RR |
428 | wxPrintData data = m_printDialogData.GetPrintData(); |
429 | ||
ff910433 | 430 | wxGnomePrintNativeData *native = |
2934005d | 431 | (wxGnomePrintNativeData*) data.GetNativeData(); |
389076f1 WS |
432 | |
433 | m_widget = gs_lgp->gnome_print_dialog_new( native->GetPrintJob(), | |
434 | (guchar*)"Print", | |
2934005d | 435 | GNOME_PRINT_DIALOG_RANGE|GNOME_PRINT_DIALOG_COPIES ); |
b199de59 RR |
436 | |
437 | int flag = 0; | |
438 | if (m_printDialogData.GetEnableSelection()) | |
439 | flag |= GNOME_PRINT_RANGE_SELECTION; | |
440 | if (m_printDialogData.GetEnablePageNumbers()) | |
441 | flag |= GNOME_PRINT_RANGE_ALL|GNOME_PRINT_RANGE_RANGE; | |
442 | ||
59c73be8 | 443 | gs_lgp->gnome_print_dialog_construct_range_page( (GnomePrintDialog*) m_widget, |
b199de59 RR |
444 | flag, |
445 | m_printDialogData.GetMinPage(), | |
446 | m_printDialogData.GetMaxPage(), | |
447 | NULL, | |
448 | NULL ); | |
ff910433 RR |
449 | } |
450 | ||
2934005d | 451 | wxGnomePrintDialog::~wxGnomePrintDialog() |
ff910433 RR |
452 | { |
453 | m_widget = NULL; | |
454 | } | |
455 | ||
2934005d | 456 | int wxGnomePrintDialog::ShowModal() |
ff910433 | 457 | { |
2934005d RR |
458 | // Transfer data from m_printDalogData to dialog here |
459 | ||
ff910433 | 460 | int response = gtk_dialog_run (GTK_DIALOG (m_widget)); |
389076f1 WS |
461 | |
462 | if (response == GNOME_PRINT_DIALOG_RESPONSE_CANCEL) | |
b199de59 RR |
463 | { |
464 | gtk_widget_destroy(m_widget); | |
465 | m_widget = NULL; | |
389076f1 | 466 | |
ff910433 | 467 | return wxID_CANCEL; |
b199de59 | 468 | } |
ff910433 | 469 | |
b199de59 RR |
470 | gint copies = 1; |
471 | gboolean collate = false; | |
59c73be8 | 472 | gs_lgp->gnome_print_dialog_get_copies( (GnomePrintDialog*) m_widget, &copies, &collate ); |
b199de59 RR |
473 | m_printDialogData.SetNoCopies( copies ); |
474 | m_printDialogData.SetCollate( collate ); | |
2934005d | 475 | |
59c73be8 | 476 | switch (gs_lgp->gnome_print_dialog_get_range( (GnomePrintDialog*) m_widget )) |
b199de59 RR |
477 | { |
478 | case GNOME_PRINT_RANGE_SELECTION: | |
479 | m_printDialogData.SetSelection( true ); | |
480 | break; | |
481 | case GNOME_PRINT_RANGE_ALL: | |
482 | m_printDialogData.SetAllPages( true ); | |
483 | m_printDialogData.SetFromPage( 0 ); | |
484 | m_printDialogData.SetToPage( 9999 ); | |
485 | break; | |
486 | case GNOME_PRINT_RANGE_RANGE: | |
487 | default: | |
488 | gint start,end; | |
59c73be8 | 489 | gs_lgp->gnome_print_dialog_get_range_page( (GnomePrintDialog*) m_widget, &start, &end ); |
b199de59 RR |
490 | m_printDialogData.SetFromPage( start ); |
491 | m_printDialogData.SetToPage( end ); | |
492 | break; | |
493 | } | |
494 | ||
495 | gtk_widget_destroy(m_widget); | |
496 | m_widget = NULL; | |
389076f1 | 497 | |
0be7709e RR |
498 | if (response == GNOME_PRINT_DIALOG_RESPONSE_PREVIEW) |
499 | return wxID_PREVIEW; | |
389076f1 | 500 | |
ff910433 RR |
501 | return wxID_OK; |
502 | } | |
503 | ||
2934005d | 504 | wxDC *wxGnomePrintDialog::GetPrintDC() |
ff910433 | 505 | { |
2934005d RR |
506 | // Later |
507 | return NULL; | |
ff910433 RR |
508 | } |
509 | ||
2934005d | 510 | bool wxGnomePrintDialog::Validate() |
ff910433 RR |
511 | { |
512 | return true; | |
513 | } | |
514 | ||
2934005d | 515 | bool wxGnomePrintDialog::TransferDataToWindow() |
ff910433 RR |
516 | { |
517 | return true; | |
518 | } | |
519 | ||
2934005d RR |
520 | bool wxGnomePrintDialog::TransferDataFromWindow() |
521 | { | |
522 | return true; | |
523 | } | |
ff910433 | 524 | |
08680429 RR |
525 | //---------------------------------------------------------------------------- |
526 | // wxGnomePageSetupDialog | |
527 | //---------------------------------------------------------------------------- | |
528 | ||
529 | IMPLEMENT_CLASS(wxGnomePageSetupDialog, wxPageSetupDialogBase) | |
530 | ||
531 | wxGnomePageSetupDialog::wxGnomePageSetupDialog( wxWindow *parent, | |
532 | wxPageSetupDialogData* data ) | |
533 | { | |
534 | if (data) | |
535 | m_pageDialogData = *data; | |
389076f1 | 536 | |
08680429 RR |
537 | wxGnomePrintNativeData *native = |
538 | (wxGnomePrintNativeData*) m_pageDialogData.GetPrintData().GetNativeData(); | |
cffcf831 RR |
539 | |
540 | // This is required as the page setup dialog | |
541 | // calculates wrong values otherwise. | |
59c73be8 | 542 | gs_lgp->gnome_print_config_set( native->GetPrintConfig(), |
cffcf831 RR |
543 | (const guchar*) GNOME_PRINT_KEY_PREFERED_UNIT, |
544 | (const guchar*) "Pts" ); | |
389076f1 | 545 | |
08680429 | 546 | m_widget = gtk_dialog_new(); |
389076f1 | 547 | |
08680429 | 548 | gtk_window_set_title( GTK_WINDOW(m_widget), wxGTK_CONV( _("Page setup") ) ); |
cffcf831 | 549 | |
389076f1 | 550 | GtkWidget *main = gs_lgp->gnome_paper_selector_new_with_flags( native->GetPrintConfig(), |
08680429 RR |
551 | GNOME_PAPER_SELECTOR_MARGINS|GNOME_PAPER_SELECTOR_FEED_ORIENTATION ); |
552 | gtk_container_set_border_width (GTK_CONTAINER (main), 8); | |
553 | gtk_widget_show (main); | |
389076f1 | 554 | |
08680429 | 555 | gtk_container_add( GTK_CONTAINER (GTK_DIALOG (m_widget)->vbox), main ); |
08680429 | 556 | |
389076f1 | 557 | gtk_dialog_set_has_separator (GTK_DIALOG (m_widget), TRUE); |
08680429 | 558 | |
389076f1 WS |
559 | gtk_dialog_add_buttons (GTK_DIALOG (m_widget), |
560 | GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL, | |
561 | GTK_STOCK_OK, GTK_RESPONSE_OK, | |
562 | NULL); | |
563 | ||
564 | gtk_dialog_set_default_response (GTK_DIALOG (m_widget), | |
565 | GTK_RESPONSE_OK); | |
08680429 RR |
566 | } |
567 | ||
568 | wxGnomePageSetupDialog::~wxGnomePageSetupDialog() | |
569 | { | |
570 | } | |
571 | ||
572 | wxPageSetupDialogData& wxGnomePageSetupDialog::GetPageSetupDialogData() | |
573 | { | |
574 | return m_pageDialogData; | |
575 | } | |
576 | ||
577 | int wxGnomePageSetupDialog::ShowModal() | |
578 | { | |
06cfd325 RR |
579 | wxGnomePrintNativeData *native = |
580 | (wxGnomePrintNativeData*) m_pageDialogData.GetPrintData().GetNativeData(); | |
581 | GnomePrintConfig *config = native->GetPrintConfig(); | |
389076f1 | 582 | |
08680429 RR |
583 | // Transfer data from m_pageDialogData to native dialog |
584 | ||
585 | int ret = gtk_dialog_run( GTK_DIALOG(m_widget) ); | |
586 | ||
587 | if (ret == GTK_RESPONSE_OK) | |
588 | { | |
589 | // Transfer data back to m_pageDialogData | |
cffcf831 RR |
590 | |
591 | // I don't know how querying the last parameter works | |
592 | // I cannot test it as the dialog is currently broken | |
389076f1 | 593 | // anyways (it only works for points). |
06cfd325 | 594 | double ml,mr,mt,mb,pw,ph; |
389076f1 WS |
595 | gs_lgp->gnome_print_config_get_length (config, |
596 | (const guchar*) GNOME_PRINT_KEY_PAGE_MARGIN_LEFT, &ml, NULL); | |
597 | gs_lgp->gnome_print_config_get_length (config, | |
598 | (const guchar*) GNOME_PRINT_KEY_PAGE_MARGIN_RIGHT, &mr, NULL); | |
599 | gs_lgp->gnome_print_config_get_length (config, | |
600 | (const guchar*) GNOME_PRINT_KEY_PAGE_MARGIN_TOP, &mt, NULL); | |
601 | gs_lgp->gnome_print_config_get_length (config, | |
602 | (const guchar*) GNOME_PRINT_KEY_PAGE_MARGIN_BOTTOM, &mb, NULL); | |
603 | gs_lgp->gnome_print_config_get_length (config, | |
604 | (const guchar*) GNOME_PRINT_KEY_PAPER_WIDTH, &pw, NULL); | |
605 | gs_lgp->gnome_print_config_get_length (config, | |
606 | (const guchar*) GNOME_PRINT_KEY_PAPER_HEIGHT, &ph, NULL); | |
607 | ||
608 | // This probably assumes that the user entered the | |
cffcf831 RR |
609 | // values in Pts. Since that is the only the dialog |
610 | // works right now, we need to fix this later. | |
59c73be8 RR |
611 | const GnomePrintUnit *mm_unit = gs_lgp->gnome_print_unit_get_by_abbreviation( (const guchar*) "mm" ); |
612 | const GnomePrintUnit *pts_unit = gs_lgp->gnome_print_unit_get_by_abbreviation( (const guchar*) "Pts" ); | |
613 | gs_lgp->gnome_print_convert_distance( &ml, pts_unit, mm_unit ); | |
614 | gs_lgp->gnome_print_convert_distance( &mr, pts_unit, mm_unit ); | |
615 | gs_lgp->gnome_print_convert_distance( &mt, pts_unit, mm_unit ); | |
616 | gs_lgp->gnome_print_convert_distance( &mb, pts_unit, mm_unit ); | |
617 | gs_lgp->gnome_print_convert_distance( &pw, pts_unit, mm_unit ); | |
618 | gs_lgp->gnome_print_convert_distance( &ph, pts_unit, mm_unit ); | |
cffcf831 RR |
619 | |
620 | m_pageDialogData.SetMarginTopLeft( wxPoint( (int)(ml+0.5), (int)(mt+0.5)) ); | |
06cfd325 | 621 | m_pageDialogData.SetMarginBottomRight( wxPoint( (int)(mr+0.5), (int)(mb+0.5)) ); |
389076f1 | 622 | |
06cfd325 | 623 | m_pageDialogData.SetPaperSize( wxSize( (int)(pw+0.5), (int)(ph+0.5) ) ); |
cffcf831 | 624 | |
cac7ac30 | 625 | #if 0 |
389076f1 | 626 | wxPrintf( wxT("paper %d %d, top margin %d\n"), |
06cfd325 RR |
627 | m_pageDialogData.GetPaperSize().x, |
628 | m_pageDialogData.GetPaperSize().y, | |
629 | m_pageDialogData.GetMarginTopLeft().x ); | |
630 | #endif | |
389076f1 | 631 | |
08680429 RR |
632 | ret = wxID_OK; |
633 | } | |
634 | else | |
635 | { | |
636 | ret = wxID_CANCEL; | |
637 | } | |
389076f1 | 638 | |
08680429 RR |
639 | gtk_widget_destroy( m_widget ); |
640 | m_widget = NULL; | |
641 | ||
642 | return ret; | |
643 | } | |
644 | ||
645 | bool wxGnomePageSetupDialog::Validate() | |
646 | { | |
647 | return true; | |
648 | } | |
649 | ||
650 | bool wxGnomePageSetupDialog::TransferDataToWindow() | |
651 | { | |
652 | return true; | |
653 | } | |
654 | ||
655 | bool wxGnomePageSetupDialog::TransferDataFromWindow() | |
656 | { | |
657 | return true; | |
658 | } | |
659 | ||
ff910433 RR |
660 | //---------------------------------------------------------------------------- |
661 | // wxGnomePrinter | |
662 | //---------------------------------------------------------------------------- | |
663 | ||
664 | IMPLEMENT_CLASS(wxGnomePrinter, wxPrinterBase) | |
665 | ||
666 | wxGnomePrinter::wxGnomePrinter( wxPrintDialogData *data ) : | |
667 | wxPrinterBase( data ) | |
668 | { | |
669 | m_gpc = NULL; | |
0be7709e | 670 | m_native_preview = false; |
ff910433 RR |
671 | } |
672 | ||
673 | wxGnomePrinter::~wxGnomePrinter() | |
674 | { | |
675 | } | |
676 | ||
677 | bool wxGnomePrinter::Print(wxWindow *parent, wxPrintout *printout, bool prompt ) | |
678 | { | |
679 | if (!printout) | |
680 | { | |
681 | sm_lastError = wxPRINTER_ERROR; | |
682 | return false; | |
683 | } | |
684 | ||
685 | wxPrintData printdata = GetPrintDialogData().GetPrintData(); | |
389076f1 | 686 | wxGnomePrintNativeData *native = |
ff910433 RR |
687 | (wxGnomePrintNativeData*) printdata.GetNativeData(); |
688 | ||
59c73be8 RR |
689 | GnomePrintJob *job = gs_lgp->gnome_print_job_new( native->GetPrintConfig() ); |
690 | m_gpc = gs_lgp->gnome_print_job_get_context (job); | |
cffcf831 | 691 | |
389076f1 | 692 | // The GnomePrintJob is temporarily stored in the |
2934005d | 693 | // native print data as the native print dialog |
981a6af1 | 694 | // needs to access it. |
cffcf831 RR |
695 | native->SetPrintJob( job ); |
696 | ||
981a6af1 RR |
697 | |
698 | printout->SetIsPreview(false); | |
699 | ||
700 | if (m_printDialogData.GetMinPage() < 1) | |
701 | m_printDialogData.SetMinPage(1); | |
702 | if (m_printDialogData.GetMaxPage() < 1) | |
703 | m_printDialogData.SetMaxPage(9999); | |
389076f1 | 704 | |
ff910433 | 705 | wxDC *dc; |
ff910433 RR |
706 | if (prompt) |
707 | dc = PrintDialog( parent ); | |
708 | else | |
709 | dc = new wxGnomePrintDC( this ); | |
389076f1 | 710 | |
0be7709e RR |
711 | if (m_native_preview) |
712 | printout->SetIsPreview(true); | |
389076f1 | 713 | |
ff910433 RR |
714 | if (!dc) |
715 | { | |
59c73be8 | 716 | gs_lgp->gnome_print_job_close( job ); |
3fe39b0c | 717 | g_object_unref (job); |
981a6af1 | 718 | sm_lastError = wxPRINTER_ERROR; |
ff910433 RR |
719 | return false; |
720 | } | |
721 | ||
981a6af1 RR |
722 | wxSize ScreenPixels = wxGetDisplaySize(); |
723 | wxSize ScreenMM = wxGetDisplaySizeMM(); | |
724 | ||
725 | printout->SetPPIScreen( (int) ((ScreenPixels.GetWidth() * 25.4) / ScreenMM.GetWidth()), | |
726 | (int) ((ScreenPixels.GetHeight() * 25.4) / ScreenMM.GetHeight()) ); | |
b199de59 RR |
727 | printout->SetPPIPrinter( wxGnomePrintDC::GetResolution(), |
728 | wxGnomePrintDC::GetResolution() ); | |
389076f1 | 729 | |
ff910433 RR |
730 | printout->SetDC(dc); |
731 | ||
981a6af1 RR |
732 | int w, h; |
733 | dc->GetSize(&w, &h); | |
734 | printout->SetPageSizePixels((int)w, (int)h); | |
735 | dc->GetSizeMM(&w, &h); | |
736 | printout->SetPageSizeMM((int)w, (int)h); | |
389076f1 | 737 | |
ff910433 | 738 | printout->OnPreparePrinting(); |
389076f1 | 739 | |
b199de59 RR |
740 | // Get some parameters from the printout, if defined |
741 | int fromPage, toPage; | |
742 | int minPage, maxPage; | |
743 | printout->GetPageInfo(&minPage, &maxPage, &fromPage, &toPage); | |
ff910433 | 744 | |
b199de59 | 745 | if (maxPage == 0) |
ff910433 | 746 | { |
59c73be8 | 747 | gs_lgp->gnome_print_job_close( job ); |
3fe39b0c | 748 | g_object_unref (job); |
ff910433 | 749 | sm_lastError = wxPRINTER_ERROR; |
b199de59 | 750 | return false; |
ff910433 | 751 | } |
389076f1 | 752 | |
b199de59 RR |
753 | printout->OnBeginPrinting(); |
754 | ||
755 | int minPageNum = minPage, maxPageNum = maxPage; | |
756 | ||
757 | if ( !m_printDialogData.GetAllPages() ) | |
ff910433 | 758 | { |
b199de59 RR |
759 | minPageNum = m_printDialogData.GetFromPage(); |
760 | maxPageNum = m_printDialogData.GetToPage(); | |
761 | } | |
762 | ||
389076f1 | 763 | |
b199de59 RR |
764 | int copyCount; |
765 | for ( copyCount = 1; | |
766 | copyCount <= m_printDialogData.GetNoCopies(); | |
767 | copyCount++ ) | |
768 | { | |
769 | if (!printout->OnBeginDocument(minPageNum, maxPageNum)) | |
ff910433 | 770 | { |
b199de59 RR |
771 | wxLogError(_("Could not start printing.")); |
772 | sm_lastError = wxPRINTER_ERROR; | |
773 | break; | |
774 | } | |
389076f1 | 775 | |
b199de59 RR |
776 | int pn; |
777 | for ( pn = minPageNum; | |
778 | pn <= maxPageNum && printout->HasPage(pn); | |
779 | pn++ ) | |
389076f1 | 780 | { |
ff910433 RR |
781 | dc->StartPage(); |
782 | printout->OnPrintPage(pn); | |
783 | dc->EndPage(); | |
784 | } | |
389076f1 | 785 | |
ff910433 RR |
786 | printout->OnEndDocument(); |
787 | printout->OnEndPrinting(); | |
788 | } | |
389076f1 | 789 | |
59c73be8 | 790 | gs_lgp->gnome_print_job_close( job ); |
0be7709e RR |
791 | if (m_native_preview) |
792 | { | |
46e86fc3 | 793 | const wxCharBuffer title(wxGTK_CONV_SYS(_("Print preview"))); |
b8f32576 VZ |
794 | GtkWidget *preview = gs_lgp->gnome_print_job_preview_new |
795 | ( | |
796 | job, | |
46e86fc3 | 797 | (const guchar *)title.data() |
b8f32576 VZ |
798 | ); |
799 | gtk_widget_show(preview); | |
0be7709e RR |
800 | } |
801 | else | |
802 | { | |
59c73be8 | 803 | gs_lgp->gnome_print_job_print( job ); |
0be7709e | 804 | } |
389076f1 | 805 | |
3fe39b0c | 806 | g_object_unref (job); |
ff910433 | 807 | delete dc; |
389076f1 | 808 | |
ff910433 RR |
809 | return (sm_lastError == wxPRINTER_NO_ERROR); |
810 | } | |
811 | ||
812 | wxDC* wxGnomePrinter::PrintDialog( wxWindow *parent ) | |
813 | { | |
2934005d | 814 | wxGnomePrintDialog dialog( parent, &m_printDialogData ); |
0be7709e RR |
815 | int ret = dialog.ShowModal(); |
816 | if (ret == wxID_CANCEL) | |
ff910433 | 817 | { |
4843cdfe | 818 | sm_lastError = wxPRINTER_CANCELLED; |
ff910433 RR |
819 | return NULL; |
820 | } | |
389076f1 | 821 | |
0be7709e | 822 | m_native_preview = ret == wxID_PREVIEW; |
389076f1 | 823 | |
b199de59 | 824 | m_printDialogData = dialog.GetPrintDialogData(); |
ff910433 RR |
825 | return new wxGnomePrintDC( this ); |
826 | } | |
827 | ||
828 | bool wxGnomePrinter::Setup( wxWindow *parent ) | |
829 | { | |
58c30cd8 | 830 | return false; |
ff910433 RR |
831 | } |
832 | ||
833 | //----------------------------------------------------------------------------- | |
834 | // wxGnomePrintDC | |
835 | //----------------------------------------------------------------------------- | |
836 | ||
62075bca | 837 | IMPLEMENT_CLASS(wxGnomePrintDC, wxDC) |
ff910433 RR |
838 | |
839 | wxGnomePrintDC::wxGnomePrintDC( wxGnomePrinter *printer ) | |
840 | { | |
841 | m_printer = printer; | |
389076f1 | 842 | |
ff910433 | 843 | m_gpc = printer->GetPrintContext(); |
147bf263 | 844 | m_job = NULL; // only used and destroyed when created with wxPrintData |
389076f1 | 845 | |
59c73be8 | 846 | m_layout = gs_lgp->gnome_print_pango_create_layout( m_gpc ); |
ff910433 | 847 | m_fontdesc = pango_font_description_from_string( "Sans 12" ); |
389076f1 | 848 | |
ff910433 RR |
849 | m_currentRed = 0; |
850 | m_currentBlue = 0; | |
851 | m_currentGreen = 0; | |
389076f1 | 852 | |
ff910433 RR |
853 | m_signX = 1; // default x-axis left to right |
854 | m_signY = -1; // default y-axis bottom up -> top down | |
855 | } | |
856 | ||
147bf263 JS |
857 | wxGnomePrintDC::wxGnomePrintDC( const wxPrintData& data ) |
858 | { | |
859 | m_printer = NULL; | |
860 | m_printData = data; | |
861 | ||
862 | wxGnomePrintNativeData *native = | |
863 | (wxGnomePrintNativeData*) m_printData.GetNativeData(); | |
864 | ||
865 | GnomePrintJob *job = gs_lgp->gnome_print_job_new( native->GetPrintConfig() ); | |
866 | m_gpc = gs_lgp->gnome_print_job_get_context (job); | |
867 | m_job = job; // only used and destroyed when created with wxPrintData | |
868 | ||
869 | m_layout = gs_lgp->gnome_print_pango_create_layout( m_gpc ); | |
870 | m_fontdesc = pango_font_description_from_string( "Sans 12" ); | |
871 | ||
872 | m_currentRed = 0; | |
873 | m_currentBlue = 0; | |
874 | m_currentGreen = 0; | |
875 | ||
876 | m_signX = 1; // default x-axis left to right | |
877 | m_signY = -1; // default y-axis bottom up -> top down | |
878 | } | |
879 | ||
ff910433 RR |
880 | wxGnomePrintDC::~wxGnomePrintDC() |
881 | { | |
147bf263 | 882 | if (m_job) |
459dbfc0 | 883 | g_object_unref (m_job); |
ff910433 RR |
884 | } |
885 | ||
b7cacb43 | 886 | bool wxGnomePrintDC::IsOk() const |
ff910433 RR |
887 | { |
888 | return true; | |
889 | } | |
890 | ||
891 | bool wxGnomePrintDC::DoFloodFill(wxCoord x1, wxCoord y1, const wxColour &col, int style ) | |
892 | { | |
893 | return false; | |
894 | } | |
895 | ||
896 | bool wxGnomePrintDC::DoGetPixel(wxCoord x1, wxCoord y1, wxColour *col) const | |
897 | { | |
898 | return false; | |
899 | } | |
900 | ||
901 | void wxGnomePrintDC::DoDrawLine(wxCoord x1, wxCoord y1, wxCoord x2, wxCoord y2) | |
902 | { | |
903 | if (m_pen.GetStyle() == wxTRANSPARENT) return; | |
389076f1 | 904 | |
ff910433 RR |
905 | SetPen( m_pen ); |
906 | ||
c6efd6e0 RR |
907 | gs_lgp->gnome_print_moveto ( m_gpc, XLOG2DEV(x1), YLOG2DEV(y1) ); |
908 | gs_lgp->gnome_print_lineto ( m_gpc, XLOG2DEV(x2), YLOG2DEV(y2) ); | |
909 | gs_lgp->gnome_print_stroke ( m_gpc); | |
cac7ac30 | 910 | |
ff910433 RR |
911 | CalcBoundingBox( x1, y1 ); |
912 | CalcBoundingBox( x2, y2 ); | |
913 | } | |
914 | ||
915 | void wxGnomePrintDC::DoCrossHair(wxCoord x, wxCoord y) | |
916 | { | |
917 | } | |
918 | ||
919 | void wxGnomePrintDC::DoDrawArc(wxCoord x1,wxCoord y1,wxCoord x2,wxCoord y2,wxCoord xc,wxCoord yc) | |
920 | { | |
2f41910a RR |
921 | double dx = x1 - xc; |
922 | double dy = y1 - yc; | |
923 | double radius = sqrt((double)(dx*dx+dy*dy)); | |
924 | double alpha1, alpha2; | |
925 | if (x1 == x2 && y1 == y2) | |
926 | { | |
927 | alpha1 = 0.0; | |
928 | alpha2 = 360.0; | |
929 | } | |
930 | else | |
931 | if (radius == 0.0) | |
932 | { | |
933 | alpha1 = alpha2 = 0.0; | |
934 | } | |
935 | else | |
936 | { | |
937 | alpha1 = (x1 - xc == 0) ? | |
938 | (y1 - yc < 0) ? 90.0 : -90.0 : | |
939 | -atan2(double(y1-yc), double(x1-xc)) * RAD2DEG; | |
940 | alpha2 = (x2 - xc == 0) ? | |
941 | (y2 - yc < 0) ? 90.0 : -90.0 : | |
942 | -atan2(double(y2-yc), double(x2-xc)) * RAD2DEG; | |
389076f1 | 943 | |
2f41910a RR |
944 | while (alpha1 <= 0) alpha1 += 360; |
945 | while (alpha2 <= 0) alpha2 += 360; // adjust angles to be between | |
946 | while (alpha1 > 360) alpha1 -= 360; // 0 and 360 degree | |
947 | while (alpha2 > 360) alpha2 -= 360; | |
948 | } | |
949 | ||
950 | if (m_brush.GetStyle() != wxTRANSPARENT) | |
951 | { | |
952 | SetBrush( m_brush ); | |
953 | gs_lgp->gnome_print_moveto ( m_gpc, XLOG2DEV(xc), YLOG2DEV(yc) ); | |
954 | gs_lgp->gnome_print_arcto( m_gpc, XLOG2DEV(xc), YLOG2DEV(yc), XLOG2DEVREL((int)radius), alpha1, alpha2, 0 ); | |
389076f1 | 955 | |
2f41910a RR |
956 | gs_lgp->gnome_print_fill( m_gpc ); |
957 | } | |
958 | ||
959 | if (m_pen.GetStyle() != wxTRANSPARENT) | |
960 | { | |
961 | SetPen (m_pen); | |
962 | gs_lgp->gnome_print_newpath( m_gpc ); | |
963 | gs_lgp->gnome_print_moveto ( m_gpc, XLOG2DEV(xc), YLOG2DEV(yc) ); | |
964 | gs_lgp->gnome_print_arcto( m_gpc, XLOG2DEV(xc), YLOG2DEV(yc), XLOG2DEVREL((int)radius), alpha1, alpha2, 0 ); | |
965 | gs_lgp->gnome_print_closepath( m_gpc ); | |
389076f1 | 966 | |
2f41910a RR |
967 | gs_lgp->gnome_print_stroke( m_gpc ); |
968 | } | |
969 | ||
970 | CalcBoundingBox (x1, y1); | |
971 | CalcBoundingBox (x2, y2); | |
972 | CalcBoundingBox (xc, yc); | |
ff910433 RR |
973 | } |
974 | ||
975 | void wxGnomePrintDC::DoDrawEllipticArc(wxCoord x,wxCoord y,wxCoord w,wxCoord h,double sa,double ea) | |
976 | { | |
16744532 RR |
977 | x += w/2; |
978 | y += h/2; | |
979 | ||
980 | int xx = XLOG2DEV(x); | |
981 | int yy = YLOG2DEV(y); | |
982 | ||
389076f1 | 983 | gs_lgp->gnome_print_gsave( m_gpc ); |
16744532 RR |
984 | |
985 | gs_lgp->gnome_print_translate( m_gpc, xx, yy ); | |
986 | double scale = (double)YLOG2DEVREL(h) / (double) XLOG2DEVREL(w); | |
987 | gs_lgp->gnome_print_scale( m_gpc, 1.0, scale ); | |
389076f1 | 988 | |
16744532 RR |
989 | xx = 0; |
990 | yy = 0; | |
991 | ||
992 | if (m_brush.GetStyle () != wxTRANSPARENT) | |
993 | { | |
994 | SetBrush( m_brush ); | |
389076f1 | 995 | |
16744532 | 996 | gs_lgp->gnome_print_moveto ( m_gpc, xx, yy ); |
389076f1 | 997 | gs_lgp->gnome_print_arcto( m_gpc, xx, yy, |
16744532 RR |
998 | XLOG2DEVREL(w)/2, sa, ea, 0 ); |
999 | gs_lgp->gnome_print_moveto ( m_gpc, xx, yy ); | |
389076f1 | 1000 | |
16744532 RR |
1001 | gs_lgp->gnome_print_fill( m_gpc ); |
1002 | } | |
389076f1 | 1003 | |
16744532 RR |
1004 | if (m_pen.GetStyle () != wxTRANSPARENT) |
1005 | { | |
1006 | SetPen (m_pen); | |
389076f1 WS |
1007 | |
1008 | gs_lgp->gnome_print_arcto( m_gpc, xx, yy, | |
16744532 | 1009 | XLOG2DEVREL(w)/2, sa, ea, 0 ); |
389076f1 | 1010 | |
16744532 RR |
1011 | gs_lgp->gnome_print_stroke( m_gpc ); |
1012 | } | |
389076f1 | 1013 | |
16744532 | 1014 | gs_lgp->gnome_print_grestore( m_gpc ); |
389076f1 | 1015 | |
16744532 RR |
1016 | CalcBoundingBox( x, y ); |
1017 | CalcBoundingBox( x+w, y+h ); | |
ff910433 RR |
1018 | } |
1019 | ||
1020 | void wxGnomePrintDC::DoDrawPoint(wxCoord x, wxCoord y) | |
1021 | { | |
1022 | } | |
1023 | ||
1024 | void wxGnomePrintDC::DoDrawLines(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset) | |
1025 | { | |
cac7ac30 RR |
1026 | if (m_pen.GetStyle() == wxTRANSPARENT) return; |
1027 | ||
1028 | if (n <= 0) return; | |
1029 | ||
1030 | SetPen (m_pen); | |
1031 | ||
1032 | int i; | |
1033 | for ( i =0; i<n ; i++ ) | |
16744532 | 1034 | CalcBoundingBox( points[i].x+xoffset, points[i].y+yoffset); |
cac7ac30 | 1035 | |
c6efd6e0 | 1036 | gs_lgp->gnome_print_moveto ( m_gpc, XLOG2DEV(points[0].x+xoffset), YLOG2DEV(points[0].y+yoffset) ); |
389076f1 | 1037 | |
cac7ac30 | 1038 | for (i = 1; i < n; i++) |
c6efd6e0 | 1039 | gs_lgp->gnome_print_lineto ( m_gpc, XLOG2DEV(points[i].x+xoffset), YLOG2DEV(points[i].y+yoffset) ); |
cac7ac30 | 1040 | |
c6efd6e0 | 1041 | gs_lgp->gnome_print_stroke ( m_gpc); |
ff910433 RR |
1042 | } |
1043 | ||
1044 | void wxGnomePrintDC::DoDrawPolygon(int n, wxPoint points[], wxCoord xoffset, wxCoord yoffset, int fillStyle) | |
1045 | { | |
a92964a2 RR |
1046 | if (n==0) return; |
1047 | ||
1048 | if (m_brush.GetStyle () != wxTRANSPARENT) | |
1049 | { | |
1050 | SetBrush( m_brush ); | |
389076f1 | 1051 | |
a92964a2 RR |
1052 | int x = points[0].x + xoffset; |
1053 | int y = points[0].y + yoffset; | |
1054 | CalcBoundingBox( x, y ); | |
1055 | gs_lgp->gnome_print_newpath( m_gpc ); | |
1056 | gs_lgp->gnome_print_moveto( m_gpc, XLOG2DEV(x), YLOG2DEV(y) ); | |
1057 | int i; | |
1058 | for (i = 1; i < n; i++) | |
1059 | { | |
1060 | int x = points[i].x + xoffset; | |
1061 | int y = points[i].y + yoffset; | |
1062 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV(x), YLOG2DEV(y) ); | |
1063 | CalcBoundingBox( x, y ); | |
1064 | } | |
1065 | gs_lgp->gnome_print_closepath( m_gpc ); | |
1066 | gs_lgp->gnome_print_fill( m_gpc ); | |
1067 | } | |
1068 | ||
1069 | if (m_pen.GetStyle () != wxTRANSPARENT) | |
1070 | { | |
1071 | SetPen (m_pen); | |
1072 | ||
1073 | int x = points[0].x + xoffset; | |
1074 | int y = points[0].y + yoffset; | |
1075 | gs_lgp->gnome_print_newpath( m_gpc ); | |
1076 | gs_lgp->gnome_print_moveto( m_gpc, XLOG2DEV(x), YLOG2DEV(y) ); | |
1077 | int i; | |
1078 | for (i = 1; i < n; i++) | |
1079 | { | |
1080 | int x = points[i].x + xoffset; | |
1081 | int y = points[i].y + yoffset; | |
1082 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV(x), YLOG2DEV(y) ); | |
1083 | CalcBoundingBox( x, y ); | |
1084 | } | |
1085 | gs_lgp->gnome_print_closepath( m_gpc ); | |
1086 | gs_lgp->gnome_print_stroke( m_gpc ); | |
1087 | } | |
ff910433 RR |
1088 | } |
1089 | ||
1090 | void wxGnomePrintDC::DoDrawPolyPolygon(int n, int count[], wxPoint points[], wxCoord xoffset, wxCoord yoffset, int fillStyle) | |
1091 | { | |
a92964a2 | 1092 | wxDC::DoDrawPolyPolygon( n, count, points, xoffset, yoffset, fillStyle ); |
ff910433 RR |
1093 | } |
1094 | ||
1095 | void wxGnomePrintDC::DoDrawRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height) | |
1096 | { | |
1097 | if (m_brush.GetStyle () != wxTRANSPARENT) | |
1098 | { | |
1099 | SetBrush( m_brush ); | |
389076f1 | 1100 | |
c6efd6e0 RR |
1101 | gs_lgp->gnome_print_newpath( m_gpc ); |
1102 | gs_lgp->gnome_print_moveto( m_gpc, XLOG2DEV(x), YLOG2DEV(y) ); | |
1103 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV(x + width), YLOG2DEV(y) ); | |
1104 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV(x + width), YLOG2DEV(y + height) ); | |
1105 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV(x), YLOG2DEV(y + height) ); | |
1106 | gs_lgp->gnome_print_closepath( m_gpc ); | |
1107 | gs_lgp->gnome_print_fill( m_gpc ); | |
ff910433 RR |
1108 | |
1109 | CalcBoundingBox( x, y ); | |
1110 | CalcBoundingBox( x + width, y + height ); | |
1111 | } | |
1112 | ||
1113 | if (m_pen.GetStyle () != wxTRANSPARENT) | |
1114 | { | |
1115 | SetPen (m_pen); | |
1116 | ||
c6efd6e0 RR |
1117 | gs_lgp->gnome_print_newpath( m_gpc ); |
1118 | gs_lgp->gnome_print_moveto( m_gpc, XLOG2DEV(x), YLOG2DEV(y) ); | |
1119 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV(x + width), YLOG2DEV(y) ); | |
1120 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV(x + width), YLOG2DEV(y + height) ); | |
1121 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV(x), YLOG2DEV(y + height) ); | |
1122 | gs_lgp->gnome_print_closepath( m_gpc ); | |
1123 | gs_lgp->gnome_print_stroke( m_gpc ); | |
389076f1 | 1124 | |
ff910433 RR |
1125 | CalcBoundingBox( x, y ); |
1126 | CalcBoundingBox( x + width, y + height ); | |
1127 | } | |
1128 | } | |
1129 | ||
1130 | void wxGnomePrintDC::DoDrawRoundedRectangle(wxCoord x, wxCoord y, wxCoord width, wxCoord height, double radius) | |
1131 | { | |
9a2fe010 RR |
1132 | wxCoord rad = (wxCoord) radius; |
1133 | ||
1134 | if (m_brush.GetStyle() != wxTRANSPARENT) | |
1135 | { | |
1136 | SetBrush(m_brush); | |
1137 | gs_lgp->gnome_print_newpath(m_gpc); | |
1138 | gs_lgp->gnome_print_moveto(m_gpc,XLOG2DEV(x + rad),YLOG2DEV(y)); | |
1139 | gs_lgp->gnome_print_curveto(m_gpc, | |
389076f1 WS |
1140 | XLOG2DEV(x + rad),YLOG2DEV(y), |
1141 | XLOG2DEV(x),YLOG2DEV(y), | |
1142 | XLOG2DEV(x),YLOG2DEV(y + rad)); | |
9a2fe010 RR |
1143 | gs_lgp->gnome_print_lineto(m_gpc,XLOG2DEV(x),YLOG2DEV(y + height - rad)); |
1144 | gs_lgp->gnome_print_curveto(m_gpc, | |
389076f1 WS |
1145 | XLOG2DEV(x),YLOG2DEV(y + height - rad), |
1146 | XLOG2DEV(x),YLOG2DEV(y + height), | |
1147 | XLOG2DEV(x + rad),YLOG2DEV(y + height)); | |
9a2fe010 RR |
1148 | gs_lgp->gnome_print_lineto(m_gpc,XLOG2DEV(x + width - rad),YLOG2DEV(y + height)); |
1149 | gs_lgp->gnome_print_curveto(m_gpc, | |
389076f1 WS |
1150 | XLOG2DEV(x + width - rad),YLOG2DEV(y + height), |
1151 | XLOG2DEV(x + width),YLOG2DEV(y + height), | |
1152 | XLOG2DEV(x + width),YLOG2DEV(y + height - rad)); | |
9a2fe010 RR |
1153 | gs_lgp->gnome_print_lineto(m_gpc,XLOG2DEV(x + width),YLOG2DEV(y + rad)); |
1154 | gs_lgp->gnome_print_curveto(m_gpc, | |
389076f1 WS |
1155 | XLOG2DEV(x + width),YLOG2DEV(y + rad), |
1156 | XLOG2DEV(x + width),YLOG2DEV(y), | |
1157 | XLOG2DEV(x + width - rad),YLOG2DEV(y)); | |
9a2fe010 RR |
1158 | gs_lgp->gnome_print_lineto(m_gpc,XLOG2DEV(x + rad),YLOG2DEV(y)); |
1159 | gs_lgp->gnome_print_closepath(m_gpc); | |
1160 | gs_lgp->gnome_print_fill(m_gpc); | |
389076f1 | 1161 | |
9a2fe010 RR |
1162 | CalcBoundingBox(x,y); |
1163 | CalcBoundingBox(x+width,y+height); | |
1164 | } | |
389076f1 | 1165 | |
9a2fe010 RR |
1166 | if (m_pen.GetStyle() != wxTRANSPARENT) |
1167 | { | |
1168 | SetPen(m_pen); | |
1169 | gs_lgp->gnome_print_newpath(m_gpc); | |
1170 | gs_lgp->gnome_print_moveto(m_gpc,XLOG2DEV(x + rad),YLOG2DEV(y)); | |
1171 | gs_lgp->gnome_print_curveto(m_gpc, | |
389076f1 WS |
1172 | XLOG2DEV(x + rad),YLOG2DEV(y), |
1173 | XLOG2DEV(x),YLOG2DEV(y), | |
1174 | XLOG2DEV(x),YLOG2DEV(y + rad)); | |
9a2fe010 RR |
1175 | gs_lgp->gnome_print_lineto(m_gpc,XLOG2DEV(x),YLOG2DEV(y + height - rad)); |
1176 | gs_lgp->gnome_print_curveto(m_gpc, | |
389076f1 WS |
1177 | XLOG2DEV(x),YLOG2DEV(y + height - rad), |
1178 | XLOG2DEV(x),YLOG2DEV(y + height), | |
1179 | XLOG2DEV(x + rad),YLOG2DEV(y + height)); | |
9a2fe010 RR |
1180 | gs_lgp->gnome_print_lineto(m_gpc,XLOG2DEV(x + width - rad),YLOG2DEV(y + height)); |
1181 | gs_lgp->gnome_print_curveto(m_gpc, | |
389076f1 WS |
1182 | XLOG2DEV(x + width - rad),YLOG2DEV(y + height), |
1183 | XLOG2DEV(x + width),YLOG2DEV(y + height), | |
1184 | XLOG2DEV(x + width),YLOG2DEV(y + height - rad)); | |
9a2fe010 RR |
1185 | gs_lgp->gnome_print_lineto(m_gpc,XLOG2DEV(x + width),YLOG2DEV(y + rad)); |
1186 | gs_lgp->gnome_print_curveto(m_gpc, | |
389076f1 WS |
1187 | XLOG2DEV(x + width),YLOG2DEV(y + rad), |
1188 | XLOG2DEV(x + width),YLOG2DEV(y), | |
1189 | XLOG2DEV(x + width - rad),YLOG2DEV(y)); | |
9a2fe010 RR |
1190 | gs_lgp->gnome_print_lineto(m_gpc,XLOG2DEV(x + rad),YLOG2DEV(y)); |
1191 | gs_lgp->gnome_print_closepath(m_gpc); | |
1192 | gs_lgp->gnome_print_stroke(m_gpc); | |
389076f1 | 1193 | |
9a2fe010 RR |
1194 | CalcBoundingBox(x,y); |
1195 | CalcBoundingBox(x+width,y+height); | |
1196 | } | |
ff910433 RR |
1197 | } |
1198 | ||
e4db172a | 1199 | void wxGnomePrintDC::makeEllipticalPath(wxCoord x, wxCoord y, |
74ab0bfb RR |
1200 | wxCoord width, wxCoord height) |
1201 | { | |
1202 | double r = 4 * (sqrt (2) - 1) / 3; | |
1203 | double halfW = 0.5 * width, | |
1204 | halfH = 0.5 * height, | |
1205 | halfWR = r * halfW, | |
1206 | halfHR = r * halfH; | |
1207 | wxCoord halfWI = (wxCoord) halfW, | |
1208 | halfHI = (wxCoord) halfH; | |
e4db172a | 1209 | |
74ab0bfb | 1210 | gs_lgp->gnome_print_newpath( m_gpc ); |
e4db172a | 1211 | |
74ab0bfb RR |
1212 | // Approximate an ellipse using four cubic splines, clockwise from 0 deg */ |
1213 | gs_lgp->gnome_print_moveto( m_gpc, | |
e4db172a | 1214 | XLOG2DEV(x + width), |
74ab0bfb RR |
1215 | YLOG2DEV(y + halfHI) ); |
1216 | gs_lgp->gnome_print_curveto( m_gpc, | |
1217 | XLOG2DEV(x + width), | |
1218 | YLOG2DEV(y + (wxCoord) rint (halfH + halfHR)), | |
e4db172a | 1219 | XLOG2DEV(x + (wxCoord) rint(halfW + halfWR)), |
74ab0bfb | 1220 | YLOG2DEV(y + height), |
e4db172a | 1221 | XLOG2DEV(x + halfWI), |
74ab0bfb RR |
1222 | YLOG2DEV(y + height) ); |
1223 | gs_lgp->gnome_print_curveto( m_gpc, | |
e4db172a | 1224 | XLOG2DEV(x + (wxCoord) rint(halfW - halfWR)), |
74ab0bfb RR |
1225 | YLOG2DEV(y + height), |
1226 | XLOG2DEV(x), | |
1227 | YLOG2DEV(y + (wxCoord) rint (halfH + halfHR)), | |
1228 | XLOG2DEV(x), YLOG2DEV(y+halfHI) ); | |
1229 | gs_lgp->gnome_print_curveto( m_gpc, | |
1230 | XLOG2DEV(x), | |
1231 | YLOG2DEV(y + (wxCoord) rint (halfH - halfHR)), | |
1232 | XLOG2DEV(x + (wxCoord) rint (halfW - halfWR)), | |
1233 | YLOG2DEV(y), | |
1234 | XLOG2DEV(x+halfWI), YLOG2DEV(y) ); | |
1235 | gs_lgp->gnome_print_curveto( m_gpc, | |
1236 | XLOG2DEV(x + (wxCoord) rint(halfW + halfWR)), | |
1237 | YLOG2DEV(y), | |
1238 | XLOG2DEV(x + width), | |
1239 | YLOG2DEV(y + (wxCoord) rint(halfH - halfHR)), | |
1240 | XLOG2DEV(x + width), YLOG2DEV(y + halfHI) ); | |
e4db172a | 1241 | |
74ab0bfb RR |
1242 | gs_lgp->gnome_print_closepath(m_gpc); |
1243 | } | |
1244 | ||
ff910433 RR |
1245 | void wxGnomePrintDC::DoDrawEllipse(wxCoord x, wxCoord y, wxCoord width, wxCoord height) |
1246 | { | |
cac7ac30 RR |
1247 | if (m_brush.GetStyle () != wxTRANSPARENT) |
1248 | { | |
1249 | SetBrush( m_brush ); | |
74ab0bfb | 1250 | makeEllipticalPath( x, y, width, height ); |
c6efd6e0 | 1251 | gs_lgp->gnome_print_fill( m_gpc ); |
cac7ac30 RR |
1252 | CalcBoundingBox( x, y ); |
1253 | CalcBoundingBox( x + width, y + height ); | |
1254 | } | |
1255 | ||
1256 | if (m_pen.GetStyle () != wxTRANSPARENT) | |
1257 | { | |
1258 | SetPen (m_pen); | |
74ab0bfb | 1259 | makeEllipticalPath( x, y, width, height ); |
c6efd6e0 | 1260 | gs_lgp->gnome_print_stroke( m_gpc ); |
cac7ac30 RR |
1261 | CalcBoundingBox( x, y ); |
1262 | CalcBoundingBox( x + width, y + height ); | |
1263 | } | |
ff910433 RR |
1264 | } |
1265 | ||
389076f1 | 1266 | #if wxUSE_SPLINES |
ff910433 RR |
1267 | void wxGnomePrintDC::DoDrawSpline(wxList *points) |
1268 | { | |
121c09cd RR |
1269 | SetPen (m_pen); |
1270 | ||
1271 | double c, d, x1, y1, x2, y2, x3, y3; | |
1272 | wxPoint *p, *q; | |
1273 | ||
1274 | wxList::compatibility_iterator node = points->GetFirst(); | |
1275 | p = (wxPoint *)node->GetData(); | |
1276 | x1 = p->x; | |
1277 | y1 = p->y; | |
1278 | ||
1279 | node = node->GetNext(); | |
1280 | p = (wxPoint *)node->GetData(); | |
1281 | c = p->x; | |
1282 | d = p->y; | |
1283 | x3 = | |
1284 | (double)(x1 + c) / 2; | |
1285 | y3 = | |
1286 | (double)(y1 + d) / 2; | |
1287 | ||
1288 | gs_lgp->gnome_print_newpath( m_gpc ); | |
1289 | gs_lgp->gnome_print_moveto( m_gpc, XLOG2DEV((wxCoord)x1), YLOG2DEV((wxCoord)y1) ); | |
1290 | gs_lgp->gnome_print_lineto( m_gpc, XLOG2DEV((wxCoord)x3), YLOG2DEV((wxCoord)y3) ); | |
389076f1 | 1291 | |
121c09cd RR |
1292 | CalcBoundingBox( (wxCoord)x1, (wxCoord)y1 ); |
1293 | CalcBoundingBox( (wxCoord)x3, (wxCoord)y3 ); | |
1294 | ||
1295 | node = node->GetNext(); | |
1296 | while (node) | |
1297 | { | |
1298 | q = (wxPoint *)node->GetData(); | |
1299 | ||
1300 | x1 = x3; | |
1301 | y1 = y3; | |
1302 | x2 = c; | |
1303 | y2 = d; | |
1304 | c = q->x; | |
1305 | d = q->y; | |
1306 | x3 = (double)(x2 + c) / 2; | |
1307 | y3 = (double)(y2 + d) / 2; | |
1308 | ||
1309 | gs_lgp->gnome_print_curveto(m_gpc, | |
1310 | XLOG2DEV((wxCoord)x1), YLOG2DEV((wxCoord)y1), | |
1311 | XLOG2DEV((wxCoord)x2), YLOG2DEV((wxCoord)y2), | |
1312 | XLOG2DEV((wxCoord)x3), YLOG2DEV((wxCoord)y3) ); | |
1313 | ||
1314 | CalcBoundingBox( (wxCoord)x1, (wxCoord)y1 ); | |
1315 | CalcBoundingBox( (wxCoord)x3, (wxCoord)y3 ); | |
1316 | ||
1317 | node = node->GetNext(); | |
1318 | } | |
389076f1 | 1319 | |
121c09cd | 1320 | gs_lgp->gnome_print_lineto ( m_gpc, XLOG2DEV((wxCoord)c), YLOG2DEV((wxCoord)d) ); |
389076f1 | 1321 | |
121c09cd | 1322 | gs_lgp->gnome_print_stroke( m_gpc ); |
ff910433 | 1323 | } |
389076f1 | 1324 | #endif // wxUSE_SPLINES |
ff910433 RR |
1325 | |
1326 | bool wxGnomePrintDC::DoBlit(wxCoord xdest, wxCoord ydest, wxCoord width, wxCoord height, | |
1327 | wxDC *source, wxCoord xsrc, wxCoord ysrc, int rop, bool useMask, | |
1328 | wxCoord xsrcMask, wxCoord ysrcMask) | |
1329 | { | |
2f41910a RR |
1330 | wxCHECK_MSG( source, false, wxT("invalid source dc") ); |
1331 | ||
1332 | // blit into a bitmap | |
1333 | wxBitmap bitmap( width, height ); | |
1334 | wxMemoryDC memDC; | |
1335 | memDC.SelectObject(bitmap); | |
1336 | memDC.Blit(0, 0, width, height, source, xsrc, ysrc, rop); /* TODO: Blit transparently? */ | |
1337 | memDC.SelectObject(wxNullBitmap); | |
1338 | ||
1339 | // draw bitmap. scaling and positioning is done there | |
1340 | DrawBitmap( bitmap, xdest, ydest ); | |
1341 | ||
1342 | return true; | |
ff910433 RR |
1343 | } |
1344 | ||
1345 | void wxGnomePrintDC::DoDrawIcon( const wxIcon& icon, wxCoord x, wxCoord y ) | |
1346 | { | |
e1bf3ad3 | 1347 | DoDrawBitmap( icon, x, y, true ); |
ff910433 RR |
1348 | } |
1349 | ||
1350 | void wxGnomePrintDC::DoDrawBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, bool useMask ) | |
1351 | { | |
e1bf3ad3 | 1352 | if (!bitmap.Ok()) return; |
389076f1 | 1353 | |
e1bf3ad3 RR |
1354 | if (bitmap.HasPixbuf()) |
1355 | { | |
2934005d | 1356 | GdkPixbuf *pixbuf = bitmap.GetPixbuf(); |
389076f1 WS |
1357 | guchar *raw_image = gdk_pixbuf_get_pixels( pixbuf ); |
1358 | bool has_alpha = gdk_pixbuf_get_has_alpha( pixbuf ); | |
1359 | int rowstride = gdk_pixbuf_get_rowstride( pixbuf ); | |
1360 | int height = gdk_pixbuf_get_height( pixbuf ); | |
1361 | int width = gdk_pixbuf_get_width( pixbuf ); | |
1362 | ||
1363 | gs_lgp->gnome_print_gsave( m_gpc ); | |
2934005d | 1364 | double matrix[6]; |
389076f1 WS |
1365 | matrix[0] = XLOG2DEVREL(width); |
1366 | matrix[1] = 0; | |
1367 | matrix[2] = 0; | |
1368 | matrix[3] = YLOG2DEVREL(height); | |
1369 | matrix[4] = XLOG2DEV(x); | |
2934005d | 1370 | matrix[5] = YLOG2DEV(y+height); |
389076f1 WS |
1371 | gs_lgp->gnome_print_concat( m_gpc, matrix ); |
1372 | gs_lgp->gnome_print_moveto( m_gpc, 0, 0 ); | |
2934005d | 1373 | if (has_alpha) |
59c73be8 | 1374 | gs_lgp->gnome_print_rgbaimage( m_gpc, (guchar *)raw_image, width, height, rowstride ); |
2934005d | 1375 | else |
59c73be8 RR |
1376 | gs_lgp->gnome_print_rgbimage( m_gpc, (guchar *)raw_image, width, height, rowstride ); |
1377 | gs_lgp->gnome_print_grestore( m_gpc ); | |
e1bf3ad3 RR |
1378 | } |
1379 | else | |
e1bf3ad3 RR |
1380 | { |
1381 | wxImage image = bitmap.ConvertToImage(); | |
1382 | ||
1383 | if (!image.Ok()) return; | |
2934005d | 1384 | |
389076f1 | 1385 | gs_lgp->gnome_print_gsave( m_gpc ); |
b4382784 | 1386 | double matrix[6]; |
389076f1 WS |
1387 | matrix[0] = XLOG2DEVREL(image.GetWidth()); |
1388 | matrix[1] = 0; | |
1389 | matrix[2] = 0; | |
1390 | matrix[3] = YLOG2DEVREL(image.GetHeight()); | |
1391 | matrix[4] = XLOG2DEV(x); | |
b4382784 | 1392 | matrix[5] = YLOG2DEV(y+image.GetHeight()); |
389076f1 WS |
1393 | gs_lgp->gnome_print_concat( m_gpc, matrix ); |
1394 | gs_lgp->gnome_print_moveto( m_gpc, 0, 0 ); | |
59c73be8 RR |
1395 | gs_lgp->gnome_print_rgbimage( m_gpc, (guchar*) image.GetData(), image.GetWidth(), image.GetHeight(), image.GetWidth()*3 ); |
1396 | gs_lgp->gnome_print_grestore( m_gpc ); | |
e1bf3ad3 | 1397 | } |
ff910433 RR |
1398 | } |
1399 | ||
1400 | void wxGnomePrintDC::DoDrawText(const wxString& text, wxCoord x, wxCoord y ) | |
b199de59 RR |
1401 | { |
1402 | DoDrawRotatedText( text, x, y, 0.0 ); | |
1403 | } | |
1404 | ||
1405 | void wxGnomePrintDC::DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle) | |
ff910433 | 1406 | { |
ff910433 RR |
1407 | x = XLOG2DEV(x); |
1408 | y = YLOG2DEV(y); | |
389076f1 | 1409 | |
ff910433 RR |
1410 | bool underlined = m_font.Ok() && m_font.GetUnderlined(); |
1411 | ||
1412 | #if wxUSE_UNICODE | |
1413 | const wxCharBuffer data = wxConvUTF8.cWC2MB( text ); | |
1414 | #else | |
1415 | const wxWCharBuffer wdata = wxConvLocal.cMB2WC( text ); | |
1416 | if ( !wdata ) | |
1417 | return; | |
1418 | const wxCharBuffer data = wxConvUTF8.cWC2MB( wdata ); | |
1419 | #endif | |
1420 | ||
1421 | size_t datalen = strlen((const char*)data); | |
1422 | pango_layout_set_text( m_layout, (const char*) data, datalen); | |
389076f1 | 1423 | |
ff910433 RR |
1424 | if (underlined) |
1425 | { | |
1426 | PangoAttrList *attrs = pango_attr_list_new(); | |
1427 | PangoAttribute *a = pango_attr_underline_new(PANGO_UNDERLINE_SINGLE); | |
1428 | a->start_index = 0; | |
1429 | a->end_index = datalen; | |
1430 | pango_attr_list_insert(attrs, a); | |
1431 | pango_layout_set_attributes(m_layout, attrs); | |
1432 | pango_attr_list_unref(attrs); | |
1433 | } | |
1434 | ||
2934005d RR |
1435 | if (m_textForegroundColour.Ok()) |
1436 | { | |
1437 | unsigned char red = m_textForegroundColour.Red(); | |
1438 | unsigned char blue = m_textForegroundColour.Blue(); | |
1439 | unsigned char green = m_textForegroundColour.Green(); | |
1440 | ||
b199de59 RR |
1441 | if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue)) |
1442 | { | |
1443 | double redPS = (double)(red) / 255.0; | |
1444 | double bluePS = (double)(blue) / 255.0; | |
1445 | double greenPS = (double)(green) / 255.0; | |
1446 | ||
c6efd6e0 | 1447 | gs_lgp->gnome_print_setrgbcolor( m_gpc, redPS, greenPS, bluePS ); |
b199de59 RR |
1448 | |
1449 | m_currentRed = red; | |
1450 | m_currentBlue = blue; | |
1451 | m_currentGreen = green; | |
1452 | } | |
2934005d RR |
1453 | } |
1454 | ||
fa499247 RR |
1455 | int w,h; |
1456 | ||
1457 | if (fabs(m_scaleY - 1.0) > 0.00001) | |
1458 | { | |
1459 | // If there is a user or actually any scale applied to | |
1460 | // the device context, scale the font. | |
389076f1 | 1461 | |
fa499247 RR |
1462 | // scale font description |
1463 | gint oldSize = pango_font_description_get_size( m_fontdesc ); | |
1464 | double size = oldSize; | |
1465 | size = size * m_scaleY; | |
1466 | pango_font_description_set_size( m_fontdesc, (gint)size ); | |
389076f1 | 1467 | |
fa499247 RR |
1468 | // actually apply scaled font |
1469 | pango_layout_set_font_description( m_layout, m_fontdesc ); | |
389076f1 | 1470 | |
fa499247 RR |
1471 | pango_layout_get_pixel_size( m_layout, &w, &h ); |
1472 | #if 0 | |
1473 | if ( m_backgroundMode == wxSOLID ) | |
1474 | { | |
1475 | gdk_gc_set_foreground(m_textGC, m_textBackgroundColour.GetColor()); | |
1476 | gdk_draw_rectangle(m_window, m_textGC, TRUE, x, y, w, h); | |
1477 | gdk_gc_set_foreground(m_textGC, m_textForegroundColour.GetColor()); | |
1478 | } | |
389076f1 | 1479 | #endif |
fa499247 | 1480 | // Draw layout. |
389076f1 | 1481 | gs_lgp->gnome_print_moveto (m_gpc, x, y); |
b199de59 | 1482 | if (fabs(angle) > 0.00001) |
389076f1 | 1483 | { |
59c73be8 RR |
1484 | gs_lgp->gnome_print_gsave( m_gpc ); |
1485 | gs_lgp->gnome_print_rotate( m_gpc, angle ); | |
389076f1 | 1486 | gs_lgp->gnome_print_pango_layout( m_gpc, m_layout ); |
59c73be8 | 1487 | gs_lgp->gnome_print_grestore( m_gpc ); |
b199de59 RR |
1488 | } |
1489 | else | |
1490 | { | |
389076f1 | 1491 | gs_lgp->gnome_print_pango_layout( m_gpc, m_layout ); |
b199de59 | 1492 | } |
389076f1 | 1493 | |
fa499247 RR |
1494 | // reset unscaled size |
1495 | pango_font_description_set_size( m_fontdesc, oldSize ); | |
389076f1 | 1496 | |
fa499247 RR |
1497 | // actually apply unscaled font |
1498 | pango_layout_set_font_description( m_layout, m_fontdesc ); | |
1499 | } | |
1500 | else | |
1501 | { | |
1502 | pango_layout_get_pixel_size( m_layout, &w, &h ); | |
1503 | #if 0 | |
1504 | if ( m_backgroundMode == wxSOLID ) | |
1505 | { | |
1506 | gdk_gc_set_foreground(m_textGC, m_textBackgroundColour.GetColor()); | |
1507 | gdk_draw_rectangle(m_window, m_textGC, TRUE, x, y, w, h); | |
1508 | gdk_gc_set_foreground(m_textGC, m_textForegroundColour.GetColor()); | |
1509 | } | |
389076f1 | 1510 | #endif |
fa499247 | 1511 | // Draw layout. |
389076f1 | 1512 | gs_lgp->gnome_print_moveto (m_gpc, x, y); |
b199de59 | 1513 | if (fabs(angle) > 0.00001) |
389076f1 | 1514 | { |
59c73be8 RR |
1515 | gs_lgp->gnome_print_gsave( m_gpc ); |
1516 | gs_lgp->gnome_print_rotate( m_gpc, angle ); | |
389076f1 | 1517 | gs_lgp->gnome_print_pango_layout( m_gpc, m_layout ); |
59c73be8 | 1518 | gs_lgp->gnome_print_grestore( m_gpc ); |
b199de59 RR |
1519 | } |
1520 | else | |
1521 | { | |
389076f1 | 1522 | gs_lgp->gnome_print_pango_layout( m_gpc, m_layout ); |
b199de59 | 1523 | } |
fa499247 RR |
1524 | } |
1525 | ||
ff910433 RR |
1526 | if (underlined) |
1527 | { | |
1528 | // undo underline attributes setting: | |
1529 | pango_layout_set_attributes(m_layout, NULL); | |
1530 | } | |
389076f1 | 1531 | |
b199de59 | 1532 | CalcBoundingBox (x + w, y + h); |
ff910433 RR |
1533 | } |
1534 | ||
1535 | void wxGnomePrintDC::Clear() | |
1536 | { | |
1537 | } | |
1538 | ||
1539 | void wxGnomePrintDC::SetFont( const wxFont& font ) | |
1540 | { | |
1541 | m_font = font; | |
389076f1 | 1542 | |
ff910433 RR |
1543 | if (m_font.Ok()) |
1544 | { | |
1545 | if (m_fontdesc) | |
1546 | pango_font_description_free( m_fontdesc ); | |
389076f1 | 1547 | |
ff910433 | 1548 | m_fontdesc = pango_font_description_copy( m_font.GetNativeFontInfo()->description ); |
389076f1 | 1549 | |
ff910433 RR |
1550 | pango_layout_set_font_description( m_layout, m_fontdesc ); |
1551 | } | |
1552 | } | |
1553 | ||
1554 | void wxGnomePrintDC::SetPen( const wxPen& pen ) | |
1555 | { | |
1556 | if (!pen.Ok()) return; | |
1557 | ||
ff910433 RR |
1558 | m_pen = pen; |
1559 | ||
c6efd6e0 | 1560 | gs_lgp->gnome_print_setlinewidth( m_gpc, XLOG2DEVREL( 1000 * m_pen.GetWidth() ) / 1000.0f ); |
cac7ac30 RR |
1561 | |
1562 | static const double dotted[] = {2.0, 5.0}; | |
1563 | static const double short_dashed[] = {4.0, 4.0}; | |
1564 | static const double wxCoord_dashed[] = {4.0, 8.0}; | |
1565 | static const double dotted_dashed[] = {6.0, 6.0, 2.0, 6.0}; | |
1566 | ||
1567 | switch (m_pen.GetStyle()) | |
1568 | { | |
59c73be8 RR |
1569 | case wxDOT: gs_lgp->gnome_print_setdash( m_gpc, 2, dotted, 0 ); break; |
1570 | case wxSHORT_DASH: gs_lgp->gnome_print_setdash( m_gpc, 2, short_dashed, 0 ); break; | |
1571 | case wxLONG_DASH: gs_lgp->gnome_print_setdash( m_gpc, 2, wxCoord_dashed, 0 ); break; | |
1572 | case wxDOT_DASH: gs_lgp->gnome_print_setdash( m_gpc, 4, dotted_dashed, 0 ); break; | |
e4db172a | 1573 | case wxUSER_DASH: |
8c419a5c RR |
1574 | { |
1575 | // It may be noted that libgnomeprint between at least | |
1576 | // versions 2.8.0 and 2.12.1 makes a copy of the dashes | |
1577 | // and then leak the memory since it doesn't set the | |
1578 | // internal flag "privatedash" to 0. | |
1579 | wxDash *wx_dashes; | |
1580 | int num = m_pen.GetDashes (&wx_dashes); | |
1581 | gdouble *g_dashes = g_new( gdouble, num ); | |
1582 | int i; | |
1583 | for (i = 0; i < num; ++i) | |
1584 | g_dashes[i] = (gdouble) wx_dashes[i]; | |
1585 | gs_lgp -> gnome_print_setdash( m_gpc, num, g_dashes, 0); | |
1586 | g_free( g_dashes ); | |
1587 | } | |
1588 | break; | |
cac7ac30 RR |
1589 | case wxSOLID: |
1590 | case wxTRANSPARENT: | |
59c73be8 | 1591 | default: gs_lgp->gnome_print_setdash( m_gpc, 0, NULL, 0 ); break; |
cac7ac30 RR |
1592 | } |
1593 | ||
389076f1 | 1594 | |
ff910433 RR |
1595 | unsigned char red = m_pen.GetColour().Red(); |
1596 | unsigned char blue = m_pen.GetColour().Blue(); | |
1597 | unsigned char green = m_pen.GetColour().Green(); | |
1598 | ||
1599 | if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue)) | |
1600 | { | |
1601 | double redPS = (double)(red) / 255.0; | |
1602 | double bluePS = (double)(blue) / 255.0; | |
1603 | double greenPS = (double)(green) / 255.0; | |
1604 | ||
c6efd6e0 | 1605 | gs_lgp->gnome_print_setrgbcolor( m_gpc, redPS, greenPS, bluePS ); |
ff910433 RR |
1606 | |
1607 | m_currentRed = red; | |
1608 | m_currentBlue = blue; | |
1609 | m_currentGreen = green; | |
1610 | } | |
1611 | } | |
1612 | ||
1613 | void wxGnomePrintDC::SetBrush( const wxBrush& brush ) | |
1614 | { | |
fa499247 RR |
1615 | if (!brush.Ok()) return; |
1616 | ||
1617 | m_brush = brush; | |
1618 | ||
1619 | // Brush colour | |
1620 | unsigned char red = m_brush.GetColour().Red(); | |
1621 | unsigned char blue = m_brush.GetColour().Blue(); | |
1622 | unsigned char green = m_brush.GetColour().Green(); | |
1623 | ||
1624 | if (!m_colour) | |
1625 | { | |
1626 | // Anything not white is black | |
1627 | if (! (red == (unsigned char) 255 && | |
1628 | blue == (unsigned char) 255 && | |
1629 | green == (unsigned char) 255) ) | |
1630 | { | |
1631 | red = (unsigned char) 0; | |
1632 | green = (unsigned char) 0; | |
1633 | blue = (unsigned char) 0; | |
1634 | } | |
1635 | // setgray here ? | |
1636 | } | |
1637 | ||
1638 | if (!(red == m_currentRed && green == m_currentGreen && blue == m_currentBlue)) | |
1639 | { | |
1640 | double redPS = (double)(red) / 255.0; | |
1641 | double bluePS = (double)(blue) / 255.0; | |
1642 | double greenPS = (double)(green) / 255.0; | |
1643 | ||
c6efd6e0 | 1644 | gs_lgp->gnome_print_setrgbcolor( m_gpc, redPS, greenPS, bluePS ); |
fa499247 RR |
1645 | |
1646 | m_currentRed = red; | |
1647 | m_currentBlue = blue; | |
1648 | m_currentGreen = green; | |
1649 | } | |
ff910433 RR |
1650 | } |
1651 | ||
1652 | void wxGnomePrintDC::SetLogicalFunction( int function ) | |
1653 | { | |
1654 | } | |
1655 | ||
1656 | void wxGnomePrintDC::SetBackground( const wxBrush& brush ) | |
1657 | { | |
1658 | } | |
1659 | ||
1660 | void wxGnomePrintDC::DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height) | |
1661 | { | |
1662 | } | |
1663 | ||
1664 | void wxGnomePrintDC::DestroyClippingRegion() | |
1665 | { | |
1666 | } | |
1667 | ||
1668 | bool wxGnomePrintDC::StartDoc(const wxString& message) | |
1669 | { | |
1670 | SetDeviceOrigin( 0,0 ); | |
389076f1 | 1671 | |
ff910433 RR |
1672 | return true; |
1673 | } | |
1674 | ||
1675 | void wxGnomePrintDC::EndDoc() | |
1676 | { | |
59c73be8 | 1677 | gs_lgp->gnome_print_end_doc( m_gpc ); |
ff910433 RR |
1678 | } |
1679 | ||
1680 | void wxGnomePrintDC::StartPage() | |
1681 | { | |
389076f1 | 1682 | gs_lgp->gnome_print_beginpage( m_gpc, (const guchar*) "page" ); |
ff910433 RR |
1683 | } |
1684 | ||
1685 | void wxGnomePrintDC::EndPage() | |
1686 | { | |
389076f1 | 1687 | gs_lgp->gnome_print_showpage( m_gpc ); |
ff910433 RR |
1688 | } |
1689 | ||
1690 | wxCoord wxGnomePrintDC::GetCharHeight() const | |
1691 | { | |
b199de59 | 1692 | pango_layout_set_text( m_layout, "H", 1 ); |
389076f1 | 1693 | |
b199de59 RR |
1694 | int w,h; |
1695 | pango_layout_get_pixel_size( m_layout, &w, &h ); | |
389076f1 | 1696 | |
b199de59 | 1697 | return h; |
ff910433 RR |
1698 | } |
1699 | ||
1700 | wxCoord wxGnomePrintDC::GetCharWidth() const | |
1701 | { | |
b199de59 | 1702 | pango_layout_set_text( m_layout, "H", 1 ); |
389076f1 | 1703 | |
b199de59 RR |
1704 | int w,h; |
1705 | pango_layout_get_pixel_size( m_layout, &w, &h ); | |
389076f1 | 1706 | |
b199de59 | 1707 | return w; |
ff910433 RR |
1708 | } |
1709 | ||
981a6af1 | 1710 | void wxGnomePrintDC::DoGetTextExtent(const wxString& string, wxCoord *width, wxCoord *height, |
ff910433 RR |
1711 | wxCoord *descent, |
1712 | wxCoord *externalLeading, | |
1713 | wxFont *theFont ) const | |
1714 | { | |
981a6af1 RR |
1715 | if ( width ) |
1716 | *width = 0; | |
1717 | if ( height ) | |
1718 | *height = 0; | |
1719 | if ( descent ) | |
1720 | *descent = 0; | |
1721 | if ( externalLeading ) | |
1722 | *externalLeading = 0; | |
1723 | ||
389076f1 | 1724 | if (string.empty()) |
981a6af1 RR |
1725 | { |
1726 | return; | |
1727 | } | |
389076f1 | 1728 | |
981a6af1 RR |
1729 | // Set new font description |
1730 | if (theFont) | |
1731 | pango_layout_set_font_description( m_layout, theFont->GetNativeFontInfo()->description ); | |
389076f1 | 1732 | |
981a6af1 RR |
1733 | // Set layout's text |
1734 | #if wxUSE_UNICODE | |
1735 | const wxCharBuffer data = wxConvUTF8.cWC2MB( string ); | |
1736 | const char *dataUTF8 = (const char *)data; | |
1737 | #else | |
1738 | const wxWCharBuffer wdata = wxConvLocal.cMB2WC( string ); | |
1739 | if ( !wdata ) | |
1740 | { | |
1741 | if (width) (*width) = 0; | |
1742 | if (height) (*height) = 0; | |
1743 | return; | |
1744 | } | |
1745 | const wxCharBuffer data = wxConvUTF8.cWC2MB( wdata ); | |
1746 | const char *dataUTF8 = (const char *)data; | |
1747 | #endif | |
1748 | ||
1749 | if ( !dataUTF8 ) | |
1750 | { | |
1751 | // hardly ideal, but what else can we do if conversion failed? | |
1752 | return; | |
1753 | } | |
1754 | ||
1755 | pango_layout_set_text( m_layout, dataUTF8, strlen(dataUTF8) ); | |
389076f1 | 1756 | |
981a6af1 RR |
1757 | int w,h; |
1758 | pango_layout_get_pixel_size( m_layout, &w, &h ); | |
389076f1 | 1759 | |
981a6af1 | 1760 | if (width) |
389076f1 | 1761 | *width = (wxCoord)(w / m_scaleX); |
981a6af1 | 1762 | if (height) |
15236815 | 1763 | *height = (wxCoord)(h / m_scaleY); |
981a6af1 RR |
1764 | if (descent) |
1765 | { | |
1766 | PangoLayoutIter *iter = pango_layout_get_iter(m_layout); | |
1767 | int baseline = pango_layout_iter_get_baseline(iter); | |
1768 | pango_layout_iter_free(iter); | |
1769 | *descent = h - PANGO_PIXELS(baseline); | |
1770 | } | |
389076f1 | 1771 | |
981a6af1 RR |
1772 | // Reset old font description |
1773 | if (theFont) | |
1774 | pango_layout_set_font_description( m_layout, m_fontdesc ); | |
ff910433 RR |
1775 | } |
1776 | ||
1777 | void wxGnomePrintDC::DoGetSize(int* width, int* height) const | |
1778 | { | |
cffcf831 RR |
1779 | wxGnomePrintNativeData *native = |
1780 | (wxGnomePrintNativeData*) m_printData.GetNativeData(); | |
1781 | ||
1782 | // Query page size. This seems to omit the margins | |
1783 | // right now, although it shouldn't | |
1784 | double pw,ph; | |
59c73be8 | 1785 | gs_lgp->gnome_print_job_get_page_size( native->GetPrintJob(), &pw, &ph ); |
ff910433 | 1786 | |
ff910433 | 1787 | if (width) |
cffcf831 | 1788 | *width = (int) (pw + 0.5); |
ff910433 | 1789 | if (height) |
cffcf831 | 1790 | *height = (int) (ph + 0.5); |
ff910433 RR |
1791 | } |
1792 | ||
1793 | void wxGnomePrintDC::DoGetSizeMM(int *width, int *height) const | |
1794 | { | |
cffcf831 RR |
1795 | wxGnomePrintNativeData *native = |
1796 | (wxGnomePrintNativeData*) m_printData.GetNativeData(); | |
1797 | ||
389076f1 WS |
1798 | // This code assumes values in Pts. |
1799 | ||
cffcf831 | 1800 | double pw,ph; |
59c73be8 | 1801 | gs_lgp->gnome_print_job_get_page_size( native->GetPrintJob(), &pw, &ph ); |
cffcf831 RR |
1802 | |
1803 | // Convert to mm. | |
389076f1 | 1804 | |
59c73be8 RR |
1805 | const GnomePrintUnit *mm_unit = gs_lgp->gnome_print_unit_get_by_abbreviation( (const guchar*) "mm" ); |
1806 | const GnomePrintUnit *pts_unit = gs_lgp->gnome_print_unit_get_by_abbreviation( (const guchar*) "Pts" ); | |
1807 | gs_lgp->gnome_print_convert_distance( &pw, pts_unit, mm_unit ); | |
1808 | gs_lgp->gnome_print_convert_distance( &ph, pts_unit, mm_unit ); | |
389076f1 | 1809 | |
ff910433 | 1810 | if (width) |
cffcf831 | 1811 | *width = (int) (pw + 0.5); |
ff910433 | 1812 | if (height) |
cffcf831 | 1813 | *height = (int) (ph + 0.5); |
ff910433 RR |
1814 | } |
1815 | ||
1816 | wxSize wxGnomePrintDC::GetPPI() const | |
1817 | { | |
1818 | return wxSize(72,72); | |
1819 | } | |
1820 | ||
1821 | void wxGnomePrintDC::SetAxisOrientation( bool xLeftRight, bool yBottomUp ) | |
1822 | { | |
1823 | m_signX = (xLeftRight ? 1 : -1); | |
1824 | m_signY = (yBottomUp ? 1 : -1); | |
1825 | ||
1826 | ComputeScaleAndOrigin(); | |
1827 | } | |
1828 | ||
1829 | void wxGnomePrintDC::SetDeviceOrigin( wxCoord x, wxCoord y ) | |
1830 | { | |
1831 | int h = 0; | |
1832 | int w = 0; | |
1833 | GetSize( &w, &h ); | |
1834 | ||
1835 | wxDC::SetDeviceOrigin( x, h-y ); | |
1836 | } | |
1837 | ||
1838 | void wxGnomePrintDC::SetResolution(int ppi) | |
1839 | { | |
1840 | } | |
1841 | ||
1842 | int wxGnomePrintDC::GetResolution() | |
1843 | { | |
1844 | return 72; | |
1845 | } | |
7c72311f | 1846 | |
58c30cd8 RR |
1847 | |
1848 | class wxGnomePrintModule: public wxModule | |
1849 | { | |
1850 | public: | |
1851 | wxGnomePrintModule() {} | |
c6efd6e0 RR |
1852 | bool OnInit(); |
1853 | void OnExit(); | |
389076f1 | 1854 | |
58c30cd8 RR |
1855 | private: |
1856 | DECLARE_DYNAMIC_CLASS(wxGnomePrintModule) | |
1857 | }; | |
1858 | ||
c6efd6e0 RR |
1859 | bool wxGnomePrintModule::OnInit() |
1860 | { | |
1861 | gs_lgp = new wxGnomePrintLibrary; | |
1862 | if (gs_lgp->IsOk()) | |
1863 | wxPrintFactory::SetPrintFactory( new wxGnomePrintFactory ); | |
1864 | return true; | |
1865 | } | |
1866 | ||
1867 | void wxGnomePrintModule::OnExit() | |
1868 | { | |
1869 | delete gs_lgp; | |
1870 | } | |
1871 | ||
58c30cd8 | 1872 | IMPLEMENT_DYNAMIC_CLASS(wxGnomePrintModule, wxModule) |
389076f1 | 1873 | |
147bf263 JS |
1874 | // ---------------------------------------------------------------------------- |
1875 | // Print preview | |
1876 | // ---------------------------------------------------------------------------- | |
1877 | ||
1878 | IMPLEMENT_CLASS(wxGnomePrintPreview, wxPrintPreviewBase) | |
1879 | ||
1880 | void wxGnomePrintPreview::Init(wxPrintout * WXUNUSED(printout), | |
1881 | wxPrintout * WXUNUSED(printoutForPrinting)) | |
1882 | { | |
1883 | DetermineScaling(); | |
1884 | } | |
1885 | ||
1886 | wxGnomePrintPreview::wxGnomePrintPreview(wxPrintout *printout, | |
1887 | wxPrintout *printoutForPrinting, | |
1888 | wxPrintDialogData *data) | |
1889 | : wxPrintPreviewBase(printout, printoutForPrinting, data) | |
1890 | { | |
1891 | Init(printout, printoutForPrinting); | |
1892 | } | |
1893 | ||
1894 | wxGnomePrintPreview::wxGnomePrintPreview(wxPrintout *printout, | |
1895 | wxPrintout *printoutForPrinting, | |
1896 | wxPrintData *data) | |
1897 | : wxPrintPreviewBase(printout, printoutForPrinting, data) | |
1898 | { | |
1899 | Init(printout, printoutForPrinting); | |
1900 | } | |
1901 | ||
1902 | wxGnomePrintPreview::~wxGnomePrintPreview() | |
1903 | { | |
1904 | } | |
1905 | ||
1906 | bool wxGnomePrintPreview::Print(bool interactive) | |
1907 | { | |
1908 | if (!m_printPrintout) | |
1909 | return false; | |
1910 | ||
1911 | wxPrinter printer(& m_printDialogData); | |
1912 | return printer.Print(m_previewFrame, m_printPrintout, interactive); | |
1913 | } | |
1914 | ||
1915 | void wxGnomePrintPreview::DetermineScaling() | |
1916 | { | |
1917 | wxPaperSize paperType = m_printDialogData.GetPrintData().GetPaperId(); | |
1918 | if (paperType == wxPAPER_NONE) | |
1919 | paperType = wxPAPER_NONE; | |
1920 | ||
1921 | wxPrintPaperType *paper = wxThePrintPaperDatabase->FindPaperType(paperType); | |
1922 | if (!paper) | |
1923 | paper = wxThePrintPaperDatabase->FindPaperType(wxPAPER_A4); | |
1924 | ||
1925 | if (paper) | |
1926 | { | |
1927 | wxSize ScreenPixels = wxGetDisplaySize(); | |
1928 | wxSize ScreenMM = wxGetDisplaySizeMM(); | |
1929 | ||
1930 | m_previewPrintout->SetPPIScreen( (int) ((ScreenPixels.GetWidth() * 25.4) / ScreenMM.GetWidth()), | |
1931 | (int) ((ScreenPixels.GetHeight() * 25.4) / ScreenMM.GetHeight()) ); | |
1932 | m_previewPrintout->SetPPIPrinter(wxGnomePrintDC::GetResolution(), wxGnomePrintDC::GetResolution()); | |
1933 | ||
1934 | wxSize sizeDevUnits(paper->GetSizeDeviceUnits()); | |
1935 | ||
1936 | // TODO: get better resolution information from wxGnomePrintDC, if possible. | |
1937 | ||
1938 | sizeDevUnits.x = (wxCoord)((float)sizeDevUnits.x * wxGnomePrintDC::GetResolution() / 72.0); | |
1939 | sizeDevUnits.y = (wxCoord)((float)sizeDevUnits.y * wxGnomePrintDC::GetResolution() / 72.0); | |
1940 | wxSize sizeTenthsMM(paper->GetSize()); | |
1941 | wxSize sizeMM(sizeTenthsMM.x / 10, sizeTenthsMM.y / 10); | |
1942 | ||
1943 | // If in landscape mode, we need to swap the width and height. | |
1944 | if ( m_printDialogData.GetPrintData().GetOrientation() == wxLANDSCAPE ) | |
1945 | { | |
1946 | m_pageWidth = sizeDevUnits.y; | |
1947 | m_pageHeight = sizeDevUnits.x; | |
1948 | m_previewPrintout->SetPageSizeMM(sizeMM.y, sizeMM.x); | |
1949 | m_previewPrintout->SetPageSizePixels(m_pageWidth, m_pageHeight); | |
1950 | } | |
1951 | else | |
1952 | { | |
1953 | m_pageWidth = sizeDevUnits.x; | |
1954 | m_pageHeight = sizeDevUnits.y; | |
1955 | m_previewPrintout->SetPageSizeMM(sizeMM.x, sizeMM.y); | |
1956 | m_previewPrintout->SetPageSizePixels(m_pageWidth, m_pageHeight); | |
1957 | } | |
1958 | ||
1959 | // At 100%, the page should look about page-size on the screen. | |
1960 | m_previewScale = (float)0.8 * 72.0 / (float)wxGnomePrintDC::GetResolution(); | |
1961 | } | |
1962 | } | |
1963 | ||
7c72311f RR |
1964 | #endif |
1965 | // wxUSE_LIBGNOMEPRINT |