Added wxDC::GetPartialTextExtents
authorRobin Dunn <robin@alldunn.com>
Wed, 11 Feb 2004 23:49:31 +0000 (23:49 +0000)
committerRobin Dunn <robin@alldunn.com>
Wed, 11 Feb 2004 23:49:31 +0000 (23:49 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25752 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/changes.txt
docs/latex/wx/dc.tex

index a389c20a733e902ee19b3dc144fe497ef33542c7..b17d156e664693227fc14f9008d6350c70408308 100644 (file)
@@ -132,6 +132,7 @@ All (GUI):
 - added option to generate C++ headers to wxrc utility (Eduardo Marques)
 - added wxDC::DrawPolyPolygon() for MSW/PS (Carl-Friedrich Braun)
 - wxBufferedDC now allows to preserve the background and is documented
+- added wxDC::GetPartialTextExtents
 
 wxMSW:
 
index f873f16ad07b619787ff5bb7d8830ff0ce85c5e8..b42932d2ffa8fda84d0b914812db4f0afd49a621 100644 (file)
@@ -637,6 +637,22 @@ Returns true if device context optimization is on.
 See \helpref{wxDC::SetOptimization}{wxsetoptimization} for details.
 
 
+\membersection{wxDC::GetPartialTextExtents}\label{wxdcgetpartialtextextents}
+
+\constfunc{bool}{GetPartialTextExtents}{\param{const wxString\&  }{text}, 
+\param{wxArrayInt\& }{widths}}
+
+Fills the {\it widths} array with the widths from the begining of 
+{\it text} to the coresponding character of {\it text}.  The generic
+version simply builds a running total of the widths of each character
+using \helpref{GetTextExtent}{wxdcgettextextent}, however if the
+various platforms have a native API function that is faster or more
+accurate than the generic implementaiton then it should be used
+instead. 
+
+\pythonnote{This method only takes the {\it text} parameter and
+  returns a Python list of integers.}
+
 \membersection{wxDC::GetPen}\label{wxdcgetpen}
 
 \func{wxPen\&}{GetPen}{\void}