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 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612
|
/* -*- 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_SW_SOURCE_CORE_INC_DRAWFONT_HXX
#define INCLUDED_SW_SOURCE_CORE_INC_DRAWFONT_HXX
#include <tools/solar.h>
#include <osl/diagnose.h>
#include <vcl/vclptr.hxx>
#include <vcl/outdev.hxx>
class SwTextFrame;
class SwViewShell;
class SwScriptInfo;
class Point;
class SwWrongList;
class Size;
class SwFont;
namespace vcl {
class Font;
class TextLayoutCache;
typedef OutputDevice RenderContext;
}
class SwUnderlineFont;
// encapsulates information for drawing text
class SW_DLLPUBLIC SwDrawTextInfo
{
const SwTextFrame* m_pFrame;
VclPtr<OutputDevice> m_pOut;
SwViewShell const * m_pSh;
const SwScriptInfo* m_pScriptInfo;
Point m_aPos;
vcl::TextLayoutCache const* m_pCachedVclData;
OUString m_aText;
const SwWrongList* m_pWrong;
const SwWrongList* m_pGrammarCheck;
const SwWrongList* m_pSmartTags;
Size m_aSize;
SwFont *m_pFnt;
SwUnderlineFont* m_pUnderFnt;
sal_Int32* m_pHyphPos;
long m_nLeft;
long m_nRight;
long m_nKanaDiff;
sal_Int32 m_nIdx;
sal_Int32 m_nLen;
sal_Int32 m_nOfst;
sal_uInt16 m_nWidth;
sal_uInt16 m_nAscent;
sal_uInt16 m_nCompress;
long m_nSperren;
long m_nSpace;
long m_nKern;
sal_Int32 m_nNumberOfBlanks;
sal_uInt8 m_nCursorBidiLevel;
bool m_bBullet : 1;
bool m_bUpper : 1; // for small caps: upper case flag
bool m_bDrawSpace : 1; // for small caps: underline/ line through
bool m_bGreyWave : 1; // grey wave line for extended text input
// For underlining we need to know, if a section is right in front of a
// whole block or a fix margin section.
bool m_bSpaceStop : 1;
bool m_bSnapToGrid : 1; // Does paragraph snap to grid?
// Paint text as if text has LTR direction, used for line numbering
bool m_bIgnoreFrameRTL : 1;
// GetCursorOfst should not return the next position if screen position is
// inside second half of bound rect, used for Accessibility
bool m_bPosMatchesBounds :1;
public:
#ifdef DBG_UTIL
// These flags should control that the appropriate Set-function has been
// called before calling the Get-function of a member
bool m_bPos : 1;
bool m_bWrong : 1;
bool m_bGrammarCheck : 1;
bool m_bSize : 1;
bool m_bFnt : 1;
bool m_bHyph : 1;
bool m_bLeft : 1;
bool m_bRight : 1;
bool m_bKana : 1;
bool m_bOfst : 1;
bool m_bAscent: 1;
bool m_bSperr : 1;
bool m_bSpace : 1;
bool m_bNumberOfBlanks : 1;
bool m_bUppr : 1;
bool m_bDrawSp: 1;
#endif
SwDrawTextInfo( SwViewShell const *pSh, OutputDevice &rOut, const SwScriptInfo* pSI,
const OUString &rText, sal_Int32 nIdx, sal_Int32 nLen,
sal_uInt16 nWidth = 0, bool bBullet = false,
vcl::TextLayoutCache const*const pCachedVclData = nullptr)
: m_pCachedVclData(pCachedVclData)
{
m_pFrame = nullptr;
m_pSh = pSh;
m_pOut = &rOut;
m_pScriptInfo = pSI;
m_aText = rText;
m_nIdx = nIdx;
m_nLen = nLen;
m_nKern = 0;
m_nCompress = 0;
m_nWidth = nWidth;
m_nNumberOfBlanks = 0;
m_nCursorBidiLevel = 0;
m_bBullet = bBullet;
m_pUnderFnt = nullptr;
m_bGreyWave = false;
m_bSpaceStop = false;
m_bSnapToGrid = false;
m_bIgnoreFrameRTL = false;
m_bPosMatchesBounds = false;
// These values are initialized but have to be set explicitly via their
// Set-function before they may be accessed by their Get-function:
m_pWrong = nullptr;
m_pGrammarCheck = nullptr;
m_pSmartTags = nullptr;
m_pFnt = nullptr;
m_pHyphPos = nullptr;
m_nLeft = 0;
m_nRight = 0;
m_nKanaDiff = 0;
m_nOfst = 0;
m_nAscent = 0;
m_nSperren = 0;
m_nSpace = 0;
m_bUpper = false;
m_bDrawSpace = false;
#ifdef DBG_UTIL
// these flags control whether the matching member variables have been
// set by using the Set-function before they may be accessed by their
// Get-function:
m_bPos = m_bWrong = m_bGrammarCheck = m_bSize = m_bFnt = m_bAscent =
m_bSpace = m_bNumberOfBlanks = m_bUppr =
m_bDrawSp = m_bLeft = m_bRight = m_bKana = m_bOfst = m_bHyph =
m_bSperr = false;
#endif
}
const SwTextFrame* GetFrame() const
{
return m_pFrame;
}
void SetFrame( const SwTextFrame* pNewFrame )
{
m_pFrame = pNewFrame;
}
SwViewShell const *GetShell() const
{
return m_pSh;
}
vcl::RenderContext& GetOut() const
{
return *m_pOut;
}
vcl::RenderContext *GetpOut() const
{
return m_pOut;
}
const SwScriptInfo* GetScriptInfo() const
{
return m_pScriptInfo;
}
const Point &GetPos() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bPos, "DrawTextInfo: Undefined Position" );
#endif
return m_aPos;
}
sal_Int32 *GetHyphPos() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bHyph, "DrawTextInfo: Undefined Hyph Position" );
#endif
return m_pHyphPos;
}
vcl::TextLayoutCache const* GetVclCache() const
{
return m_pCachedVclData;
}
const OUString &GetText() const
{
return m_aText;
}
const SwWrongList* GetWrong() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bWrong, "DrawTextInfo: Undefined WrongList" );
#endif
return m_pWrong;
}
const SwWrongList* GetGrammarCheck() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bGrammarCheck, "DrawTextInfo: Undefined GrammarCheck List" );
#endif
return m_pGrammarCheck;
}
const SwWrongList* GetSmartTags() const
{
return m_pSmartTags;
}
const Size &GetSize() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bSize, "DrawTextInfo: Undefined Size" );
#endif
return m_aSize;
}
SwFont* GetFont() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bFnt, "DrawTextInfo: Undefined Font" );
#endif
return m_pFnt;
}
SwUnderlineFont* GetUnderFnt() const
{
return m_pUnderFnt;
}
sal_Int32 GetIdx() const
{
return m_nIdx;
}
sal_Int32 GetLen() const
{
return m_nLen;
}
sal_Int32 GetOfst() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bOfst, "DrawTextInfo: Undefined Offset" );
#endif
return m_nOfst;
}
sal_Int32 GetEnd() const
{
return m_nIdx + m_nLen;
}
long GetKanaDiff() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bKana, "DrawTextInfo: Undefined kana difference" );
#endif
return m_nKanaDiff;
}
sal_uInt16 GetWidth() const
{
return m_nWidth;
}
sal_uInt16 GetAscent() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bAscent, "DrawTextInfo: Undefined Ascent" );
#endif
return m_nAscent;
}
sal_uInt16 GetKanaComp() const
{
return m_nCompress;
}
long GetSperren() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bSperr, "DrawTextInfo: Undefined >Sperren<" );
#endif
return m_nSperren;
}
long GetKern() const
{
return m_nKern;
}
long GetSpace() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bSpace, "DrawTextInfo: Undefined Spacing" );
#endif
return m_nSpace;
}
sal_Int32 GetNumberOfBlanks() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bNumberOfBlanks, "DrawTextInfo::Undefined NumberOfBlanks" );
#endif
return m_nNumberOfBlanks;
}
sal_uInt8 GetCursorBidiLevel() const
{
return m_nCursorBidiLevel;
}
bool GetBullet() const
{
return m_bBullet;
}
bool GetUpper() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bUppr, "DrawTextInfo: Undefined Upperflag" );
#endif
return m_bUpper;
}
bool GetDrawSpace() const
{
#ifdef DBG_UTIL
OSL_ENSURE( m_bDrawSp, "DrawTextInfo: Undefined DrawSpaceflag" );
#endif
return m_bDrawSpace;
}
bool GetGreyWave() const
{
return m_bGreyWave;
}
bool IsSpaceStop() const
{
return m_bSpaceStop;
}
bool SnapToGrid() const
{
return m_bSnapToGrid;
}
bool IsIgnoreFrameRTL() const
{
return m_bIgnoreFrameRTL;
}
bool IsPosMatchesBounds() const
{
return m_bPosMatchesBounds;
}
void SetOut( OutputDevice &rNew )
{
m_pOut = &rNew;
}
void SetPos( const Point &rNew )
{
m_aPos = rNew;
#ifdef DBG_UTIL
m_bPos = true;
#endif
}
void SetHyphPos( sal_Int32 *pNew )
{
m_pHyphPos = pNew;
#ifdef DBG_UTIL
m_bHyph = true;
#endif
}
void SetText( const OUString &rNew )
{
m_aText = rNew;
m_pCachedVclData = nullptr; // would any case benefit from save/restore?
}
void SetWrong( const SwWrongList* pNew )
{
m_pWrong = pNew;
#ifdef DBG_UTIL
m_bWrong = true;
#endif
}
void SetGrammarCheck( const SwWrongList* pNew )
{
m_pGrammarCheck = pNew;
#ifdef DBG_UTIL
m_bGrammarCheck = true;
#endif
}
void SetSmartTags( const SwWrongList* pNew )
{
m_pSmartTags = pNew;
}
void SetSize( const Size &rNew )
{
m_aSize = rNew;
#ifdef DBG_UTIL
m_bSize = true;
#endif
}
void SetFont( SwFont* pNew )
{
m_pFnt = pNew;
#ifdef DBG_UTIL
m_bFnt = true;
#endif
}
void SetIdx( sal_Int32 nNew )
{
m_nIdx = nNew;
}
void SetLen( sal_Int32 nNew )
{
m_nLen = nNew;
}
void SetOfst( sal_Int32 nNew )
{
m_nOfst = nNew;
#ifdef DBG_UTIL
m_bOfst = true;
#endif
}
void SetLeft( long nNew )
{
m_nLeft = nNew;
#ifdef DBG_UTIL
m_bLeft = true;
#endif
}
void SetRight( long nNew )
{
m_nRight = nNew;
#ifdef DBG_UTIL
m_bRight = true;
#endif
}
void SetKanaDiff( long nNew )
{
m_nKanaDiff = nNew;
#ifdef DBG_UTIL
m_bKana = true;
#endif
}
void SetWidth( sal_uInt16 nNew )
{
m_nWidth = nNew;
}
void SetAscent( sal_uInt16 nNew )
{
m_nAscent = nNew;
#ifdef DBG_UTIL
m_bAscent = true;
#endif
}
void SetKern( long nNew )
{
m_nKern = nNew;
}
void SetSpace( long nNew )
{
if( nNew < 0 )
{
m_nSperren = -nNew;
m_nSpace = 0;
}
else
{
m_nSpace = nNew;
m_nSperren = 0;
}
#ifdef DBG_UTIL
m_bSpace = true;
m_bSperr = true;
#endif
}
void SetNumberOfBlanks( sal_Int32 nNew )
{
#ifdef DBG_UTIL
m_bNumberOfBlanks = true;
#endif
m_nNumberOfBlanks = nNew;
}
void SetCursorBidiLevel( sal_uInt8 nNew )
{
m_nCursorBidiLevel = nNew;
}
void SetKanaComp( short nNew )
{
m_nCompress = nNew;
}
void SetBullet( bool bNew )
{
m_bBullet = bNew;
}
void SetUnderFnt( SwUnderlineFont* pULFnt )
{
m_pUnderFnt = pULFnt;
}
void SetUpper( bool bNew )
{
m_bUpper = bNew;
#ifdef DBG_UTIL
m_bUppr = true;
#endif
}
void SetDrawSpace( bool bNew )
{
m_bDrawSpace = bNew;
#ifdef DBG_UTIL
m_bDrawSp = true;
#endif
}
void SetGreyWave( bool bNew )
{
m_bGreyWave = bNew;
}
void SetSpaceStop( bool bNew )
{
m_bSpaceStop = bNew;
}
void SetSnapToGrid( bool bNew )
{
m_bSnapToGrid = bNew;
}
void SetIgnoreFrameRTL( bool bNew )
{
m_bIgnoreFrameRTL = bNew;
}
void SetPosMatchesBounds( bool bNew )
{
m_bPosMatchesBounds = bNew;
}
void Shift( sal_uInt16 nDir );
// sets a new color at the output device if necessary if a font is passed
// as argument, the change if made to the font otherwise the font at the
// output device is changed returns if the font has been changed
bool ApplyAutoColor( vcl::Font* pFnt = nullptr );
};
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|