2010-10-12 15:53:47 +02:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-11-12 17:21:24 +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 .
|
|
|
|
*/
|
2007-07-05 07:58:01 +00:00
|
|
|
|
|
|
|
#include <dispatch/windowcommanddispatch.hxx>
|
|
|
|
#include <targets.h>
|
|
|
|
#include <services.h>
|
|
|
|
|
|
|
|
#include <com/sun/star/frame/XDispatchProvider.hpp>
|
|
|
|
#include <com/sun/star/frame/XDispatch.hpp>
|
2012-06-01 15:15:25 +02:00
|
|
|
#include <com/sun/star/util/URLTransformer.hpp>
|
2007-07-05 07:58:01 +00:00
|
|
|
#include <com/sun/star/util/XURLTransformer.hpp>
|
|
|
|
|
2012-09-19 13:15:15 +02:00
|
|
|
#include <comphelper/processfactory.hxx>
|
2007-07-05 07:58:01 +00:00
|
|
|
#include <vcl/window.hxx>
|
|
|
|
#include <vcl/svapp.hxx>
|
|
|
|
#include <vcl/cmdevt.hxx>
|
2010-10-16 03:18:35 -05:00
|
|
|
#include <osl/mutex.hxx>
|
2007-07-05 07:58:01 +00:00
|
|
|
#include <toolkit/helper/vclunohelper.hxx>
|
|
|
|
|
|
|
|
namespace framework{
|
|
|
|
|
2013-05-21 17:38:02 +02:00
|
|
|
WindowCommandDispatch::WindowCommandDispatch(const css::uno::Reference< css::uno::XComponentContext >& xContext ,
|
2007-07-05 07:58:01 +00:00
|
|
|
const css::uno::Reference< css::frame::XFrame >& xFrame)
|
2014-03-20 11:20:57 +01:00
|
|
|
: m_xContext (xContext )
|
2007-07-05 07:58:01 +00:00
|
|
|
, m_xFrame (xFrame )
|
|
|
|
, m_xWindow (xFrame->getContainerWindow())
|
|
|
|
{
|
|
|
|
impl_startListening();
|
|
|
|
}
|
|
|
|
|
|
|
|
WindowCommandDispatch::~WindowCommandDispatch()
|
|
|
|
{
|
2011-02-02 13:12:46 +00:00
|
|
|
impl_stopListening();
|
2013-05-21 17:38:02 +02:00
|
|
|
m_xContext.clear();
|
2007-07-05 07:58:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void WindowCommandDispatch::impl_startListening()
|
|
|
|
{
|
2014-03-20 11:20:57 +01:00
|
|
|
osl::ClearableMutexGuard aReadLock(m_mutex);
|
2007-07-05 07:58:01 +00:00
|
|
|
css::uno::Reference< css::awt::XWindow > xWindow( m_xWindow.get(), css::uno::UNO_QUERY );
|
2014-03-20 11:20:57 +01:00
|
|
|
aReadLock.clear();
|
2007-07-05 07:58:01 +00:00
|
|
|
|
|
|
|
if ( ! xWindow.is())
|
|
|
|
return;
|
|
|
|
|
2010-10-14 22:09:00 -05:00
|
|
|
{
|
|
|
|
SolarMutexGuard aSolarLock;
|
2007-07-05 07:58:01 +00:00
|
|
|
|
2010-10-14 22:09:00 -05:00
|
|
|
Window* pWindow = VCLUnoHelper::GetWindow(xWindow);
|
|
|
|
if ( ! pWindow)
|
|
|
|
return;
|
2007-07-05 07:58:01 +00:00
|
|
|
|
2010-10-14 22:09:00 -05:00
|
|
|
pWindow->AddEventListener( LINK(this, WindowCommandDispatch, impl_notifyCommand) );
|
|
|
|
}
|
2007-07-05 07:58:01 +00:00
|
|
|
}
|
|
|
|
|
2011-02-02 13:12:46 +00:00
|
|
|
void WindowCommandDispatch::impl_stopListening()
|
|
|
|
{
|
2014-03-20 11:20:57 +01:00
|
|
|
osl::ClearableMutexGuard aReadLock(m_mutex);
|
2011-02-02 13:12:46 +00:00
|
|
|
css::uno::Reference< css::awt::XWindow > xWindow( m_xWindow.get(), css::uno::UNO_QUERY );
|
2014-03-20 11:20:57 +01:00
|
|
|
aReadLock.clear();
|
2011-02-02 13:12:46 +00:00
|
|
|
|
|
|
|
if (!xWindow.is())
|
|
|
|
return;
|
|
|
|
|
|
|
|
{
|
|
|
|
SolarMutexGuard aSolarLock;
|
|
|
|
|
|
|
|
Window* pWindow = VCLUnoHelper::GetWindow(xWindow);
|
|
|
|
if (!pWindow)
|
|
|
|
return;
|
|
|
|
|
|
|
|
pWindow->RemoveEventListener( LINK(this, WindowCommandDispatch, impl_notifyCommand) );
|
|
|
|
|
|
|
|
m_xWindow.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-05 07:58:01 +00:00
|
|
|
IMPL_LINK(WindowCommandDispatch, impl_notifyCommand, void*, pParam)
|
|
|
|
{
|
|
|
|
if ( ! pParam)
|
|
|
|
return 0L;
|
|
|
|
|
|
|
|
const VclWindowEvent* pEvent = (VclWindowEvent*)pParam;
|
2011-02-02 13:12:46 +00:00
|
|
|
if (pEvent->GetId() == VCLEVENT_OBJECT_DYING)
|
|
|
|
{
|
|
|
|
impl_stopListening();
|
|
|
|
return 0L;
|
|
|
|
}
|
2007-07-05 07:58:01 +00:00
|
|
|
if (pEvent->GetId() != VCLEVENT_WINDOW_COMMAND)
|
|
|
|
return 0L;
|
|
|
|
|
|
|
|
const CommandEvent* pCommand = (CommandEvent*)pEvent->GetData();
|
|
|
|
if (pCommand->GetCommand() != COMMAND_SHOWDIALOG)
|
|
|
|
return 0L;
|
|
|
|
|
|
|
|
const CommandDialogData* pData = pCommand->GetDialogData();
|
|
|
|
if ( ! pData)
|
|
|
|
return 0L;
|
|
|
|
|
|
|
|
const int nCommand = pData->GetDialogId();
|
2013-04-07 12:06:47 +02:00
|
|
|
OUString sCommand;
|
2007-07-05 07:58:01 +00:00
|
|
|
|
|
|
|
switch (nCommand)
|
|
|
|
{
|
|
|
|
case SHOWDIALOG_ID_PREFERENCES :
|
2013-11-04 11:42:58 +02:00
|
|
|
sCommand = ".uno:OptionsTreeDialog";
|
2007-07-05 07:58:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SHOWDIALOG_ID_ABOUT :
|
2013-11-04 11:42:58 +02:00
|
|
|
sCommand = ".uno:About";
|
2007-07-05 07:58:01 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
default :
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl_dispatchCommand(sCommand);
|
|
|
|
|
|
|
|
return 0L;
|
|
|
|
}
|
|
|
|
|
2013-04-07 12:06:47 +02:00
|
|
|
void WindowCommandDispatch::impl_dispatchCommand(const OUString& sCommand)
|
2007-07-05 07:58:01 +00:00
|
|
|
{
|
|
|
|
// ignore all errors here. It's clicking a menu entry only ...
|
|
|
|
// The user will try it again, in case nothing happens .-)
|
|
|
|
try
|
|
|
|
{
|
|
|
|
// SYNCHRONIZED ->
|
2014-03-20 11:20:57 +01:00
|
|
|
osl::ClearableMutexGuard aReadLock(m_mutex);
|
2007-07-05 07:58:01 +00:00
|
|
|
css::uno::Reference< css::frame::XDispatchProvider > xProvider(m_xFrame.get(), css::uno::UNO_QUERY_THROW);
|
2013-05-21 17:38:02 +02:00
|
|
|
css::uno::Reference< css::uno::XComponentContext > xContext = m_xContext;
|
2014-03-20 11:20:57 +01:00
|
|
|
aReadLock.clear();
|
2007-07-05 07:58:01 +00:00
|
|
|
// <- SYNCHRONIZED
|
|
|
|
|
|
|
|
// check provider ... we know it's weak reference only
|
|
|
|
if ( ! xProvider.is())
|
|
|
|
return;
|
|
|
|
|
2013-05-21 17:38:02 +02:00
|
|
|
css::uno::Reference< css::util::XURLTransformer > xParser(css::util::URLTransformer::create(xContext));
|
2007-07-05 07:58:01 +00:00
|
|
|
css::util::URL aCommand;
|
|
|
|
aCommand.Complete = sCommand;
|
|
|
|
xParser->parseStrict(aCommand);
|
|
|
|
|
|
|
|
css::uno::Reference< css::frame::XDispatch > xDispatch = xProvider->queryDispatch(aCommand, SPECIALTARGET_SELF, 0);
|
|
|
|
if (xDispatch.is())
|
|
|
|
xDispatch->dispatch(aCommand, css::uno::Sequence< css::beans::PropertyValue >());
|
|
|
|
}
|
|
|
|
catch(const css::uno::Exception&)
|
|
|
|
{}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace framework
|
2010-10-12 15:53:47 +02:00
|
|
|
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|