fix baseline build (old cairo) - 'cairo_rectangle_int_t' does not name a type
[LibreOffice.git] / framework / inc / uielement / langselectionmenucontroller.hxx
blob8a0f46b06a225f38fc4a97d04f9c7e75bc25662e
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_FRAMEWORK_INC_UIELEMENT_LANGSELECTIONMENUCONTROLLER_HXX
21 #define INCLUDED_FRAMEWORK_INC_UIELEMENT_LANGSELECTIONMENUCONTROLLER_HXX
23 #include <macros/xserviceinfo.hxx>
24 #include <stdtypes.h>
26 #include <com/sun/star/lang/XServiceInfo.hpp>
27 #include <com/sun/star/lang/XTypeProvider.hpp>
28 #include <com/sun/star/lang/XInitialization.hpp>
29 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
30 #include <com/sun/star/frame/XFrame.hpp>
31 #include <com/sun/star/frame/XDispatch.hpp>
32 #include <com/sun/star/frame/XStatusListener.hpp>
33 #include <com/sun/star/frame/XPopupMenuController.hpp>
34 #include <com/sun/star/linguistic2/XLanguageGuessing.hpp>
36 #include <svtools/popupmenucontrollerbase.hxx>
37 #include <toolkit/awt/vclxmenu.hxx>
38 #include <cppuhelper/weak.hxx>
39 #include <rtl/ustring.hxx>
41 #include "helper/mischelper.hxx"
43 namespace framework
45 class LanguageSelectionMenuController : public svt::PopupMenuControllerBase
47 using svt::PopupMenuControllerBase::disposing;
49 public:
50 LanguageSelectionMenuController( const ::com::sun::star::uno::Reference< ::com::sun::star::uno::XComponentContext >& xContext );
51 virtual ~LanguageSelectionMenuController();
53 // XServiceInfo
54 DECLARE_XSERVICEINFO
56 // XPopupMenuController
57 virtual void SAL_CALL updatePopupMenu() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
59 // XInitialization
60 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, std::exception) SAL_OVERRIDE;
62 // XStatusListener
63 virtual void SAL_CALL statusChanged( const ::com::sun::star::frame::FeatureStateEvent& Event ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
65 // XEventListener
66 virtual void SAL_CALL disposing( const com::sun::star::lang::EventObject& Source ) throw ( ::com::sun::star::uno::RuntimeException, std::exception ) SAL_OVERRIDE;
68 private:
69 virtual void impl_setPopupMenu() SAL_OVERRIDE;
70 virtual void impl_select(const ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >& _xDispatch,const ::com::sun::star::util::URL& aURL) SAL_OVERRIDE;
71 enum Mode
73 MODE_SetLanguageSelectionMenu,
74 MODE_SetLanguageParagraphMenu,
75 MODE_SetLanguageAllTextMenu
78 bool m_bShowMenu;
79 OUString m_aLangStatusCommandURL;
80 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xLanguageDispatch;
81 OUString m_aMenuCommandURL_Lang;
82 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xMenuDispatch_Lang;
83 OUString m_aMenuCommandURL_Font;
84 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xMenuDispatch_Font;
85 OUString m_aMenuCommandURL_CharDlgForParagraph;
86 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch > m_xMenuDispatch_CharDlgForParagraph;
87 OUString m_aCurLang;
88 SvtScriptType m_nScriptType;
89 OUString m_aKeyboardLang;
90 OUString m_aGuessedTextLang;
91 LanguageGuessingHelper m_aLangGuessHelper;
93 void fillPopupMenu( com::sun::star::uno::Reference< com::sun::star::awt::XPopupMenu >& rPopupMenu, const Mode rMode );
97 #endif // INCLUDED_FRAMEWORK_INC_UIELEMENT_LANGSELECTIONMENUCONTROLLER_HXX
99 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */