Files
loongoffice/sfx2/source/sidebar/SidebarToolBox.cxx
Stephan Bergmann 04683f1488 Window::Notify should return bool
Change-Id: I72081b1022582c8b6f95a611e21d9c78f7581efe
2014-01-17 16:42:29 +01:00

329 lines
8.9 KiB
C++

/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
* 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 <sfx2/sidebar/SidebarToolBox.hxx>
#include <sfx2/sidebar/ControllerFactory.hxx>
#include <sfx2/sidebar/Theme.hxx>
#include <sfx2/sidebar/Tools.hxx>
#include <vcl/builder.hxx>
#include <vcl/gradient.hxx>
#include <toolkit/helper/vclunohelper.hxx>
#include <svtools/miscopt.hxx>
#include <framework/imageproducer.hxx>
#include <com/sun/star/frame/XSubToolbarController.hpp>
using namespace ::com::sun::star;
using namespace ::com::sun::star::uno;
using ::rtl::OUString;
namespace sfx2 { namespace sidebar {
SidebarToolBox::SidebarToolBox (Window* pParentWindow)
: ToolBox(pParentWindow, 0),
maItemSeparator(Theme::GetImage(Theme::Image_ToolBoxItemSeparator)),
maControllers(),
mbAreHandlersRegistered(false)
{
SetBackground(Wallpaper());
SetPaintTransparent(true);
SetToolboxButtonSize( TOOLBOX_BUTTONSIZE_SMALL );
#ifdef DEBUG
SetText(OUString("SidebarToolBox"));
#endif
}
extern "C" SAL_DLLPUBLIC_EXPORT Window* SAL_CALL makeSidebarToolBox(Window *pParent, VclBuilder::stringmap &)
{
return new SidebarToolBox(pParent);
}
SidebarToolBox::~SidebarToolBox (void)
{
ControllerContainer aControllers;
aControllers.swap(maControllers);
for (ControllerContainer::iterator iController(aControllers.begin()), iEnd(aControllers.end());
iController!=iEnd;
++iController)
{
Reference<lang::XComponent> xComponent (iController->second.mxController, UNO_QUERY);
if (xComponent.is())
xComponent->dispose();
}
if (mbAreHandlersRegistered)
{
SetDropdownClickHdl(Link());
SetClickHdl(Link());
SetDoubleClickHdl(Link());
SetSelectHdl(Link());
SetActivateHdl(Link());
SetDeactivateHdl(Link());
}
}
void SidebarToolBox::InsertItem(const OUString& rCommand,
const com::sun::star::uno::Reference<com::sun::star::frame::XFrame>& rFrame,
ToolBoxItemBits nBits, const Size& rRequestedSize, sal_uInt16 nPos)
{
ToolBox::InsertItem(rCommand, rFrame, nBits, rRequestedSize, nPos);
CreateController(GetItemId(rCommand), rFrame, std::max(rRequestedSize.Width(), 0L));
RegisterHandlers();
}
void SidebarToolBox::Paint (const Rectangle& rRect)
{
ToolBox::Paint(rRect);
if (Theme::GetBoolean(Theme::Bool_UseToolBoxItemSeparator))
{
const sal_Int32 nSeparatorY ((GetSizePixel().Height() - maItemSeparator.GetSizePixel().Height())/2);
const sal_uInt16 nItemCount (GetItemCount());
int nLastRight (-1);
for (sal_uInt16 nIndex=0; nIndex<nItemCount; ++nIndex)
{
const Rectangle aItemBoundingBox (GetItemPosRect(nIndex));
if (nLastRight >= 0)
{
const int nSeparatorX ((nLastRight + aItemBoundingBox.Left() - 1) / 2);
DrawImage(Point(nSeparatorX,nSeparatorY), maItemSeparator);
}
nLastRight = aItemBoundingBox.Right();
}
}
}
bool SidebarToolBox::Notify (NotifyEvent& rEvent)
{
if (rEvent.GetType() == EVENT_KEYINPUT)
{
if (rEvent.GetKeyEvent()->GetKeyCode().GetCode() == KEY_TAB)
{
// Special handling for transferring handling of KEY_TAB
// that becomes necessary because of our parent that is
// not the dialog but a background control.
return DockingWindow::Notify(rEvent);
}
}
return ToolBox::Notify(rEvent);
}
void SidebarToolBox::CreateController (
const sal_uInt16 nItemId,
const cssu::Reference<css::frame::XFrame>& rxFrame,
const sal_Int32 nItemWidth)
{
ItemDescriptor aDescriptor;
const OUString sCommandName (GetItemCommand(nItemId));
aDescriptor.mxController = sfx2::sidebar::ControllerFactory::CreateToolBoxController(
this,
nItemId,
sCommandName,
rxFrame,
VCLUnoHelper::GetInterface(this),
nItemWidth);
if (aDescriptor.mxController.is())
{
aDescriptor.maURL = sfx2::sidebar::Tools::GetURL(sCommandName);
aDescriptor.msCurrentCommand = sCommandName;
maControllers.insert(::std::make_pair(nItemId, aDescriptor));
}
}
Reference<frame::XToolbarController> SidebarToolBox::GetControllerForItemId (const sal_uInt16 nItemId) const
{
ControllerContainer::const_iterator iController (maControllers.find(nItemId));
if (iController != maControllers.end())
return iController->second.mxController;
else
return NULL;
}
void SidebarToolBox::SetController(
const sal_uInt16 nItemId,
const cssu::Reference<css::frame::XToolbarController>& rxController,
const ::rtl::OUString& rsCommandName)
{
ItemDescriptor aDescriptor;
aDescriptor.mxController = rxController;
aDescriptor.maURL = sfx2::sidebar::Tools::GetURL(rsCommandName);
aDescriptor.msCurrentCommand = rsCommandName;
ControllerContainer::iterator iController (maControllers.find(nItemId));
if (iController != maControllers.end())
{
Reference<lang::XComponent> xComponent (iController->second.mxController, UNO_QUERY);
if (xComponent.is())
xComponent->dispose();
iController->second = aDescriptor;
}
else
{
maControllers[nItemId] = aDescriptor;
}
if (rxController.is())
RegisterHandlers();
}
sal_uInt16 SidebarToolBox::GetItemIdForSubToolbarName (const OUString& rsSubToolbarName) const
{
for (ControllerContainer::const_iterator iController(maControllers.begin()), iEnd(maControllers.end());
iController!=iEnd;
++iController)
{
Reference<frame::XToolbarController> xController (iController->second.mxController);
Reference<frame::XSubToolbarController> xSubToolbarController (xController, UNO_QUERY);
if (xSubToolbarController.is())
{
const OUString sName (xSubToolbarController->getSubToolbarName());
if (sName.equals(rsSubToolbarName))
return iController->first;
}
}
return 0;
}
void SidebarToolBox::RegisterHandlers (void)
{
if ( ! mbAreHandlersRegistered)
{
mbAreHandlersRegistered = true;
SetDropdownClickHdl(LINK(this, SidebarToolBox, DropDownClickHandler));
SetClickHdl(LINK(this, SidebarToolBox, ClickHandler));
SetDoubleClickHdl(LINK(this, SidebarToolBox, DoubleClickHandler));
SetSelectHdl(LINK(this, SidebarToolBox, SelectHandler));
SetActivateHdl(LINK(this, SidebarToolBox, ActivateToolBox));
SetDeactivateHdl(LINK(this, SidebarToolBox, DeactivateToolBox));
}
}
IMPL_LINK(SidebarToolBox, DropDownClickHandler, ToolBox*, pToolBox)
{
if (pToolBox != NULL)
{
Reference<frame::XToolbarController> xController (GetControllerForItemId(pToolBox->GetCurItemId()));
if (xController.is())
{
Reference<awt::XWindow> xWindow = xController->createPopupWindow();
if (xWindow.is() )
xWindow->setFocus();
}
}
return 1;
}
IMPL_LINK(SidebarToolBox, ClickHandler, ToolBox*, pToolBox)
{
if (pToolBox == NULL)
return 0;
Reference<frame::XToolbarController> xController (GetControllerForItemId(pToolBox->GetCurItemId()));
if (xController.is())
xController->click();
return 1;
}
IMPL_LINK(SidebarToolBox, DoubleClickHandler, ToolBox*, pToolBox)
{
if (pToolBox == NULL)
return 0;
Reference<frame::XToolbarController> xController (GetControllerForItemId(pToolBox->GetCurItemId()));
if (xController.is())
xController->doubleClick();
return 1;
}
IMPL_LINK(SidebarToolBox, SelectHandler, ToolBox*, pToolBox)
{
if (pToolBox == NULL)
return 0;
Reference<frame::XToolbarController> xController (GetControllerForItemId(pToolBox->GetCurItemId()));
if (xController.is())
xController->execute((sal_Int16)pToolBox->GetModifier());
return 1;
}
IMPL_LINK(SidebarToolBox, ActivateToolBox, ToolBox*, EMPTYARG)
{
return 1;
}
IMPL_LINK(SidebarToolBox, DeactivateToolBox, ToolBox*, EMPTYARG)
{
return 1;
}
} } // end of namespace sfx2::sidebar
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */