1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/private/textmeasure.h
3 // Purpose: declaration of wxTextMeasure class
4 // Author: Manuel Martin
7 // Copyright: (c) 1997-2012 wxWidgets team
8 // Licence: wxWindows licence
9 ///////////////////////////////////////////////////////////////////////////////
11 #ifndef _WX_PRIVATE_TEXTMEASURE_H_
12 #define _WX_PRIVATE_TEXTMEASURE_H_
14 class WXDLLIMPEXP_FWD_CORE wxDC
;
15 class WXDLLIMPEXP_FWD_CORE wxFont
;
16 class WXDLLIMPEXP_FWD_CORE wxWindow
;
18 // ----------------------------------------------------------------------------
19 // wxTextMeasure: class used to measure text extent.
20 // ----------------------------------------------------------------------------
22 class wxTextMeasureBase
25 // The first ctor argument must be non-NULL, i.e. each object of this class
26 // is associated with either a valid wxDC or a valid wxWindow. The font can
27 // be NULL to use the current DC/window font or can be specified explicitly.
28 wxTextMeasureBase(const wxDC
*dc
, const wxFont
*theFont
);
29 wxTextMeasureBase(const wxWindow
*win
, const wxFont
*theFont
);
31 // Even though this class is not supposed to be used polymorphically, give
32 // it a virtual dtor to avoid compiler warnings.
33 virtual ~wxTextMeasureBase() { }
36 // Return the extent of a single line string.
37 void GetTextExtent(const wxString
& string
,
40 wxCoord
*descent
= NULL
,
41 wxCoord
*externalLeading
= NULL
);
43 // The same for a multiline (with '\n') string.
44 void GetMultiLineTextExtent(const wxString
& text
,
47 wxCoord
*heightOneLine
= NULL
);
49 // Find the dimensions of the largest string.
50 wxSize
GetLargestStringExtent(size_t n
, const wxString
* strings
);
51 wxSize
GetLargestStringExtent(const wxArrayString
& strings
)
53 return GetLargestStringExtent(strings
.size(), &strings
[0]);
56 // Fill the array with the widths for each "0..N" substrings for N from 1
59 // The scaleX argument is the horizontal scale used by wxDC and is only
60 // used in the generic implementation.
61 bool GetPartialTextExtents(const wxString
& text
,
66 // These functions are called by our public methods before and after each
67 // call to DoGetTextExtent(). Derived classes may override them to prepare
68 // for -- possibly several -- subsequent calls to DoGetTextExtent().
70 // As these calls must be always paired, they're never called directly but
71 // only by our friend MeasuringGuard class.
73 // NB: They're public only to allow VC6 to compile this code, there doesn't
74 // seem to be any way to give MeasuringGuard access to them (FIXME-VC6)
75 virtual void BeginMeasuring() { }
76 virtual void EndMeasuring() { }
78 // This is another method which is only used by MeasuringGuard.
79 bool IsUsingDCImpl() const { return m_useDCImpl
; }
82 // RAII wrapper for the two methods above.
86 MeasuringGuard(wxTextMeasureBase
& tm
) : m_tm(tm
)
88 // BeginMeasuring() should only be called if we have a native DC,
89 // so don't call it if we delegate to a DC of unknown type.
90 if ( !m_tm
.IsUsingDCImpl() )
91 m_tm
.BeginMeasuring();
96 if ( !m_tm
.IsUsingDCImpl() )
101 wxTextMeasureBase
& m_tm
;
105 // The main function of this class, to be implemented in platform-specific
106 // way used by all our public methods.
108 // The width and height pointers here are never NULL and the input string
110 virtual void DoGetTextExtent(const wxString
& string
,
113 wxCoord
*descent
= NULL
,
114 wxCoord
*externalLeading
= NULL
) = 0;
116 // The real implementation of GetPartialTextExtents().
118 // On input, widths array contains text.length() zero elements and the text
119 // is guaranteed to be non-empty.
120 virtual bool DoGetPartialTextExtents(const wxString
& text
,
124 // Call either DoGetTextExtent() or wxDC::GetTextExtent() depending on the
125 // value of m_useDCImpl.
127 // This must be always used instead of calling DoGetTextExtent() directly!
128 void CallGetTextExtent(const wxString
& string
,
131 wxCoord
*descent
= NULL
,
132 wxCoord
*externalLeading
= NULL
);
134 // Return a valid font: if one was given to us in the ctor, use this one,
135 // otherwise use the current font of the associated wxDC or wxWindow.
136 wxFont
GetFont() const;
139 // Exactly one of m_dc and m_win is non-NULL for any given object of this
141 const wxDC
* const m_dc
;
142 const wxWindow
* const m_win
;
144 // If this is true, simply forward to wxDC::GetTextExtent() from our
145 // CallGetTextExtent() instead of calling our own DoGetTextExtent().
147 // We need this because our DoGetTextExtent() typically only works with
148 // native DCs, i.e. those having an HDC under Windows or using Pango under
149 // GTK+. However wxTextMeasure object can be constructed for any wxDC, not
150 // necessarily a native one and in this case we must call back into the DC
151 // implementation of text measuring itself.
154 // This one can be NULL or not.
155 const wxFont
* const m_font
;
157 wxDECLARE_NO_COPY_CLASS(wxTextMeasureBase
);
160 // Include the platform dependant class declaration, if any.
161 #if defined(__WXGTK20__)
162 #include "wx/gtk/private/textmeasure.h"
163 #elif defined(__WXMSW__)
164 #include "wx/msw/private/textmeasure.h"
165 #else // no platform-specific implementation of wxTextMeasure yet
166 #include "wx/generic/private/textmeasure.h"
168 #define wxUSE_GENERIC_TEXTMEASURE 1
171 #ifndef wxUSE_GENERIC_TEXTMEASURE
172 #define wxUSE_GENERIC_TEXTMEASURE 0
175 #endif // _WX_PRIVATE_TEXTMEASURE_H_