tdf#119209: Windows share has inappropriate server suggestion
[LibreOffice.git] / include / svtools / scriptedtext.hxx
blob7b8d6cd0f46e960239789f413e3dc7ee1c85d803
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SVTOOLS_SCRIPTEDTEXT_HXX
21 #define INCLUDED_SVTOOLS_SCRIPTEDTEXT_HXX
23 #include <svtools/svtdllapi.h>
24 #include <com/sun/star/i18n/XBreakIterator.hpp>
25 #include <memory>
28 class OutputDevice;
29 namespace vcl { class Font; }
30 class SvtScriptedTextHelper_Impl;
31 class Size;
32 class Point;
35 /**
36 This class provides drawing text with different script types on any output devices.
38 class SVT_DLLPUBLIC SvtScriptedTextHelper final
40 private:
41 std::unique_ptr<SvtScriptedTextHelper_Impl> mpImpl; /// Implementation of class functionality.
43 SvtScriptedTextHelper& operator=( const SvtScriptedTextHelper& ) = delete;
45 public:
46 /** Constructor sets an output device and no fonts.
47 @param _rOutDevice
48 A reference to an output device. */
49 SvtScriptedTextHelper( OutputDevice& _rOutDevice );
51 /** Copy constructor. */
52 SvtScriptedTextHelper(
53 const SvtScriptedTextHelper& _rCopy );
55 /** Destructor. */
56 ~SvtScriptedTextHelper();
58 /** Sets new fonts and recalculates the text width.
59 @param _pLatinFont
60 The font for latin characters.
61 @param _pAsianFont
62 The font for asian characters.
63 @param _pCmplxFont
64 The font for complex text layout. */
65 void SetFonts( vcl::Font const * _pLatinFont, vcl::Font const * _pAsianFont, vcl::Font const * _pCmplxFont );
67 /** Sets the default font of the current output device to all script types. */
68 void SetDefaultFont();
70 /** Sets a new text and calculates all script breaks and the text width.
71 @param _rText
72 The new text.
73 @param _xBreakIter
74 The break iterator for iterating through the script portions. */
75 void SetText(
76 const OUString& _rText,
77 const css::uno::Reference< css::i18n::XBreakIterator >& _xBreakIter );
79 /** Returns a size struct containing the width and height of the text in the current output device.
80 @return A size struct with the text dimensions. */
81 const Size& GetTextSize() const;
83 /** Draws the text in the current output device.
84 @param _rPos
85 The position of the top left edge of the text. */
86 void DrawText( const Point& _rPos );
90 #endif
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */