summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-01-09 13:33:27 +0100
committerMatúš Kukan <matus.kukan@collabora.com>2014-01-10 10:17:31 +0100
commitf091c0b77b7988d26bc2ea0a038ba6c094acc5bb (patch)
tree878d13a38e4e02dbf0338c68300cb5e54c12cf9b
parent8038d6a4bfbf9d9f4bb8b266cdbd5b4f1fe5daa7 (diff)
fwk: Use constructor feature for LangSelectionStatusbarController.
Change-Id: If7ce3d27f1cec8e55b65fc2d8c749f2e8bb33768
-rw-r--r--framework/inc/uielement/langselectionstatusbarcontroller.hxx83
-rw-r--r--framework/source/register/registerservices.cxx2
-rw-r--r--framework/source/uielement/langselectionstatusbarcontroller.cxx93
-rw-r--r--framework/util/fwk.component3
4 files changed, 77 insertions, 104 deletions
diff --git a/framework/inc/uielement/langselectionstatusbarcontroller.hxx b/framework/inc/uielement/langselectionstatusbarcontroller.hxx
deleted file mode 100644
index 659396ec0aaa..000000000000
--- a/framework/inc/uielement/langselectionstatusbarcontroller.hxx
+++ /dev/null
@@ -1,83 +0,0 @@
-/* -*- 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 .
- */
-
-#ifndef INCLUDED_FRAMEWORK_INC_UIELEMENT_LANGSELECTIONSTATUSBARCONTROLLER_HXX
-#define INCLUDED_FRAMEWORK_INC_UIELEMENT_LANGSELECTIONSTATUSBARCONTROLLER_HXX
-
-#include <macros/generic.hxx>
-#include <macros/xinterface.hxx>
-#include <macros/xtypeprovider.hxx>
-#include <macros/xserviceinfo.hxx>
-#include <stdtypes.h>
-#include <com/sun/star/linguistic2/XLanguageGuessing.hpp>
-#include <svtools/statusbarcontroller.hxx>
-#include <rtl/ustring.hxx>
-
-#include "helper/mischelper.hxx"
-
-#include <set>
-
-class SvtLanguageTable;
-
-
-// component helper namespace
-namespace framework {
-
-class LangSelectionStatusbarController : public svt::StatusbarController
-{
- public:
- explicit LangSelectionStatusbarController( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext );
-
- // XServiceInfo
- DECLARE_XSERVICEINFO
-
- // XInitialization
- virtual void SAL_CALL initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments ) throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException);
-
- // XStatusListener
- virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException );
-
- // XStatusbarController
- virtual void SAL_CALL command( const ::com::sun::star::awt::Point& aPos,
- ::sal_Int32 nCommand,
- ::sal_Bool bMouseEvent,
- const ::com::sun::star::uno::Any& aData ) throw (::com::sun::star::uno::RuntimeException);
- virtual void SAL_CALL click( const ::com::sun::star::awt::Point& aPos ) throw (::com::sun::star::uno::RuntimeException);
-
- private:
- virtual ~LangSelectionStatusbarController() {}
- LangSelectionStatusbarController(LangSelectionStatusbarController &); // not defined
- void operator =(LangSelectionStatusbarController &); // not defined
-
-
- sal_Bool m_bShowMenu; // if the menu is to be displayed or not (depending on the selected object/text)
- sal_Int16 m_nScriptType; // the flags for the different script types available in the selection, LATIN = 0x0001, ASIAN = 0x0002, COMPLEX = 0x0004
- OUString m_aCurLang; // the language of the current selection, "*" if there are more than one languages
- OUString m_aKeyboardLang; // the keyboard language
- OUString m_aGuessedTextLang; // the 'guessed' language for the selection, "" if none could be guessed
- LanguageGuessingHelper m_aLangGuessHelper;
-
- void LangMenu( const ::com::sun::star::awt::Point& aPos ) throw (::com::sun::star::uno::RuntimeException);
-};
-
-} // framework namespace
-
-#endif // INCLUDED_FRAMEWORK_INC_UIELEMENT_LANGSELECTIONSTATUSBARCONTROLLER_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/framework/source/register/registerservices.cxx b/framework/source/register/registerservices.cxx
index 585d14a970f0..c99847383658 100644
--- a/framework/source/register/registerservices.cxx
+++ b/framework/source/register/registerservices.cxx
@@ -61,7 +61,6 @@
#include <services/sessionlistener.hxx>
#include <services/taskcreatorsrv.hxx>
-#include <uielement/langselectionstatusbarcontroller.hxx>
#include <uiconfiguration/imagemanager.hxx>
#include <uifactory/windowcontentfactorymanager.hxx>
#include <services/substitutepathvars.hxx>
@@ -100,7 +99,6 @@ COMPONENTGETFACTORY ( fwk,
IFFACTORY( ::framework::SessionListener ) else
IFFACTORY( ::framework::TaskCreatorService ) else
IFFACTORY( ::framework::ImageManager ) else
- IFFACTORY( ::framework::LangSelectionStatusbarController ) else
IFFACTORY( ::framework::WindowContentFactoryManager ) else
IFFACTORY( ::framework::SubstitutePathVariables ) else
IFFACTORY( ::framework::PathSettings ) else
diff --git a/framework/source/uielement/langselectionstatusbarcontroller.cxx b/framework/source/uielement/langselectionstatusbarcontroller.cxx
index 5a1fe2524442..fd1023cc42f9 100644
--- a/framework/source/uielement/langselectionstatusbarcontroller.cxx
+++ b/framework/source/uielement/langselectionstatusbarcontroller.cxx
@@ -18,7 +18,6 @@
*/
-#include <uielement/langselectionstatusbarcontroller.hxx>
#include <classes/fwkresid.hxx>
#include <services.h>
#include <classes/resource.hrc>
@@ -33,6 +32,7 @@
#include <com/sun/star/awt/PopupMenu.hpp>
#include <com/sun/star/awt/PopupMenuDirection.hpp>
#include <svtools/langtab.hxx>
+#include <svtools/statusbarcontroller.hxx>
#include "sal/types.h"
#include <com/sun/star/awt/MenuItemStyle.hpp>
#include <com/sun/star/document/XDocumentLanguages.hpp>
@@ -49,28 +49,70 @@
#include <tools/gen.hxx>
#include <com/sun/star/awt/Command.hpp>
#include <svl/languageoptions.hxx>
-#include <com/sun/star/linguistic2/XLanguageGuessing.hpp>
#include "helper/mischelper.hxx"
#include <rtl/ustrbuf.hxx>
+#include <rtl/ref.hxx>
+
+#include <macros/generic.hxx>
+#include <macros/xinterface.hxx>
+#include <macros/xtypeprovider.hxx>
+#include <macros/xserviceinfo.hxx>
+#include <stdtypes.h>
#include <map>
#include <set>
using namespace ::cppu;
using namespace ::com::sun::star;
-using namespace ::com::sun::star::uno;
-using namespace ::com::sun::star::lang;
-using namespace ::com::sun::star::frame;
-using namespace ::com::sun::star::i18n;
-using namespace ::com::sun::star::document;
+using namespace css::uno;
+using namespace css::lang;
+using namespace css::frame;
+using namespace css::i18n;
+using namespace css::document;
+using namespace framework;
-using ::rtl::OUStringBuffer;
+class SvtLanguageTable;
+namespace {
-namespace framework
+class LangSelectionStatusbarController : public svt::StatusbarController
{
+ public:
+ explicit LangSelectionStatusbarController( const css::uno::Reference< css::uno::XComponentContext >& xContext );
+
+ // XServiceInfo
+ DECLARE_XSERVICEINFO
+
+ // XInitialization
+ virtual void SAL_CALL initialize( const css::uno::Sequence< css::uno::Any >& aArguments ) throw (css::uno::Exception, css::uno::RuntimeException);
+
+ // XStatusListener
+ virtual void SAL_CALL statusChanged( const css::frame::FeatureStateEvent& Event ) throw ( css::uno::RuntimeException );
+
+ // XStatusbarController
+ virtual void SAL_CALL command( const css::awt::Point& aPos,
+ ::sal_Int32 nCommand,
+ ::sal_Bool bMouseEvent,
+ const css::uno::Any& aData ) throw (css::uno::RuntimeException);
+ virtual void SAL_CALL click( const css::awt::Point& aPos ) throw (css::uno::RuntimeException);
+
+ private:
+ virtual ~LangSelectionStatusbarController() {}
+ LangSelectionStatusbarController(LangSelectionStatusbarController &); // not defined
+ void operator =(LangSelectionStatusbarController &); // not defined
+
+
+ sal_Bool m_bShowMenu; // if the menu is to be displayed or not (depending on the selected object/text)
+ sal_Int16 m_nScriptType; // the flags for the different script types available in the selection, LATIN = 0x0001, ASIAN = 0x0002, COMPLEX = 0x0004
+ OUString m_aCurLang; // the language of the current selection, "*" if there are more than one languages
+ OUString m_aKeyboardLang; // the keyboard language
+ OUString m_aGuessedTextLang; // the 'guessed' language for the selection, "" if none could be guessed
+ LanguageGuessingHelper m_aLangGuessHelper;
+
+ void LangMenu( const css::awt::Point& aPos ) throw (css::uno::RuntimeException);
+};
DEFINE_XSERVICEINFO_MULTISERVICE_2 ( LangSelectionStatusbarController ,
OWeakObject ,
@@ -88,8 +130,8 @@ LangSelectionStatusbarController::LangSelectionStatusbarController( const uno::R
{
}
-void SAL_CALL LangSelectionStatusbarController::initialize( const ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Any >& aArguments )
-throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException)
+void SAL_CALL LangSelectionStatusbarController::initialize( const css::uno::Sequence< css::uno::Any >& aArguments )
+throw (css::uno::Exception, css::uno::RuntimeException)
{
SolarMutexGuard aSolarMutexGuard;
@@ -102,8 +144,8 @@ throw (::com::sun::star::uno::Exception, ::com::sun::star::uno::RuntimeException
}
void LangSelectionStatusbarController::LangMenu(
- const ::com::sun::star::awt::Point& aPos )
-throw (::com::sun::star::uno::RuntimeException)
+ const css::awt::Point& aPos )
+throw (css::uno::RuntimeException)
{
if (!m_bShowMenu)
return;
@@ -237,11 +279,11 @@ throw (::com::sun::star::uno::RuntimeException)
}
void SAL_CALL LangSelectionStatusbarController::command(
- const ::com::sun::star::awt::Point& aPos,
+ const css::awt::Point& aPos,
::sal_Int32 nCommand,
::sal_Bool /*bMouseEvent*/,
- const ::com::sun::star::uno::Any& /*aData*/ )
-throw (::com::sun::star::uno::RuntimeException)
+ const css::uno::Any& /*aData*/ )
+throw (css::uno::RuntimeException)
{
if ( nCommand & ::awt::Command::CONTEXTMENU )
{
@@ -250,8 +292,8 @@ throw (::com::sun::star::uno::RuntimeException)
}
void SAL_CALL LangSelectionStatusbarController::click(
- const ::com::sun::star::awt::Point& aPos )
-throw (::com::sun::star::uno::RuntimeException)
+ const css::awt::Point& aPos )
+throw (css::uno::RuntimeException)
{
LangMenu( aPos );
}
@@ -311,4 +353,19 @@ throw ( RuntimeException )
}
+extern "C" SAL_DLLPUBLIC_EXPORT css::uno::XInterface * SAL_CALL
+com_sun_star_comp_framework_LangSelectionStatusbarController_get_implementation(
+ css::uno::XComponentContext * context,
+ uno_Sequence * arguments)
+{
+ assert(arguments != 0);
+ rtl::Reference<LangSelectionStatusbarController> x(new LangSelectionStatusbarController(context));
+ css::uno::Sequence<css::uno::Any> aArgs(
+ reinterpret_cast<css::uno::Any *>(arguments->elements),
+ arguments->nElements);
+ x->initialize(aArgs);
+ x->acquire();
+ return static_cast<cppu::OWeakObject *>(x.get());
+}
+
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/framework/util/fwk.component b/framework/util/fwk.component
index fc1401022643..d5d250d7100b 100644
--- a/framework/util/fwk.component
+++ b/framework/util/fwk.component
@@ -54,7 +54,8 @@
<implementation name="com.sun.star.comp.framework.JobExecutor">
<service name="com.sun.star.task.JobExecutor"/>
</implementation>
- <implementation name="com.sun.star.comp.framework.LangSelectionStatusbarController">
+ <implementation name="com.sun.star.comp.framework.LangSelectionStatusbarController"
+ constructor="com_sun_star_comp_framework_LangSelectionStatusbarController_get_implementation">
<service name="com.sun.star.frame.StatusbarController"/>
</implementation>
<implementation name="com.sun.star.comp.framework.LayoutManager">