]> git.saurik.com Git - wxWidgets.git/blame - include/wx/fontpicker.h
Use wxRendererNative::DrawTitleBarBitmap() for info bar close button.
[wxWidgets.git] / include / wx / fontpicker.h
CommitLineData
ec376c8f
VZ
1/////////////////////////////////////////////////////////////////////////////
2// Name: wx/fontpicker.h
3// Purpose: wxFontPickerCtrl base header
4// Author: Francesco Montorsi
5// Modified by:
6// Created: 14/4/2006
7// Copyright: (c) Francesco Montorsi
8// RCS-ID: $Id$
9// Licence: wxWindows Licence
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _WX_FONTPICKER_H_BASE_
13#define _WX_FONTPICKER_H_BASE_
14
15#include "wx/defs.h"
16
17
18#if wxUSE_FONTPICKERCTRL
19
ec376c8f
VZ
20#include "wx/pickerbase.h"
21
22
b5dbe15d 23class WXDLLIMPEXP_FWD_CORE wxFontPickerEvent;
ec376c8f 24
53a2db12
FM
25extern WXDLLIMPEXP_DATA_CORE(const char) wxFontPickerWidgetNameStr[];
26extern WXDLLIMPEXP_DATA_CORE(const char) wxFontPickerCtrlNameStr[];
ec376c8f
VZ
27
28
29// ----------------------------------------------------------------------------
30// wxFontPickerWidgetBase: a generic abstract interface which must be
31// implemented by controls used by wxFontPickerCtrl
32// ----------------------------------------------------------------------------
33
34class WXDLLIMPEXP_CORE wxFontPickerWidgetBase
35{
36public:
37 wxFontPickerWidgetBase() { m_selectedFont = *wxNORMAL_FONT; }
38 virtual ~wxFontPickerWidgetBase() {}
39
40 wxFont GetSelectedFont() const
41 { return m_selectedFont; }
42 virtual void SetSelectedFont(const wxFont &f)
43 { m_selectedFont = f; UpdateFont(); }
44
45protected:
46
47 virtual void UpdateFont() = 0;
48
49 // the current font (may be invalid if none)
50 // NOTE: don't call this m_font as wxWindow::m_font already exists
51 wxFont m_selectedFont;
52};
53
54// Styles which must be supported by all controls implementing wxFontPickerWidgetBase
55// NB: these styles must be defined to carefully-chosen values to
56// avoid conflicts with wxButton's styles
57
58
59// keeps the label of the button updated with the fontface name + font size
60// E.g. choosing "Times New Roman bold, italic with size 10" from the fontdialog,
61// updates the wxFontButtonGeneric's label (overwriting any previous label)
62// with the "Times New Roman, 10" text (only fontface + fontsize is displayed
63// to avoid extralong labels).
64#define wxFNTP_FONTDESC_AS_LABEL 0x0008
65
66// uses the currently selected font to draw the label of the button
67#define wxFNTP_USEFONT_FOR_LABEL 0x0010
68
ff654490
VZ
69#define wxFONTBTN_DEFAULT_STYLE \
70 (wxFNTP_FONTDESC_AS_LABEL | wxFNTP_USEFONT_FOR_LABEL)
71
72// native version currently only exists in wxGTK2
73#if defined(__WXGTK20__) && !defined(__WXUNIVERSAL__)
ec376c8f
VZ
74 #include "wx/gtk/fontpicker.h"
75 #define wxFontPickerWidget wxFontButton
76#else
77 #include "wx/generic/fontpickerg.h"
78 #define wxFontPickerWidget wxGenericFontButton
79#endif
80
81
82// ----------------------------------------------------------------------------
83// wxFontPickerCtrl specific flags
84// ----------------------------------------------------------------------------
85
556151f5
MW
86#define wxFNTP_USE_TEXTCTRL (wxPB_USE_TEXTCTRL)
87#define wxFNTP_DEFAULT_STYLE (wxFNTP_FONTDESC_AS_LABEL|wxFNTP_USEFONT_FOR_LABEL)
ec376c8f
VZ
88
89// not a style but rather the default value of the maximum pointsize allowed
90#define wxFNTP_MAXPOINT_SIZE 100
91
92
93// ----------------------------------------------------------------------------
94// wxFontPickerCtrl: platform-independent class which embeds the
95// platform-dependent wxFontPickerWidget andm if wxFNTP_USE_TEXTCTRL style is
96// used, a textctrl next to it.
97// ----------------------------------------------------------------------------
98
99class WXDLLIMPEXP_CORE wxFontPickerCtrl : public wxPickerBase
100{
101public:
102 wxFontPickerCtrl()
103 : m_bIgnoreNextTextCtrlUpdate(false),
104 m_nMaxPointSize(wxFNTP_MAXPOINT_SIZE)
105 {
106 }
107
108 virtual ~wxFontPickerCtrl() {}
109
110
111 wxFontPickerCtrl(wxWindow *parent,
112 wxWindowID id,
305329c2 113 const wxFont& initial = wxNullFont,
ec376c8f
VZ
114 const wxPoint& pos = wxDefaultPosition,
115 const wxSize& size = wxDefaultSize,
116 long style = wxFNTP_DEFAULT_STYLE,
117 const wxValidator& validator = wxDefaultValidator,
118 const wxString& name = wxFontPickerCtrlNameStr)
119 : m_bIgnoreNextTextCtrlUpdate(false),
120 m_nMaxPointSize(wxFNTP_MAXPOINT_SIZE)
121 {
122 Create(parent, id, initial, pos, size, style, validator, name);
123 }
124
125 bool Create(wxWindow *parent,
126 wxWindowID id,
305329c2 127 const wxFont& initial = wxNullFont,
ec376c8f
VZ
128 const wxPoint& pos = wxDefaultPosition,
129 const wxSize& size = wxDefaultSize,
130 long style = wxFNTP_DEFAULT_STYLE,
131 const wxValidator& validator = wxDefaultValidator,
132 const wxString& name = wxFontPickerCtrlNameStr);
133
134
135public: // public API
136
137 // get the font chosen
138 wxFont GetSelectedFont() const
139 { return ((wxFontPickerWidget *)m_picker)->GetSelectedFont(); }
140
141 // sets currently displayed font
142 void SetSelectedFont(const wxFont& f);
143
144 // set/get the max pointsize
145 void SetMaxPointSize(unsigned int max)
146 { m_nMaxPointSize=max; }
147 unsigned int GetMaxPointSize() const
148 { return m_nMaxPointSize; }
149
150public: // internal functions
151
152 void UpdatePickerFromTextCtrl();
153 void UpdateTextCtrlFromPicker();
154
155 // event handler for our picker
156 void OnFontChange(wxFontPickerEvent &);
157
158 // used to convert wxString <-> wxFont
159 virtual wxString Font2String(const wxFont &font);
160 virtual wxFont String2Font(const wxString &font);
161
c757b5fe
PC
162protected:
163
ec376c8f
VZ
164 // extracts the style for our picker from wxFontPickerCtrl's style
165 long GetPickerStyle(long style) const
166 { return (style & (wxFNTP_FONTDESC_AS_LABEL|wxFNTP_USEFONT_FOR_LABEL)); }
167
ec376c8f
VZ
168 // true if the next UpdateTextCtrl() call is to ignore
169 bool m_bIgnoreNextTextCtrlUpdate;
170
171 // the maximum pointsize allowed to the user
172 unsigned int m_nMaxPointSize;
173
174private:
175 DECLARE_DYNAMIC_CLASS(wxFontPickerCtrl)
176};
177
178
179// ----------------------------------------------------------------------------
180// wxFontPickerEvent: used by wxFontPickerCtrl only
181// ----------------------------------------------------------------------------
182
9b11752c 183wxDECLARE_EXPORTED_EVENT( WXDLLIMPEXP_CORE, wxEVT_COMMAND_FONTPICKER_CHANGED, wxFontPickerEvent );
ec376c8f
VZ
184
185class WXDLLIMPEXP_CORE wxFontPickerEvent : public wxCommandEvent
186{
187public:
188 wxFontPickerEvent() {}
189 wxFontPickerEvent(wxObject *generator, int id, const wxFont &f)
190 : wxCommandEvent(wxEVT_COMMAND_FONTPICKER_CHANGED, id),
191 m_font(f)
192 {
193 SetEventObject(generator);
194 }
195
196 wxFont GetFont() const { return m_font; }
197 void SetFont(const wxFont &c) { m_font = c; }
198
258b2ca6
RD
199 // default copy ctor, assignment operator and dtor are ok
200 virtual wxEvent *Clone() const { return new wxFontPickerEvent(*this); }
201
ec376c8f
VZ
202private:
203 wxFont m_font;
204
258b2ca6 205 DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxFontPickerEvent)
ec376c8f
VZ
206};
207
208// ----------------------------------------------------------------------------
209// event types and macros
210// ----------------------------------------------------------------------------
211
212typedef void (wxEvtHandler::*wxFontPickerEventFunction)(wxFontPickerEvent&);
213
214#define wxFontPickerEventHandler(func) \
3c778901 215 wxEVENT_HANDLER_CAST(wxFontPickerEventFunction, func)
ec376c8f
VZ
216
217#define EVT_FONTPICKER_CHANGED(id, fn) \
218 wx__DECLARE_EVT1(wxEVT_COMMAND_FONTPICKER_CHANGED, id, wxFontPickerEventHandler(fn))
219
ec376c8f
VZ
220
221#endif // wxUSE_FONTPICKERCTRL
222
223#endif
224 // _WX_FONTPICKER_H_BASE_