Lines Matching refs:nGCId

133         GraphicalElement( Element* pParent, sal_Int32 nGCId )  in GraphicalElement()
134 : Element( pParent ), GCId( nGCId ), MirrorVertical( false ) {} in GraphicalElement()
144 DrawElement( Element* pParent, sal_Int32 nGCId ) in DrawElement()
145 : GraphicalElement( pParent, nGCId ), isCharacter(false), ZOrder(0) {} in DrawElement()
156 FrameElement( Element* pParent, sal_Int32 nGCId ) in FrameElement()
157 : DrawElement( pParent, nGCId ) {} in FrameElement()
168 TextElement( Element* pParent, sal_Int32 nGCId, sal_Int32 nFontId ) in TextElement()
169 : GraphicalElement( pParent, nGCId ), FontId( nFontId ) {} in TextElement()
206 PolyPolyElement( Element* pParent, sal_Int32 nGCId,
227 ImageElement( Element* pParent, sal_Int32 nGCId, ImageId nImage ) in ImageElement()
228 : DrawElement( pParent, nGCId ), Image( nImage ) {} in ImageElement()
295 … virtual TextElement* createTextElement( Element* pParent, sal_Int32 nGCId, sal_Int32 nFontId ) in createTextElement() argument
296 { return new TextElement( pParent, nGCId, nFontId ); } in createTextElement()
300 virtual FrameElement* createFrameElement( Element* pParent, sal_Int32 nGCId ) in createFrameElement() argument
301 { return new FrameElement( pParent, nGCId ); } in createFrameElement()
304 sal_Int32 nGCId, in createPolyPolyElement() argument
307 { return new PolyPolyElement( pParent, nGCId, rPolyPoly, nAction ); } in createPolyPolyElement()
308 … virtual ImageElement* createImageElement( Element* pParent, sal_Int32 nGCId, ImageId nImage ) in createImageElement() argument
309 { return new ImageElement( pParent, nGCId, nImage ); } in createImageElement()