Merge in from trunk r67662 to r64801
[wxWidgets.git] / src / common / ctrlcmn.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/common/ctrlcmn.cpp
3 // Purpose: wxControl common interface
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 26.07.99
7 // RCS-ID: $Id$
8 // Copyright: (c) wxWidgets team
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
22
23 #ifdef __BORLANDC__
24 #pragma hdrstop
25 #endif
26
27 #if wxUSE_CONTROLS
28
29 #include "wx/control.h"
30
31 #ifndef WX_PRECOMP
32 #include "wx/dc.h"
33 #include "wx/log.h"
34 #include "wx/radiobut.h"
35 #include "wx/statbmp.h"
36 #include "wx/bitmap.h"
37 #include "wx/utils.h" // for wxStripMenuCodes()
38 #include "wx/settings.h"
39 #endif
40
41 #include "wx/private/markupparser.h"
42
43 const char wxControlNameStr[] = "control";
44
45 // ============================================================================
46 // implementation
47 // ============================================================================
48
49 wxControlBase::~wxControlBase()
50 {
51 // this destructor is required for Darwin
52 }
53
54 bool wxControlBase::Create(wxWindow *parent,
55 wxWindowID id,
56 const wxPoint &pos,
57 const wxSize &size,
58 long style,
59 const wxValidator& wxVALIDATOR_PARAM(validator),
60 const wxString &name)
61 {
62 bool ret = wxWindow::Create(parent, id, pos, size, style, name);
63
64 #if wxUSE_VALIDATORS
65 if ( ret )
66 SetValidator(validator);
67 #endif // wxUSE_VALIDATORS
68
69 return ret;
70 }
71
72 bool wxControlBase::CreateControl(wxWindowBase *parent,
73 wxWindowID id,
74 const wxPoint& pos,
75 const wxSize& size,
76 long style,
77 const wxValidator& validator,
78 const wxString& name)
79 {
80 // even if it's possible to create controls without parents in some port,
81 // it should surely be discouraged because it doesn't work at all under
82 // Windows
83 wxCHECK_MSG( parent, false, wxT("all controls must have parents") );
84
85 if ( !CreateBase(parent, id, pos, size, style, validator, name) )
86 return false;
87
88 parent->AddChild(this);
89
90 return true;
91 }
92
93 void wxControlBase::Command(wxCommandEvent& event)
94 {
95 (void)GetEventHandler()->ProcessEvent(event);
96 }
97
98 void wxControlBase::InitCommandEvent(wxCommandEvent& event) const
99 {
100 event.SetEventObject(const_cast<wxControlBase *>(this));
101
102 // event.SetId(GetId()); -- this is usuall done in the event ctor
103
104 switch ( m_clientDataType )
105 {
106 case wxClientData_Void:
107 event.SetClientData(GetClientData());
108 break;
109
110 case wxClientData_Object:
111 event.SetClientObject(GetClientObject());
112 break;
113
114 case wxClientData_None:
115 // nothing to do
116 ;
117 }
118 }
119
120 bool wxControlBase::SetFont(const wxFont& font)
121 {
122 InvalidateBestSize();
123 return wxWindow::SetFont(font);
124 }
125
126 // wxControl-specific processing after processing the update event
127 void wxControlBase::DoUpdateWindowUI(wxUpdateUIEvent& event)
128 {
129 // call inherited
130 wxWindowBase::DoUpdateWindowUI(event);
131
132 // update label
133 if ( event.GetSetText() )
134 {
135 if ( event.GetText() != GetLabel() )
136 SetLabel(event.GetText());
137 }
138
139 // Unfortunately we don't yet have common base class for
140 // wxRadioButton, so we handle updates of radiobuttons here.
141 // TODO: If once wxRadioButtonBase will exist, move this code there.
142 #if wxUSE_RADIOBTN
143 if ( event.GetSetChecked() )
144 {
145 wxRadioButton *radiobtn = wxDynamicCastThis(wxRadioButton);
146 if ( radiobtn )
147 radiobtn->SetValue(event.GetChecked());
148 }
149 #endif // wxUSE_RADIOBTN
150 }
151
152 /* static */
153 wxString wxControlBase::GetLabelText(const wxString& label)
154 {
155 // we don't want strip the TABs here, just the mnemonics
156 return wxStripMenuCodes(label, wxStrip_Mnemonics);
157 }
158
159 /* static */
160 wxString wxControlBase::RemoveMnemonics(const wxString& str)
161 {
162 // we don't want strip the TABs here, just the mnemonics
163 return wxStripMenuCodes(str, wxStrip_Mnemonics);
164 }
165
166 /* static */
167 wxString wxControlBase::EscapeMnemonics(const wxString& text)
168 {
169 wxString label(text);
170 label.Replace("&", "&&");
171 return label;
172 }
173
174 /* static */
175 int wxControlBase::FindAccelIndex(const wxString& label, wxString *labelOnly)
176 {
177 // the character following MNEMONIC_PREFIX is the accelerator for this
178 // control unless it is MNEMONIC_PREFIX too - this allows to insert
179 // literal MNEMONIC_PREFIX chars into the label
180 static const wxChar MNEMONIC_PREFIX = wxT('&');
181
182 if ( labelOnly )
183 {
184 labelOnly->Empty();
185 labelOnly->Alloc(label.length());
186 }
187
188 int indexAccel = -1;
189 for ( wxString::const_iterator pc = label.begin(); pc != label.end(); ++pc )
190 {
191 if ( *pc == MNEMONIC_PREFIX )
192 {
193 ++pc; // skip it
194 if ( pc == label.end() )
195 break;
196 else if ( *pc != MNEMONIC_PREFIX )
197 {
198 if ( indexAccel == -1 )
199 {
200 // remember it (-1 is for MNEMONIC_PREFIX itself
201 indexAccel = pc - label.begin() - 1;
202 }
203 else
204 {
205 wxFAIL_MSG(wxT("duplicate accel char in control label"));
206 }
207 }
208 }
209
210 if ( labelOnly )
211 {
212 *labelOnly += *pc;
213 }
214 }
215
216 return indexAccel;
217 }
218
219 wxBorder wxControlBase::GetDefaultBorder() const
220 {
221 return wxBORDER_THEME;
222 }
223
224 /* static */ wxVisualAttributes
225 wxControlBase::GetCompositeControlsDefaultAttributes(wxWindowVariant WXUNUSED(variant))
226 {
227 wxVisualAttributes attrs;
228 attrs.font = wxSystemSettings::GetFont(wxSYS_DEFAULT_GUI_FONT);
229 attrs.colFg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOWTEXT);
230 attrs.colBg = wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW);
231
232 return attrs;
233 }
234
235 // ----------------------------------------------------------------------------
236 // wxControl markup support
237 // ----------------------------------------------------------------------------
238
239 #if wxUSE_MARKUP
240
241 /* static */
242 wxString wxControlBase::RemoveMarkup(const wxString& markup)
243 {
244 return wxMarkupParser::Strip(markup);
245 }
246
247 bool wxControlBase::DoSetLabelMarkup(const wxString& markup)
248 {
249 const wxString label = RemoveMarkup(markup);
250 if ( label.empty() && !markup.empty() )
251 return false;
252
253 SetLabel(label);
254
255 return true;
256 }
257
258 #endif // wxUSE_MARKUP
259
260 // ----------------------------------------------------------------------------
261 // wxControlBase - ellipsization code
262 // ----------------------------------------------------------------------------
263
264 #define wxELLIPSE_REPLACEMENT wxS("...")
265
266 namespace
267 {
268
269 struct EllipsizeCalculator
270 {
271 EllipsizeCalculator(const wxString& s, const wxDC& dc,
272 int maxFinalWidthPx, int replacementWidthPx)
273 :
274 m_initialCharToRemove(0),
275 m_nCharsToRemove(0),
276 m_outputNeedsUpdate(true),
277 m_str(s),
278 m_dc(dc),
279 m_maxFinalWidthPx(maxFinalWidthPx),
280 m_replacementWidthPx(replacementWidthPx)
281 {
282 m_isOk = dc.GetPartialTextExtents(s, m_charOffsetsPx);
283 wxASSERT( m_charOffsetsPx.GetCount() == s.length() );
284 }
285
286 bool IsOk() const { return m_isOk; }
287
288 bool EllipsizationNotNeeded() const
289 {
290 // NOTE: charOffsetsPx[n] is the width in pixels of the first n characters (with the last one INCLUDED)
291 // thus charOffsetsPx[len-1] is the total width of the string
292 return m_charOffsetsPx.Last() <= m_maxFinalWidthPx;
293 }
294
295 void Init(size_t initialCharToRemove, size_t nCharsToRemove)
296 {
297 m_initialCharToRemove = initialCharToRemove;
298 m_nCharsToRemove = nCharsToRemove;
299 }
300
301 void RemoveFromEnd()
302 {
303 m_nCharsToRemove++;
304 }
305
306 void RemoveFromStart()
307 {
308 m_initialCharToRemove--;
309 m_nCharsToRemove++;
310 }
311
312 size_t GetFirstRemoved() const { return m_initialCharToRemove; }
313 size_t GetLastRemoved() const { return m_initialCharToRemove + m_nCharsToRemove - 1; }
314
315 const wxString& GetEllipsizedText()
316 {
317 if ( m_outputNeedsUpdate )
318 {
319 wxASSERT(m_initialCharToRemove <= m_str.length() - 1); // see valid range for initialCharToRemove above
320 wxASSERT(m_nCharsToRemove >= 1 && m_nCharsToRemove <= m_str.length() - m_initialCharToRemove); // see valid range for nCharsToRemove above
321
322 // erase m_nCharsToRemove characters after m_initialCharToRemove (included);
323 // e.g. if we have the string "foobar" (len = 6)
324 // ^
325 // \--- m_initialCharToRemove = 2
326 // and m_nCharsToRemove = 2, then we get "foar"
327 m_output = m_str;
328 m_output.replace(m_initialCharToRemove, m_nCharsToRemove, wxELLIPSE_REPLACEMENT);
329 }
330
331 return m_output;
332 }
333
334 bool IsShortEnough()
335 {
336 if ( m_nCharsToRemove == m_str.length() )
337 return true; // that's the best we could do
338
339 // Width calculation using partial extents is just an inaccurate
340 // estimate: partial extents have sub-pixel precision and are rounded
341 // by GetPartialTextExtents(); replacing part of the string with "..."
342 // may change them too thanks to changes in ligatures, kerning etc.
343 //
344 // The correct algorithm would be to call GetTextExtent() in every step
345 // of ellipsization, but that would be too expensive, especially when
346 // the difference is just a few pixels. So we use partial extents to
347 // estimate string width and only verify it with GetTextExtent() when
348 // it looks good.
349
350 int estimatedWidth = m_replacementWidthPx; // length of "..."
351
352 // length of text before the removed part:
353 if ( m_initialCharToRemove > 0 )
354 estimatedWidth += m_charOffsetsPx[m_initialCharToRemove - 1];
355
356 // length of text after the removed part:
357
358 if ( GetLastRemoved() < m_str.length() )
359 estimatedWidth += m_charOffsetsPx.Last() - m_charOffsetsPx[GetLastRemoved()];
360
361 if ( estimatedWidth > m_maxFinalWidthPx )
362 return false;
363
364 return m_dc.GetTextExtent(GetEllipsizedText()).GetWidth() <= m_maxFinalWidthPx;
365 }
366
367 // calculation state:
368
369 // REMEMBER: indexes inside the string have a valid range of [0;len-1] if not otherwise constrained
370 // lengths/counts of characters (e.g. nCharsToRemove) have a
371 // valid range of [0;len] if not otherwise constrained
372 // NOTE: since this point we know we have for sure a non-empty string from which we need
373 // to remove _at least_ one character (thus nCharsToRemove below is constrained to be >= 1)
374
375 // index of first character to erase, valid range is [0;len-1]:
376 size_t m_initialCharToRemove;
377 // how many chars do we need to erase? valid range is [0;len-m_initialCharToRemove]
378 size_t m_nCharsToRemove;
379
380 wxString m_output;
381 bool m_outputNeedsUpdate;
382
383 // inputs:
384 wxString m_str;
385 const wxDC& m_dc;
386 int m_maxFinalWidthPx;
387 int m_replacementWidthPx;
388 wxArrayInt m_charOffsetsPx;
389
390 bool m_isOk;
391 };
392
393 } // anonymous namespace
394
395 /* static and protected */
396 wxString wxControlBase::DoEllipsizeSingleLine(const wxString& curLine, const wxDC& dc,
397 wxEllipsizeMode mode, int maxFinalWidthPx,
398 int replacementWidthPx)
399 {
400 wxASSERT_MSG(replacementWidthPx > 0, "Invalid parameters");
401 wxASSERT_LEVEL_2_MSG(!curLine.Contains('\n'),
402 "Use Ellipsize() instead!");
403
404 wxASSERT_MSG( mode != wxELLIPSIZE_NONE, "shouldn't be called at all then" );
405
406 // NOTE: this function assumes that any mnemonic/tab character has already
407 // been handled if it was necessary to handle them (see Ellipsize())
408
409 if (maxFinalWidthPx <= 0)
410 return wxEmptyString;
411
412 size_t len = curLine.length();
413 if (len <= 1 )
414 return curLine;
415
416 EllipsizeCalculator calc(curLine, dc, maxFinalWidthPx, replacementWidthPx);
417
418 if ( !calc.IsOk() )
419 return curLine;
420
421 if ( calc.EllipsizationNotNeeded() )
422 return curLine;
423
424 // let's compute the range of characters to remove depending on the ellipsization mode:
425 switch (mode)
426 {
427 case wxELLIPSIZE_START:
428 {
429 calc.Init(0, 1);
430 while ( !calc.IsShortEnough() )
431 calc.RemoveFromEnd();
432
433 // always show at least one character of the string:
434 if ( calc.m_nCharsToRemove == len )
435 return wxString(wxELLIPSE_REPLACEMENT) + curLine[len-1];
436
437 break;
438 }
439
440 case wxELLIPSIZE_MIDDLE:
441 {
442 // NOTE: the following piece of code works also when len == 1
443
444 // start the removal process from the middle of the string
445 // i.e. separe the string in three parts:
446 // - the first one to preserve, valid range [0;initialCharToRemove-1] or the empty range if initialCharToRemove==0
447 // - the second one to remove, valid range [initialCharToRemove;endCharToRemove]
448 // - the third one to preserve, valid range [endCharToRemove+1;len-1] or the empty range if endCharToRemove==len-1
449 // NOTE: empty range != range [0;0] since the range [0;0] contains 1 character (the zero-th one)!
450
451 calc.Init(len/2, 0);
452
453 bool removeFromStart = true;
454
455 while ( !calc.IsShortEnough() )
456 {
457 const bool canRemoveFromStart = calc.GetFirstRemoved() > 0;
458 const bool canRemoveFromEnd = calc.GetLastRemoved() < len - 1;
459
460 if ( !canRemoveFromStart && !canRemoveFromEnd )
461 {
462 // we need to remove all the characters of the string!
463 break;
464 }
465
466 // Remove from the beginning in even steps and from the end
467 // in odd steps, unless we exhausted one side already:
468 removeFromStart = !removeFromStart;
469 if ( removeFromStart && !canRemoveFromStart )
470 removeFromStart = false;
471 else if ( !removeFromStart && !canRemoveFromEnd )
472 removeFromStart = true;
473
474 if ( removeFromStart )
475 calc.RemoveFromStart();
476 else
477 calc.RemoveFromEnd();
478 }
479
480 // Always show at least one character of the string.
481 // Additionally, if there's only one character left, prefer
482 // "a..." to "...a":
483 if ( calc.m_nCharsToRemove == len ||
484 calc.m_nCharsToRemove == len - 1 )
485 {
486 return curLine[0] + wxString(wxELLIPSE_REPLACEMENT);
487 }
488 }
489 break;
490
491 case wxELLIPSIZE_END:
492 {
493 calc.Init(len - 1, 1);
494 while ( !calc.IsShortEnough() )
495 calc.RemoveFromStart();
496
497 // always show at least one character of the string:
498 if ( calc.m_nCharsToRemove == len )
499 return curLine[0] + wxString(wxELLIPSE_REPLACEMENT);
500
501 break;
502 }
503
504 case wxELLIPSIZE_NONE:
505 default:
506 wxFAIL_MSG("invalid ellipsize mode");
507 return curLine;
508 }
509
510 return calc.GetEllipsizedText();
511 }
512
513 /* static */
514 wxString wxControlBase::Ellipsize(const wxString& label, const wxDC& dc,
515 wxEllipsizeMode mode, int maxFinalWidth,
516 int flags)
517 {
518 wxString ret;
519
520 // these cannot be cached between different Ellipsize() calls as they can
521 // change because of e.g. a font change; however we calculate them only once
522 // when ellipsizing multiline labels:
523 int replacementWidth = dc.GetTextExtent(wxELLIPSE_REPLACEMENT).GetWidth();
524
525 // NB: we must handle correctly labels with newlines:
526 wxString curLine;
527 for ( wxString::const_iterator pc = label.begin(); ; ++pc )
528 {
529 if ( pc == label.end() || *pc == wxS('\n') )
530 {
531 curLine = DoEllipsizeSingleLine(curLine, dc, mode, maxFinalWidth,
532 replacementWidth);
533
534 // add this (ellipsized) row to the rest of the label
535 ret << curLine;
536 if ( pc == label.end() )
537 {
538 // NOTE: this is the return which always exits the function
539 return ret;
540 }
541 else
542 {
543 ret << *pc;
544 curLine.clear();
545 }
546 }
547 // we need to remove mnemonics from the label for correct calculations
548 else if ( *pc == wxS('&') && (flags & wxELLIPSIZE_FLAGS_PROCESS_MNEMONICS) )
549 {
550 // pc+1 is safe: at worst we'll be at end()
551 wxString::const_iterator next = pc + 1;
552 if ( next != label.end() && *next == wxS('&') )
553 curLine += wxS('&'); // && becomes &
554 //else: remove this ampersand
555 }
556 // we need also to expand tabs to properly calc their size
557 else if ( *pc == wxS('\t') && (flags & wxELLIPSIZE_FLAGS_EXPAND_TABS) )
558 {
559 // Windows natively expands the TABs to 6 spaces. Do the same:
560 curLine += wxS(" ");
561 }
562 else
563 {
564 curLine += *pc;
565 }
566 }
567
568 // this return would generate a
569 // warning C4702: unreachable code
570 // with MSVC since the function always exits from inside the loop
571 //return ret;
572 }
573
574
575
576 // ----------------------------------------------------------------------------
577 // wxStaticBitmap
578 // ----------------------------------------------------------------------------
579
580 #if wxUSE_STATBMP
581
582 wxStaticBitmapBase::~wxStaticBitmapBase()
583 {
584 // this destructor is required for Darwin
585 }
586
587 wxSize wxStaticBitmapBase::DoGetBestSize() const
588 {
589 wxSize best;
590 wxBitmap bmp = GetBitmap();
591 if ( bmp.IsOk() )
592 best = wxSize(bmp.GetWidth(), bmp.GetHeight());
593 else
594 // this is completely arbitrary
595 best = wxSize(16, 16);
596 CacheBestSize(best);
597 return best;
598 }
599
600 #endif // wxUSE_STATBMP
601
602 #endif // wxUSE_CONTROLS