2013-04-10 08:20:16 +00:00
|
|
|
/*
|
|
|
|
* This file is part of the LibreOffice project.
|
|
|
|
*
|
|
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
*
|
|
|
|
* This file incorporates work covered by the following license notice:
|
|
|
|
*
|
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed
|
|
|
|
* with this work for additional information regarding copyright
|
|
|
|
* ownership. The ASF licenses this file to you under the Apache
|
|
|
|
* License, Version 2.0 (the "License"); you may not use this file
|
|
|
|
* except in compliance with the License. You may obtain a copy of
|
|
|
|
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
|
|
|
|
*/
|
|
|
|
#include "SidebarController.hxx"
|
|
|
|
#include "Deck.hxx"
|
|
|
|
#include "DeckTitleBar.hxx"
|
|
|
|
#include "Panel.hxx"
|
|
|
|
#include "SidebarPanel.hxx"
|
|
|
|
#include "SidebarResource.hxx"
|
|
|
|
#include "TabBar.hxx"
|
|
|
|
#include "sfx2/sidebar/Theme.hxx"
|
2013-04-29 07:44:43 +00:00
|
|
|
#include "sfx2/sidebar/SidebarChildWindow.hxx"
|
2013-05-03 13:01:13 +00:00
|
|
|
#include "sfx2/sidebar/Tools.hxx"
|
2013-04-10 08:20:16 +00:00
|
|
|
#include "SidebarDockingWindow.hxx"
|
|
|
|
#include "Context.hxx"
|
|
|
|
|
|
|
|
#include "sfxresid.hxx"
|
|
|
|
#include "sfx2/sfxsids.hrc"
|
|
|
|
#include "sfx2/titledockwin.hxx"
|
|
|
|
#include "sfxlocal.hrc"
|
|
|
|
#include <vcl/floatwin.hxx>
|
2013-04-29 07:44:43 +00:00
|
|
|
#include <vcl/fixed.hxx>
|
2013-04-10 08:20:16 +00:00
|
|
|
#include "splitwin.hxx"
|
|
|
|
#include <svl/smplhint.hxx>
|
|
|
|
#include <tools/link.hxx>
|
2013-04-11 12:04:57 +00:00
|
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
2013-04-10 08:20:16 +00:00
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <comphelper/componentcontext.hxx>
|
|
|
|
#include <comphelper/namedvaluecollection.hxx>
|
|
|
|
|
|
|
|
#include <com/sun/star/frame/XDispatchProvider.hpp>
|
|
|
|
#include <com/sun/star/lang/XInitialization.hpp>
|
|
|
|
#include <com/sun/star/ui/ContextChangeEventMultiplexer.hpp>
|
|
|
|
#include <com/sun/star/ui/ContextChangeEventObject.hpp>
|
|
|
|
#include <com/sun/star/ui/XUIElementFactory.hpp>
|
|
|
|
#include <com/sun/star/util/XURLTransformer.hpp>
|
|
|
|
#include <com/sun/star/util/URL.hpp>
|
2013-04-11 12:04:57 +00:00
|
|
|
#include <com/sun/star/rendering/XSpriteCanvas.hpp>
|
2013-04-10 08:20:16 +00:00
|
|
|
|
|
|
|
#include <boost/bind.hpp>
|
|
|
|
#include <boost/function.hpp>
|
|
|
|
#include <boost/scoped_array.hpp>
|
|
|
|
|
|
|
|
|
|
|
|
using namespace css;
|
|
|
|
using namespace cssu;
|
|
|
|
using ::rtl::OUString;
|
|
|
|
|
|
|
|
|
2013-04-19 14:27:16 +00:00
|
|
|
#undef VERBOSE
|
2013-04-10 08:20:16 +00:00
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
namespace
|
|
|
|
{
|
|
|
|
const static OUString gsReadOnlyCommandName (A2S(".uno:EditDoc"));
|
|
|
|
const static sal_Int32 gnMaximumSidebarWidth (400);
|
|
|
|
const static sal_Int32 gnWidthCloseThreshold (70);
|
|
|
|
const static sal_Int32 gnWidthOpenThreshold (40);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
namespace sfx2 { namespace sidebar {
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
enum MenuId
|
|
|
|
{
|
|
|
|
MID_UNLOCK_TASK_PANEL = 1,
|
|
|
|
MID_LOCK_TASK_PANEL,
|
|
|
|
MID_CUSTOMIZATION,
|
|
|
|
MID_RESTORE_DEFAULT,
|
|
|
|
MID_FIRST_PANEL,
|
|
|
|
MID_FIRST_HIDE = 1000
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
SidebarController::SidebarController (
|
|
|
|
SidebarDockingWindow* pParentWindow,
|
|
|
|
const cssu::Reference<css::frame::XFrame>& rxFrame)
|
|
|
|
: SidebarControllerInterfaceBase(m_aMutex),
|
|
|
|
mpCurrentDeck(),
|
|
|
|
mpParentWindow(pParentWindow),
|
|
|
|
mpTabBar(new TabBar(
|
|
|
|
mpParentWindow,
|
|
|
|
rxFrame,
|
2013-04-29 07:44:43 +00:00
|
|
|
::boost::bind(&SidebarController::OpenThenSwitchToDeck, this, _1),
|
2013-04-10 08:20:16 +00:00
|
|
|
::boost::bind(&SidebarController::ShowPopupMenu, this, _1,_2,_3))),
|
|
|
|
mxFrame(rxFrame),
|
|
|
|
maCurrentContext(OUString(), OUString()),
|
|
|
|
msCurrentDeckId(A2S("PropertyDeck")),
|
|
|
|
maPropertyChangeForwarder(::boost::bind(&SidebarController::BroadcastPropertyChange, this)),
|
2013-04-22 15:01:51 +00:00
|
|
|
maContextChangeUpdate(::boost::bind(&SidebarController::UpdateConfigurations, this)),
|
2013-04-29 07:44:43 +00:00
|
|
|
mbIsDeckRequestedOpen(),
|
|
|
|
mbIsDeckOpen(),
|
|
|
|
mbCanDeckBeOpened(true),
|
|
|
|
mnSavedSidebarWidth(pParentWindow->GetSizePixel().Width()),
|
|
|
|
mxReadOnlyModeDispatch(),
|
|
|
|
mbIsDocumentReadOnly(false),
|
|
|
|
mpSplitWindow(NULL),
|
|
|
|
mnWidthOnSplitterButtonDown(0),
|
|
|
|
mpCloseIndicator()
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
|
|
|
if (pParentWindow == NULL)
|
|
|
|
{
|
|
|
|
OSL_ASSERT(pParentWindow!=NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Listen for context change events.
|
|
|
|
cssu::Reference<css::ui::XContextChangeEventMultiplexer> xMultiplexer (
|
|
|
|
css::ui::ContextChangeEventMultiplexer::get(
|
|
|
|
::comphelper::getProcessComponentContext()));
|
|
|
|
if (xMultiplexer.is())
|
|
|
|
xMultiplexer->addContextChangeEventListener(
|
|
|
|
static_cast<css::ui::XContextChangeEventListener*>(this),
|
|
|
|
mxFrame->getController());
|
|
|
|
|
|
|
|
// Listen for window events.
|
|
|
|
mpParentWindow->AddEventListener(LINK(this, SidebarController, WindowEventHandler));
|
|
|
|
|
|
|
|
// Listen for theme property changes.
|
|
|
|
Theme::GetPropertySet()->addPropertyChangeListener(
|
|
|
|
A2S(""),
|
|
|
|
static_cast<css::beans::XPropertyChangeListener*>(this));
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
// Get the dispatch object as preparation to listen for changes of
|
|
|
|
// the read-only state.
|
2013-05-03 13:01:13 +00:00
|
|
|
const util::URL aURL (Tools::GetURL(gsReadOnlyCommandName));
|
|
|
|
mxReadOnlyModeDispatch = Tools::GetDispatch(mxFrame, aURL);
|
2013-04-29 07:44:43 +00:00
|
|
|
if (mxReadOnlyModeDispatch.is())
|
|
|
|
mxReadOnlyModeDispatch->addStatusListener(this, aURL);
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
SwitchToDeck(A2S("default"));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SidebarController::~SidebarController (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL SidebarController::disposing (void)
|
|
|
|
{
|
|
|
|
maFocusManager.Clear();
|
|
|
|
|
|
|
|
cssu::Reference<css::ui::XContextChangeEventMultiplexer> xMultiplexer (
|
|
|
|
css::ui::ContextChangeEventMultiplexer::get(
|
|
|
|
::comphelper::getProcessComponentContext()));
|
|
|
|
if (xMultiplexer.is())
|
|
|
|
xMultiplexer->removeAllContextChangeEventListeners(
|
|
|
|
static_cast<css::ui::XContextChangeEventListener*>(this));
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
if (mxReadOnlyModeDispatch.is())
|
2013-05-03 13:01:13 +00:00
|
|
|
mxReadOnlyModeDispatch->removeStatusListener(this, Tools::GetURL(gsReadOnlyCommandName));
|
2013-04-29 07:44:43 +00:00
|
|
|
if (mpSplitWindow != NULL)
|
|
|
|
{
|
|
|
|
mpSplitWindow->RemoveEventListener(LINK(this, SidebarController, WindowEventHandler));
|
|
|
|
mpSplitWindow = NULL;
|
|
|
|
}
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
if (mpParentWindow != NULL)
|
|
|
|
{
|
|
|
|
mpParentWindow->RemoveEventListener(LINK(this, SidebarController, WindowEventHandler));
|
|
|
|
mpParentWindow = NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mpCurrentDeck)
|
|
|
|
{
|
|
|
|
mpCurrentDeck->Dispose();
|
|
|
|
mpCurrentDeck->PrintWindowTree();
|
|
|
|
mpCurrentDeck.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
mpTabBar.reset();
|
|
|
|
|
|
|
|
Theme::GetPropertySet()->removePropertyChangeListener(
|
|
|
|
A2S(""),
|
|
|
|
static_cast<css::beans::XPropertyChangeListener*>(this));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL SidebarController::notifyContextChangeEvent (const css::ui::ContextChangeEventObject& rEvent)
|
|
|
|
throw(cssu::RuntimeException)
|
|
|
|
{
|
2013-04-22 15:01:51 +00:00
|
|
|
// Update to the requested new context asynchronously to avoid
|
|
|
|
// subtle errors caused by SFX2 which in rare cases can not
|
|
|
|
// properly handle a synchronous update.
|
|
|
|
maRequestedContext = Context(
|
|
|
|
rEvent.ApplicationName,
|
|
|
|
rEvent.ContextName);
|
|
|
|
if (maRequestedContext != maCurrentContext)
|
|
|
|
maContextChangeUpdate.RequestCall();
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL SidebarController::disposing (const css::lang::EventObject& rEventObject)
|
|
|
|
throw(cssu::RuntimeException)
|
|
|
|
{
|
|
|
|
(void)rEventObject;
|
|
|
|
|
|
|
|
dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SAL_CALL SidebarController::propertyChange (const css::beans::PropertyChangeEvent& rEvent)
|
|
|
|
throw(cssu::RuntimeException)
|
|
|
|
{
|
|
|
|
(void)rEvent;
|
|
|
|
|
|
|
|
maPropertyChangeForwarder.RequestCall();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
void SAL_CALL SidebarController::statusChanged (const css::frame::FeatureStateEvent& rEvent)
|
|
|
|
throw(cssu::RuntimeException)
|
|
|
|
{
|
|
|
|
bool bIsReadWrite (true);
|
|
|
|
if (rEvent.IsEnabled)
|
|
|
|
rEvent.State >>= bIsReadWrite;
|
|
|
|
|
|
|
|
if (mbIsDocumentReadOnly != !bIsReadWrite)
|
|
|
|
{
|
|
|
|
mbIsDocumentReadOnly = !bIsReadWrite;
|
|
|
|
|
|
|
|
// Force the current deck to update its panel list.
|
|
|
|
SwitchToDeck(msCurrentDeckId);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
void SAL_CALL SidebarController::requestLayout (void)
|
|
|
|
throw(cssu::RuntimeException)
|
|
|
|
{
|
|
|
|
if (mpCurrentDeck)
|
|
|
|
mpCurrentDeck->RequestLayout();
|
|
|
|
RestrictWidth();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::BroadcastPropertyChange (void)
|
|
|
|
{
|
|
|
|
DataChangedEvent aEvent (DATACHANGED_USER);
|
|
|
|
mpParentWindow->NotifyAllChildren(aEvent);
|
|
|
|
mpParentWindow->Invalidate(INVALIDATE_CHILDREN);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::NotifyResize (void)
|
|
|
|
{
|
|
|
|
if (mpTabBar == NULL)
|
|
|
|
{
|
|
|
|
OSL_ASSERT(mpTabBar!=NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Window* pParentWindow = mpTabBar->GetParent();
|
|
|
|
|
|
|
|
const sal_Int32 nWidth (pParentWindow->GetSizePixel().Width());
|
|
|
|
const sal_Int32 nHeight (pParentWindow->GetSizePixel().Height());
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
mbIsDeckOpen = (nWidth > TabBar::GetDefaultWidth());
|
|
|
|
|
|
|
|
if (mnSavedSidebarWidth <= 0)
|
|
|
|
mnSavedSidebarWidth = nWidth;
|
|
|
|
|
|
|
|
bool bIsDeckVisible;
|
|
|
|
if (mbCanDeckBeOpened)
|
|
|
|
{
|
|
|
|
const bool bIsOpening (nWidth > mnWidthOnSplitterButtonDown);
|
|
|
|
if (bIsOpening)
|
|
|
|
bIsDeckVisible = nWidth >= TabBar::GetDefaultWidth() + gnWidthOpenThreshold;
|
|
|
|
else
|
|
|
|
bIsDeckVisible = nWidth >= TabBar::GetDefaultWidth() + gnWidthCloseThreshold;
|
|
|
|
mbIsDeckRequestedOpen = bIsDeckVisible;
|
|
|
|
UpdateCloseIndicator(!bIsDeckVisible);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bIsDeckVisible = false;
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
// Place the deck.
|
|
|
|
if (mpCurrentDeck)
|
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
if (bIsDeckVisible)
|
|
|
|
{
|
|
|
|
mpCurrentDeck->setPosSizePixel(0,0, nWidth-TabBar::GetDefaultWidth(), nHeight);
|
|
|
|
mpCurrentDeck->Show();
|
|
|
|
mpCurrentDeck->RequestLayout();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
mpCurrentDeck->Hide();
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Place the tab bar.
|
|
|
|
mpTabBar->setPosSizePixel(nWidth-TabBar::GetDefaultWidth(),0,TabBar::GetDefaultWidth(),nHeight);
|
|
|
|
mpTabBar->Show();
|
|
|
|
|
|
|
|
// Determine if the closer of the deck can be shown.
|
|
|
|
if (mpCurrentDeck)
|
|
|
|
{
|
|
|
|
DeckTitleBar* pTitleBar = mpCurrentDeck->GetTitleBar();
|
|
|
|
if (pTitleBar != NULL && pTitleBar->IsVisible())
|
|
|
|
pTitleBar->SetCloserVisible(CanModifyChildWindowWidth());
|
|
|
|
}
|
|
|
|
|
|
|
|
RestrictWidth();
|
2013-04-29 07:44:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::ProcessNewWidth (const sal_Int32 nNewWidth)
|
|
|
|
{
|
|
|
|
if ( ! mbIsDeckRequestedOpen)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (mbIsDeckRequestedOpen.get())
|
|
|
|
{
|
|
|
|
// Deck became large enough to be shown. Show it.
|
|
|
|
mnSavedSidebarWidth = nNewWidth;
|
|
|
|
RequestOpenDeck();
|
|
|
|
}
|
|
|
|
else
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
// Deck became too small. Close it completely.
|
|
|
|
// If window is wider than the tab bar then mark the deck as being visible, even when it its not.
|
|
|
|
// This is to trigger an adjustment of the width to the width of the tab bar.
|
|
|
|
mbIsDeckOpen = true;
|
|
|
|
RequestCloseDeck();
|
|
|
|
|
|
|
|
if (mnWidthOnSplitterButtonDown > TabBar::GetDefaultWidth())
|
|
|
|
mnSavedSidebarWidth = mnWidthOnSplitterButtonDown;
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-22 15:01:51 +00:00
|
|
|
void SidebarController::UpdateConfigurations (void)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
2013-04-22 15:01:51 +00:00
|
|
|
if (maCurrentContext != maRequestedContext)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
2013-04-22 15:01:51 +00:00
|
|
|
maCurrentContext = maRequestedContext;
|
2013-04-10 08:20:16 +00:00
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
// Find the set of decks that could be displayed for the new context.
|
|
|
|
ResourceManager::DeckContextDescriptorContainer aDecks;
|
2013-04-10 08:20:16 +00:00
|
|
|
ResourceManager::Instance().GetMatchingDecks (
|
2013-04-29 07:44:43 +00:00
|
|
|
aDecks,
|
2013-04-22 15:01:51 +00:00
|
|
|
maCurrentContext,
|
2013-04-29 07:44:43 +00:00
|
|
|
mbIsDocumentReadOnly,
|
2013-04-10 08:20:16 +00:00
|
|
|
mxFrame);
|
2013-04-29 07:44:43 +00:00
|
|
|
mpTabBar->SetDecks(aDecks);
|
2013-04-10 08:20:16 +00:00
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
// Notify the tab bar about the updated set of decks.
|
|
|
|
mpTabBar->SetDecks(aDecks);
|
|
|
|
|
|
|
|
// Find the new deck. By default that is the same as the old
|
|
|
|
// one. If that is not set or not enabled, then choose the
|
|
|
|
// first enabled deck.
|
|
|
|
OUString sNewDeckId;
|
|
|
|
for (ResourceManager::DeckContextDescriptorContainer::const_iterator
|
|
|
|
iDeck(aDecks.begin()),
|
|
|
|
iEnd(aDecks.end());
|
2013-04-10 08:20:16 +00:00
|
|
|
iDeck!=iEnd;
|
|
|
|
++iDeck)
|
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
if (iDeck->mbIsEnabled)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
if (iDeck->msId.equals(msCurrentDeckId))
|
|
|
|
{
|
|
|
|
sNewDeckId = msCurrentDeckId;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
else if (sNewDeckId.getLength() == 0)
|
|
|
|
sNewDeckId = iDeck->msId;
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
if (sNewDeckId.getLength() == 0)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
// We did not find a valid deck.
|
|
|
|
RequestCloseDeck();
|
|
|
|
return;
|
2013-04-19 14:27:16 +00:00
|
|
|
|
|
|
|
// Tell the tab bar to highlight the button associated
|
|
|
|
// with the deck.
|
2013-04-29 07:44:43 +00:00
|
|
|
mpTabBar->HighlightDeck(sNewDeckId);
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
msCurrentDeckId = sNewDeckId;
|
|
|
|
SwitchToDeck(
|
|
|
|
*ResourceManager::Instance().GetDeckDescriptor(sNewDeckId),
|
|
|
|
maCurrentContext);
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
// Show the context name in the deck title bar.
|
|
|
|
if (mpCurrentDeck)
|
|
|
|
{
|
|
|
|
DeckTitleBar* pTitleBar = mpCurrentDeck->GetTitleBar();
|
|
|
|
if (pTitleBar != NULL)
|
2013-04-22 15:01:51 +00:00
|
|
|
pTitleBar->SetTitle(msCurrentDeckTitle+A2S(" (")+maCurrentContext.msContext+A2S(")"));
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
void SidebarController::OpenThenSwitchToDeck (
|
|
|
|
const ::rtl::OUString& rsDeckId)
|
|
|
|
{
|
|
|
|
RequestOpenDeck();
|
|
|
|
SwitchToDeck(rsDeckId);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
void SidebarController::SwitchToDeck (
|
|
|
|
const ::rtl::OUString& rsDeckId)
|
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
if ( ! msCurrentDeckId.equals(rsDeckId) || ! mbIsDeckOpen)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
|
|
|
const DeckDescriptor* pDeckDescriptor = ResourceManager::Instance().GetDeckDescriptor(rsDeckId);
|
|
|
|
if (pDeckDescriptor != NULL)
|
|
|
|
SwitchToDeck(*pDeckDescriptor, maCurrentContext);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::SwitchToDeck (
|
|
|
|
const DeckDescriptor& rDeckDescriptor,
|
|
|
|
const Context& rContext)
|
|
|
|
{
|
|
|
|
maFocusManager.Clear();
|
|
|
|
|
|
|
|
if ( ! msCurrentDeckId.equals(rDeckDescriptor.msId))
|
|
|
|
{
|
|
|
|
// When the deck changes then destroy the deck and all panels
|
|
|
|
// and create everything new.
|
|
|
|
if (mpCurrentDeck)
|
|
|
|
{
|
|
|
|
mpCurrentDeck->Dispose();
|
|
|
|
mpCurrentDeck.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
msCurrentDeckId = rDeckDescriptor.msId;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Determine the panels to display in the deck.
|
|
|
|
ResourceManager::PanelContextDescriptorContainer aPanelContextDescriptors;
|
|
|
|
ResourceManager::Instance().GetMatchingPanels(
|
|
|
|
aPanelContextDescriptors,
|
|
|
|
rContext,
|
|
|
|
rDeckDescriptor.msId,
|
|
|
|
mxFrame);
|
|
|
|
|
|
|
|
if (aPanelContextDescriptors.empty())
|
|
|
|
{
|
|
|
|
// There are no panels to be displayed in the current context.
|
|
|
|
if (EnumContext::GetContextEnum(rContext.msContext) != EnumContext::Context_Empty)
|
|
|
|
{
|
|
|
|
// Switch to the "empty" context and try again.
|
|
|
|
SwitchToDeck(
|
|
|
|
rDeckDescriptor,
|
|
|
|
Context(
|
|
|
|
rContext.msApplication,
|
|
|
|
EnumContext::GetContextName(EnumContext::Context_Empty)));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// This is already the "empty" context. Looks like we have
|
|
|
|
// to live with an empty deck.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mpCurrentDeck
|
|
|
|
&& ArePanelSetsEqual(mpCurrentDeck->GetPanels(), aPanelContextDescriptors))
|
|
|
|
{
|
|
|
|
// Requested set of panels is identical to the current set of
|
|
|
|
// panels => Nothing to do.
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
// When the document is read-only, check if there are any panels that can still be displayed.
|
|
|
|
if (mbIsDocumentReadOnly)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
// Provide a configuration and Deck object.
|
|
|
|
if ( ! mpCurrentDeck)
|
|
|
|
{
|
|
|
|
mpCurrentDeck.reset(
|
|
|
|
new Deck(
|
|
|
|
rDeckDescriptor,
|
|
|
|
mpParentWindow,
|
2013-04-29 07:44:43 +00:00
|
|
|
::boost::bind(&SidebarController::RequestCloseDeck, this)));
|
2013-04-10 08:20:16 +00:00
|
|
|
msCurrentDeckTitle = rDeckDescriptor.msTitle;
|
|
|
|
}
|
|
|
|
if ( ! mpCurrentDeck)
|
|
|
|
return;
|
|
|
|
|
|
|
|
// Update the panel list.
|
|
|
|
const sal_Int32 nNewPanelCount (aPanelContextDescriptors.size());
|
|
|
|
SharedPanelContainer aNewPanels;
|
|
|
|
const SharedPanelContainer& rCurrentPanels (mpCurrentDeck->GetPanels());
|
|
|
|
aNewPanels.resize(nNewPanelCount);
|
|
|
|
sal_Int32 nWriteIndex (0);
|
|
|
|
bool bHasPanelSetChanged (false);
|
|
|
|
for (sal_Int32 nReadIndex=0; nReadIndex<nNewPanelCount; ++nReadIndex)
|
|
|
|
{
|
|
|
|
const ResourceManager::PanelContextDescriptor& rPanelContexDescriptor (
|
|
|
|
aPanelContextDescriptors[nReadIndex]);
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
// Determine if the panel can be displayed.
|
|
|
|
const bool bIsPanelVisible (!mbIsDocumentReadOnly || rPanelContexDescriptor.mbShowForReadOnlyDocuments);
|
|
|
|
if ( ! bIsPanelVisible)
|
|
|
|
continue;
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
// Find the corresponding panel among the currently active
|
|
|
|
// panels.
|
|
|
|
SharedPanelContainer::const_iterator iPanel (::std::find_if(
|
|
|
|
rCurrentPanels.begin(),
|
|
|
|
rCurrentPanels.end(),
|
|
|
|
::boost::bind(&Panel::HasIdPredicate, _1, ::boost::cref(rPanelContexDescriptor.msId))));
|
|
|
|
if (iPanel != rCurrentPanels.end())
|
|
|
|
{
|
|
|
|
// Panel already exists in current deck. Reuse it.
|
|
|
|
aNewPanels[nWriteIndex] = *iPanel;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Panel does not yet exist. Create it.
|
|
|
|
aNewPanels[nWriteIndex] = CreatePanel(
|
|
|
|
rPanelContexDescriptor.msId,
|
2013-04-25 10:51:17 +00:00
|
|
|
mpCurrentDeck->GetPanelParentWindow());
|
2013-04-10 08:20:16 +00:00
|
|
|
bHasPanelSetChanged = true;
|
|
|
|
}
|
|
|
|
if (aNewPanels[nWriteIndex] != NULL)
|
|
|
|
{
|
|
|
|
// Depending on the context we have to collapse the panel.
|
|
|
|
aNewPanels[nWriteIndex]->SetExpanded(rPanelContexDescriptor.mbIsInitiallyVisible);
|
2013-04-25 10:51:17 +00:00
|
|
|
// Depending on the context we have to apply the show menu functor.
|
|
|
|
aNewPanels[nWriteIndex]->SetShowMenuFunctor(
|
|
|
|
rPanelContexDescriptor.msMenuCommand.getLength()>0
|
|
|
|
? ::boost::bind(&SidebarController::ShowDetailMenu,this,rPanelContexDescriptor.msMenuCommand)
|
|
|
|
: ::boost::function<void(void)>() );
|
2013-04-10 08:20:16 +00:00
|
|
|
|
|
|
|
++nWriteIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
aNewPanels.resize(nWriteIndex);
|
|
|
|
|
|
|
|
// Activate the deck and the new set of panels.
|
|
|
|
mpCurrentDeck->setPosSizePixel(
|
|
|
|
0,
|
|
|
|
0,
|
|
|
|
mpParentWindow->GetSizePixel().Width()-TabBar::GetDefaultWidth(),
|
|
|
|
mpParentWindow->GetSizePixel().Height());
|
|
|
|
mpCurrentDeck->SetPanels(aNewPanels);
|
|
|
|
mpCurrentDeck->Show();
|
|
|
|
|
|
|
|
mpParentWindow->SetText(rDeckDescriptor.msTitle);
|
|
|
|
|
|
|
|
if (bHasPanelSetChanged)
|
|
|
|
NotifyResize();
|
|
|
|
|
|
|
|
// Tell the focus manager about the new panels and tab bar
|
|
|
|
// buttons.
|
|
|
|
maFocusManager.SetPanels(aNewPanels);
|
|
|
|
mpTabBar->UpdateFocusManager(maFocusManager);
|
2013-04-23 14:08:04 +00:00
|
|
|
UpdateTitleBarIcons();
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool SidebarController::ArePanelSetsEqual (
|
|
|
|
const SharedPanelContainer& rCurrentPanels,
|
|
|
|
const ResourceManager::PanelContextDescriptorContainer& rRequestedPanels)
|
|
|
|
{
|
|
|
|
if (rCurrentPanels.size() != rRequestedPanels.size())
|
|
|
|
return false;
|
|
|
|
for (sal_Int32 nIndex=0,nCount=rCurrentPanels.size(); nIndex<nCount; ++nIndex)
|
|
|
|
{
|
|
|
|
if (rCurrentPanels[nIndex] == NULL)
|
|
|
|
return false;
|
|
|
|
if ( ! rCurrentPanels[nIndex]->GetId().equals(rRequestedPanels[nIndex].msId))
|
|
|
|
return false;
|
2013-04-29 07:44:43 +00:00
|
|
|
|
|
|
|
// Check if the panels still can be displayed. This may not be the case when
|
|
|
|
// the document just become rea-only.
|
|
|
|
if (mbIsDocumentReadOnly && ! rRequestedPanels[nIndex].mbShowForReadOnlyDocuments)
|
|
|
|
return false;
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SharedPanel SidebarController::CreatePanel (
|
|
|
|
const OUString& rsPanelId,
|
2013-04-25 10:51:17 +00:00
|
|
|
::Window* pParentWindow )
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
|
|
|
const PanelDescriptor* pPanelDescriptor = ResourceManager::Instance().GetPanelDescriptor(rsPanelId);
|
|
|
|
if (pPanelDescriptor == NULL)
|
|
|
|
return SharedPanel();
|
|
|
|
|
|
|
|
// Create the panel which is the parent window of the UIElement.
|
|
|
|
SharedPanel pPanel (new Panel(
|
|
|
|
*pPanelDescriptor,
|
|
|
|
pParentWindow,
|
2013-04-25 10:51:17 +00:00
|
|
|
::boost::bind(&Deck::RequestLayout, mpCurrentDeck.get()) ) );
|
2013-04-10 08:20:16 +00:00
|
|
|
|
|
|
|
// Create the XUIElement.
|
|
|
|
Reference<ui::XUIElement> xUIElement (CreateUIElement(
|
|
|
|
pPanel->GetComponentInterface(),
|
2013-04-11 12:04:57 +00:00
|
|
|
pPanelDescriptor->msImplementationURL,
|
|
|
|
pPanelDescriptor->mbWantsCanvas));
|
2013-04-10 08:20:16 +00:00
|
|
|
if (xUIElement.is())
|
|
|
|
{
|
|
|
|
// Initialize the panel and add it to the active deck.
|
|
|
|
pPanel->SetUIElement(xUIElement);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
pPanel.reset();
|
|
|
|
}
|
|
|
|
|
|
|
|
return pPanel;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Reference<ui::XUIElement> SidebarController::CreateUIElement (
|
|
|
|
const Reference<awt::XWindowPeer>& rxWindow,
|
2013-04-11 12:04:57 +00:00
|
|
|
const ::rtl::OUString& rsImplementationURL,
|
|
|
|
const bool bWantsCanvas)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
const ::comphelper::ComponentContext aComponentContext (::comphelper::getProcessServiceFactory());
|
|
|
|
const Reference<ui::XUIElementFactory> xUIElementFactory (
|
|
|
|
aComponentContext.createComponent("com.sun.star.ui.UIElementFactoryManager"),
|
|
|
|
UNO_QUERY_THROW);
|
|
|
|
|
|
|
|
// Create the XUIElement.
|
|
|
|
::comphelper::NamedValueCollection aCreationArguments;
|
|
|
|
aCreationArguments.put("Frame", makeAny(mxFrame));
|
|
|
|
aCreationArguments.put("ParentWindow", makeAny(rxWindow));
|
|
|
|
SfxDockingWindow* pSfxDockingWindow = dynamic_cast<SfxDockingWindow*>(mpParentWindow);
|
|
|
|
if (pSfxDockingWindow != NULL)
|
|
|
|
aCreationArguments.put("SfxBindings", makeAny(sal_uInt64(&pSfxDockingWindow->GetBindings())));
|
|
|
|
aCreationArguments.put("Theme", Theme::GetPropertySet());
|
|
|
|
aCreationArguments.put("Sidebar", makeAny(Reference<ui::XSidebar>(static_cast<ui::XSidebar*>(this))));
|
2013-04-11 12:04:57 +00:00
|
|
|
if (bWantsCanvas)
|
|
|
|
{
|
|
|
|
Reference<rendering::XSpriteCanvas> xCanvas (VCLUnoHelper::GetWindow(rxWindow)->GetSpriteCanvas());
|
|
|
|
aCreationArguments.put("Canvas", makeAny(xCanvas));
|
|
|
|
}
|
2013-04-10 08:20:16 +00:00
|
|
|
|
|
|
|
Reference<ui::XUIElement> xUIElement(
|
|
|
|
xUIElementFactory->createUIElement(
|
|
|
|
rsImplementationURL,
|
|
|
|
Sequence<beans::PropertyValue>(aCreationArguments.getPropertyValues())),
|
|
|
|
UNO_QUERY_THROW);
|
|
|
|
|
|
|
|
return xUIElement;
|
|
|
|
}
|
|
|
|
catch(Exception& rException)
|
|
|
|
{
|
|
|
|
OSL_TRACE("caught exception: %s",
|
|
|
|
OUStringToOString(rException.Message, RTL_TEXTENCODING_ASCII_US).getStr());
|
|
|
|
// For some reason we can not create the actual panel.
|
|
|
|
// Probably because its factory was not properly registered.
|
|
|
|
// TODO: provide feedback to developer to better pinpoint the
|
|
|
|
// source of the error.
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IMPL_LINK(SidebarController, WindowEventHandler, VclWindowEvent*, pEvent)
|
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
if (pEvent==NULL)
|
|
|
|
return sal_False;
|
|
|
|
|
|
|
|
if (pEvent->GetWindow() == mpParentWindow)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
|
|
|
switch (pEvent->GetId())
|
|
|
|
{
|
|
|
|
case VCLEVENT_WINDOW_SHOW:
|
|
|
|
case VCLEVENT_WINDOW_RESIZE:
|
|
|
|
NotifyResize();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VCLEVENT_WINDOW_DATACHANGED:
|
|
|
|
// Force an update of deck and tab bar to reflect
|
|
|
|
// changes in theme (high contrast mode).
|
|
|
|
Theme::HandleDataChange();
|
2013-04-23 14:08:04 +00:00
|
|
|
UpdateTitleBarIcons();
|
2013-04-10 08:20:16 +00:00
|
|
|
mpParentWindow->Invalidate();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case SFX_HINT_DYING:
|
|
|
|
dispose();
|
|
|
|
break;
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
case VCLEVENT_WINDOW_PAINT:
|
|
|
|
OSL_TRACE("Paint");
|
|
|
|
break;
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-04-29 07:44:43 +00:00
|
|
|
else if (pEvent->GetWindow()==mpSplitWindow && mpSplitWindow!=NULL)
|
|
|
|
{
|
|
|
|
switch (pEvent->GetId())
|
|
|
|
{
|
|
|
|
case VCLEVENT_WINDOW_MOUSEBUTTONDOWN:
|
|
|
|
mnWidthOnSplitterButtonDown = mpParentWindow->GetSizePixel().Width();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case VCLEVENT_WINDOW_MOUSEBUTTONUP:
|
|
|
|
{
|
|
|
|
ProcessNewWidth(mpParentWindow->GetSizePixel().Width());
|
|
|
|
mnWidthOnSplitterButtonDown = 0;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case SFX_HINT_DYING:
|
|
|
|
dispose();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2013-04-10 08:20:16 +00:00
|
|
|
|
|
|
|
return sal_True;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::ShowPopupMenu (
|
|
|
|
const Rectangle& rButtonBox,
|
|
|
|
const ::std::vector<TabBar::DeckMenuData>& rDeckSelectionData,
|
|
|
|
const ::std::vector<TabBar::DeckMenuData>& rDeckShowData) const
|
|
|
|
{
|
|
|
|
::boost::shared_ptr<PopupMenu> pMenu = CreatePopupMenu(rDeckSelectionData, rDeckShowData);
|
|
|
|
pMenu->SetSelectHdl(LINK(this, SidebarController, OnMenuItemSelected));
|
|
|
|
|
|
|
|
// pass toolbox button rect so the menu can stay open on button up
|
|
|
|
Rectangle aBox (rButtonBox);
|
|
|
|
aBox.Move(mpTabBar->GetPosPixel().X(), 0);
|
|
|
|
pMenu->Execute(mpParentWindow, aBox, POPUPMENU_EXECUTE_DOWN);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::ShowDetailMenu (const ::rtl::OUString& rsMenuCommand) const
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2013-05-03 13:01:13 +00:00
|
|
|
const util::URL aURL (Tools::GetURL(rsMenuCommand));
|
|
|
|
Reference<frame::XDispatch> xDispatch (Tools::GetDispatch(mxFrame, aURL));
|
2013-04-10 08:20:16 +00:00
|
|
|
if (xDispatch.is())
|
|
|
|
xDispatch->dispatch(aURL, Sequence<beans::PropertyValue>());
|
|
|
|
}
|
|
|
|
catch(Exception& rException)
|
|
|
|
{
|
|
|
|
OSL_TRACE("caught exception: %s",
|
|
|
|
OUStringToOString(rException.Message, RTL_TEXTENCODING_ASCII_US).getStr());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
::boost::shared_ptr<PopupMenu> SidebarController::CreatePopupMenu (
|
|
|
|
const ::std::vector<TabBar::DeckMenuData>& rDeckSelectionData,
|
|
|
|
const ::std::vector<TabBar::DeckMenuData>& rDeckShowData) const
|
|
|
|
{
|
|
|
|
::boost::shared_ptr<PopupMenu> pMenu (new PopupMenu());
|
|
|
|
FloatingWindow* pMenuWindow = dynamic_cast<FloatingWindow*>(pMenu->GetWindow());
|
|
|
|
if (pMenuWindow != NULL)
|
|
|
|
{
|
|
|
|
pMenuWindow->SetPopupModeFlags(pMenuWindow->GetPopupModeFlags() | FLOATWIN_POPUPMODE_NOMOUSEUPCLOSE);
|
|
|
|
}
|
|
|
|
|
|
|
|
SidebarResource aLocalResource;
|
|
|
|
|
|
|
|
// Add one entry for every tool panel element to individually make
|
|
|
|
// them visible or hide them.
|
|
|
|
{
|
|
|
|
sal_Int32 nIndex (MID_FIRST_PANEL);
|
|
|
|
for(::std::vector<TabBar::DeckMenuData>::const_iterator
|
|
|
|
iItem(rDeckSelectionData.begin()),
|
|
|
|
iEnd(rDeckSelectionData.end());
|
|
|
|
iItem!=iEnd;
|
|
|
|
++iItem)
|
|
|
|
{
|
|
|
|
pMenu->InsertItem(nIndex, iItem->get<0>(), MIB_RADIOCHECK);
|
|
|
|
pMenu->CheckItem(nIndex, iItem->get<2>());
|
|
|
|
++nIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pMenu->InsertSeparator();
|
|
|
|
|
|
|
|
// Add entry for docking or un-docking the tool panel.
|
|
|
|
if (mpParentWindow->IsFloatingMode())
|
|
|
|
pMenu->InsertItem(MID_LOCK_TASK_PANEL, String(SfxResId(STR_SFX_DOCK)));
|
|
|
|
else
|
|
|
|
pMenu->InsertItem(MID_UNLOCK_TASK_PANEL, String(SfxResId(STR_SFX_UNDOCK)));
|
|
|
|
|
|
|
|
// Add sub menu for customization (hiding of deck tabs.)
|
|
|
|
PopupMenu* pCustomizationMenu = new PopupMenu();
|
|
|
|
{
|
|
|
|
sal_Int32 nIndex (MID_FIRST_HIDE);
|
|
|
|
for(::std::vector<TabBar::DeckMenuData>::const_iterator
|
|
|
|
iItem(rDeckShowData.begin()),
|
|
|
|
iEnd(rDeckShowData.end());
|
|
|
|
iItem!=iEnd;
|
|
|
|
++iItem)
|
|
|
|
{
|
|
|
|
pCustomizationMenu->InsertItem(nIndex, iItem->get<0>(), MIB_CHECKABLE);
|
|
|
|
pCustomizationMenu->CheckItem(nIndex, iItem->get<2>());
|
|
|
|
++nIndex;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pCustomizationMenu->InsertSeparator();
|
|
|
|
pCustomizationMenu->InsertItem(MID_RESTORE_DEFAULT, String(SfxResId(STRING_RESTORE)));
|
|
|
|
|
|
|
|
pMenu->InsertItem(MID_CUSTOMIZATION, String(SfxResId(STRING_CUSTOMIZATION)));
|
|
|
|
pMenu->SetPopupMenu(MID_CUSTOMIZATION, pCustomizationMenu);
|
|
|
|
|
|
|
|
pMenu->RemoveDisabledEntries(sal_False, sal_False);
|
|
|
|
|
|
|
|
return pMenu;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IMPL_LINK(SidebarController, OnMenuItemSelected, Menu*, pMenu)
|
|
|
|
{
|
|
|
|
if (pMenu == NULL)
|
|
|
|
{
|
|
|
|
OSL_ENSURE(pMenu!=NULL, "sfx2::sidebar::SidebarController::OnMenuItemSelected: illegal menu!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
pMenu->Deactivate();
|
|
|
|
const sal_Int32 nIndex (pMenu->GetCurItemId());
|
|
|
|
switch (nIndex)
|
|
|
|
{
|
|
|
|
case MID_UNLOCK_TASK_PANEL:
|
|
|
|
mpParentWindow->SetFloatingMode(sal_True);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MID_LOCK_TASK_PANEL:
|
|
|
|
mpParentWindow->SetFloatingMode(sal_False);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MID_RESTORE_DEFAULT:
|
|
|
|
mpTabBar->RestoreHideFlags();
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
if (nIndex >= MID_FIRST_PANEL && nIndex<MID_FIRST_HIDE)
|
|
|
|
SwitchToDeck(mpTabBar->GetDeckIdForIndex(nIndex - MID_FIRST_PANEL));
|
|
|
|
else if (nIndex >=MID_FIRST_HIDE)
|
|
|
|
mpTabBar->ToggleHideFlag(nIndex-MID_FIRST_HIDE);
|
|
|
|
}
|
|
|
|
catch (RuntimeException&)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
void SidebarController::RequestCloseDeck (void)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
mbIsDeckRequestedOpen = false;
|
|
|
|
UpdateDeckOpenState();
|
|
|
|
}
|
2013-04-10 08:20:16 +00:00
|
|
|
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::RequestOpenDeck (void)
|
|
|
|
{
|
|
|
|
mbIsDeckRequestedOpen = true;
|
|
|
|
UpdateDeckOpenState();
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
void SidebarController::UpdateDeckOpenState (void)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
if ( ! mbIsDeckRequestedOpen)
|
|
|
|
// No state requested.
|
|
|
|
return;
|
2013-04-10 08:20:16 +00:00
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
// Update (change) the open state when it either has not yet been initialized
|
|
|
|
// or when its value differs from the requested state.
|
|
|
|
if ( ! mbIsDeckOpen
|
|
|
|
|| mbIsDeckOpen.get() != mbIsDeckRequestedOpen.get())
|
|
|
|
{
|
|
|
|
if (mbIsDeckRequestedOpen.get())
|
|
|
|
{
|
|
|
|
if (mnSavedSidebarWidth <= TabBar::GetDefaultWidth())
|
|
|
|
SetChildWindowWidth(SidebarChildWindow::GetDefaultWidth(mpParentWindow));
|
|
|
|
else
|
|
|
|
SetChildWindowWidth(mnSavedSidebarWidth);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ! mpParentWindow->IsFloatingMode())
|
|
|
|
mnSavedSidebarWidth = SetChildWindowWidth(TabBar::GetDefaultWidth());
|
|
|
|
if (mnWidthOnSplitterButtonDown > TabBar::GetDefaultWidth())
|
|
|
|
mnSavedSidebarWidth = mnWidthOnSplitterButtonDown;
|
|
|
|
mpParentWindow->SetStyle(mpParentWindow->GetStyle() & ~WB_SIZEABLE);
|
|
|
|
}
|
2013-04-10 08:20:16 +00:00
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
mbIsDeckOpen = mbIsDeckRequestedOpen.get();
|
|
|
|
if (mbIsDeckOpen.get() && mpCurrentDeck)
|
|
|
|
mpCurrentDeck->Show(mbIsDeckOpen.get());
|
2013-04-10 08:20:16 +00:00
|
|
|
NotifyResize();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FocusManager& SidebarController::GetFocusManager (void)
|
|
|
|
{
|
|
|
|
return maFocusManager;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
bool SidebarController::CanModifyChildWindowWidth (void)
|
2013-04-10 08:20:16 +00:00
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
SfxSplitWindow* pSplitWindow = GetSplitWindow();
|
2013-04-10 08:20:16 +00:00
|
|
|
if (pSplitWindow == NULL)
|
2013-04-29 07:44:43 +00:00
|
|
|
return false;
|
2013-04-10 08:20:16 +00:00
|
|
|
|
|
|
|
sal_uInt16 nRow (0xffff);
|
|
|
|
sal_uInt16 nColumn (0xffff);
|
|
|
|
pSplitWindow->GetWindowPos(mpParentWindow, nColumn, nRow);
|
|
|
|
|
|
|
|
sal_uInt16 nRowCount (pSplitWindow->GetWindowCount(nColumn));
|
|
|
|
|
2013-04-29 07:44:43 +00:00
|
|
|
return nRowCount==1;
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
sal_Int32 SidebarController::SetChildWindowWidth (const sal_Int32 nNewWidth)
|
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
SfxSplitWindow* pSplitWindow = GetSplitWindow();
|
2013-04-10 08:20:16 +00:00
|
|
|
if (pSplitWindow == NULL)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
sal_uInt16 nRow (0xffff);
|
|
|
|
sal_uInt16 nColumn (0xffff);
|
|
|
|
pSplitWindow->GetWindowPos(mpParentWindow, nColumn, nRow);
|
|
|
|
const long nColumnWidth (pSplitWindow->GetLineSize(nColumn));
|
|
|
|
|
|
|
|
Window* pWindow = mpParentWindow;
|
|
|
|
const Point aWindowPosition (pWindow->GetPosPixel());
|
|
|
|
const Size aWindowSize (pWindow->GetSizePixel());
|
|
|
|
|
|
|
|
pSplitWindow->MoveWindow(
|
|
|
|
mpParentWindow,
|
|
|
|
Size(nNewWidth, aWindowSize.Height()),
|
|
|
|
nColumn,
|
|
|
|
nRow);
|
2013-04-29 07:44:43 +00:00
|
|
|
static_cast<SplitWindow*>(pSplitWindow)->Split();
|
2013-04-10 08:20:16 +00:00
|
|
|
|
|
|
|
return static_cast<sal_Int32>(nColumnWidth);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::RestrictWidth (void)
|
|
|
|
{
|
2013-04-29 07:44:43 +00:00
|
|
|
SfxSplitWindow* pSplitWindow = GetSplitWindow();
|
2013-04-10 08:20:16 +00:00
|
|
|
if (pSplitWindow != NULL)
|
|
|
|
{
|
|
|
|
const sal_uInt16 nId (pSplitWindow->GetItemId(mpParentWindow));
|
|
|
|
const sal_uInt16 nSetId (pSplitWindow->GetSet(nId));
|
|
|
|
pSplitWindow->SetItemSizeRange(
|
|
|
|
nSetId,
|
2013-04-29 07:44:43 +00:00
|
|
|
Range(TabBar::GetDefaultWidth(), gnMaximumSidebarWidth));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
SfxSplitWindow* SidebarController::GetSplitWindow (void)
|
|
|
|
{
|
|
|
|
if (mpSplitWindow == NULL)
|
|
|
|
{
|
|
|
|
if (mpParentWindow != NULL)
|
|
|
|
{
|
|
|
|
mpSplitWindow = dynamic_cast<SfxSplitWindow*>(mpParentWindow->GetParent());
|
|
|
|
if (mpSplitWindow != NULL)
|
|
|
|
mpSplitWindow->AddEventListener(LINK(this, SidebarController, WindowEventHandler));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mpSplitWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::UpdateCloseIndicator (const bool bCloseAfterDrag)
|
|
|
|
{
|
|
|
|
if (mpParentWindow == NULL)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (bCloseAfterDrag)
|
|
|
|
{
|
|
|
|
// Make sure that the indicator exists.
|
|
|
|
if ( ! mpCloseIndicator)
|
|
|
|
{
|
|
|
|
mpCloseIndicator.reset(new FixedImage(mpParentWindow));
|
|
|
|
FixedImage* pFixedImage = static_cast<FixedImage*>(mpCloseIndicator.get());
|
|
|
|
const Image aImage (Theme::GetImage(Theme::Image_CloseIndicator));
|
|
|
|
pFixedImage->SetImage(aImage);
|
|
|
|
pFixedImage->SetSizePixel(aImage.GetSizePixel());
|
|
|
|
pFixedImage->SetBackground(Theme::GetWallpaper(Theme::Paint_DeckBackground));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Place and show the indicator.
|
|
|
|
const Size aWindowSize (mpParentWindow->GetSizePixel());
|
|
|
|
const Size aImageSize (mpCloseIndicator->GetSizePixel());
|
|
|
|
mpCloseIndicator->SetPosPixel(
|
|
|
|
Point(
|
|
|
|
aWindowSize.Width() - TabBar::GetDefaultWidth() - aImageSize.Width(),
|
|
|
|
(aWindowSize.Height() - aImageSize.Height())/2));
|
|
|
|
mpCloseIndicator->Show();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Hide but don't delete the indicator.
|
|
|
|
if (mpCloseIndicator)
|
|
|
|
mpCloseIndicator->Hide();
|
2013-04-10 08:20:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-23 14:08:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
void SidebarController::UpdateTitleBarIcons (void)
|
|
|
|
{
|
|
|
|
if ( ! mpCurrentDeck)
|
|
|
|
return;
|
|
|
|
|
|
|
|
const bool bIsHighContrastModeActive (Theme::IsHighContrastMode());
|
|
|
|
const ResourceManager& rResourceManager (ResourceManager::Instance());
|
|
|
|
|
|
|
|
// Update the deck icon.
|
|
|
|
const DeckDescriptor* pDeckDescriptor = rResourceManager.GetDeckDescriptor(mpCurrentDeck->GetId());
|
|
|
|
if (pDeckDescriptor != NULL && mpCurrentDeck->GetTitleBar())
|
|
|
|
{
|
|
|
|
const OUString sIconURL(
|
|
|
|
bIsHighContrastModeActive
|
|
|
|
? pDeckDescriptor->msHighContrastTitleBarIconURL
|
|
|
|
: pDeckDescriptor->msTitleBarIconURL);
|
|
|
|
mpCurrentDeck->GetTitleBar()->SetIcon(Tools::GetImage(sIconURL, mxFrame));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Update the panel icons.
|
|
|
|
const SharedPanelContainer& rPanels (mpCurrentDeck->GetPanels());
|
|
|
|
for (SharedPanelContainer::const_iterator
|
|
|
|
iPanel(rPanels.begin()), iEnd(rPanels.end());
|
|
|
|
iPanel!=iEnd;
|
|
|
|
++iPanel)
|
|
|
|
{
|
|
|
|
if ( ! *iPanel)
|
|
|
|
continue;
|
|
|
|
if ((*iPanel)->GetTitleBar() == NULL)
|
|
|
|
continue;
|
|
|
|
const PanelDescriptor* pPanelDescriptor = rResourceManager.GetPanelDescriptor((*iPanel)->GetId());
|
|
|
|
if (pPanelDescriptor == NULL)
|
|
|
|
continue;
|
|
|
|
const OUString sIconURL (
|
|
|
|
bIsHighContrastModeActive
|
|
|
|
? pPanelDescriptor->msHighContrastTitleBarIconURL
|
|
|
|
: pPanelDescriptor->msTitleBarIconURL);
|
|
|
|
(*iPanel)->GetTitleBar()->SetIcon(Tools::GetImage(sIconURL, mxFrame));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-04-10 08:20:16 +00:00
|
|
|
} } // end of namespace sfx2::sidebar
|