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-08-06 23:31:18 +02:00
|
|
|
#include <com/sun/star/frame/XModuleManager.hpp>
|
|
|
|
#include <com/sun/star/frame/ModuleManager.hpp>
|
|
|
|
#include <unotools/confignode.hxx>
|
|
|
|
#include <comphelper/types.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-08-06 23:31:18 +02:00
|
|
|
using namespace css;
|
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-08-11 12:07:36 +02:00
|
|
|
static OUString lcl_getAppName( vcl::EnumContext::Application eApp )
|
|
|
|
{
|
|
|
|
switch ( eApp )
|
|
|
|
{
|
|
|
|
case vcl::EnumContext::Application::Application_Writer:
|
|
|
|
return OUString( "Writer" );
|
|
|
|
break;
|
|
|
|
case vcl::EnumContext::Application::Application_Calc:
|
|
|
|
return OUString( "Calc" );
|
|
|
|
break;
|
|
|
|
case vcl::EnumContext::Application::Application_Impress:
|
|
|
|
return OUString( "Impress" );
|
|
|
|
break;
|
|
|
|
case vcl::EnumContext::Application::Application_Draw:
|
|
|
|
return OUString( "Draw" );
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return OUString( "" );
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static const utl::OConfigurationNode lcl_getCurrentImplConfigNode()
|
|
|
|
{
|
|
|
|
const Reference<frame::XModuleManager> xModuleManager = frame::ModuleManager::create( ::comphelper::getProcessComponentContext() );
|
|
|
|
|
|
|
|
OUStringBuffer aPath("org.openoffice.Office.UI.Notebookbar/");
|
|
|
|
|
|
|
|
const utl::OConfigurationTreeRoot aNotebookbarNode(
|
|
|
|
::comphelper::getProcessComponentContext(),
|
|
|
|
aPath.makeStringAndClear(),
|
|
|
|
false);
|
|
|
|
if ( !aNotebookbarNode.isValid() )
|
|
|
|
return utl::OConfigurationNode();
|
|
|
|
|
|
|
|
OUString aActive = comphelper::getString( aNotebookbarNode.getNodeValue( "Active" ) );
|
|
|
|
|
|
|
|
const utl::OConfigurationNode aImplsNode = aNotebookbarNode.openNode("Implementations");
|
|
|
|
const Sequence<OUString> aModeNodeNames( aImplsNode.getNodeNames() );
|
|
|
|
const sal_Int32 nCount( aModeNodeNames.getLength() );
|
|
|
|
|
|
|
|
for ( sal_Int32 nReadIndex = 0; nReadIndex < nCount; ++nReadIndex )
|
|
|
|
{
|
|
|
|
const utl::OConfigurationNode aImplNode( aImplsNode.openNode( aModeNodeNames[nReadIndex] ) );
|
|
|
|
if ( !aImplNode.isValid() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
OUString aCommandArg = comphelper::getString( aImplNode.getNodeValue( "File" ) );
|
|
|
|
|
|
|
|
if ( aCommandArg.compareTo( aActive ) == 0 )
|
|
|
|
{
|
|
|
|
return aImplNode;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return utl::OConfigurationNode();
|
|
|
|
}
|
|
|
|
|
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)
|
|
|
|
{
|
2016-08-06 23:31:18 +02:00
|
|
|
if (pSysWindow)
|
|
|
|
{
|
|
|
|
RemoveListeners(pSysWindow);
|
|
|
|
if(pSysWindow->GetNotebookBar())
|
|
|
|
pSysWindow->CloseNotebookBar();
|
|
|
|
}
|
2016-08-11 12:07:36 +02:00
|
|
|
SfxNotebookBar::ShowMenubar(true);
|
|
|
|
|
2016-07-20 16:08:38 +02:00
|
|
|
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()
|
|
|
|
{
|
2016-08-06 23:31:18 +02:00
|
|
|
const Reference<frame::XModuleManager> xModuleManager = frame::ModuleManager::create( ::comphelper::getProcessComponentContext() );
|
|
|
|
vcl::EnumContext::Application eApp = vcl::EnumContext::GetApplicationEnum(xModuleManager->identify(m_xFrame));
|
|
|
|
|
|
|
|
OUStringBuffer aPath("org.openoffice.Office.UI.ToolbarMode/Applications/");
|
2016-08-11 12:07:36 +02:00
|
|
|
aPath.append( lcl_getAppName( eApp ) );
|
2016-08-06 23:31:18 +02:00
|
|
|
|
|
|
|
const utl::OConfigurationTreeRoot aAppNode(
|
|
|
|
::comphelper::getProcessComponentContext(),
|
|
|
|
aPath.makeStringAndClear(),
|
|
|
|
false);
|
|
|
|
if ( !aAppNode.isValid() )
|
|
|
|
return false;
|
|
|
|
|
|
|
|
OUString aActive = comphelper::getString( aAppNode.getNodeValue( "Active" ) );
|
|
|
|
|
|
|
|
const utl::OConfigurationNode aModesNode = aAppNode.openNode("Modes");
|
|
|
|
const Sequence<OUString> aModeNodeNames( aModesNode.getNodeNames() );
|
|
|
|
const sal_Int32 nCount( aModeNodeNames.getLength() );
|
|
|
|
|
|
|
|
for ( sal_Int32 nReadIndex = 0; nReadIndex < nCount; ++nReadIndex )
|
|
|
|
{
|
|
|
|
const utl::OConfigurationNode aModeNode( aModesNode.openNode( aModeNodeNames[nReadIndex] ) );
|
|
|
|
if ( !aModeNode.isValid() )
|
|
|
|
continue;
|
|
|
|
|
|
|
|
OUString aCommandArg = comphelper::getString( aModeNode.getNodeValue( "CommandArg" ) );
|
|
|
|
|
|
|
|
if ( aCommandArg.compareTo( aActive ) == 0 )
|
|
|
|
{
|
2016-08-11 12:07:36 +02:00
|
|
|
return comphelper::getBOOL( aModeNode.getNodeValue( "HasNotebookbar" ) );
|
2016-08-06 23:31:18 +02:00
|
|
|
}
|
|
|
|
}
|
2016-08-11 12:07:36 +02:00
|
|
|
return false;
|
2016-08-11 13:53:20 +02:00
|
|
|
}
|
|
|
|
|
2016-08-06 23:31:18 +02:00
|
|
|
void SfxNotebookBar::ExecMethod(SfxBindings& rBindings, const OUString& rUIName)
|
2016-03-30 10:28:10 +02:00
|
|
|
{
|
2016-08-06 23:31:18 +02:00
|
|
|
// Save active UI file name
|
|
|
|
if ( !rUIName.isEmpty() )
|
|
|
|
{
|
|
|
|
std::shared_ptr<comphelper::ConfigurationChanges> batch(
|
|
|
|
comphelper::ConfigurationChanges::create( ::comphelper::getProcessComponentContext() ) );
|
|
|
|
officecfg::Office::UI::Notebookbar::Active::set( rUIName, batch );
|
|
|
|
batch->commit();
|
|
|
|
}
|
2016-03-30 10:28:10 +02:00
|
|
|
|
|
|
|
// trigger the StateMethod
|
|
|
|
rBindings.Invalidate(SID_NOTEBOOKBAR);
|
|
|
|
rBindings.Update();
|
|
|
|
}
|
|
|
|
|
2016-08-06 23:31:18 +02:00
|
|
|
bool SfxNotebookBar::StateMethod(SfxBindings& rBindings, const OUString& rUIFile)
|
2016-03-30 10:28:10 +02:00
|
|
|
{
|
|
|
|
SfxFrame& rFrame = rBindings.GetDispatcher_Impl()->GetFrame()->GetFrame();
|
2016-08-06 23:31:18 +02:00
|
|
|
return StateMethod(rFrame.GetSystemWindow(), rFrame.GetFrameInterface(), rUIFile);
|
2016-06-01 21:47:27 +02:00
|
|
|
}
|
2016-03-30 10:28:10 +02:00
|
|
|
|
2016-08-06 23:31:18 +02:00
|
|
|
bool 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-08-06 23:31:18 +02:00
|
|
|
if (IsActive())
|
2016-03-30 10:28:10 +02:00
|
|
|
{
|
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();
|
2016-09-12 16:29:24 +02:00
|
|
|
OUString sNewFile = rUIFile + sFile;
|
|
|
|
OUString sCurrentFile;
|
|
|
|
if ( pSysWindow->GetNotebookBar() )
|
|
|
|
sCurrentFile = OStringToOUString( pSysWindow->GetNotebookBar()->getUIFile(), RTL_TEXTENCODING_ASCII_US );
|
|
|
|
|
|
|
|
bool bChangedFile = true;
|
|
|
|
if ( sCurrentFile.getLength() && sNewFile.getLength() )
|
|
|
|
{
|
|
|
|
// delete "/"
|
|
|
|
sCurrentFile = sCurrentFile.copy( 0, sCurrentFile.getLength() - 1 );
|
|
|
|
// delete ".ui"
|
|
|
|
sNewFile = sNewFile.copy( 0, sNewFile.getLength() - 3 );
|
|
|
|
|
|
|
|
bChangedFile = ( sNewFile.compareTo( sCurrentFile ) != 0 );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !sFile.isEmpty() && bChangedFile )
|
2016-08-11 13:53:20 +02:00
|
|
|
{
|
|
|
|
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);
|
|
|
|
pSysWindow->GetNotebookBar()->Show();
|
2016-08-19 10:20:03 +02:00
|
|
|
pSysWindow->GetNotebookBar()->SetIconClickHdl(LINK(nullptr, SfxNotebookBar, OpenNotebookbarPopupMenu));
|
2016-06-17 23:54:00 +02:00
|
|
|
|
2016-08-11 12:07:36 +02:00
|
|
|
const utl::OConfigurationNode aModeNode( lcl_getCurrentImplConfigNode() );
|
|
|
|
SfxNotebookBar::ShowMenubar( comphelper::getBOOL( aModeNode.getNodeValue( "HasMenubar" ) ) );
|
|
|
|
|
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-08-06 23:31:18 +02:00
|
|
|
|
|
|
|
return true;
|
2016-03-30 10:28:10 +02:00
|
|
|
}
|
2016-06-01 21:47:27 +02:00
|
|
|
else if (auto pNotebookBar = pSysWindow->GetNotebookBar())
|
2016-08-11 12:07:36 +02:00
|
|
|
{
|
2016-03-30 10:28:10 +02:00
|
|
|
pNotebookBar->Hide();
|
2016-08-11 12:07:36 +02:00
|
|
|
SfxNotebookBar::ShowMenubar(true);
|
|
|
|
}
|
2016-08-06 23:31:18 +02:00
|
|
|
|
|
|
|
return false;
|
2016-03-30 10:28:10 +02:00
|
|
|
}
|
|
|
|
|
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-08-19 10:20:03 +02:00
|
|
|
IMPL_STATIC_LINK_TYPED(SfxNotebookBar, OpenNotebookbarPopupMenu, NotebookBar*, pNotebookbar, void)
|
2016-07-20 16:08:38 +02:00
|
|
|
{
|
|
|
|
if (pNotebookbar)
|
|
|
|
{
|
2016-08-11 12:07:36 +02:00
|
|
|
ScopedVclPtrInstance<NotebookBarPopupMenu> pMenu;
|
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();
|
|
|
|
|
2016-08-11 12:07:36 +02:00
|
|
|
if (m_xLayoutManager->getElement(MENUBAR_STR).is())
|
|
|
|
{
|
|
|
|
if (m_xLayoutManager->isElementVisible(MENUBAR_STR) && !bShow)
|
|
|
|
m_xLayoutManager->hideElement(MENUBAR_STR);
|
|
|
|
else if(!m_xLayoutManager->isElementVisible(MENUBAR_STR) && bShow)
|
|
|
|
m_xLayoutManager->showElement(MENUBAR_STR);
|
|
|
|
}
|
2016-07-20 16:08:38 +02:00
|
|
|
|
|
|
|
m_xLayoutManager->unlock();
|
|
|
|
m_bLock = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-11 12:07:36 +02:00
|
|
|
void SfxNotebookBar::ToggleMenubar()
|
|
|
|
{
|
|
|
|
if (m_xLayoutManager.is() && m_xLayoutManager->getElement(MENUBAR_STR).is())
|
|
|
|
{
|
|
|
|
if (m_xLayoutManager->isElementVisible(MENUBAR_STR))
|
|
|
|
SfxNotebookBar::ShowMenubar(false);
|
|
|
|
else
|
|
|
|
SfxNotebookBar::ShowMenubar(true);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-30 10:28:10 +02:00
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|