]> git.saurik.com Git - wxWidgets.git/blame - include/wx/generic/prntdlgg.h
Removed small OGL glitches; added new sample
[wxWidgets.git] / include / wx / generic / prntdlgg.h
CommitLineData
c801d85f
KB
1/////////////////////////////////////////////////////////////////////////////
2// Name: prntdlgg.h
3// Purpose: wxGenericPrintDialog, wxGenericPrintSetupDialog,
4// wxGenericPageSetupDialog
5// Author: Julian Smart
6// Modified by:
7// Created: 01/02/97
8// RCS-ID: $Id$
9// Copyright: (c)
10// Licence: wxWindows licence
11/////////////////////////////////////////////////////////////////////////////
12
13#ifndef __PRINTDLGH_G_
14#define __PRINTDLGH_G_
15
16#ifdef __GNUG__
17#pragma interface "prntdlgg.h"
18#endif
19
20#include "wx/defs.h"
21#include "wx/dialog.h"
22#include "wx/dc.h"
23#include "wx/cmndata.h"
bf38cbff
JS
24#include "wx/dialog.h"
25
26#if wxUSE_POSTSCRIPT
27#include "wx/dcps.h"
28#endif
c801d85f
KB
29
30class WXDLLEXPORT wxTextCtrl;
31class WXDLLEXPORT wxButton;
32class WXDLLEXPORT wxCheckBox;
33class WXDLLEXPORT wxChoice;
34class WXDLLEXPORT wxStaticText;
35class WXDLLEXPORT wxRadioBox;
5e9f4026 36class WXDLLEXPORT wxPrintSetupData;
c801d85f
KB
37
38/*
39 * Simulated Print and Print Setup dialogs
40 * for non-Windows platforms (and Windows using PostScript print/preview)
41 */
42
43#define wxPRINTID_STATIC 10
44#define wxPRINTID_RANGE 11
45#define wxPRINTID_FROM 12
46#define wxPRINTID_TO 13
47#define wxPRINTID_COPIES 14
48#define wxPRINTID_PRINTTOFILE 15
49#define wxPRINTID_SETUP 16
50
51class WXDLLEXPORT wxGenericPrintDialog: public wxDialog
52{
53 DECLARE_DYNAMIC_CLASS(wxGenericPrintDialog)
54
55 public:
56 wxStaticText *printerMessage;
57 wxButton *setupButton;
58 wxButton *helpButton;
59 wxRadioBox *rangeRadioBox;
60 wxTextCtrl *fromText;
61 wxTextCtrl *toText;
62 wxTextCtrl *noCopiesText;
63 wxCheckBox *printToFileCheckBox;
64 wxCheckBox *collateCopiesCheckBox;
65
66 wxPrintData printData;
67 wxGenericPrintDialog(wxWindow *parent, wxPrintData* data);
68 ~wxGenericPrintDialog(void);
69
70 void OnSetup(wxCommandEvent& event);
71 void OnRange(wxCommandEvent& event);
72 void OnOK(wxCommandEvent& event);
73
74 virtual bool TransferDataFromWindow(void);
75 virtual bool TransferDataToWindow(void);
76
77 virtual int ShowModal(void);
78
79 inline wxPrintData& GetPrintData(void) { return printData; }
80 wxDC *GetPrintDC(void);
81
82DECLARE_EVENT_TABLE()
83};
84
85#define wxPRINTID_PRINTCOLOUR 10
86#define wxPRINTID_ORIENTATION 11
87#define wxPRINTID_COMMAND 12
88#define wxPRINTID_OPTIONS 13
89#define wxPRINTID_PAPERSIZE 14
90
91class WXDLLEXPORT wxGenericPrintSetupDialog: public wxDialog
92{
93 DECLARE_CLASS(wxGenericPrintSetupDialog)
94
95 public:
96 wxRadioBox *orientationRadioBox;
97 wxTextCtrl *printerCommandText;
98 wxTextCtrl *printerOptionsText;
99 wxCheckBox *colourCheckBox;
100 wxChoice *paperTypeChoice;
101
5e9f4026 102#if wxUSE_POSTSCRIPT
c801d85f 103 wxPrintSetupData printData;
5e9f4026
VZ
104 inline wxPrintSetupData& GetPrintData(void) { return printData; }
105#endif
106
c801d85f
KB
107 wxGenericPrintSetupDialog(wxWindow *parent, wxPrintSetupData* data);
108 ~wxGenericPrintSetupDialog(void);
109
110 virtual bool TransferDataFromWindow(void);
111 virtual bool TransferDataToWindow(void);
112
113 wxChoice *CreatePaperTypeChoice(int* x, int* y);
c801d85f
KB
114};
115
116#define wxPRINTID_LEFTMARGIN 30
117#define wxPRINTID_RIGHTMARGIN 31
118#define wxPRINTID_TOPMARGIN 32
119#define wxPRINTID_BOTTOMMARGIN 33
120
121class WXDLLEXPORT wxGenericPageSetupDialog: public wxDialog
122{
123 DECLARE_CLASS(wxGenericPageSetupDialog)
124
125 public:
126 wxButton *printerButton;
127 wxRadioBox *orientationRadioBox;
128 wxTextCtrl *marginLeftText;
129 wxTextCtrl *marginTopText;
130 wxTextCtrl *marginRightText;
131 wxTextCtrl *marginBottomText;
132 wxChoice *paperTypeChoice;
133
134 static bool pageSetupDialogCancelled;
135
136 wxPageSetupData pageData;
137
c67daf87 138 wxGenericPageSetupDialog(wxWindow *parent, wxPageSetupData* data = (wxPageSetupData*) NULL);
c801d85f
KB
139 ~wxGenericPageSetupDialog(void);
140
141 virtual bool TransferDataFromWindow(void);
142 virtual bool TransferDataToWindow(void);
143
144 void OnPrinter(wxCommandEvent& event);
145
146 wxChoice *CreatePaperTypeChoice(int* x, int* y);
147 inline wxPageSetupData& GetPageSetupData(void) { return pageData; }
148
149DECLARE_EVENT_TABLE()
150};
151
152#endif
153 // __PRINTDLGH_G__