X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;f=src%2Ffrontends%2FPainter.h;h=7906aa986be865e8e60a0051a2df403b4e8b4ecf;hb=af42a9d683728a0af34a56f7fd56ec8be4155227;hp=3302d16072ad07f4b5b096b6de64edc54617ddd6;hpb=ec42b2e4c9daa458df1c5c0454d61fbe4987701c;p=lyx.git diff --git a/src/frontends/Painter.h b/src/frontends/Painter.h index 3302d16072..7906aa986b 100644 --- a/src/frontends/Painter.h +++ b/src/frontends/Painter.h @@ -54,7 +54,7 @@ namespace frontend { */ class Painter { public: - Painter() : drawing_enabled_(true) {} + Painter(double pixel_ratio) : drawing_enabled_(true), pixel_ratio_(pixel_ratio) {} static const float thin_line; @@ -64,6 +64,13 @@ public: line_onoffdash //< dashes with spaces }; + /// possible fill styles + enum fill_style { + fill_none, + fill_oddeven, + fill_winding + }; + /// possible character styles of preedit string. /// This is used for CJK input method support. enum preedit_style { @@ -85,7 +92,8 @@ public: * @param np size of the points array */ virtual void lines(int const * xp, int const * yp, int np, Color, - line_style = line_solid, float line_width = thin_line) = 0; + fill_style = fill_none, line_style = line_solid, + float line_width = thin_line) = 0; /// draw a rectangle virtual void rectangle(int x, int y, int w, int h, Color, @@ -109,10 +117,10 @@ public: graphics::Image const & image) = 0; /** draw a string at position x, y (y is the baseline). The - * text direction is deduced from \c str. + * text direction is given by \c rtl. * \return the width of the drawn text. */ - virtual int text(int x, int y, docstring const & str, FontInfo const & f) = 0; + virtual int text(int x, int y, docstring const & str, FontInfo const & f, bool rtl = false) = 0; /** draw a string at position x, y (y is the baseline). The * text direction is enforced by the \c Font. @@ -134,6 +142,8 @@ public: /// Indicate wether real screen drawing shall be done or not. bool isDrawingEnabled() const { return drawing_enabled_; } + double pixelRatio() const { return pixel_ratio_; } + /// draw a char at position x, y (y is the baseline) /** * \return the width of the drawn text. @@ -170,6 +180,8 @@ public: private: /// bool drawing_enabled_; + /// Ratio between physical pixels and device-independent pixels + double pixel_ratio_; }; } // namespace frontend