2016-03-30 10:28:10 +02:00
|
|
|
/* -*- 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/.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sfx2/bindings.hxx>
|
|
|
|
#include <sfx2/dispatch.hxx>
|
|
|
|
#include <sfx2/notebookbar/SfxNotebookBar.hxx>
|
|
|
|
#include <unotools/viewoptions.hxx>
|
|
|
|
#include <vcl/notebookbar.hxx>
|
|
|
|
#include <vcl/syswin.hxx>
|
2016-07-20 16:08:38 +02:00
|
|
|
#include <vcl/menu.hxx>
|
2016-06-17 23:54:00 +02:00
|
|
|
#include <sfx2/viewfrm.hxx>
|
|
|
|
#include <comphelper/processfactory.hxx>
|
|
|
|
#include <com/sun/star/ui/ContextChangeEventMultiplexer.hpp>
|
|
|
|
#include <com/sun/star/ui/XContextChangeEventMultiplexer.hpp>
|
2016-07-20 16:08:38 +02:00
|
|
|
#include <com/sun/star/util/URLTransformer.hpp>
|
|
|
|
#include <com/sun/star/frame/XLayoutManager.hpp>
|
|
|
|
#include "NotebookBarPopupMenu.hxx"
|
2016-08-11 13:53:20 +02:00
|
|
|
#include <officecfg/Office/UI/Notebookbar.hxx>
|
2016-03-30 10:28:10 +02:00
|
|
|
|
|
|
|
using namespace sfx2;
|
2016-06-17 23:54:00 +02:00
|
|
|
using namespace css::uno;
|
|
|
|
using namespace css::ui;
|
2016-03-30 10:28:10 +02:00
|
|
|
|
2016-07-20 16:08:38 +02:00
|
|
|
#define MENUBAR_STR "private:resource/menubar/menubar"
|
|
|
|
|
|
|
|
bool SfxNotebookBar::m_bLock = false;
|
|
|
|
Reference<css::frame::XLayoutManager> SfxNotebookBar::m_xLayoutManager;
|
|
|
|
css::uno::Reference<css::frame::XFrame> SfxNotebookBar::m_xFrame;
|
|
|
|
|
2016-06-02 15:43:45 +02:00
|
|
|
void SfxNotebookBar::CloseMethod(SfxBindings& rBindings)
|
|
|
|
{
|
|
|
|
SfxFrame& rFrame = rBindings.GetDispatcher_Impl()->GetFrame()->GetFrame();
|
2016-07-26 11:52:58 +01:00
|
|
|
CloseMethod(rFrame.GetSystemWindow());
|
2016-07-20 16:08:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void SfxNotebookBar::CloseMethod(SystemWindow* pSysWindow)
|
|
|
|
{
|
|
|
|
if (pSysWindow && pSysWindow->GetNotebookBar())
|
|
|
|
pSysWindow->CloseNotebookBar();
|
|
|
|
m_xLayoutManager.clear();
|
|
|
|
m_xFrame.clear();
|
2016-06-02 15:43:45 +02:00
|
|
|
}
|
|
|
|
|
2016-08-11 13:53:20 +02:00
|
|
|
bool SfxNotebookBar::IsActive()
|
|
|
|
{
|
|
|
|
SvtViewOptions aViewOpt(E_WINDOW, "notebookbar");
|
|
|
|
return aViewOpt.IsVisible();
|
|
|
|
}
|
|
|
|
|
2016-03-30 10:28:10 +02:00
|
|
|
void SfxNotebookBar::ExecMethod(SfxBindings& rBindings)
|
|
|
|
{
|
|
|
|
SvtViewOptions aViewOpt(E_WINDOW, "notebookbar");
|
|
|
|
aViewOpt.SetVisible(!aViewOpt.IsVisible());
|
|
|
|
|
|
|
|
// trigger the StateMethod
|
|
|
|
rBindings.Invalidate(SID_NOTEBOOKBAR);
|
|
|
|
rBindings.Update();
|
|
|
|
}
|
|
|
|
|
|
|
|
void SfxNotebookBar::StateMethod(SfxBindings& rBindings, const OUString& rUIFile)
|
|
|
|
{
|
|
|
|
SfxFrame& rFrame = rBindings.GetDispatcher_Impl()->GetFrame()->GetFrame();
|
2016-06-01 21:47:27 +02:00
|
|
|
StateMethod(rFrame.GetSystemWindow(), rFrame.GetFrameInterface(), rUIFile);
|
|
|
|
}
|
2016-03-30 10:28:10 +02:00
|
|
|
|
2016-06-01 21:47:27 +02:00
|
|
|
void SfxNotebookBar::StateMethod(SystemWindow* pSysWindow,
|
2016-07-07 15:58:51 +02:00
|
|
|
const Reference<css::frame::XFrame> & xFrame,
|
2016-06-01 21:47:27 +02:00
|
|
|
const OUString& rUIFile)
|
|
|
|
{
|
2016-06-03 12:27:50 +02:00
|
|
|
assert(pSysWindow);
|
|
|
|
|
2016-07-20 16:08:38 +02:00
|
|
|
m_xFrame = xFrame;
|
|
|
|
|
|
|
|
if (!m_xLayoutManager.is())
|
|
|
|
{
|
|
|
|
Reference<css::beans::XPropertySet> xPropSet(xFrame, UNO_QUERY);
|
|
|
|
|
|
|
|
if (xPropSet.is())
|
|
|
|
{
|
|
|
|
Any aValue = xPropSet->getPropertyValue("LayoutManager");
|
|
|
|
aValue >>= m_xLayoutManager;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-30 10:28:10 +02:00
|
|
|
SvtViewOptions aViewOpt(E_WINDOW, "notebookbar");
|
|
|
|
|
|
|
|
if (aViewOpt.IsVisible())
|
|
|
|
{
|
2016-06-17 23:54:00 +02:00
|
|
|
RemoveListeners(pSysWindow);
|
|
|
|
|
2016-08-11 13:53:20 +02:00
|
|
|
OUString sFile = officecfg::Office::UI::Notebookbar::Active::get();
|
|
|
|
if ( !sFile.isEmpty() )
|
|
|
|
{
|
|
|
|
OUStringBuffer aBuf(rUIFile);
|
|
|
|
aBuf.append( sFile );
|
2016-03-30 10:28:10 +02:00
|
|
|
|
2016-08-11 13:53:20 +02:00
|
|
|
// setup if necessary
|
|
|
|
pSysWindow->SetNotebookBar(aBuf.makeStringAndClear(), xFrame);
|
2016-06-17 23:54:00 +02:00
|
|
|
|
2016-08-11 13:53:20 +02:00
|
|
|
pSysWindow->GetNotebookBar()->Show();
|
|
|
|
pSysWindow->GetNotebookBar()->SetIconClickHdl(LINK(nullptr, SfxNotebookBar, ToggleMenubar));
|
2016-06-17 23:54:00 +02:00
|
|
|
|
2016-08-11 13:53:20 +02:00
|
|
|
SfxViewFrame* pView = SfxViewFrame::Current();
|
2016-06-17 23:54:00 +02:00
|
|
|
|
2016-08-11 13:53:20 +02:00
|
|
|
if(pView)
|
2016-06-17 23:54:00 +02:00
|
|
|
{
|
2016-08-11 13:53:20 +02:00
|
|
|
Reference<XContextChangeEventMultiplexer> xMultiplexer
|
|
|
|
= ContextChangeEventMultiplexer::get(
|
|
|
|
::comphelper::getProcessComponentContext());
|
|
|
|
|
|
|
|
if(xFrame.is() && xMultiplexer.is())
|
|
|
|
{
|
|
|
|
xMultiplexer->addContextChangeEventListener(
|
|
|
|
pSysWindow->GetNotebookBar()->getContextChangeEventListener(),
|
|
|
|
xFrame->getController());
|
|
|
|
}
|
2016-06-17 23:54:00 +02:00
|
|
|
}
|
|
|
|
}
|
2016-03-30 10:28:10 +02:00
|
|
|
}
|
2016-06-01 21:47:27 +02:00
|
|
|
else if (auto pNotebookBar = pSysWindow->GetNotebookBar())
|
2016-03-30 10:28:10 +02:00
|
|
|
pNotebookBar->Hide();
|
|
|
|
}
|
|
|
|
|
2016-06-17 23:54:00 +02:00
|
|
|
void SfxNotebookBar::RemoveListeners(SystemWindow* pSysWindow)
|
|
|
|
{
|
|
|
|
Reference<XContextChangeEventMultiplexer> xMultiplexer
|
|
|
|
= ContextChangeEventMultiplexer::get(
|
|
|
|
::comphelper::getProcessComponentContext());
|
|
|
|
|
|
|
|
if (pSysWindow->GetNotebookBar() && xMultiplexer.is())
|
|
|
|
{
|
|
|
|
xMultiplexer->removeAllContextChangeEventListeners(
|
2016-06-28 10:02:06 +02:00
|
|
|
pSysWindow->GetNotebookBar()->getContextChangeEventListener());
|
2016-06-17 23:54:00 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-07-20 16:08:38 +02:00
|
|
|
IMPL_STATIC_LINK_TYPED(SfxNotebookBar, ToggleMenubar, NotebookBar*, pNotebookbar, void)
|
|
|
|
{
|
|
|
|
if (pNotebookbar)
|
|
|
|
{
|
2016-08-02 13:25:00 +02:00
|
|
|
ScopedVclPtrInstance<NotebookBarPopupMenu> pMenu(SfxResId(RID_MENU_NOTEBOOKBAR));
|
2016-07-20 16:08:38 +02:00
|
|
|
pMenu->Execute(pNotebookbar, m_xFrame);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void SfxNotebookBar::ShowMenubar(bool bShow)
|
|
|
|
{
|
|
|
|
if (!m_bLock && m_xLayoutManager.is())
|
|
|
|
{
|
|
|
|
m_bLock = true;
|
|
|
|
m_xLayoutManager->lock();
|
|
|
|
|
|
|
|
if (m_xLayoutManager->getElement(MENUBAR_STR).is() && !bShow)
|
|
|
|
m_xLayoutManager->destroyElement(MENUBAR_STR);
|
|
|
|
else if(!m_xLayoutManager->getElement(MENUBAR_STR).is() && bShow)
|
|
|
|
m_xLayoutManager->createElement(MENUBAR_STR);
|
|
|
|
|
|
|
|
m_xLayoutManager->unlock();
|
|
|
|
m_bLock = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-30 10:28:10 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|