1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474
|
/*************************************************************************
*
* The Contents of this file are made available subject to the terms of
* the BSD license.
*
* Copyright 2000, 2010 Oracle and/or its affiliates.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of Sun Microsystems, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*************************************************************************/
import com.sun.star.uno.UnoRuntime;
import com.sun.star.container.XIndexAccess;
import com.sun.star.lib.uno.helper.WeakBase;
// factories
import com.sun.star.lang.XMultiServiceFactory;
import com.sun.star.lang.XSingleServiceFactory;
// graphics stuff
import com.sun.star.drawing.*;
import com.sun.star.awt.Point;
import com.sun.star.awt.Size;
// chart stuff
import com.sun.star.chart.*;
// property access
import com.sun.star.beans.*;
// Add-In stuff
import com.sun.star.lang.XInitialization;
import com.sun.star.util.XRefreshable;
import com.sun.star.lang.XServiceName;
import com.sun.star.lang.XServiceInfo;
// Exceptions
import com.sun.star.uno.Exception;
import com.sun.star.uno.RuntimeException;
import javax.swing.JOptionPane;
public class JavaSampleChartAddIn extends WeakBase implements
XInitialization,
XRefreshable,
XDiagram,
XServiceName,
XServiceInfo
{
public JavaSampleChartAddIn()
{}
// __________ interface methods __________
// XInitialization
public void initialize( Object[] aArguments )
throws Exception, RuntimeException
{
if( aArguments.length > 0 )
{
maChartDocument = UnoRuntime.queryInterface(
XChartDocument.class, aArguments[ 0 ]);
XPropertySet aDocProp = UnoRuntime.queryInterface(
XPropertySet.class, maChartDocument );
if( aDocProp != null )
{
// set base diagram which will be extended in refresh()
aDocProp.setPropertyValue( "BaseDiagram", "com.sun.star.chart.XYDiagram" );
}
// get the draw page
XDrawPageSupplier aPageSupp = UnoRuntime.queryInterface(
XDrawPageSupplier.class, maChartDocument );
if( aPageSupp != null )
maDrawPage = UnoRuntime.queryInterface(
XDrawPage.class, aPageSupp.getDrawPage() );
// get a factory for creating shapes
maShapeFactory = UnoRuntime.queryInterface(
XMultiServiceFactory.class, maChartDocument );
}
}
// XRefreshable
public void refresh() throws RuntimeException
{
// recycle shapes in first call, if document was loaded
if( maBottomLine == null ||
maTopLine == null )
{
// try to recycle loaded shapes
XPropertySet aDocProp = UnoRuntime.queryInterface(
XPropertySet.class, maChartDocument );
if( aDocProp != null )
{
try
{
XIndexAccess aShapesIA = UnoRuntime.queryInterface(
XIndexAccess.class, aDocProp.getPropertyValue( "AdditionalShapes" ));
if( aShapesIA != null &&
aShapesIA.getCount() > 0 )
{
XShape aShape;
String aName;
for( int i = aShapesIA.getCount() - 1; i >= 0; --i )
{
aShape = UnoRuntime.queryInterface(
XShape.class, aShapesIA.getByIndex( i ));
if( aShape != null )
{
XPropertySet aProp = UnoRuntime.queryInterface(
XPropertySet.class, aShape );
aName = (String) aProp.getPropertyValue( "Name" );
if( aName.equals( "top" ))
{
maTopLine = aShape;
}
else if( aName.equals( "bottom" ))
{
maBottomLine = aShape;
}
}
}
}
}
catch( Exception ex )
{
JOptionPane.showMessageDialog( null, ex, "Exception caught", JOptionPane.WARNING_MESSAGE );
}
}
}
// create top line if it does not yet exist
try
{
if( maTopLine == null )
{
maTopLine = UnoRuntime.queryInterface(
XShape.class, maShapeFactory.createInstance( "com.sun.star.drawing.LineShape" ));
maDrawPage.add( maTopLine );
// make line red and thicker
XPropertySet aShapeProp = UnoRuntime.queryInterface(
XPropertySet.class, maTopLine );
aShapeProp.setPropertyValue( "LineColor", new Integer( 0xe01010 ));
aShapeProp.setPropertyValue( "LineWidth", new Integer( 50 ));
aShapeProp.setPropertyValue( "Name", "top" );
}
}
catch( Exception ex )
{
JOptionPane.showMessageDialog( null, ex, "Exception caught", JOptionPane.WARNING_MESSAGE );
}
// create bottom line if it does not yet exist
try
{
if( maBottomLine == null )
{
maBottomLine = UnoRuntime.queryInterface(
XShape.class, maShapeFactory.createInstance( "com.sun.star.drawing.LineShape" ));
maDrawPage.add( maBottomLine );
// make line green and thicker
XPropertySet aShapeProp = UnoRuntime.queryInterface(
XPropertySet.class, maBottomLine );
aShapeProp.setPropertyValue( "LineColor", new Integer( 0x10e010 ));
aShapeProp.setPropertyValue( "LineWidth", new Integer( 50 ));
aShapeProp.setPropertyValue( "Name", "bottom" );
}
}
catch( Exception ex )
{
JOptionPane.showMessageDialog( null, ex, "Exception caught", JOptionPane.WARNING_MESSAGE );
}
if( maTopLine == null ||
maBottomLine == null )
{
JOptionPane.showMessageDialog( null, "One of the lines is still null", "Assertion", JOptionPane.WARNING_MESSAGE );
return;
}
// position lines
// get data
XChartDataArray aDataArray = UnoRuntime.queryInterface(
XChartDataArray.class, maChartDocument.getData());
double aData[][] = aDataArray.getData();
// get axes
XDiagram aDiagram = maChartDocument.getDiagram();
XShape aXAxis = UnoRuntime.queryInterface(
XShape.class, UnoRuntime.queryInterface(
XAxisXSupplier.class, aDiagram ).getXAxis() );
XShape aYAxis = UnoRuntime.queryInterface(
XShape.class, UnoRuntime.queryInterface(
XAxisYSupplier.class, aDiagram ).getYAxis() );
// calculate points for hull
final int nLength = aData.length;
int i, j;
double fMax, fMin;
Point aMaxPtSeq[][] = new Point[ 1 ][];
aMaxPtSeq[ 0 ] = new Point[ nLength ];
Point aMinPtSeq[][] = new Point[ 1 ][];
aMinPtSeq[ 0 ] = new Point[ nLength ];
for( i = 0; i < nLength; i++ )
{
fMin = fMax = aData[ i ][ 1 ];
for( j = 1; j < aData[ i ].length; j++ )
{
if( aData[ i ][ j ] > fMax )
fMax = aData[ i ][ j ];
else if( aData[ i ][ j ] < fMin )
fMin = aData[ i ][ j ];
}
aMaxPtSeq[ 0 ][ i ] = new Point( getAxisPosition( aXAxis, aData[ i ][ 0 ], false ),
getAxisPosition( aYAxis, fMax, true ));
aMinPtSeq[ 0 ][ i ] = new Point( getAxisPosition( aXAxis, aData[ i ][ 0 ], false ),
getAxisPosition( aYAxis, fMin, true ));
}
// apply point sequences to lines
try
{
XPropertySet aShapeProp = UnoRuntime.queryInterface(
XPropertySet.class, maTopLine );
aShapeProp.setPropertyValue( "PolyPolygon", aMaxPtSeq );
aShapeProp = UnoRuntime.queryInterface(
XPropertySet.class, maBottomLine );
aShapeProp.setPropertyValue( "PolyPolygon", aMinPtSeq );
}
catch( Exception ex )
{
JOptionPane.showMessageDialog( null, ex, "Exception caught", JOptionPane.WARNING_MESSAGE );
}
}
public void addRefreshListener( com.sun.star.util.XRefreshListener aListener )
throws RuntimeException
{
// we don't want this but we have to implement the interface
}
public void removeRefreshListener( com.sun.star.util.XRefreshListener aListener )
throws RuntimeException
{
// we don't want this but we have to implement the interface
}
// XServiceName
public String getServiceName() throws RuntimeException
{
return new String( smServiceName );
}
// XServiceInfo
public boolean supportsService( String aServiceName )
{
String[] aServices = getSupportedServiceNames_Static();
int i, nLength = aServices.length;
boolean bResult = false;
for( i = 0; !bResult && i < nLength; ++i )
bResult = aServiceName.equals( aServices[ i ] );
return bResult;
}
public String getImplementationName()
{
return( JavaSampleChartAddIn.class.getName() );
}
public String[] getSupportedServiceNames()
{
return getSupportedServiceNames_Static();
}
// XDiagram
public String getDiagramType() throws RuntimeException
{
return new String( smServiceName );
}
public XPropertySet getDataRowProperties( int nRow )
throws com.sun.star.lang.IndexOutOfBoundsException, RuntimeException
{
return maChartDocument.getDiagram().getDataRowProperties( nRow );
}
public XPropertySet getDataPointProperties( int nCol, int nRow )
throws com.sun.star.lang.IndexOutOfBoundsException, RuntimeException
{
return maChartDocument.getDiagram().getDataPointProperties( nCol, nRow );
}
// XShape : XDiagram
public Size getSize() throws RuntimeException
{
return UnoRuntime.queryInterface( XShape.class, maChartDocument.getDiagram()).getSize();
}
public void setSize( Size aSize ) throws RuntimeException, PropertyVetoException
{
UnoRuntime.queryInterface( XShape.class, maChartDocument.getDiagram()).setSize( aSize );
}
public Point getPosition() throws RuntimeException
{
return UnoRuntime.queryInterface( XShape.class, maChartDocument.getDiagram()).getPosition();
}
public void setPosition( Point aPos ) throws RuntimeException
{
UnoRuntime.queryInterface( XShape.class, maChartDocument.getDiagram()).setPosition( aPos );
}
// XShapeDescriptor : XShape : XDiagram
public String getShapeType() throws RuntimeException
{
return new String( "com.sun.star.comp.Chart.JavaSampleDiagramShape" );
}
// __________ private members __________
private com.sun.star.chart.XChartDocument maChartDocument;
private com.sun.star.drawing.XDrawPage maDrawPage;
private com.sun.star.lang.XMultiServiceFactory maShapeFactory;
// shapes added by add-in
private com.sun.star.drawing.XShape maTopLine;
private com.sun.star.drawing.XShape maBottomLine;
// __________ private methods __________
private int getAxisPosition( XShape aAxis, double fValue, boolean bVertical )
{
int nResult = 0;
if( aAxis != null )
{
XPropertySet aAxisProp = UnoRuntime.queryInterface(
XPropertySet.class, aAxis );
try
{
double fMin, fMax;
fMin = ((Double) aAxisProp.getPropertyValue( "Min" )).doubleValue();
fMax = ((Double) aAxisProp.getPropertyValue( "Max" )).doubleValue();
double fRange = fMax - fMin;
if( fMin <= fValue && fValue <= fMax &&
fRange != 0 )
{
if( bVertical )
{
nResult = aAxis.getPosition().Y +
(int)((aAxis.getSize().Height) *
(1.0 - (( fValue - fMin ) / fRange )));
}
else
{
nResult = aAxis.getPosition().X +
(int)((aAxis.getSize().Width) *
(( fValue - fMin ) / fRange ));
}
}
}
catch( Exception ex )
{
JOptionPane.showMessageDialog( null, ex, "Exception caught", JOptionPane.WARNING_MESSAGE );
}
}
return nResult;
}
// __________ static things __________
private static final String smServiceName = "com.sun.star.comp.Chart.JavaSampleChartAddIn";
public static String[] getSupportedServiceNames_Static()
{
String[] aResult = { smServiceName,
"com.sun.star.chart.Diagram",
"com.sun.star.chart.ChartAxisYSupplier" };
return aResult;
}
/**
* Returns a factory for creating the service.
* This method is called by the <code>JavaLoader</code>
* <p>
* @return returns a <code>XSingleServiceFactory</code> for creating the component
* @param implName the name of the implementation for which a service is desired
* @param multiFactory the service manager to be used if needed
* @param regKey the registryKey
* @see com.sun.star.comp.loader.JavaLoader
*/
public static XSingleServiceFactory __getServiceFactory(
String implName,
XMultiServiceFactory multiFactory,
com.sun.star.registry.XRegistryKey regKey )
{
XSingleServiceFactory xSingleServiceFactory = null;
if( implName.equals( JavaSampleChartAddIn.class.getName()) )
{
xSingleServiceFactory = com.sun.star.comp.loader.FactoryHelper.getServiceFactory(
JavaSampleChartAddIn.class, smServiceName,
multiFactory, regKey );
}
return xSingleServiceFactory;
}
/**
* Writes the service information into the given registry key.
* This method is called by the <code>JavaLoader</code>
* <p>
* @return returns true if the operation succeeded
* @param regKey the registryKey
* @see com.sun.star.comp.loader.JavaLoader
*/
// This method not longer necessary since OOo 3.4 where the component registration
// was changed to passive component registration. For more details see
// http://wiki.openoffice.org/wiki/Passive_Component_Registration
// public static boolean __writeRegistryServiceInfo( com.sun.star.registry.XRegistryKey regKey )
// {
// boolean bResult = true;
// String[] aServices = getSupportedServiceNames_Static();
// int i, nLength = aServices.length;
// for( i = 0; i < nLength; ++i )
// {
// bResult = bResult && com.sun.star.comp.loader.FactoryHelper.writeRegistryServiceInfo(
// JavaSampleChartAddIn.class.getName(), aServices[ i ], regKey );
// }
// return bResult;
// }
}
|