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
|
/* -*- 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 .
*/
#include <formcontrolfont.hxx>
#include <frm_strings.hxx>
#include <property.hxx>
#include <cppuhelper/propshlp.hxx>
#include <comphelper/property.hxx>
#include <comphelper/types.hxx>
#include <tools/color.hxx>
#include <sal/log.hxx>
#include <toolkit/helper/emptyfontdescriptor.hxx>
#include <com/sun/star/awt/FontRelief.hpp>
#include <com/sun/star/awt/FontEmphasisMark.hpp>
namespace frm
{
using namespace ::comphelper;
using namespace ::com::sun::star::uno;
using namespace ::com::sun::star::awt;
using namespace ::com::sun::star::lang;
using namespace ::com::sun::star::beans;
namespace
{
Any lcl_extractFontDescriptorAggregate( sal_Int32 _nHandle, const FontDescriptor& _rFont )
{
Any aValue;
switch ( _nHandle )
{
case PROPERTY_ID_FONT_NAME:
aValue <<= _rFont.Name;
break;
case PROPERTY_ID_FONT_STYLENAME:
aValue <<= _rFont.StyleName;
break;
case PROPERTY_ID_FONT_FAMILY:
aValue <<= _rFont.Family;
break;
case PROPERTY_ID_FONT_CHARSET:
aValue <<= _rFont.CharSet;
break;
case PROPERTY_ID_FONT_CHARWIDTH:
aValue <<= _rFont.CharacterWidth;
break;
case PROPERTY_ID_FONT_KERNING:
aValue <<= _rFont.Kerning;
break;
case PROPERTY_ID_FONT_ORIENTATION:
aValue <<= _rFont.Orientation;
break;
case PROPERTY_ID_FONT_PITCH:
aValue <<= _rFont.Pitch;
break;
case PROPERTY_ID_FONT_TYPE:
aValue <<= _rFont.Type;
break;
case PROPERTY_ID_FONT_WIDTH:
aValue <<= _rFont.Width;
break;
case PROPERTY_ID_FONT_HEIGHT:
aValue <<= static_cast<float>( _rFont.Height );
break;
case PROPERTY_ID_FONT_WEIGHT:
aValue <<= _rFont.Weight;
break;
case PROPERTY_ID_FONT_SLANT:
aValue <<= _rFont.Slant;
break;
case PROPERTY_ID_FONT_UNDERLINE:
aValue <<= _rFont.Underline;
break;
case PROPERTY_ID_FONT_STRIKEOUT:
aValue <<= _rFont.Strikeout;
break;
case PROPERTY_ID_FONT_WORDLINEMODE:
aValue <<= _rFont.WordLineMode;
break;
default:
OSL_FAIL( "lcl_extractFontDescriptorAggregate: invalid handle!" );
break;
}
return aValue;
}
}
FontControlModel::FontControlModel( bool _bToolkitCompatibleDefaults )
:m_nFontRelief( css::awt::FontRelief::NONE )
,m_nFontEmphasis( css::awt::FontEmphasisMark::NONE )
,m_bToolkitCompatibleDefaults( _bToolkitCompatibleDefaults )
{
}
FontControlModel::FontControlModel( const FontControlModel* _pOriginal )
{
m_aFont = _pOriginal->m_aFont;
m_nFontRelief = _pOriginal->m_nFontRelief;
m_nFontEmphasis = _pOriginal->m_nFontEmphasis;
m_aTextLineColor = _pOriginal->m_aTextLineColor;
m_aTextColor = _pOriginal->m_aTextColor;
m_bToolkitCompatibleDefaults = _pOriginal->m_bToolkitCompatibleDefaults;
}
bool FontControlModel::isFontRelatedProperty( sal_Int32 _nPropertyHandle )
{
return isFontAggregateProperty( _nPropertyHandle )
|| ( _nPropertyHandle == PROPERTY_ID_FONT )
|| ( _nPropertyHandle == PROPERTY_ID_FONTEMPHASISMARK )
|| ( _nPropertyHandle == PROPERTY_ID_FONTRELIEF )
|| ( _nPropertyHandle == PROPERTY_ID_TEXTLINECOLOR )
|| ( _nPropertyHandle == PROPERTY_ID_TEXTCOLOR );
}
bool FontControlModel::isFontAggregateProperty( sal_Int32 _nPropertyHandle )
{
return ( _nPropertyHandle == PROPERTY_ID_FONT_CHARWIDTH )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_ORIENTATION )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_WIDTH )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_NAME )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_STYLENAME )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_FAMILY )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_CHARSET )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_HEIGHT )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_WEIGHT )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_SLANT )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_UNDERLINE )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_STRIKEOUT )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_WORDLINEMODE )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_PITCH )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_KERNING )
|| ( _nPropertyHandle == PROPERTY_ID_FONT_TYPE );
}
Color FontControlModel::getTextColor( ) const
{
Color nColor = COL_TRANSPARENT;
m_aTextColor >>= nColor;
return nColor;
}
Color FontControlModel::getTextLineColor( ) const
{
Color nColor = COL_TRANSPARENT;
m_aTextLineColor >>= nColor;
return nColor;
}
void FontControlModel::describeFontRelatedProperties( Sequence< Property >& /* [out] */ _rProps)
{
sal_Int32 nPos = _rProps.getLength();
_rProps.realloc( nPos + 21 );
Property* pProperties = _rProps.getArray();
DECL_PROP2 ( FONT, FontDescriptor, BOUND, MAYBEDEFAULT );
DECL_PROP2 ( FONTEMPHASISMARK, sal_Int16, BOUND, MAYBEDEFAULT );
DECL_PROP2 ( FONTRELIEF, sal_Int16, BOUND, MAYBEDEFAULT );
DECL_PROP3 ( TEXTCOLOR, sal_Int32, BOUND, MAYBEDEFAULT, MAYBEVOID );
DECL_PROP3 ( TEXTLINECOLOR, sal_Int32, BOUND, MAYBEDEFAULT, MAYBEVOID );
DECL_PROP1 ( FONT_CHARWIDTH, float, MAYBEDEFAULT );
DECL_BOOL_PROP1 ( FONT_KERNING, MAYBEDEFAULT );
DECL_PROP1 ( FONT_ORIENTATION, float, MAYBEDEFAULT );
DECL_PROP1 ( FONT_PITCH, sal_Int16, MAYBEDEFAULT );
DECL_PROP1 ( FONT_TYPE, sal_Int16, MAYBEDEFAULT );
DECL_PROP1 ( FONT_WIDTH, sal_Int16, MAYBEDEFAULT );
DECL_PROP1 ( FONT_NAME, OUString, MAYBEDEFAULT );
DECL_PROP1 ( FONT_STYLENAME, OUString, MAYBEDEFAULT );
DECL_PROP1 ( FONT_FAMILY, sal_Int16, MAYBEDEFAULT );
DECL_PROP1 ( FONT_CHARSET, sal_Int16, MAYBEDEFAULT );
DECL_PROP1 ( FONT_HEIGHT, float, MAYBEDEFAULT );
DECL_PROP1 ( FONT_WEIGHT, float, MAYBEDEFAULT );
DECL_PROP1 ( FONT_SLANT, sal_Int16, MAYBEDEFAULT );
DECL_PROP1 ( FONT_UNDERLINE, sal_Int16, MAYBEDEFAULT );
DECL_PROP1 ( FONT_STRIKEOUT, sal_Int16, MAYBEDEFAULT );
DECL_BOOL_PROP1 ( FONT_WORDLINEMODE, MAYBEDEFAULT );
}
void FontControlModel::getFastPropertyValue( Any& _rValue, sal_Int32 _nHandle ) const
{
switch( _nHandle )
{
case PROPERTY_ID_TEXTCOLOR:
_rValue = m_aTextColor;
break;
case PROPERTY_ID_FONTEMPHASISMARK:
_rValue <<= m_nFontEmphasis;
break;
case PROPERTY_ID_FONTRELIEF:
_rValue <<= m_nFontRelief;
break;
case PROPERTY_ID_TEXTLINECOLOR:
_rValue = m_aTextLineColor;
break;
case PROPERTY_ID_FONT:
_rValue <<= m_aFont;
break;
default:
_rValue = lcl_extractFontDescriptorAggregate( _nHandle, m_aFont );
break;
}
}
bool FontControlModel::convertFastPropertyValue( Any& _rConvertedValue, Any& _rOldValue,
sal_Int32 _nHandle, const Any& _rValue )
{
bool bModified = false;
switch( _nHandle )
{
case PROPERTY_ID_TEXTCOLOR:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aTextColor, cppu::UnoType<sal_Int32>::get() );
break;
case PROPERTY_ID_TEXTLINECOLOR:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aTextLineColor, cppu::UnoType<sal_Int32>::get() );
break;
case PROPERTY_ID_FONTEMPHASISMARK:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_nFontEmphasis );
break;
case PROPERTY_ID_FONTRELIEF:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_nFontRelief );
break;
case PROPERTY_ID_FONT:
{
Any aWorkAroundGccLimitation = makeAny( m_aFont );
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, aWorkAroundGccLimitation, cppu::UnoType<decltype(m_aFont)>::get() );
}
break;
case PROPERTY_ID_FONT_NAME:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Name );
break;
case PROPERTY_ID_FONT_STYLENAME:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.StyleName );
break;
case PROPERTY_ID_FONT_FAMILY:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Family );
break;
case PROPERTY_ID_FONT_CHARSET:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.CharSet );
break;
case PROPERTY_ID_FONT_CHARWIDTH:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.CharacterWidth );
break;
case PROPERTY_ID_FONT_KERNING:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Kerning );
break;
case PROPERTY_ID_FONT_ORIENTATION:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Orientation );
break;
case PROPERTY_ID_FONT_PITCH:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Pitch );
break;
case PROPERTY_ID_FONT_TYPE:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Type );
break;
case PROPERTY_ID_FONT_WIDTH:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Width );
break;
case PROPERTY_ID_FONT_HEIGHT:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, float( m_aFont.Height ) );
break;
case PROPERTY_ID_FONT_WEIGHT:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Weight );
break;
case PROPERTY_ID_FONT_SLANT:
bModified = tryPropertyValueEnum( _rConvertedValue, _rOldValue, _rValue, m_aFont.Slant );
break;
case PROPERTY_ID_FONT_UNDERLINE:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Underline );
break;
case PROPERTY_ID_FONT_STRIKEOUT:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.Strikeout );
break;
case PROPERTY_ID_FONT_WORDLINEMODE:
bModified = tryPropertyValue( _rConvertedValue, _rOldValue, _rValue, m_aFont.WordLineMode );
break;
default:
OSL_FAIL( "FontControlModel::convertFastPropertyValue: no font aggregate!" );
}
return bModified;
}
/// @throws Exception
static void setFastPropertyValue_NoBroadcast_implimpl(
FontDescriptor & rFont,
sal_Int32 nHandle, const Any& rValue)
{
switch (nHandle)
{
case PROPERTY_ID_FONT_NAME:
rValue >>= rFont.Name;
break;
case PROPERTY_ID_FONT_STYLENAME:
rValue >>= rFont.StyleName;
break;
case PROPERTY_ID_FONT_FAMILY:
rValue >>= rFont.Family;
break;
case PROPERTY_ID_FONT_CHARSET:
rValue >>= rFont.CharSet;
break;
case PROPERTY_ID_FONT_CHARWIDTH:
rValue >>= rFont.CharacterWidth;
break;
case PROPERTY_ID_FONT_KERNING:
rValue >>= rFont.Kerning;
break;
case PROPERTY_ID_FONT_ORIENTATION:
rValue >>= rFont.Orientation;
break;
case PROPERTY_ID_FONT_PITCH:
rValue >>= rFont.Pitch;
break;
case PROPERTY_ID_FONT_TYPE:
rValue >>= rFont.Type;
break;
case PROPERTY_ID_FONT_WIDTH:
rValue >>= rFont.Width;
break;
case PROPERTY_ID_FONT_HEIGHT:
{
float nHeight = 0;
rValue >>= nHeight;
rFont.Height = static_cast<sal_Int16>(nHeight);
}
break;
case PROPERTY_ID_FONT_WEIGHT:
rValue >>= rFont.Weight;
break;
case PROPERTY_ID_FONT_SLANT:
rValue >>= rFont.Slant;
break;
case PROPERTY_ID_FONT_UNDERLINE:
rValue >>= rFont.Underline;
break;
case PROPERTY_ID_FONT_STRIKEOUT:
rValue >>= rFont.Strikeout;
break;
case PROPERTY_ID_FONT_WORDLINEMODE:
{
bool bWordLineMode = false;
rValue >>= bWordLineMode;
rFont.WordLineMode = bWordLineMode;
}
break;
default:
assert(false); // isFontAggregateProperty
}
}
void FontControlModel::setFastPropertyValue_NoBroadcast_impl(
::cppu::OPropertySetHelper & rBase,
void (::cppu::OPropertySetHelper::*pSet)(sal_Int32, Any const&),
sal_Int32 nHandle, const Any& rValue)
{
if (isFontAggregateProperty(nHandle))
{
// need to fire an event for PROPERTY_ID_FONT too apparently, so:
FontDescriptor font(getFont());
// first set new value on backup copy
setFastPropertyValue_NoBroadcast_implimpl(font, nHandle, rValue);
// then set that as the actual property - will eventually call
// this method recursively again...
(rBase.*pSet)(PROPERTY_ID_FONT, makeAny(font));
#ifndef NDEBUG
// verify that the nHandle property has the new value
Any tmp;
getFastPropertyValue(tmp, nHandle);
assert(tmp == rValue || PROPERTY_ID_FONT_HEIGHT == nHandle /*rounded*/);
#endif
}
else
{
switch (nHandle)
{
case PROPERTY_ID_TEXTCOLOR:
m_aTextColor = rValue;
break;
case PROPERTY_ID_TEXTLINECOLOR:
m_aTextLineColor = rValue;
break;
case PROPERTY_ID_FONTEMPHASISMARK:
rValue >>= m_nFontEmphasis;
break;
case PROPERTY_ID_FONTRELIEF:
rValue >>= m_nFontRelief;
break;
case PROPERTY_ID_FONT:
rValue >>= m_aFont;
break;
default:
SAL_WARN("forms.component", "invalid property: " << nHandle);
}
}
}
Any FontControlModel::getPropertyDefaultByHandle( sal_Int32 _nHandle ) const
{
Any aReturn;
// some defaults which are the same, not matter if we have toolkit-compatible
// defaults or not
bool bHandled = false;
switch( _nHandle )
{
case PROPERTY_ID_TEXTCOLOR:
case PROPERTY_ID_TEXTLINECOLOR:
// void
bHandled = true;
break;
case PROPERTY_ID_FONTEMPHASISMARK:
aReturn <<= css::awt::FontEmphasisMark::NONE;
bHandled = true;
break;
case PROPERTY_ID_FONTRELIEF:
aReturn <<= css::awt::FontRelief::NONE;
bHandled = true;
break;
}
if ( bHandled )
return aReturn;
if ( m_bToolkitCompatibleDefaults )
{
EmptyFontDescriptor aEmpty;
if ( PROPERTY_ID_FONT == _nHandle )
return makeAny( FontDescriptor(aEmpty) );
return lcl_extractFontDescriptorAggregate( _nHandle, aEmpty );
}
switch( _nHandle )
{
case PROPERTY_ID_FONT:
aReturn <<= ::comphelper::getDefaultFont();
break;
case PROPERTY_ID_FONT_WORDLINEMODE:
aReturn <<= false;
break;
case PROPERTY_ID_FONT_NAME:
case PROPERTY_ID_FONT_STYLENAME:
aReturn <<= OUString();
break;
case PROPERTY_ID_FONT_FAMILY:
case PROPERTY_ID_FONT_CHARSET:
case PROPERTY_ID_FONT_SLANT:
case PROPERTY_ID_FONT_UNDERLINE:
case PROPERTY_ID_FONT_STRIKEOUT:
aReturn <<= sal_Int16(1);
break;
case PROPERTY_ID_FONT_KERNING:
aReturn <<= false;
break;
case PROPERTY_ID_FONT_PITCH:
case PROPERTY_ID_FONT_TYPE:
case PROPERTY_ID_FONT_WIDTH:
aReturn <<= sal_Int16(0);
break;
case PROPERTY_ID_FONT_HEIGHT:
case PROPERTY_ID_FONT_WEIGHT:
case PROPERTY_ID_FONT_CHARWIDTH:
case PROPERTY_ID_FONT_ORIENTATION:
aReturn <<= float(0);
break;
default:
OSL_FAIL( "FontControlModel::getPropertyDefaultByHandle: invalid property!" );
}
return aReturn;
}
} // namespace frm
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|