Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : */
9 :
10 : #ifndef INCLUDED_SVX_ITEXTPROVIDER_HXX
11 : #define INCLUDED_SVX_ITEXTPROVIDER_HXX
12 :
13 : #include <sal/types.h>
14 :
15 : #include <svx/svxdllapi.h>
16 :
17 : class SdrText;
18 :
19 : namespace svx
20 : {
21 :
22 : /** This interface provides access to text object(s) in an SdrObject.
23 :
24 : */
25 68679 : class SVX_DLLPUBLIC ITextProvider
26 : {
27 : public:
28 : /** Return the number of texts available for this object. */
29 : virtual sal_Int32 getTextCount() const = 0;
30 :
31 : /** Return the nth available text. */
32 : virtual SdrText* getText(sal_Int32 nIndex) const = 0;
33 :
34 : protected:
35 67901 : ~ITextProvider() {}
36 : };
37 :
38 : }
39 :
40 : #endif
41 :
42 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|