]> git.saurik.com Git - wxWidgets.git/blame - include/wx/paper.h
added wxGet/SetWindowProc/UserData()
[wxWidgets.git] / include / wx / paper.h
CommitLineData
33d28952
JS
1/////////////////////////////////////////////////////////////////////////////
2// Name: paper.h
3// Purpose: Paper database types and classes
4// Author: Julian Smart
5// Modified by:
6// Created: 01/02/97
7// RCS-ID: $Id$
8// Copyright: (c) Julian Smart
9// Licence: wxWindows licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_PAPERH__
13#define _WX_PAPERH__
14
12028905 15#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
33d28952
JS
16#pragma interface "paper.h"
17#endif
18
19#include "wx/defs.h"
20#include "wx/event.h"
21#include "wx/cmndata.h"
f6bcfd97 22#include "wx/intl.h"
33d28952
JS
23
24/*
25 * Paper type: see defs.h for wxPaperSize enum.
9c110148 26 * A wxPrintPaperType can have an id and a name, or just a name and wxPAPER_NONE,
33d28952
JS
27 * so you can add further paper types without needing new ids.
28 */
29
30#ifdef __WXMSW__
31#define WXADDPAPER(paperId, platformId, name, w, h) AddPaperType(paperId, platformId, name, w, h)
32#else
33#define WXADDPAPER(paperId, platformId, name, w, h) AddPaperType(paperId, 0, name, w, h)
34#endif
35
36class WXDLLEXPORT wxPrintPaperType: public wxObject
37{
38public:
39 wxPrintPaperType();
40
41 // platformId is a platform-specific id, such as in Windows, DMPAPER_...
42 wxPrintPaperType(wxPaperSize paperId, int platformId, const wxString& name, int w, int h);
43
f6bcfd97 44 inline wxString GetName() const { return wxGetTranslation(m_paperName); }
33d28952
JS
45 inline wxPaperSize GetId() const { return m_paperId; }
46 inline int GetPlatformId() const { return m_platformId; }
47
48 // Get width and height in tenths of a millimetre
49 inline int GetWidth() const { return m_width; }
50 inline int GetHeight() const { return m_height; }
51
52 // Get size in tenths of a millimetre
53 inline wxSize GetSize() const { return wxSize(m_width, m_height); }
54
55 // Get size in a millimetres
56 inline wxSize GetSizeMM() const { return wxSize(m_width/10, m_height/10); }
57
58 // Get width and height in device units (1/72th of an inch)
59 wxSize GetSizeDeviceUnits() const ;
60
61public:
62 wxPaperSize m_paperId;
63 int m_platformId;
64 int m_width; // In tenths of a millimetre
65 int m_height; // In tenths of a millimetre
66 wxString m_paperName;
67
68private:
69 DECLARE_DYNAMIC_CLASS(wxPrintPaperType)
70};
71
222ed1d6
MB
72class WXDLLEXPORT wxStringToPrintPaperTypeHashMap;
73class WXDLLEXPORT wxPrintPaperTypeList;
74
75class WXDLLEXPORT wxPrintPaperDatabase
33d28952
JS
76{
77public:
78 wxPrintPaperDatabase();
222ed1d6 79 ~wxPrintPaperDatabase();
33d28952
JS
80
81 void CreateDatabase();
82 void ClearDatabase();
83
84 void AddPaperType(wxPaperSize paperId, const wxString& name, int w, int h);
85 void AddPaperType(wxPaperSize paperId, int platformId, const wxString& name, int w, int h);
86
87 // Find by name
88 wxPrintPaperType *FindPaperType(const wxString& name);
89
90 // Find by size id
91 wxPrintPaperType *FindPaperType(wxPaperSize id);
92
93 // Find by platform id
94 wxPrintPaperType *FindPaperTypeByPlatformId(int id);
95
96 // Find by size
97 wxPrintPaperType *FindPaperType(const wxSize& size);
98
99 // Convert name to size id
100 wxPaperSize ConvertNameToId(const wxString& name);
101
102 // Convert size id to name
103 wxString ConvertIdToName(wxPaperSize paperId);
104
105 // Get the paper size
106 wxSize GetSize(wxPaperSize paperId);
107
108 // Get the paper size
109 wxPaperSize GetSize(const wxSize& size);
110
222ed1d6
MB
111 //
112 wxPrintPaperType* Item(size_t index) const;
113 size_t GetCount() const;
33d28952 114private:
222ed1d6
MB
115 wxStringToPrintPaperTypeHashMap* m_map;
116 wxPrintPaperTypeList* m_list;
117 // DECLARE_DYNAMIC_CLASS(wxPrintPaperDatabase)
33d28952
JS
118};
119
120WXDLLEXPORT_DATA(extern wxPrintPaperDatabase*) wxThePrintPaperDatabase;
121
122
123#endif
124 // _WX_PAPERH__