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