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 : #include "TabBar.hxx"
21 : #include "TabItem.hxx"
22 : #include <sfx2/sidebar/ControlFactory.hxx>
23 : #include "DeckDescriptor.hxx"
24 : #include "Paint.hxx"
25 : #include <sfx2/sidebar/Theme.hxx>
26 : #include <sfx2/sidebar/Tools.hxx>
27 : #include "FocusManager.hxx"
28 :
29 : #include <vcl/gradient.hxx>
30 : #include <vcl/image.hxx>
31 : #include <vcl/wrkwin.hxx>
32 : #include <comphelper/processfactory.hxx>
33 : #include <tools/svborder.hxx>
34 :
35 : #include <com/sun/star/graphic/XGraphicProvider.hpp>
36 :
37 :
38 : using namespace ::com::sun::star;
39 : using namespace ::com::sun::star::uno;
40 :
41 :
42 :
43 :
44 : namespace sfx2 { namespace sidebar {
45 :
46 0 : TabBar::TabBar (
47 : Window* pParentWindow,
48 : const Reference<frame::XFrame>& rxFrame,
49 : const ::boost::function<void(const ::rtl::OUString&)>& rDeckActivationFunctor,
50 : const PopupMenuProvider& rPopupMenuProvider)
51 : : Window(pParentWindow, WB_DIALOGCONTROL),
52 : mxFrame(rxFrame),
53 : mpMenuButton(ControlFactory::CreateMenuButton(this)),
54 : maItems(),
55 : maDeckActivationFunctor(rDeckActivationFunctor),
56 0 : maPopupMenuProvider(rPopupMenuProvider)
57 : {
58 0 : SetBackground(Theme::GetPaint(Theme::Paint_TabBarBackground).GetWallpaper());
59 :
60 0 : mpMenuButton->SetModeImage(Theme::GetImage(Theme::Image_TabBarMenu));
61 0 : mpMenuButton->SetClickHdl(LINK(this, TabBar, OnToolboxClicked));
62 0 : Layout();
63 :
64 : #ifdef DEBUG
65 : SetText(OUString("TabBar"));
66 : #endif
67 0 : }
68 :
69 :
70 :
71 :
72 0 : TabBar::~TabBar (void)
73 : {
74 0 : }
75 :
76 :
77 :
78 :
79 0 : void TabBar::Paint (const Rectangle& rUpdateArea)
80 : {
81 0 : Window::Paint(rUpdateArea);
82 :
83 0 : const sal_Int32 nHorizontalPadding (Theme::GetInteger(Theme::Int_TabMenuSeparatorPadding));
84 0 : SetLineColor(Theme::GetColor(Theme::Color_TabMenuSeparator));
85 : DrawLine(
86 : Point(nHorizontalPadding, mnMenuSeparatorY),
87 0 : Point(GetSizePixel().Width()-nHorizontalPadding, mnMenuSeparatorY));
88 0 : }
89 :
90 :
91 :
92 :
93 0 : sal_Int32 TabBar::GetDefaultWidth (void)
94 : {
95 0 : return Theme::GetInteger(Theme::Int_TabItemWidth)
96 0 : + Theme::GetInteger(Theme::Int_TabBarLeftPadding)
97 0 : + Theme::GetInteger(Theme::Int_TabBarRightPadding);
98 : }
99 :
100 :
101 :
102 :
103 0 : void TabBar::SetDecks (
104 : const ResourceManager::DeckContextDescriptorContainer& rDecks)
105 : {
106 : // Remove the current buttons.
107 : {
108 0 : for(ItemContainer::iterator
109 0 : iItem(maItems.begin()), iEnd(maItems.end());
110 : iItem!=iEnd;
111 : ++iItem)
112 : {
113 0 : iItem->mpButton.reset();
114 : }
115 0 : maItems.clear();
116 : }
117 :
118 0 : maItems.resize(rDecks.size());
119 0 : sal_Int32 nIndex (0);
120 0 : for (ResourceManager::DeckContextDescriptorContainer::const_iterator
121 0 : iDeck(rDecks.begin()),
122 0 : iEnd(rDecks.end());
123 : iDeck!=iEnd;
124 : ++iDeck)
125 : {
126 0 : const DeckDescriptor* pDescriptor = ResourceManager::Instance().GetDeckDescriptor(iDeck->msId);
127 0 : if (pDescriptor == NULL)
128 : {
129 : OSL_ASSERT(pDescriptor!=NULL);
130 0 : continue;
131 : }
132 :
133 0 : Item& rItem (maItems[nIndex++]);
134 0 : rItem.msDeckId = pDescriptor->msId;
135 0 : rItem.mpButton.reset(CreateTabItem(*pDescriptor));
136 0 : rItem.mpButton->SetClickHdl(LINK(&rItem, TabBar::Item, HandleClick));
137 0 : rItem.maDeckActivationFunctor = maDeckActivationFunctor;
138 0 : rItem.mbIsHiddenByDefault = false;
139 0 : rItem.mbIsHidden = ! pDescriptor->mbIsEnabled;
140 :
141 0 : rItem.mpButton->Enable(iDeck->mbIsEnabled);
142 : }
143 :
144 0 : UpdateButtonIcons();
145 0 : Layout();
146 0 : }
147 :
148 :
149 :
150 :
151 0 : void TabBar::UpdateButtonIcons (void)
152 : {
153 0 : Image aImage = Theme::GetImage(Theme::Image_TabBarMenu);
154 0 : if ( mpMenuButton->GetDPIScaleFactor() > 1 )
155 : {
156 0 : BitmapEx b = aImage.GetBitmapEx();
157 0 : b.Scale(mpMenuButton->GetDPIScaleFactor(), mpMenuButton->GetDPIScaleFactor(), BMP_SCALE_FAST);
158 0 : aImage = Image(b);
159 : }
160 0 : mpMenuButton->SetModeImage(aImage);
161 :
162 0 : for(ItemContainer::const_iterator
163 0 : iItem(maItems.begin()), iEnd(maItems.end());
164 : iItem!=iEnd;
165 : ++iItem)
166 : {
167 0 : const DeckDescriptor* pDeckDescriptor = ResourceManager::Instance().GetDeckDescriptor(iItem->msDeckId);
168 0 : if (pDeckDescriptor != NULL)
169 : {
170 0 : aImage = GetItemImage(*pDeckDescriptor);
171 0 : if ( mpMenuButton->GetDPIScaleFactor() > 1 )
172 : {
173 0 : BitmapEx b = aImage.GetBitmapEx();
174 0 : b.Scale(mpMenuButton->GetDPIScaleFactor(), mpMenuButton->GetDPIScaleFactor(), BMP_SCALE_FAST);
175 0 : aImage = Image(b);
176 : }
177 :
178 0 : iItem->mpButton->SetModeImage(aImage);
179 : }
180 : }
181 :
182 0 : Invalidate();
183 0 : }
184 :
185 :
186 :
187 :
188 0 : void TabBar::Layout (void)
189 : {
190 : const SvBorder aPadding (
191 : Theme::GetInteger(Theme::Int_TabBarLeftPadding),
192 : Theme::GetInteger(Theme::Int_TabBarTopPadding),
193 : Theme::GetInteger(Theme::Int_TabBarRightPadding),
194 0 : Theme::GetInteger(Theme::Int_TabBarBottomPadding));
195 0 : sal_Int32 nX (aPadding.Top());
196 0 : sal_Int32 nY (aPadding.Left());
197 : const Size aTabItemSize (
198 0 : Theme::GetInteger(Theme::Int_TabItemWidth) * GetDPIScaleFactor(),
199 0 : Theme::GetInteger(Theme::Int_TabItemHeight) * GetDPIScaleFactor());
200 :
201 : // Place the menu button and the separator.
202 0 : if (mpMenuButton != 0)
203 : {
204 0 : mpMenuButton->SetPosSizePixel(
205 : Point(nX,nY),
206 0 : aTabItemSize);
207 0 : mpMenuButton->Show();
208 0 : nY += mpMenuButton->GetSizePixel().Height() + 1 + Theme::GetInteger(Theme::Int_TabMenuPadding);
209 0 : mnMenuSeparatorY = nY - Theme::GetInteger(Theme::Int_TabMenuPadding)/2 - 1;
210 : }
211 :
212 : // Place the deck selection buttons.
213 0 : for(ItemContainer::const_iterator
214 0 : iItem(maItems.begin()), iEnd(maItems.end());
215 : iItem!=iEnd;
216 : ++iItem)
217 : {
218 0 : Button& rButton (*iItem->mpButton);
219 0 : rButton.Show( ! iItem->mbIsHidden);
220 :
221 0 : if (iItem->mbIsHidden)
222 0 : continue;
223 :
224 : // Place and size the icon.
225 : rButton.SetPosSizePixel(
226 : Point(nX,nY),
227 0 : aTabItemSize);
228 0 : rButton.Show();
229 :
230 0 : nY += rButton.GetSizePixel().Height() + 1 + aPadding.Bottom();
231 : }
232 0 : Invalidate();
233 0 : }
234 :
235 :
236 :
237 :
238 0 : void TabBar::HighlightDeck (const ::rtl::OUString& rsDeckId)
239 : {
240 0 : for (ItemContainer::iterator iItem(maItems.begin()),iEnd(maItems.end());
241 : iItem!=iEnd;
242 : ++iItem)
243 : {
244 0 : if (iItem->msDeckId.equals(rsDeckId))
245 0 : iItem->mpButton->Check(true);
246 : else
247 0 : iItem->mpButton->Check(false);
248 : }
249 0 : }
250 :
251 :
252 :
253 :
254 0 : void TabBar::DataChanged (const DataChangedEvent& rDataChangedEvent)
255 : {
256 0 : SetBackground(Theme::GetPaint(Theme::Paint_TabBarBackground).GetWallpaper());
257 0 : UpdateButtonIcons();
258 :
259 0 : Window::DataChanged(rDataChangedEvent);
260 0 : }
261 :
262 :
263 :
264 :
265 0 : bool TabBar::Notify (NotifyEvent&)
266 : {
267 0 : return false;
268 : }
269 :
270 :
271 :
272 :
273 0 : RadioButton* TabBar::CreateTabItem (const DeckDescriptor& rDeckDescriptor)
274 : {
275 0 : RadioButton* pItem = ControlFactory::CreateTabItem(this);
276 0 : pItem->SetHelpText(rDeckDescriptor.msHelpText);
277 0 : pItem->SetQuickHelpText(rDeckDescriptor.msHelpText);
278 :
279 0 : return pItem;
280 : }
281 :
282 :
283 :
284 0 : Image TabBar::GetItemImage (const DeckDescriptor& rDeckDescriptor) const
285 : {
286 : return Tools::GetImage(
287 : rDeckDescriptor.msIconURL,
288 : rDeckDescriptor.msHighContrastIconURL,
289 0 : mxFrame);
290 : }
291 :
292 :
293 :
294 :
295 :
296 0 : IMPL_LINK(TabBar::Item, HandleClick, Button*, EMPTYARG)
297 : {
298 : try
299 : {
300 0 : maDeckActivationFunctor(msDeckId);
301 : }
302 0 : catch( const ::com::sun::star::uno::Exception&) {} // workaround for #i123198#
303 :
304 0 : return 1;
305 : }
306 :
307 :
308 :
309 :
310 0 : const ::rtl::OUString TabBar::GetDeckIdForIndex (const sal_Int32 nIndex) const
311 : {
312 0 : if (nIndex<0 || static_cast<size_t>(nIndex)>=maItems.size())
313 0 : throw RuntimeException();
314 : else
315 0 : return maItems[nIndex].msDeckId;
316 : }
317 :
318 :
319 :
320 :
321 0 : void TabBar::ToggleHideFlag (const sal_Int32 nIndex)
322 : {
323 0 : if (nIndex<0 || static_cast<size_t>(nIndex)>=maItems.size())
324 0 : throw RuntimeException();
325 : else
326 : {
327 0 : maItems[nIndex].mbIsHidden = ! maItems[nIndex].mbIsHidden;
328 0 : ResourceManager::Instance().SetIsDeckEnabled(
329 0 : maItems[nIndex].msDeckId,
330 0 : maItems[nIndex].mbIsHidden);
331 0 : Layout();
332 : }
333 0 : }
334 :
335 :
336 :
337 :
338 0 : void TabBar::RestoreHideFlags (void)
339 : {
340 0 : bool bNeedsLayout (false);
341 0 : for(ItemContainer::iterator iItem(maItems.begin()),iEnd(maItems.end());
342 : iItem!=iEnd;
343 : ++iItem)
344 : {
345 0 : if (iItem->mbIsHidden != iItem->mbIsHiddenByDefault)
346 : {
347 0 : iItem->mbIsHidden = iItem->mbIsHiddenByDefault;
348 0 : bNeedsLayout = true;
349 : }
350 : }
351 0 : if (bNeedsLayout)
352 0 : Layout();
353 0 : }
354 :
355 :
356 :
357 :
358 0 : void TabBar::UpdateFocusManager (FocusManager& rFocusManager)
359 : {
360 0 : ::std::vector<Button*> aButtons;
361 0 : aButtons.reserve(maItems.size()+1);
362 :
363 0 : aButtons.push_back(mpMenuButton.get());
364 0 : for(ItemContainer::const_iterator
365 0 : iItem(maItems.begin()), iEnd(maItems.end());
366 : iItem!=iEnd;
367 : ++iItem)
368 : {
369 0 : aButtons.push_back(iItem->mpButton.get());
370 : }
371 0 : rFocusManager.SetButtons(aButtons);
372 0 : }
373 :
374 :
375 :
376 :
377 0 : IMPL_LINK(TabBar, OnToolboxClicked, void*, EMPTYARG)
378 : {
379 0 : if ( ! mpMenuButton)
380 0 : return 0;
381 :
382 0 : ::std::vector<DeckMenuData> aMenuData;
383 :
384 0 : for(ItemContainer::const_iterator iItem(maItems.begin()),iEnd(maItems.end());
385 : iItem!=iEnd;
386 : ++iItem)
387 : {
388 0 : const DeckDescriptor* pDeckDescriptor = ResourceManager::Instance().GetDeckDescriptor(iItem->msDeckId);
389 0 : if (pDeckDescriptor != NULL)
390 : {
391 0 : DeckMenuData aData;
392 0 : aData.msDisplayName = pDeckDescriptor->msTitle;
393 0 : aData.msDeckId = pDeckDescriptor->msId;
394 0 : aData.mbIsCurrentDeck = iItem->mpButton->IsChecked();
395 0 : aData.mbIsActive = !iItem->mbIsHidden;
396 0 : aData.mbIsEnabled = iItem->mpButton->IsEnabled();
397 :
398 0 : aMenuData.push_back(aData);
399 : }
400 : }
401 :
402 : maPopupMenuProvider(
403 : Rectangle(
404 0 : mpMenuButton->GetPosPixel(),
405 0 : mpMenuButton->GetSizePixel()),
406 0 : aMenuData);
407 0 : mpMenuButton->Check(false);
408 :
409 0 : return 0;
410 : }
411 :
412 :
413 :
414 : } } // end of namespace sfx2::sidebar
415 :
416 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|