]> git.saurik.com Git - wxWidgets.git/commitdiff
Removed last bits of DrawScaledBitmap (was removed part of GTK+ printing patch)
authorRobert Roebling <robert@roebling.de>
Sat, 22 Sep 2007 09:55:23 +0000 (09:55 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 22 Sep 2007 09:55:23 +0000 (09:55 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@48903 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

docs/latex/wx/dc.tex
include/wx/gtk/print.h

index ac4ea3ffe7b122a27ed148738df5270607c2869a..fbb5a427d451b9e84ebb6564f3fe399c412d17a1 100644 (file)
@@ -493,22 +493,6 @@ the strange effects X produces when the corners are too big for
 the rectangle.
 
 
-\membersection{wxDC::DrawScaledBitmap}\label{wxdcdrawscaledbitmap}
-
-\func{void}{DrawScaledBitmap}{\param{const wxBitmap\&}{ bitmap}, \param{wxCoord}{ x}, \param{wxCoord}{ y}, \param{wxCoord}{ w}, \param{wxCoord}{ h}, \param{bool}{ transparent}, \param{int}{ quality = wxIMAGE\_QUALITY\_NORMAL}}
-
-Draw a bitmap on the device context at the specified point and resize it to the specified size. If {\it transparent} is true and the bitmap has a transparency mask, the bitmap will be drawn transparently.
-
-Under wxGTK with Gtk Printing support, you should use this method with a wxPrinterDC if you want to print an image with a resolution higher than 72 dpi. On every other DC and platform, resizing is done using \helpref{wxImage::Rescale}{wximagerescale}.
-
-For a description of the {\it quality} parameter, see the \helpref{Scale}{wximagescale} function.
-
-When drawing a mono-bitmap, the current text foreground colour will be used to draw the foreground
-of the bitmap (all bits set to 1), and the current text background colour to draw the background
-(all bits set to 0). See also \helpref{SetTextForeground}{wxdcsettextforeground},
-\helpref{SetTextBackground}{wxdcsettextbackground} and \helpref{wxMemoryDC}{wxmemorydc}.
-
-
 \membersection{wxDC::DrawSpline}\label{wxdcdrawspline}
 
 \func{void}{DrawSpline}{\param{int }{n}, \param{wxPoint }{points[]}}
index adc2818fe3d03cc585ca1745cbd966cf2637783d..a4175c2f1bd0c141c56f0e3596bc1b77391234c7 100644 (file)
@@ -273,7 +273,6 @@ protected:
             wxCoord xsrcMask = wxDefaultCoord, wxCoord ysrcMask = wxDefaultCoord);
     void DoDrawIcon( const wxIcon& icon, wxCoord x, wxCoord y );
     void DoDrawBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, bool useMask = false  );
-    void DoDrawScaledBitmap( const wxBitmap& bitmap, wxCoord x, wxCoord y, wxCoord w, wxCoord h, bool useMask = false, int quality = wxIMAGE_QUALITY_NORMAL );
     void DoDrawText(const wxString& text, wxCoord x, wxCoord y );
     void DoDrawRotatedText(const wxString& text, wxCoord x, wxCoord y, double angle);
     void DoSetClippingRegion(wxCoord x, wxCoord y, wxCoord width, wxCoord height);