]> git.saurik.com Git - wxWidgets.git/blame - include/wx/richtext/richtextsymboldlg.h
Remove some wxT()'s in the docs
[wxWidgets.git] / include / wx / richtext / richtextsymboldlg.h
CommitLineData
ebf0a029 1/////////////////////////////////////////////////////////////////////////////
b68603d5
WS
2// Name: wx/richtext/richtextsymboldlg.h
3// Purpose:
ebf0a029 4// Author: Julian Smart
b68603d5 5// Modified by:
ebf0a029 6// Created: 10/5/2006 3:11:58 PM
b68603d5 7// RCS-ID: $Id$
ebf0a029 8// Copyright: (c) Julian Smart
b68603d5 9// Licence: wxWindows licence
ebf0a029
JS
10/////////////////////////////////////////////////////////////////////////////
11
12#ifndef _RICHTEXTSYMBOLDLG_H_
13#define _RICHTEXTSYMBOLDLG_H_
14
15/*!
16 * Includes
17 */
18
603f702b 19#include "wx/richtext/richtextuicustomization.h"
38b13085 20#include "wx/dialog.h"
ebf0a029
JS
21#include "wx/vscroll.h"
22
23/*!
24 * Forward declarations
25 */
26
f464ecc7
JS
27class WXDLLIMPEXP_FWD_CORE wxStaticText;
28class WXDLLIMPEXP_FWD_CORE wxComboBox;
29class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
30
ebf0a029 31////@begin forward declarations
dadd4f55 32class wxSymbolListCtrl;
603f702b 33class wxStdDialogButtonSizer;
ebf0a029
JS
34////@end forward declarations
35
2a6c3e25
JS
36// __UNICODE__ is a symbol used by DialogBlocks-generated code.
37#ifndef __UNICODE__
38#if wxUSE_UNICODE
39#define __UNICODE__
40#endif
41#endif
42
ebf0a029
JS
43/*!
44 * Symbols
45 */
46
38b13085 47#define SYMBOL_WXSYMBOLPICKERDIALOG_STYLE (wxDEFAULT_DIALOG_STYLE|wxRESIZE_BORDER|wxCLOSE_BOX)
7ad24ad9 48#define SYMBOL_WXSYMBOLPICKERDIALOG_TITLE wxGetTranslation("Symbols")
ebf0a029
JS
49#define SYMBOL_WXSYMBOLPICKERDIALOG_IDNAME ID_SYMBOLPICKERDIALOG
50#define SYMBOL_WXSYMBOLPICKERDIALOG_SIZE wxSize(400, 300)
51#define SYMBOL_WXSYMBOLPICKERDIALOG_POSITION wxDefaultPosition
52
53/*!
54 * wxSymbolPickerDialog class declaration
55 */
56
57class WXDLLIMPEXP_RICHTEXT wxSymbolPickerDialog: public wxDialog
b68603d5 58{
ebf0a029
JS
59 DECLARE_DYNAMIC_CLASS( wxSymbolPickerDialog )
60 DECLARE_EVENT_TABLE()
603f702b 61 DECLARE_HELP_PROVISION()
ebf0a029
JS
62
63public:
64 /// Constructors
65 wxSymbolPickerDialog( );
66 wxSymbolPickerDialog( const wxString& symbol, const wxString& fontName, const wxString& normalTextFont,
8871035d 67 wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& caption = SYMBOL_WXSYMBOLPICKERDIALOG_TITLE, const wxPoint& pos = SYMBOL_WXSYMBOLPICKERDIALOG_POSITION, const wxSize& size = SYMBOL_WXSYMBOLPICKERDIALOG_SIZE, long style = SYMBOL_WXSYMBOLPICKERDIALOG_STYLE );
ebf0a029
JS
68
69 /// Creation
70 bool Create( const wxString& symbol, const wxString& fontName, const wxString& normalTextFont,
8871035d 71 wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& caption = SYMBOL_WXSYMBOLPICKERDIALOG_TITLE, const wxPoint& pos = SYMBOL_WXSYMBOLPICKERDIALOG_POSITION, const wxSize& size = SYMBOL_WXSYMBOLPICKERDIALOG_SIZE, long style = SYMBOL_WXSYMBOLPICKERDIALOG_STYLE );
ebf0a029
JS
72
73 /// Initialises members variables
74 void Init();
75
76 /// Creates the controls and sizers
77 void CreateControls();
b68603d5 78
ebf0a029
JS
79 /// Update the display
80 void UpdateSymbolDisplay(bool updateSymbolList = true, bool showAtSubset = true);
81
82 /// Respond to symbol selection
83 void OnSymbolSelected( wxCommandEvent& event );
b68603d5 84
ebf0a029
JS
85 /// Set Unicode mode
86 void SetUnicodeMode(bool unicodeMode);
b68603d5 87
ebf0a029
JS
88 /// Show at the current subset selection
89 void ShowAtSubset();
b68603d5 90
ebf0a029
JS
91 /// Get the selected symbol character
92 int GetSymbolChar() const;
93
94 /// Is there a selection?
95 bool HasSelection() const { return !m_symbol.IsEmpty(); }
b68603d5 96
ebf0a029
JS
97 /// Specifying normal text?
98 bool UseNormalFont() const { return m_fontName.IsEmpty(); }
b68603d5 99
dadd4f55
JS
100 /// Should we show tooltips?
101 static bool ShowToolTips() { return sm_showToolTips; }
41a85215 102
dadd4f55
JS
103 /// Determines whether tooltips will be shown
104 static void SetShowToolTips(bool show) { sm_showToolTips = show; }
105
ebf0a029
JS
106 /// Data transfer
107 virtual bool TransferDataToWindow();
108
109////@begin wxSymbolPickerDialog event handler declarations
110
ce7fe42e 111 /// wxEVT_COMBOBOX event handler for ID_SYMBOLPICKERDIALOG_FONT
ebf0a029
JS
112 void OnFontCtrlSelected( wxCommandEvent& event );
113
114#if defined(__UNICODE__)
ce7fe42e 115 /// wxEVT_COMBOBOX event handler for ID_SYMBOLPICKERDIALOG_SUBSET
ebf0a029
JS
116 void OnSubsetSelected( wxCommandEvent& event );
117
93023965
JS
118 /// wxEVT_UPDATE_UI event handler for ID_SYMBOLPICKERDIALOG_SUBSET
119 void OnSymbolpickerdialogSubsetUpdate( wxUpdateUIEvent& event );
120
ebf0a029
JS
121#endif
122#if defined(__UNICODE__)
ce7fe42e 123 /// wxEVT_COMBOBOX event handler for ID_SYMBOLPICKERDIALOG_FROM
ebf0a029
JS
124 void OnFromUnicodeSelected( wxCommandEvent& event );
125
126#endif
ebf0a029
JS
127 /// wxEVT_UPDATE_UI event handler for wxID_OK
128 void OnOkUpdate( wxUpdateUIEvent& event );
129
ce7fe42e 130 /// wxEVT_BUTTON event handler for wxID_HELP
3bb084c4
JS
131 void OnHelpClick( wxCommandEvent& event );
132
133 /// wxEVT_UPDATE_UI event handler for wxID_HELP
134 void OnHelpUpdate( wxUpdateUIEvent& event );
135
ebf0a029
JS
136////@end wxSymbolPickerDialog event handler declarations
137
138////@begin wxSymbolPickerDialog member function declarations
139
140 wxString GetFontName() const { return m_fontName ; }
141 void SetFontName(wxString value) { m_fontName = value ; }
142
ebf0a029
JS
143 bool GetFromUnicode() const { return m_fromUnicode ; }
144 void SetFromUnicode(bool value) { m_fromUnicode = value ; }
145
146 wxString GetNormalTextFontName() const { return m_normalTextFontName ; }
147 void SetNormalTextFontName(wxString value) { m_normalTextFontName = value ; }
148
3bb084c4
JS
149 wxString GetSymbol() const { return m_symbol ; }
150 void SetSymbol(wxString value) { m_symbol = value ; }
151
ebf0a029
JS
152 /// Retrieves bitmap resources
153 wxBitmap GetBitmapResource( const wxString& name );
154
155 /// Retrieves icon resources
156 wxIcon GetIconResource( const wxString& name );
157////@end wxSymbolPickerDialog member function declarations
158
ebf0a029
JS
159////@begin wxSymbolPickerDialog member variables
160 wxComboBox* m_fontCtrl;
161#if defined(__UNICODE__)
162 wxComboBox* m_subsetCtrl;
163#endif
164 wxSymbolListCtrl* m_symbolsCtrl;
165 wxStaticText* m_symbolStaticCtrl;
166 wxTextCtrl* m_characterCodeCtrl;
167#if defined(__UNICODE__)
168 wxComboBox* m_fromUnicodeCtrl;
169#endif
603f702b 170 wxStdDialogButtonSizer* m_stdButtonSizer;
ebf0a029 171 wxString m_fontName;
ebf0a029
JS
172 bool m_fromUnicode;
173 wxString m_normalTextFontName;
3bb084c4 174 wxString m_symbol;
ebf0a029
JS
175 /// Control identifiers
176 enum {
177 ID_SYMBOLPICKERDIALOG = 10600,
178 ID_SYMBOLPICKERDIALOG_FONT = 10602,
179 ID_SYMBOLPICKERDIALOG_SUBSET = 10605,
180 ID_SYMBOLPICKERDIALOG_LISTCTRL = 10608,
181 ID_SYMBOLPICKERDIALOG_CHARACTERCODE = 10601,
182 ID_SYMBOLPICKERDIALOG_FROM = 10603
183 };
184////@end wxSymbolPickerDialog member variables
185
186 bool m_dontUpdate;
dadd4f55 187 static bool sm_showToolTips;
ebf0a029
JS
188};
189
190/*!
191 * The scrolling symbol list.
192 */
b68603d5 193
ebf0a029
JS
194class WXDLLIMPEXP_RICHTEXT wxSymbolListCtrl : public wxVScrolledWindow
195{
196public:
197 // constructors and such
198 // ---------------------
199
200 // default constructor, you must call Create() later
201 wxSymbolListCtrl() { Init(); }
202
203 // normal constructor which calls Create() internally
204 wxSymbolListCtrl(wxWindow *parent,
205 wxWindowID id = wxID_ANY,
206 const wxPoint& pos = wxDefaultPosition,
207 const wxSize& size = wxDefaultSize,
208 long style = 0,
209 const wxString& name = wxPanelNameStr)
210 {
211 Init();
212
213 (void)Create(parent, id, pos, size, style, name);
214 }
215
216 // really creates the control and sets the initial number of items in it
217 // (which may be changed later with SetItemCount())
218 //
219 // returns true on success or false if the control couldn't be created
220 bool Create(wxWindow *parent,
221 wxWindowID id = wxID_ANY,
222 const wxPoint& pos = wxDefaultPosition,
223 const wxSize& size = wxDefaultSize,
224 long style = 0,
225 const wxString& name = wxPanelNameStr);
226
227 // dtor does some internal cleanup
228 virtual ~wxSymbolListCtrl();
229
230
231 // accessors
232 // ---------
233
234 // set the current font
235 virtual bool SetFont(const wxFont& font);
b68603d5 236
ebf0a029
JS
237 // set Unicode/ASCII mode
238 void SetUnicodeMode(bool unicodeMode);
239
240 // get the index of the currently selected item or wxNOT_FOUND if there is no selection
241 int GetSelection() const;
242
243 // is this item selected?
244 bool IsSelected(int item) const;
245
246 // is this item the current one?
247 bool IsCurrentItem(int item) const { return item == m_current; }
248
249 // get the margins around each cell
250 wxPoint GetMargins() const { return m_ptMargins; }
251
252 // get the background colour of selected cells
253 const wxColour& GetSelectionBackground() const { return m_colBgSel; }
254
255 // operations
256 // ----------
257
258 // set the selection to the specified item, if it is wxNOT_FOUND the
259 // selection is unset
260 void SetSelection(int selection);
b68603d5 261
ebf0a029
JS
262 // make this item visible
263 void EnsureVisible(int item);
264
265 // set the margins: horizontal margin is the distance between the window
266 // border and the item contents while vertical margin is half of the
267 // distance between items
268 //
269 // by default both margins are 0
270 void SetMargins(const wxPoint& pt);
271 void SetMargins(wxCoord x, wxCoord y) { SetMargins(wxPoint(x, y)); }
b68603d5 272
ebf0a029
JS
273 // set the cell size
274 void SetCellSize(const wxSize& sz) { m_cellSize = sz; }
275 const wxSize& GetCellSize() const { return m_cellSize; }
276
277 // change the background colour of the selected cells
278 void SetSelectionBackground(const wxColour& col);
279
280 virtual wxVisualAttributes GetDefaultAttributes() const
281 {
282 return GetClassDefaultAttributes(GetWindowVariant());
283 }
284
285 static wxVisualAttributes
286 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
b68603d5 287
ebf0a029
JS
288 // Get min/max symbol values
289 int GetMinSymbolValue() const { return m_minSymbolValue; }
290 int GetMaxSymbolValue() const { return m_maxSymbolValue; }
b68603d5 291
ebf0a029
JS
292 // Respond to size change
293 void OnSize(wxSizeEvent& event);
294
295protected:
296
b68603d5 297 // draws a line of symbols
ebf0a029 298 virtual void OnDrawItem(wxDC& dc, const wxRect& rect, size_t n) const;
b68603d5 299
ebf0a029 300 // gets the line height
e02c72fa 301 virtual wxCoord OnGetRowHeight(size_t line) const;
ebf0a029
JS
302
303 // event handlers
304 void OnPaint(wxPaintEvent& event);
305 void OnKeyDown(wxKeyEvent& event);
306 void OnLeftDown(wxMouseEvent& event);
307 void OnLeftDClick(wxMouseEvent& event);
308
309 // common part of all ctors
310 void Init();
311
ce7fe42e 312 // send the wxEVT_LISTBOX event
ebf0a029
JS
313 void SendSelectedEvent();
314
315 // change the current item (in single selection listbox it also implicitly
316 // changes the selection); current may be wxNOT_FOUND in which case there
317 // will be no current item any more
318 //
319 // return true if the current item changed, false otherwise
320 bool DoSetCurrent(int current);
321
322 // flags for DoHandleItemClick
323 enum
324 {
325 ItemClick_Shift = 1, // item shift-clicked
326 ItemClick_Ctrl = 2, // ctrl
327 ItemClick_Kbd = 4 // item selected from keyboard
328 };
329
330 // common part of keyboard and mouse handling processing code
331 void DoHandleItemClick(int item, int flags);
b68603d5 332
ebf0a029
JS
333 // calculate line number from symbol value
334 int SymbolValueToLineNumber(int item);
b68603d5 335
ebf0a029
JS
336 // initialise control from current min/max values
337 void SetupCtrl(bool scrollToSelection = true);
b68603d5 338
ebf0a029
JS
339 // hit testing
340 int HitTest(const wxPoint& pt);
341
342private:
343 // the current item or wxNOT_FOUND
344 int m_current;
345
346 // margins
347 wxPoint m_ptMargins;
348
349 // the selection bg colour
350 wxColour m_colBgSel;
351
352 // double buffer
353 wxBitmap* m_doubleBuffer;
b68603d5 354
ebf0a029
JS
355 // cell size
356 wxSize m_cellSize;
b68603d5 357
ebf0a029
JS
358 // minimum and maximum symbol value
359 int m_minSymbolValue;
360
361 // minimum and maximum symbol value
362 int m_maxSymbolValue;
b68603d5 363
ebf0a029
JS
364 // number of items per line
365 int m_symbolsPerLine;
b68603d5 366
ebf0a029
JS
367 // Unicode/ASCII mode
368 bool m_unicodeMode;
369
370 DECLARE_EVENT_TABLE()
c0c133e1 371 wxDECLARE_NO_COPY_CLASS(wxSymbolListCtrl);
ebf0a029
JS
372 DECLARE_ABSTRACT_CLASS(wxSymbolListCtrl)
373};
374
375#endif
376 // _RICHTEXTSYMBOLDLG_H_