1 /**************************************************************
2  *
3  * Licensed to the Apache Software Foundation (ASF) under one
4  * or more contributor license agreements.  See the NOTICE file
5  * distributed with this work for additional information
6  * regarding copyright ownership.  The ASF licenses this file
7  * to you under the Apache License, Version 2.0 (the
8  * "License"); you may not use this file except in compliance
9  * with the License.  You may obtain a copy of the License at
10  *
11  *   http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing,
14  * software distributed under the License is distributed on an
15  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16  * KIND, either express or implied.  See the License for the
17  * specific language governing permissions and limitations
18  * under the License.
19  *
20  *************************************************************/
21 
22 
23 
24 #ifndef _DXCANVAS_TEXTLAYOUT_HXX
25 #define _DXCANVAS_TEXTLAYOUT_HXX
26 
27 #include <cppuhelper/compbase2.hxx>
28 #include <comphelper/broadcasthelper.hxx>
29 
30 #include <com/sun/star/lang/XServiceInfo.hpp>
31 
32 #include <com/sun/star/rendering/XTextLayout.hpp>
33 
34 #include <basegfx/vector/b2isize.hxx>
35 
36 #include <boost/utility.hpp>
37 
38 #include "dx_canvasfont.hxx"
39 #include "dx_ibitmap.hxx"
40 #include "dx_winstuff.hxx"
41 #include "dx_gdiplususer.hxx"
42 
43 
44 /* Definition of TextLayout class */
45 class DXBitmapSharedPtr;
46 
47 namespace dxcanvas
48 {
49     typedef ::cppu::WeakComponentImplHelper2< ::com::sun::star::rendering::XTextLayout,
50                          					  ::com::sun::star::lang::XServiceInfo > TextLayout_Base;
51 
52     class TextLayout : public ::comphelper::OBaseMutex,
53                        public TextLayout_Base,
54                        private ::boost::noncopyable
55     {
56     public:
57         TextLayout( const ::com::sun::star::rendering::StringContext& aText,
58                     sal_Int8                                                  nDirection,
59                     sal_Int64                                                 nRandomSeed,
60                     const CanvasFont::ImplRef&                                rFont );
61 
62         /// Dispose all internal references
63         virtual void SAL_CALL disposing();
64 
65         // XTextLayout
66         virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XPolyPolygon2D > > SAL_CALL queryTextShapes(  ) throw (::com::sun::star::uno::RuntimeException);
67         virtual ::com::sun::star::uno::Sequence< ::com::sun::star::geometry::RealRectangle2D > SAL_CALL queryInkMeasures(  ) throw (::com::sun::star::uno::RuntimeException);
68         virtual ::com::sun::star::uno::Sequence< ::com::sun::star::geometry::RealRectangle2D > SAL_CALL queryMeasures(  ) throw (::com::sun::star::uno::RuntimeException);
69         virtual ::com::sun::star::uno::Sequence< double > SAL_CALL queryLogicalAdvancements(  ) throw (::com::sun::star::uno::RuntimeException);
70         virtual void SAL_CALL applyLogicalAdvancements( const ::com::sun::star::uno::Sequence< double >& aAdvancements ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
71         virtual ::com::sun::star::geometry::RealRectangle2D SAL_CALL queryTextBounds(  ) throw (::com::sun::star::uno::RuntimeException);
72         virtual double SAL_CALL justify( double nSize ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
73         virtual double SAL_CALL combinedJustify( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XTextLayout > >& aNextLayouts, double nSize ) throw (::com::sun::star::lang::IllegalArgumentException, ::com::sun::star::uno::RuntimeException);
74         virtual ::com::sun::star::rendering::TextHit SAL_CALL getTextHit( const ::com::sun::star::geometry::RealPoint2D& aHitPoint ) throw (::com::sun::star::uno::RuntimeException);
75         virtual ::com::sun::star::rendering::Caret SAL_CALL getCaret( sal_Int32 nInsertionIndex, sal_Bool bExcludeLigatures ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
76         virtual sal_Int32 SAL_CALL getNextInsertionIndex( sal_Int32 nStartIndex, sal_Int32 nCaretAdvancement, sal_Bool bExcludeLigatures ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
77         virtual ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XPolyPolygon2D > SAL_CALL queryVisualHighlighting( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
78         virtual ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XPolyPolygon2D > SAL_CALL queryLogicalHighlighting( sal_Int32 nStartIndex, sal_Int32 nEndIndex ) throw (::com::sun::star::lang::IndexOutOfBoundsException, ::com::sun::star::uno::RuntimeException);
79         virtual double SAL_CALL getBaselineOffset(  ) throw (::com::sun::star::uno::RuntimeException);
80         virtual sal_Int8 SAL_CALL getMainTextDirection(  ) throw (::com::sun::star::uno::RuntimeException);
81         virtual ::com::sun::star::uno::Reference< ::com::sun::star::rendering::XCanvasFont > SAL_CALL getFont(  ) throw (::com::sun::star::uno::RuntimeException);
82         virtual ::com::sun::star::rendering::StringContext SAL_CALL getText(  ) throw (::com::sun::star::uno::RuntimeException);
83 
84         // XServiceInfo
85         virtual ::rtl::OUString SAL_CALL getImplementationName() throw( ::com::sun::star::uno::RuntimeException );
86         virtual sal_Bool SAL_CALL supportsService( const ::rtl::OUString& ServiceName ) throw( ::com::sun::star::uno::RuntimeException );
87         virtual ::com::sun::star::uno::Sequence< ::rtl::OUString > SAL_CALL getSupportedServiceNames()  throw( ::com::sun::star::uno::RuntimeException );
88 
89         bool draw( const GraphicsSharedPtr&                              rGraphics,
90                    const ::com::sun::star::rendering::ViewState&         rViewState,
91                    const ::com::sun::star::rendering::RenderState&       rRenderState,
92                    const ::basegfx::B2ISize&                             rOutputOffset,
93                    const ::com::sun::star::uno::Reference<
94                    ::com::sun::star::rendering::XGraphicDevice >&        xGraphicDevice,
95                    bool                                                  bAlphaSurface ) const;
96 
97     protected:
98         ~TextLayout(); // we're a ref-counted UNO class. _We_ destroy ourselves.
99 
100     private:
101         // NOTE: no need for GDIPlusUserSharedPtr, mpFont implicitly has one already
102 
103         ::com::sun::star::rendering::StringContext maText;
104         ::com::sun::star::uno::Sequence< double >  maLogicalAdvancements;
105         CanvasFont::ImplRef                        mpFont;
106         sal_Int8                                   mnTextDirection;
107     };
108 
109 }
110 
111 #endif /* _DXCANVAS_TEXTLAYOUT_HXX */
112