]> git.saurik.com Git - wxWidgets.git/blame - src/common/cmndata.cpp
replace m_nSelection by m_selection
[wxWidgets.git] / src / common / cmndata.cpp
CommitLineData
c801d85f 1/////////////////////////////////////////////////////////////////////////////
e4db172a 2// Name: src/common/cmndata.cpp
c801d85f
KB
3// Purpose: Common GDI data
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
55d99c7a 8// Copyright: (c) Julian Smart
65571936 9// Licence: wxWindows licence
c801d85f
KB
10/////////////////////////////////////////////////////////////////////////////
11
8826f46f
VZ
12// ============================================================================
13// declarations
14// ============================================================================
15
16// ----------------------------------------------------------------------------
17// headers
18// ----------------------------------------------------------------------------
19
c801d85f
KB
20// For compilers that support precompilation, includes "wx.h".
21#include "wx/wxprec.h"
22
23#ifdef __BORLANDC__
8826f46f 24 #pragma hdrstop
c801d85f
KB
25#endif
26
e4db172a
WS
27#include "wx/cmndata.h"
28
c801d85f 29#ifndef WX_PRECOMP
57bd4c60
WS
30 #if defined(__WXMSW__)
31 #include "wx/msw/wrapcdlg.h"
32 #endif // MSW
8826f46f
VZ
33 #include <stdio.h>
34 #include "wx/string.h"
35 #include "wx/utils.h"
36 #include "wx/app.h"
e4db172a 37 #include "wx/log.h"
dd05139a 38 #include "wx/gdicmn.h"
c801d85f
KB
39#endif
40
166fbaa4 41#include "wx/tokenzr.h"
8850cbd3
RR
42#include "wx/prntbase.h"
43#include "wx/printdlg.h"
8826f46f 44
dbc65e27
VZ
45#if wxUSE_FONTDLG
46 #include "wx/fontdlg.h"
47#endif // wxUSE_FONTDLG
48
88ac883a 49#if wxUSE_PRINTING_ARCHITECTURE
c801d85f 50
57bd4c60 51#include "wx/paper.h"
179e085f 52
746d7582 53
57bd4c60
WS
54IMPLEMENT_DYNAMIC_CLASS(wxPrintData, wxObject)
55IMPLEMENT_DYNAMIC_CLASS(wxPrintDialogData, wxObject)
56IMPLEMENT_DYNAMIC_CLASS(wxPageSetupDialogData, wxObject)
57
58#endif // wxUSE_PRINTING_ARCHITECTURE
cd0b1709 59
57bd4c60
WS
60IMPLEMENT_DYNAMIC_CLASS(wxFontData, wxObject)
61IMPLEMENT_DYNAMIC_CLASS(wxColourData, wxObject)
c801d85f 62
8826f46f
VZ
63// ============================================================================
64// implementation
65// ============================================================================
66
67// ----------------------------------------------------------------------------
68// wxColourData
69// ----------------------------------------------------------------------------
c801d85f 70
8bbe427f 71wxColourData::wxColourData()
c801d85f 72{
393c836c 73 m_chooseFull = false;
ae500232 74 m_dataColour.Set(0,0,0);
393c836c 75 // m_custColours are wxNullColours initially
7bcb11d3 76}
c801d85f 77
7bcb11d3 78wxColourData::wxColourData(const wxColourData& data)
5cd0202b 79 : wxObject()
7bcb11d3
JS
80{
81 (*this) = data;
8bbe427f 82}
c801d85f 83
8bbe427f 84wxColourData::~wxColourData()
c801d85f
KB
85{
86}
87
cebf2fec 88void wxColourData::SetCustomColour(int i, const wxColour& colour)
c801d85f 89{
9a83f860 90 wxCHECK_RET( i >= 0 && i < NUM_CUSTOM, wxT("custom colour index out of range") );
8826f46f 91
ae500232 92 m_custColours[i] = colour;
c801d85f
KB
93}
94
d62c1e62 95wxColour wxColourData::GetCustomColour(int i) const
c801d85f 96{
559843f0 97 wxCHECK_MSG( i >= 0 && i < NUM_CUSTOM, wxColour(0,0,0),
9a83f860 98 wxT("custom colour index out of range") );
8826f46f 99
ae500232 100 return m_custColours[i];
c801d85f
KB
101}
102
5cd0202b 103wxColourData& wxColourData::operator=(const wxColourData& data)
c801d85f 104{
559843f0 105 for ( int i = 0; i < NUM_CUSTOM; i++)
ae500232 106 m_custColours[i] = data.m_custColours[i];
8826f46f 107
e6ef9ea4 108 m_dataColour = data.m_dataColour;
ae500232 109 m_chooseFull = data.m_chooseFull;
5cd0202b
VZ
110
111 return *this;
c801d85f
KB
112}
113
e6ef9ea4
VZ
114// ----------------------------------------------------------------------------
115// [de]serialization
116// ----------------------------------------------------------------------------
117
118// separator used between different fields
119static const char wxCOL_DATA_SEP = ',';
120
121wxString wxColourData::ToString() const
122{
123 wxString str(m_chooseFull ? '1' : '0');
124
559843f0 125 for ( int i = 0; i < NUM_CUSTOM; i++ )
e6ef9ea4
VZ
126 {
127 str += wxCOL_DATA_SEP;
128
129 const wxColour& clr = m_custColours[i];
130 if ( clr.IsOk() )
131 str += clr.GetAsString(wxC2S_HTML_SYNTAX);
132 }
133
134 return str;
135}
136
137bool wxColourData::FromString(const wxString& str)
138{
166fbaa4
PC
139 wxStringTokenizer tokenizer(str, wxCOL_DATA_SEP);
140 wxString token = tokenizer.GetNextToken();
141 m_chooseFull = token == '1';
142 bool success = m_chooseFull || token == '0';
143 for (int i = 0; success && i < NUM_CUSTOM; i++)
e6ef9ea4 144 {
166fbaa4
PC
145 token = tokenizer.GetNextToken();
146 if (token.empty())
147 m_custColours[i] = wxNullColour;
148 else
149 success = m_custColours[i].Set(token);
e6ef9ea4 150 }
166fbaa4 151 return success;
e6ef9ea4
VZ
152}
153
8826f46f
VZ
154// ----------------------------------------------------------------------------
155// Font data
156// ----------------------------------------------------------------------------
c801d85f 157
8bbe427f 158wxFontData::wxFontData()
c801d85f 159{
7bcb11d3 160 // Intialize colour to black.
ae500232 161 m_fontColour = wxNullColour;
8826f46f 162
c9d59ee7
WS
163 m_showHelp = false;
164 m_allowSymbols = true;
165 m_enableEffects = true;
ae500232
JS
166 m_minSize = 0;
167 m_maxSize = 0;
c801d85f 168
7beba2fc 169 m_encoding = wxFONTENCODING_SYSTEM;
c801d85f
KB
170}
171
8bbe427f 172wxFontData::~wxFontData()
c801d85f
KB
173{
174}
175
dbc65e27
VZ
176#if wxUSE_FONTDLG
177
178wxFontDialogBase::~wxFontDialogBase()
179{
180}
181
182#endif // wxUSE_FONTDLG
183
88ac883a 184#if wxUSE_PRINTING_ARCHITECTURE
8826f46f
VZ
185// ----------------------------------------------------------------------------
186// Print data
187// ----------------------------------------------------------------------------
c801d85f 188
8bbe427f 189wxPrintData::wxPrintData()
c801d85f 190{
60090256 191 m_bin = wxPRINTBIN_DEFAULT;
781609f2 192 m_media = wxPRINTMEDIA_DEFAULT;
6038ec8e 193 m_printMode = wxPRINT_MODE_PRINTER;
7bcb11d3 194 m_printOrientation = wxPORTRAIT;
c7c6e54b 195 m_printOrientationReversed = false;
7bcb11d3 196 m_printNoCopies = 1;
c9d59ee7 197 m_printCollate = false;
8826f46f 198
7bcb11d3 199 // New, 24/3/99
b494c48b 200 m_printerName = wxEmptyString;
c9d59ee7 201 m_colour = true;
7bcb11d3
JS
202 m_duplexMode = wxDUPLEX_SIMPLEX;
203 m_printQuality = wxPRINT_QUALITY_HIGH;
d5eaa19f
VZ
204
205 // we intentionally don't initialize paper id and size at all, like this
206 // the default system settings will be used for them
207 m_paperId = wxPAPER_NONE;
208 m_paperSize = wxDefaultSize;
7bcb11d3 209
aa96f01c
RR
210 m_privData = NULL;
211 m_privDataLen = 0;
660296aa 212
8850cbd3 213 m_nativeData = wxPrintFactory::GetFactory()->CreatePrintNativeData();
7bcb11d3
JS
214}
215
216wxPrintData::wxPrintData(const wxPrintData& printData)
5e472c1f 217 : wxObject()
7bcb11d3 218{
7b8a9da3 219 m_nativeData = NULL;
7cc52cd8 220 m_privData = NULL;
7bcb11d3 221 (*this) = printData;
c801d85f
KB
222}
223
aa96f01c
RR
224void wxPrintData::SetPrivData( char *privData, int len )
225{
5276b0a5 226 wxDELETEA(m_privData);
aa96f01c
RR
227 m_privDataLen = len;
228 if (m_privDataLen > 0)
229 {
230 m_privData = new char[m_privDataLen];
231 memcpy( m_privData, privData, m_privDataLen );
232 }
233}
234
8bbe427f 235wxPrintData::~wxPrintData()
c801d85f 236{
8850cbd3 237 m_nativeData->m_ref--;
4055ed82 238 if (m_nativeData->m_ref == 0)
8850cbd3 239 delete m_nativeData;
660296aa 240
aa96f01c
RR
241 if (m_privData)
242 delete [] m_privData;
c801d85f
KB
243}
244
51abe921
SC
245void wxPrintData::ConvertToNative()
246{
53fa663a 247 m_nativeData->TransferFrom( *this ) ;
51abe921
SC
248}
249
250void wxPrintData::ConvertFromNative()
251{
53fa663a 252 m_nativeData->TransferTo( *this ) ;
53fa663a 253}
51abe921 254
83666e99 255wxPrintData& wxPrintData::operator=(const wxPrintData& data)
7bcb11d3 256{
83666e99
VZ
257 if ( &data == this )
258 return *this;
259
7bcb11d3
JS
260 m_printNoCopies = data.m_printNoCopies;
261 m_printCollate = data.m_printCollate;
262 m_printOrientation = data.m_printOrientation;
c7c6e54b 263 m_printOrientationReversed = data.m_printOrientationReversed;
7bcb11d3
JS
264 m_printerName = data.m_printerName;
265 m_colour = data.m_colour;
266 m_duplexMode = data.m_duplexMode;
267 m_printQuality = data.m_printQuality;
268 m_paperId = data.m_paperId;
269 m_paperSize = data.m_paperSize;
60090256 270 m_bin = data.m_bin;
781609f2 271 m_media = data.m_media;
6038ec8e 272 m_printMode = data.m_printMode;
4055ed82 273 m_filename = data.m_filename;
aac85509 274
4055ed82 275 // UnRef old m_nativeData
7b8a9da3
RD
276 if (m_nativeData)
277 {
278 m_nativeData->m_ref--;
4055ed82 279 if (m_nativeData->m_ref == 0)
7b8a9da3
RD
280 delete m_nativeData;
281 }
aac85509 282 // Set Ref new one
8850cbd3
RR
283 m_nativeData = data.GetNativeData();
284 m_nativeData->m_ref++;
4055ed82 285
5276b0a5 286 wxDELETEA(m_privData);
aa96f01c
RR
287 m_privDataLen = data.GetPrivDataLen();
288 if (m_privDataLen > 0)
289 {
290 m_privData = new char[m_privDataLen];
291 memcpy( m_privData, data.GetPrivData(), m_privDataLen );
292 }
83666e99
VZ
293
294 return *this;
7bcb11d3
JS
295}
296
58cf0491 297// Is this data OK for showing the print dialog?
b7cacb43 298bool wxPrintData::IsOk() const
58cf0491 299{
fd64de59 300 m_nativeData->TransferFrom( *this );
8850cbd3
RR
301
302 return m_nativeData->Ok();
58cf0491 303}
8826f46f
VZ
304
305// ----------------------------------------------------------------------------
306// Print dialog data
307// ----------------------------------------------------------------------------
7bcb11d3
JS
308
309wxPrintDialogData::wxPrintDialogData()
310{
7bcb11d3
JS
311 m_printFromPage = 0;
312 m_printToPage = 0;
313 m_printMinPage = 0;
314 m_printMaxPage = 0;
315 m_printNoCopies = 1;
c9d59ee7
WS
316 m_printAllPages = false;
317 m_printCollate = false;
318 m_printToFile = false;
319 m_printSelection = false;
320 m_printEnableSelection = false;
321 m_printEnablePageNumbers = true;
4055ed82 322
9f1316dc
RR
323 wxPrintFactory* factory = wxPrintFactory::GetFactory();
324 m_printEnablePrintToFile = ! factory->HasOwnPrintToFile();
4055ed82 325
c9d59ee7 326 m_printEnableHelp = false;
7bcb11d3
JS
327}
328
329wxPrintDialogData::wxPrintDialogData(const wxPrintDialogData& dialogData)
5e472c1f 330 : wxObject()
7bcb11d3
JS
331{
332 (*this) = dialogData;
333}
334
335wxPrintDialogData::wxPrintDialogData(const wxPrintData& printData)
336{
d2b354f9 337 m_printFromPage = 1;
7bcb11d3 338 m_printToPage = 0;
d2b354f9
JS
339 m_printMinPage = 1;
340 m_printMaxPage = 9999;
7bcb11d3 341 m_printNoCopies = 1;
dc0cea5e
RR
342 // On Mac the Print dialog always defaults to "All Pages"
343#ifdef __WXMAC__
344 m_printAllPages = true;
345#else
c9d59ee7 346 m_printAllPages = false;
dc0cea5e 347#endif
c9d59ee7
WS
348 m_printCollate = false;
349 m_printToFile = false;
350 m_printSelection = false;
351 m_printEnableSelection = false;
352 m_printEnablePageNumbers = true;
353 m_printEnablePrintToFile = true;
354 m_printEnableHelp = false;
7bcb11d3
JS
355 m_printData = printData;
356}
357
358wxPrintDialogData::~wxPrintDialogData()
359{
7bcb11d3
JS
360}
361
7bcb11d3 362void wxPrintDialogData::operator=(const wxPrintDialogData& data)
c801d85f 363{
7bcb11d3
JS
364 m_printFromPage = data.m_printFromPage;
365 m_printToPage = data.m_printToPage;
366 m_printMinPage = data.m_printMinPage;
367 m_printMaxPage = data.m_printMaxPage;
368 m_printNoCopies = data.m_printNoCopies;
369 m_printAllPages = data.m_printAllPages;
370 m_printCollate = data.m_printCollate;
371 m_printToFile = data.m_printToFile;
5360828d 372 m_printSelection = data.m_printSelection;
7bcb11d3
JS
373 m_printEnableSelection = data.m_printEnableSelection;
374 m_printEnablePageNumbers = data.m_printEnablePageNumbers;
375 m_printEnableHelp = data.m_printEnableHelp;
376 m_printEnablePrintToFile = data.m_printEnablePrintToFile;
7bcb11d3
JS
377 m_printData = data.m_printData;
378}
379
380void wxPrintDialogData::operator=(const wxPrintData& data)
381{
382 m_printData = data;
c801d85f
KB
383}
384
8826f46f
VZ
385// ----------------------------------------------------------------------------
386// wxPageSetupDialogData
387// ----------------------------------------------------------------------------
c801d85f 388
7bcb11d3 389wxPageSetupDialogData::wxPageSetupDialogData()
c801d85f 390{
c47addef 391 m_paperSize = wxSize(0,0);
7bcb11d3
JS
392
393 CalculatePaperSizeFromId();
394
2997ca30
WS
395 m_minMarginTopLeft =
396 m_minMarginBottomRight =
397 m_marginTopLeft =
c47addef 398 m_marginBottomRight = wxPoint(0,0);
7bcb11d3
JS
399
400 // Flags
c9d59ee7
WS
401 m_defaultMinMargins = false;
402 m_enableMargins = true;
403 m_enableOrientation = true;
404 m_enablePaper = true;
405 m_enablePrinter = true;
406 m_enableHelp = false;
407 m_getDefaultInfo = false;
7bcb11d3 408}
c801d85f 409
7bcb11d3 410wxPageSetupDialogData::wxPageSetupDialogData(const wxPageSetupDialogData& dialogData)
5e472c1f 411 : wxObject()
7bcb11d3
JS
412{
413 (*this) = dialogData;
414}
415
416wxPageSetupDialogData::wxPageSetupDialogData(const wxPrintData& printData)
417{
c47addef 418 m_paperSize = wxSize(0,0);
2997ca30
WS
419 m_minMarginTopLeft =
420 m_minMarginBottomRight =
421 m_marginTopLeft =
c47addef 422 m_marginBottomRight = wxPoint(0,0);
7bcb11d3
JS
423
424 // Flags
c9d59ee7
WS
425 m_defaultMinMargins = false;
426 m_enableMargins = true;
427 m_enableOrientation = true;
428 m_enablePaper = true;
429 m_enablePrinter = true;
430 m_enableHelp = false;
431 m_getDefaultInfo = false;
7bcb11d3
JS
432
433 m_printData = printData;
434
435 // The wxPrintData paper size overrides these values, unless the size cannot
436 // be found.
437 CalculatePaperSizeFromId();
c801d85f
KB
438}
439
7bcb11d3 440wxPageSetupDialogData::~wxPageSetupDialogData()
c801d85f 441{
c801d85f
KB
442}
443
5e472c1f 444wxPageSetupDialogData& wxPageSetupDialogData::operator=(const wxPageSetupDialogData& data)
c801d85f 445{
7bcb11d3
JS
446 m_paperSize = data.m_paperSize;
447 m_minMarginTopLeft = data.m_minMarginTopLeft;
448 m_minMarginBottomRight = data.m_minMarginBottomRight;
449 m_marginTopLeft = data.m_marginTopLeft;
450 m_marginBottomRight = data.m_marginBottomRight;
451 m_defaultMinMargins = data.m_defaultMinMargins;
452 m_enableMargins = data.m_enableMargins;
453 m_enableOrientation = data.m_enableOrientation;
454 m_enablePaper = data.m_enablePaper;
455 m_enablePrinter = data.m_enablePrinter;
d0ee33f5 456 m_getDefaultInfo = data.m_getDefaultInfo;
7bcb11d3
JS
457 m_enableHelp = data.m_enableHelp;
458
459 m_printData = data.m_printData;
5e472c1f
GD
460
461 return *this;
7bcb11d3 462}
c801d85f 463
5e472c1f 464wxPageSetupDialogData& wxPageSetupDialogData::operator=(const wxPrintData& data)
7bcb11d3
JS
465{
466 m_printData = data;
24c5243d 467 CalculatePaperSizeFromId();
5e472c1f
GD
468
469 return *this;
c801d85f
KB
470}
471
7bcb11d3
JS
472// If a corresponding paper type is found in the paper database, will set the m_printData
473// paper size id member as well.
474void wxPageSetupDialogData::SetPaperSize(const wxSize& sz)
475{
476 m_paperSize = sz;
c801d85f 477
7bcb11d3
JS
478 CalculateIdFromPaperSize();
479}
c801d85f 480
7bcb11d3
JS
481// Sets the wxPrintData id, plus the paper width/height if found in the paper database.
482void wxPageSetupDialogData::SetPaperSize(wxPaperSize id)
483{
484 m_printData.SetPaperId(id);
485
486 CalculatePaperSizeFromId();
c801d85f
KB
487}
488
24c5243d
RD
489void wxPageSetupDialogData::SetPrintData(const wxPrintData& printData)
490{
491 m_printData = printData;
b494c48b 492 CalculatePaperSizeFromId();
24c5243d
RD
493}
494
7bcb11d3
JS
495// Use paper size defined in this object to set the wxPrintData
496// paper id
497void wxPageSetupDialogData::CalculateIdFromPaperSize()
c801d85f 498{
d3b9f782 499 wxASSERT_MSG( (wxThePrintPaperDatabase != NULL),
fbdcff4a 500 wxT("wxThePrintPaperDatabase should not be NULL. Do not create global print dialog data objects.") );
c801d85f 501
7bcb11d3
JS
502 wxSize sz = GetPaperSize();
503
504 wxPaperSize id = wxThePrintPaperDatabase->GetSize(wxSize(sz.x* 10, sz.y * 10));
505 if (id != wxPAPER_NONE)
c801d85f 506 {
7bcb11d3 507 m_printData.SetPaperId(id);
c801d85f
KB
508 }
509}
8826f46f 510
7bcb11d3
JS
511// Use paper id in wxPrintData to set this object's paper size
512void wxPageSetupDialogData::CalculatePaperSizeFromId()
513{
d3b9f782 514 wxASSERT_MSG( (wxThePrintPaperDatabase != NULL),
fbdcff4a 515 wxT("wxThePrintPaperDatabase should not be NULL. Do not create global print dialog data objects.") );
7bcb11d3
JS
516
517 wxSize sz = wxThePrintPaperDatabase->GetSize(m_printData.GetPaperId());
c801d85f 518
331dbb61
JS
519 if (sz != wxSize(0, 0))
520 {
521 // sz is in 10ths of a mm, while paper size is in mm
522 m_paperSize.x = sz.x / 10;
523 m_paperSize.y = sz.y / 10;
524 }
7bcb11d3 525}
8826f46f 526
88ac883a 527#endif // wxUSE_PRINTING_ARCHITECTURE