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 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 :
20 :
21 : #include <svtools/toolpanel/tablayouter.hxx>
22 : #include <svtools/toolpanel/toolpaneldeck.hxx>
23 : #include <svtools/toolpanel/paneltabbar.hxx>
24 : #include "svtaccessiblefactory.hxx"
25 :
26 : #include <tools/gen.hxx>
27 : #include <tools/diagnose_ex.h>
28 :
29 :
30 : namespace svt
31 : {
32 :
33 :
34 : using ::com::sun::star::uno::Reference;
35 : using ::com::sun::star::accessibility::XAccessible;
36 :
37 :
38 : //= TabDeckLayouter_Data
39 :
40 0 : struct TabDeckLayouter_Data
41 : {
42 : TabAlignment eAlignment;
43 : IToolPanelDeck& rPanels;
44 : VclPtr< PanelTabBar > pTabBar;
45 : AccessibleFactoryAccess aAccessibleFactory;
46 :
47 0 : TabDeckLayouter_Data( vcl::Window& i_rParent, IToolPanelDeck& i_rPanels,
48 : const TabAlignment i_eAlignment, const TabItemContent i_eItemContent )
49 : :eAlignment( i_eAlignment )
50 : ,rPanels( i_rPanels )
51 0 : ,pTabBar( VclPtr<PanelTabBar>::Create( i_rParent, i_rPanels, i_eAlignment, i_eItemContent ) )
52 : {
53 0 : pTabBar->Show();
54 0 : }
55 : };
56 :
57 :
58 : //= helper
59 :
60 : namespace
61 : {
62 0 : static bool lcl_isVerticalTabBar( const TabAlignment i_eAlignment )
63 : {
64 : return ( i_eAlignment == TABS_RIGHT )
65 0 : || ( i_eAlignment == TABS_LEFT );
66 : }
67 :
68 0 : static bool lcl_checkDisposed( const TabDeckLayouter_Data& i_rData )
69 : {
70 0 : if ( !i_rData.pTabBar.get() )
71 : {
72 : OSL_FAIL( "lcl_checkDisposed: already disposed!" );
73 0 : return true;
74 : }
75 0 : return false;
76 : }
77 : }
78 :
79 :
80 : //= TabDeckLayouter
81 :
82 :
83 0 : TabDeckLayouter::TabDeckLayouter( vcl::Window& i_rParent, IToolPanelDeck& i_rPanels,
84 : const TabAlignment i_eAlignment, const TabItemContent i_eItemContent )
85 0 : :m_pData( new TabDeckLayouter_Data( i_rParent, i_rPanels, i_eAlignment, i_eItemContent ) )
86 : {
87 0 : }
88 :
89 :
90 0 : TabDeckLayouter::~TabDeckLayouter()
91 : {
92 0 : }
93 :
94 :
95 0 : TabItemContent TabDeckLayouter::GetTabItemContent() const
96 : {
97 0 : if ( lcl_checkDisposed( *m_pData ) )
98 0 : return TABITEM_IMAGE_AND_TEXT;
99 0 : return m_pData->pTabBar->GetTabItemContent();
100 : }
101 :
102 :
103 0 : void TabDeckLayouter::SetTabItemContent( const TabItemContent& i_eItemContent )
104 : {
105 0 : if ( lcl_checkDisposed( *m_pData ) )
106 0 : return;
107 0 : m_pData->pTabBar->SetTabItemContent( i_eItemContent );
108 : }
109 :
110 :
111 0 : TabAlignment TabDeckLayouter::GetTabAlignment() const
112 : {
113 0 : if ( lcl_checkDisposed( *m_pData ) )
114 0 : return TABS_RIGHT;
115 0 : return m_pData->eAlignment;
116 : }
117 :
118 :
119 0 : Rectangle TabDeckLayouter::Layout( const Rectangle& i_rDeckPlayground )
120 : {
121 0 : if ( lcl_checkDisposed( *m_pData ) )
122 0 : return i_rDeckPlayground;
123 :
124 0 : const Size aPreferredSize(m_pData->pTabBar->GetOptimalSize());
125 0 : if ( lcl_isVerticalTabBar( m_pData->eAlignment ) )
126 : {
127 0 : Size aTabBarSize(aPreferredSize.Width(), i_rDeckPlayground.GetHeight());
128 :
129 0 : Rectangle aPanelRect( i_rDeckPlayground );
130 0 : if ( m_pData->eAlignment == TABS_RIGHT )
131 : {
132 0 : aPanelRect.Right() -= aTabBarSize.Width();
133 0 : Point aTabBarTopLeft( aPanelRect.TopRight() );
134 0 : aTabBarTopLeft.X() += 1;
135 0 : m_pData->pTabBar->SetPosSizePixel( aTabBarTopLeft, aTabBarSize );
136 : }
137 : else
138 : {
139 0 : m_pData->pTabBar->SetPosSizePixel( aPanelRect.TopLeft(), aTabBarSize );
140 0 : aPanelRect.Left() += aTabBarSize.Width();
141 : }
142 0 : if ( aPanelRect.Left() >= aPanelRect.Right() )
143 0 : aPanelRect = Rectangle();
144 :
145 0 : return aPanelRect;
146 : }
147 :
148 0 : Size aTabBarSize(i_rDeckPlayground.GetWidth(), aPreferredSize.Height());
149 :
150 0 : Rectangle aPanelRect( i_rDeckPlayground );
151 0 : if ( m_pData->eAlignment == TABS_TOP )
152 : {
153 0 : m_pData->pTabBar->SetPosSizePixel( aPanelRect.TopLeft(), aTabBarSize );
154 0 : aPanelRect.Top() += aTabBarSize.Height();
155 : }
156 : else
157 : {
158 0 : aPanelRect.Bottom() -= aTabBarSize.Height();
159 0 : Point aTabBarTopLeft( aPanelRect.BottomLeft() );
160 0 : aTabBarTopLeft.Y() -= 1;
161 0 : m_pData->pTabBar->SetPosSizePixel( aTabBarTopLeft, aTabBarSize );
162 : }
163 0 : if ( aPanelRect.Top() >= aPanelRect.Bottom() )
164 0 : aPanelRect = Rectangle();
165 :
166 0 : return aPanelRect;
167 : }
168 :
169 :
170 0 : void TabDeckLayouter::Destroy()
171 : {
172 0 : m_pData->pTabBar.reset();
173 0 : }
174 :
175 :
176 0 : void TabDeckLayouter::SetFocusToPanelSelector()
177 : {
178 0 : if ( lcl_checkDisposed( *m_pData ) )
179 0 : return;
180 0 : m_pData->pTabBar->GrabFocus();
181 : }
182 :
183 :
184 0 : size_t TabDeckLayouter::GetAccessibleChildCount() const
185 : {
186 0 : if ( lcl_checkDisposed( *m_pData ) )
187 0 : return 0;
188 :
189 0 : return 1;
190 : }
191 :
192 :
193 0 : Reference< XAccessible > TabDeckLayouter::GetAccessibleChild( const size_t i_nChildIndex, const Reference< XAccessible >& i_rParentAccessible )
194 : {
195 : (void)i_nChildIndex;
196 : (void)i_rParentAccessible;
197 0 : if ( lcl_checkDisposed( *m_pData ) )
198 0 : return NULL;
199 :
200 0 : return m_pData->pTabBar->GetAccessible( true );
201 : }
202 :
203 :
204 : } // namespace svt
205 :
206 :
207 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|