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