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 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
#ifndef INCLUDED_SLIDESHOW_SOURCE_INC_SHAPEATTRIBUTELAYER_HXX
#define INCLUDED_SLIDESHOW_SOURCE_INC_SHAPEATTRIBUTELAYER_HXX
#include <com/sun/star/drawing/FillStyle.hpp>
#include <com/sun/star/drawing/LineStyle.hpp>
#include <com/sun/star/awt/FontSlant.hpp>
#include <basegfx/vector/b2dsize.hxx>
#include <basegfx/point/b2dpoint.hxx>
#include <basegfx/range/b2drectangle.hxx>
#include <basegfx/polygon/b2dpolypolygon.hxx>
#include "rgbcolor.hxx"
#include <stack>
#include <boost/shared_ptr.hpp>
namespace slideshow
{
namespace internal
{
/** This interface represents a stateful object.
The state ID returned by the getStateId() method
abstractly encodes the object's state. When this ID
changes, clients can assume that the object's state has
changed.
*/
class State
{
public:
virtual ~State() {}
/// Abstract, numerically encoded state ID
typedef ::std::size_t StateId;
/** This method returns a numerical state identifier.
The state ID returned by this method abstractly
encodes the object's state. When this ID changes,
clients can assume that the object's state has
changed.
@return an abstract, numerical state ID.
*/
virtual StateId getStateId() const = 0;
};
typedef ::boost::shared_ptr< State > StateSharedPtr;
class ShapeAttributeLayer;
typedef ::boost::shared_ptr< ShapeAttributeLayer > ShapeAttributeLayerSharedPtr;
/** Encapsulates all modifiable attributes of a shape.
This class holds all modifiable attributes of a shape, and
at the same time provides means to layer attributes on top
of each other..
And yes, there's a reason why we even pass bools and ints
by const reference. Namely, that makes the set* methods
differ only in the value type, which greatly reduces
template variability (e.g. in AnimationFactory).
*/
class ShapeAttributeLayer
{
public:
/** Create a ShapeAttributeLayer instance, with all
attributes set to default.
Furthermore, this constructor gets a pointer to a
child layer, which is used as the fallback (or the
base value) for all attributes
@param rChildLayer
Layer below this one
@attention
This method is only supposed to be called from Shape objects
*/
explicit ShapeAttributeLayer( const ShapeAttributeLayerSharedPtr& rChildLayer );
// Children management methods
/** Revoke the given layer.
This method revokes the given layer from this object
or one of the children. That is, if this object does
have children, and the given layer is no direct child,
it is recursively passed to the children for removal.
@return true, if removal was successful.
@attention
This method is only supposed to be called from Shape objects
*/
bool revokeChildLayer( const ShapeAttributeLayerSharedPtr& rChildLayer );
/** Query the child layer of this object.
@attention
This method is only supposed to be called from Shape objects
*/
ShapeAttributeLayerSharedPtr getChildLayer() const;
/** Set the additive mode for possible child attributes
This method sets the additive mode for child
attributes. That is the way underlying attribute
layers are combined with this one (i.e. to overrule
lower layers, or how to combine the values). The
default is
::com::sun::star::animations::AnimationAdditiveMode::BASE,
which means, take the value of the underlying layers,
or from the model shape itself.
@param nMode
Must be one of
::com::sun::star::animations::AnimationAdditiveMode.
*/
void setAdditiveMode( sal_Int16 nMode );
// Attribute methods
/** Query whether the width attribute is valid.
*/
bool isWidthValid() const;
/** Query the current width of the shape
*/
double getWidth() const;
/** Set the new width of the shape
@param rNewWidth
A negative width mirrors the shape.
*/
void setWidth( const double& rNewWidth );
/** Query whether the height attribute is valid.
*/
bool isHeightValid() const;
/** Query the current height of the shape
*/
double getHeight() const;
/** Set the new height of the shape
@param rNewHeight
A negative height mirrors the shape.
*/
void setHeight( const double& rNewHeight );
/** Set the new size of the shape
@param rNewSize
A negative size mirrors the shape.
*/
void setSize( const ::basegfx::B2DSize& rNewSize );
/** Query whether the x position attribute is valid
*/
bool isPosXValid() const;
/** Query the current x position of the shape.
The current x position of the shape is always relative
to the <em>center</em> of the shape (in contrast to
the Shape::getBounds() and Shape::getUpdateArea()
methods).
*/
double getPosX() const;
/** Set the new x position of the shape
The current x position of the shape is always relative
to the <em>center</em> of the shape (in contrast to
the Shape::getBounds() and Shape::getUpdateArea()
methods).
*/
void setPosX( const double& rNewX );
/** Query whether the y position attribute is valid
*/
bool isPosYValid() const;
/** Query the current y position of the shape
The current y position of the shape is always relative
to the <em>center</em> of the shape (in contrast to
the Shape::getBounds() and Shape::getUpdateArea()
methods).
*/
double getPosY() const;
/** Set the new y position of the shape
The current y position of the shape is always relative
to the <em>center</em> of the shape (in contrast to
the Shape::getBounds() and Shape::getUpdateArea()
methods).
*/
void setPosY( const double& rNewY );
/** Set the new position of the shape
The current position of the shape is always relative
to the <em>center</em> of the shape (in contrast to
the Shape::getBounds() and Shape::getUpdateArea()
methods).
*/
void setPosition( const ::basegfx::B2DPoint& rNewPos );
/** Query whether the rotation angle attribute is valid
*/
bool isRotationAngleValid() const;
/** Query the current rotation angle of the shape
@return the rotation angle in degrees.
*/
double getRotationAngle() const;
/** Set the new rotation angle of the shape
@param rNewAngle
New rotation angle in degrees.
*/
void setRotationAngle( const double& rNewAngle );
/** Query whether the shear x angle attribute is valid
*/
bool isShearXAngleValid() const;
/** Query the current shear angle at the x axis of the shape
@return the shear angle in degrees.
*/
double getShearXAngle() const;
/** Set the new shear angle at the x axis of the shape
@param rNewAngle
New shear angle in radians.
*/
void setShearXAngle( const double& rNewAngle );
/** Query whether the shear y angle attribute is valid
*/
bool isShearYAngleValid() const;
/** Query the current shear angle at the y axis of the shape
@return the shear angle in degrees.
*/
double getShearYAngle() const;
/** Set the new shear angle at the y axis of the shape
@param rNewAngle
New shear angle in radians.
*/
void setShearYAngle( const double& rNewAngle );
/** Query whether the alpha attribute is valid
*/
bool isAlphaValid() const;
/** Query the current alpha value of the shape
*/
double getAlpha() const;
/** Set the new alpha value of the shape
@param rNewValue
New alpha value, must be in the [0,1] range
*/
void setAlpha( const double& rNewValue );
/** Query whether the clip attribute is valid
*/
bool isClipValid() const;
/** Query the current clip polygon of the shape
*/
::basegfx::B2DPolyPolygon getClip() const;
/** Set the new clip polygon of the shape
@param rNewClip
New clip polygon, is interpreted in shape view coordinates, but
relative to the shape (i.e. the origin of the shape coincides
with the origin of the clip polygon).
*/
void setClip( const ::basegfx::B2DPolyPolygon& rNewClip );
/** Query whether the dim color attribute is valid
The dim color globally 'dims' the shape towards that
color
*/
bool isDimColorValid() const;
/** Get the dim color for the whole shape.
*/
RGBColor getDimColor() const;
/** Set the dim color globally for the whole shape.
*/
void setDimColor( const RGBColor& nNewColor );
/** Query whether the fill color attribute is valid
*/
bool isFillColorValid() const;
/** Get the fill color for the whole shape.
If there's no unique fill color, the color from the
first filled polygon is returned.
*/
RGBColor getFillColor() const;
/** Set the fill color globally for the whole shape.
*/
void setFillColor( const RGBColor& nNewColor );
/** Query whether the line color attribute is valid
*/
bool isLineColorValid() const;
/** Get the line color for the whole shape.
If there's no unique line color, the color from the
first line is returned.
*/
RGBColor getLineColor() const;
/** Set the line color globally for the whole shape.
*/
void setLineColor( const RGBColor& nNewColor );
/** Query whether the fill mode attribute is valid
*/
bool isFillStyleValid() const;
/** Get the current fill mode for polygon fillings.
@returns the current style
*/
sal_Int16 getFillStyle() const;
/** Changes polygon fillings.
*/
void setFillStyle( const sal_Int16& rStyle );
/** Query whether the line mode attribute is valid
*/
bool isLineStyleValid() const;
/** Get the current line mode for line drawing.
@returns the current line style
*/
sal_Int16 getLineStyle() const;
/** Set line style for the whole shape
*/
void setLineStyle( const sal_Int16& rStyle );
/** Query whether the visibility state attribute is valid
*/
bool isVisibilityValid() const;
/** Get the current shape visibility.
@returns true for visible, false for invisible.
*/
bool getVisibility() const;
/** Set the shape visibility
*/
void setVisibility( const bool& bVisible );
/** Query whether the char color attribute is valid
*/
bool isCharColorValid() const;
/** Get the text color for the whole shape.
If there's no unique text color, the color from the
first text drawn is returned.
*/
RGBColor getCharColor() const;
/** Set the text color globally for the whole shape.
*/
void setCharColor( const RGBColor& nNewColor );
/** Query whether the char rotation angle attribute is valid
*/
bool isCharRotationAngleValid() const;
/** Query the current text rotation angle of the shape
@return the text rotation angle in degrees.
*/
double getCharRotationAngle() const;
/** Set the new text rotation angle of the shape
@param rNewAngle
New text rotation angle in degrees.
*/
void setCharRotationAngle( const double& rNewAngle );
/** Query whether the char weight attribute is valid
*/
bool isCharWeightValid() const;
/** Get the current char weight value for the whole shape.
@returns the value for the char weight. The value must
be out of the ::com::sun::star::awt::FontWeight
constant group.
*/
double getCharWeight() const;
/** Set the char weight globally for the whole shape.
The value must be out of the
::com::sun::star::awt::FontWeight constant group.
*/
void setCharWeight( const double& rStyle );
/** Query whether the underline mode attribute is valid
*/
bool isUnderlineModeValid() const;
/** Get the current text underline status for the whole shape.
If there is no unique underline status, false is returned.
@returns true for underlined text, false for normal.
*/
sal_Int16 getUnderlineMode() const;
/** Set the underline status globally for the whole shape
*/
void setUnderlineMode( const sal_Int16& bUnderline );
/** Query whether the font family attribute is valid
*/
bool isFontFamilyValid() const;
/** Get the current text font family for the whole shape.
If there is no unique font family, the font family of
the first text of the shape is returned.
*/
OUString getFontFamily() const;
/** Set the text font family name globally for the whole shape
*/
void setFontFamily( const OUString& rName );
/** Query whether the italic mode attribute is valid
*/
bool isCharPostureValid() const;
/** Get the current text italic style for the whole shape.
@returns the italic style. The value returned is one
of the ::com::sun::star::awt::FontSlant enums
*/
sal_Int16 getCharPosture() const;
/** Set the italic style globally for the whole shape.
The value must be one of the
::com::sun::star::awt::FontSlant enums.
*/
void setCharPosture( const sal_Int16& rStyle );
/** Query whether the char scaling attribute is valid
*/
bool isCharScaleValid() const;
/** Query the current char scaling attribute globally for
the shape.
The char scaling changes the scale of the whole shape
text (uniformely, i.e. both in x and in y direction).
*/
double getCharScale() const;
/** Set the new char scale globally for the shape
@param rNewScale
New char scale
*/
void setCharScale( const double& rNewScale );
// State change query methods
State::StateId getTransformationState() const;
State::StateId getClipState() const;
State::StateId getAlphaState() const;
State::StateId getPositionState() const;
State::StateId getContentState() const;
State::StateId getVisibilityState() const;
private:
// default copy/assignment operator is okay
// ShapeAttributeLayer(const ShapeAttributeLayer&);
// ShapeAttributeLayer& operator=( const ShapeAttributeLayer& );
bool haveChild() const { return static_cast< bool >(mpChild); }
void updateStateIds();
template< typename T > T calcValue( const T& rCurrValue,
bool bThisInstanceValid,
bool (ShapeAttributeLayer::*pIsValid)() const,
T (ShapeAttributeLayer::*pGetValue)() const ) const;
ShapeAttributeLayerSharedPtr mpChild; // may be NULL
::basegfx::B2DSize maSize;
::basegfx::B2DPoint maPosition;
::basegfx::B2DPolyPolygon maClip;
OUString maFontFamily;
double mnRotationAngle;
double mnShearXAngle;
double mnShearYAngle;
double mnAlpha;
double mnCharRotationAngle;
double mnCharScale;
double mnCharWeight;
::com::sun::star::drawing::FillStyle meFillStyle;
::com::sun::star::drawing::LineStyle meLineStyle;
::com::sun::star::awt::FontSlant meCharPosture;
sal_Int16 mnUnderlineMode;
RGBColor maDimColor;
RGBColor maFillColor;
RGBColor maLineColor;
RGBColor maCharColor;
State::StateId mnTransformationState;
State::StateId mnClipState;
State::StateId mnAlphaState;
State::StateId mnPositionState;
State::StateId mnContentState;
State::StateId mnVisibilityState;
sal_Int16 mnAdditiveMode;
bool mbVisibility : 1;
bool mbWidthValid : 1;
bool mbHeightValid : 1;
bool mbPosXValid : 1;
bool mbPosYValid : 1;
bool mbClipValid : 1;
bool mbFontFamilyValid : 1;
bool mbRotationAngleValid : 1;
bool mbShearXAngleValid : 1;
bool mbShearYAngleValid : 1;
bool mbAlphaValid : 1;
bool mbCharRotationAngleValid: 1;
bool mbCharScaleValid : 1;
bool mbDimColorValid : 1;
bool mbFillColorValid : 1;
bool mbLineColorValid : 1;
bool mbCharColorValid : 1;
bool mbFillStyleValid : 1;
bool mbLineStyleValid : 1;
bool mbCharWeightValid : 1;
bool mbUnderlineModeValid : 1;
bool mbCharPostureValid : 1;
bool mbVisibilityValid : 1;
};
}
}
#endif // INCLUDED_SLIDESHOW_SOURCE_INC_SHAPEATTRIBUTELAYER_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|