Lines Matching defs:GraphicsState
702 struct GraphicsState struct in vcl::PDFWriterImpl
704 Font m_aFont;
705 MapMode m_aMapMode;
706 Color m_aLineColor;
707 Color m_aFillColor;
708 Color m_aTextLineColor;
709 Color m_aOverlineColor;
710 basegfx::B2DPolyPolygon m_aClipRegion;
711 bool m_bClipRegion;
712 sal_Int32 m_nAntiAlias;
713 sal_Int32 m_nLayoutMode;
714 LanguageType m_aDigitLanguage;
715 sal_Int32 m_nTransparentPercent;
716 sal_uInt16 m_nFlags;
717 sal_uInt16 m_nUpdateFlags;
719 static const sal_uInt16 updateFont = 0x0001;
720 static const sal_uInt16 updateMapMode = 0x0002;
721 static const sal_uInt16 updateLineColor = 0x0004;
722 static const sal_uInt16 updateFillColor = 0x0008;
723 static const sal_uInt16 updateTextLineColor = 0x0010;
724 static const sal_uInt16 updateOverlineColor = 0x0020;
725 static const sal_uInt16 updateClipRegion = 0x0040;
726 static const sal_uInt16 updateAntiAlias = 0x0080;
727 static const sal_uInt16 updateLayoutMode = 0x0100;
728 static const sal_uInt16 updateTransparentPercent = 0x0200;
729 static const sal_uInt16 updateDigitLanguage = 0x0400;
731 GraphicsState() : in GraphicsState() argument
744 GraphicsState( const GraphicsState& rState ) : in GraphicsState() function
762 GraphicsState& operator=(const GraphicsState& rState ) in operator =()