/aoo41x/main/xmloff/source/style/ |
H A D | DashStyle.cxx | 100 drawing::LineDash aLineDash; in importXML() local 102 aLineDash.Dots = 0; in importXML() 103 aLineDash.DotLen = 0; in importXML() 104 aLineDash.Dashes = 0; in importXML() 105 aLineDash.DashLen = 0; in importXML() 106 aLineDash.Distance = 20; in importXML() 202 rValue <<= aLineDash; in importXML() 265 if( aLineDash.Dots ) in exportXML() 269 if( aLineDash.DotLen ) in exportXML() 286 if( aLineDash.Dashes ) in exportXML() [all …]
|
/aoo41x/main/svx/source/unodraw/ |
H A D | XPropertyTable.cxx | 439 drawing::LineDash aLineDash; in getAny() local 442 aLineDash.Dots = rXD.GetDots(); in getAny() 443 aLineDash.DotLen = rXD.GetDotLen(); in getAny() 444 aLineDash.Dashes = rXD.GetDashes(); in getAny() 445 aLineDash.DashLen = rXD.GetDashLen(); in getAny() 449 aAny <<= aLineDash; in getAny() 455 drawing::LineDash aLineDash; in getEntry() local 456 if(!(rAny >>= aLineDash)) in getEntry() 462 aXDash.SetDots(aLineDash.Dots); in getEntry() 463 aXDash.SetDotLen(aLineDash.DotLen); in getEntry() [all …]
|
/aoo41x/main/vbahelper/source/vbahelper/ |
H A D | vbalineformat.cxx | 305 drawing::LineDash aLineDash; in getDashStyle() local 306 … m_xPropertySet->getPropertyValue( rtl::OUString::createFromAscii( "LineDash" ) ) >>= aLineDash; in getDashStyle() 307 if( aLineDash.Dots == 0 ) in getDashStyle() 312 if( aLineDash.Distance > 0 && ( aLineDash.DashLen / aLineDash.Distance > 1 ) ) in getDashStyle() 317 else if( aLineDash.Dots == 1 ) in getDashStyle() 324 if( aLineDash.Dashes == 0 ) in getDashStyle() 330 if( aLineDash.Distance > 0 && ( aLineDash.DashLen / aLineDash.Distance > 1 ) ) in getDashStyle() 336 else if( aLineDash.Dots == 2 ) in getDashStyle()
|
/aoo41x/main/odk/examples/DevelopersGuide/Drawing/ |
H A D | FillAndLineStyleDemo.java | 105 LineDash aLineDash = new LineDash(); in main() local 106 aLineDash.Dots = 3; in main() 107 aLineDash.DotLen = 150; in main() 108 aLineDash.Dashes = 3; in main() 109 aLineDash.DashLen = 300; in main() 110 aLineDash.Distance = 150; in main() 111 xPropSet.setPropertyValue( "LineDash", aLineDash ); in main()
|
/aoo41x/test/testuno/source/fvt/uno/sd/textbox/ |
H A D | LineProperties.java | 99 LineDash aLineDash=new LineDash(); in testShapeLineStyle() local 100 aLineDash.Style=DashStyle.ROUND; in testShapeLineStyle() 101 aLineDash.Dots=2; in testShapeLineStyle() 102 aLineDash.DashLen=100; in testShapeLineStyle() 103 aLineDash.Distance=50; in testShapeLineStyle() 104 xPropSet.setPropertyValue("LineDash", aLineDash); in testShapeLineStyle() 111 aLineDash=(LineDash) xPropSet.getPropertyValue("LineDash"); in testShapeLineStyle() 112 assertEquals("Not Round Dash Style", DashStyle.ROUND ,aLineDash.Style); in testShapeLineStyle()
|
/aoo41x/main/oox/source/export/ |
H A D | drawingml.cxx | 318 drawing::LineDash aLineDash; in WriteOutline() local 326 aLineDash = *(drawing::LineDash*) mAny.getValue(); in WriteOutline() 328 … if( aLineDash.Style == DashStyle_ROUND || aLineDash.Style == DashStyle_ROUNDRELATIVE ) in WriteOutline() 332 …int( aLineDash.Dots ), int( aLineDash.Dashes ), int( aLineDash.DotLen ), int( aLineDash.DashLen ),… in WriteOutline() 354 for( i = 0; i < aLineDash.Dots; i ++ ) in WriteOutline() 356 … XML_d, aLineDash.DotLen ? I64S( aLineDash.DotLen*1000 ) : "100000", in WriteOutline() 357 XML_sp, I64S( aLineDash.Distance*1000 ), in WriteOutline() 359 for( i = 0; i < aLineDash.Dashes; i ++ ) in WriteOutline() 361 … XML_d, aLineDash.DashLen ? I64S( aLineDash.DashLen*1000 ) : "100000", in WriteOutline() 362 XML_sp, I64S( aLineDash.Distance*1000 ), in WriteOutline()
|
/aoo41x/main/oox/source/drawingml/ |
H A D | lineproperties.cxx | 379 LineDash aLineDash; in pushToPropMap() local 380 aLineDash.Style = lclGetDashStyle( moLineCap.get( XML_rnd ) ); in pushToPropMap() 384 lclConvertPresetDash( aLineDash, moPresetDash.get() ); in pushToPropMap() 386 lclConvertCustomDash( aLineDash, maCustomDash ); in pushToPropMap() 390 aLineDash.DotLen *= nBaseLineWidth; in pushToPropMap() 391 aLineDash.DashLen *= nBaseLineWidth; in pushToPropMap() 392 aLineDash.Distance *= nBaseLineWidth; in pushToPropMap() 394 if( rPropMap.setProperty( SHAPEPROP_LineDash, aLineDash ) ) in pushToPropMap()
|
/aoo41x/main/svx/source/xoutdev/ |
H A D | xattr.cxx | 1135 aLineDash.Dots = rXD.GetDots(); in QueryValue() 1136 aLineDash.DotLen = rXD.GetDotLen(); in QueryValue() 1137 aLineDash.Dashes = rXD.GetDashes(); in QueryValue() 1166 aLineDash.Dots = rXD.GetDots(); in QueryValue() 1167 aLineDash.DotLen = rXD.GetDotLen(); in QueryValue() 1168 aLineDash.Dashes = rXD.GetDashes(); in QueryValue() 1172 rVal <<= aLineDash; in QueryValue() 1287 if(!(rVal >>= aLineDash)) in PutValue() 1293 aXDash.SetDots(aLineDash.Dots); in PutValue() 1294 aXDash.SetDotLen(aLineDash.DotLen); in PutValue() [all …]
|
/aoo41x/test/testuno/source/fvt/uno/sd/shape/ |
H A D | ShapeProperties.java | 246 LineDash aLineDash=new LineDash(); in testShapeLineStyle() local 247 aLineDash.Style=DashStyle.ROUND; in testShapeLineStyle() 248 aLineDash.Dots=2; in testShapeLineStyle() 249 aLineDash.DashLen=100; in testShapeLineStyle() 250 aLineDash.Distance=50; in testShapeLineStyle() 251 xPropSet.setPropertyValue("LineDash", aLineDash); in testShapeLineStyle() 258 aLineDash=(LineDash) xPropSet.getPropertyValue("LineDash"); in testShapeLineStyle() 259 assertEquals("Not Round Dash Style", DashStyle.ROUND ,aLineDash.Style); in testShapeLineStyle()
|
/aoo41x/main/qadevOOo/tests/java/ifc/drawing/ |
H A D | _LineProperties.java | 75 LineDash aLineDash = new LineDash(); in _LineDash() local 77 aLineDash.DashLen = 5; in _LineDash() 79 testProperty("LineDash",aLineDash,aLineDash2); in _LineDash()
|
/aoo41x/main/chart2/source/controller/itemsetwrapper/ |
H A D | GraphicPropertyItemConverter.cxx | 607 uno::Any aLineDash; in ApplySpecialItem() local 608 rItem.QueryValue( aLineDash, MID_LINEDASH ); in ApplySpecialItem() 612 aLineDash, m_xNamedPropertyTableFactory, aPreferredName ); in ApplySpecialItem()
|
/aoo41x/main/filter/source/graphicfilter/icgm/ |
H A D | actimpr.cxx | 189 drawing::LineDash aLineDash( drawing::DashStyle_RECTRELATIVE, 1, 50, 3, 33, 100 ); in ImplSetLineBundle() local 190 aAny <<= aLineDash; in ImplSetLineBundle()
|