1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
21 #include <com/sun/star/linguistic2/XDictionary.hpp>
22 #include <com/sun/star/linguistic2/XSpellAlternatives.hpp>
23 #include <com/sun/star/linguistic2/ProofreadingResult.hpp>
24 #include <com/sun/star/uno/Sequence.h>
26 #include <rtl/ustring.hxx>
27 #include <toolkit/awt/vclxmenu.hxx>
28 #include <vcl/builder.hxx>
29 #include <vcl/menu.hxx>
36 //! Don't change these values. You may break context menu modifying extensions!
37 #define MN_IGNORE_SELECTION 201
38 #define MN_SHORT_COMMENT 208
39 #define MN_EXPLANATION_LINK 209
41 // id range for dictionaries sub menu
42 #define MN_DICTIONARIES_START 300
43 #define MN_DICTIONARIES_END (MN_DICTIONARIES_START + 99)
45 // id range for suggestions from spell and grammar checker
46 #define MN_SUGGESTION_START 500
47 #define MN_SUGGESTION_END (MN_SUGGESTION_START + MN_MAX_NUM_LANG)
49 // id range for auto correction sub menu entries
50 #define MN_AUTOCORR_START 700
51 #define MN_AUTOCORR_END (MN_AUTOCORR_START + MN_MAX_NUM_LANG)
53 // max number of language entries sub menus
54 #define MN_MAX_NUM_LANG 99
56 #define MN_NONE_OFFSET (MN_MAX_NUM_LANG + 1)
57 #define MN_RESET_OFFSET (MN_MAX_NUM_LANG + 2)
58 #define MN_MORE_OFFSET (MN_MAX_NUM_LANG + 3)
60 // id range for 'set language for selection' sub menu entries
61 #define MN_SET_LANGUAGE_SELECTION_START 900
62 #define MN_SET_LANGUAGE_SELECTION_END (MN_SET_LANGUAGE_SELECTION_START + MN_MAX_NUM_LANG)
63 #define MN_SET_SELECTION_NONE (MN_SET_LANGUAGE_SELECTION_START + MN_NONE_OFFSET)
64 #define MN_SET_SELECTION_RESET (MN_SET_LANGUAGE_SELECTION_START + MN_RESET_OFFSET)
65 #define MN_SET_SELECTION_MORE (MN_SET_LANGUAGE_SELECTION_START + MN_MORE_OFFSET)
67 // id range for 'set language for paragraph' sub menu entries
68 #define MN_SET_LANGUAGE_PARAGRAPH_START 1100
69 #define MN_SET_LANGUAGE_PARAGRAPH_END (MN_SET_LANGUAGE_PARAGRAPH_START + MN_MAX_NUM_LANG)
70 #define MN_SET_PARA_NONE (MN_SET_LANGUAGE_PARAGRAPH_START + MN_NONE_OFFSET)
71 #define MN_SET_PARA_RESET (MN_SET_LANGUAGE_PARAGRAPH_START + MN_RESET_OFFSET)
72 #define MN_SET_PARA_MORE (MN_SET_LANGUAGE_PARAGRAPH_START + MN_MORE_OFFSET)
76 class SW_DLLPUBLIC SwSpellPopup
78 VclBuilder m_aBuilder
;
79 VclPtr
<PopupMenu
> m_xPopupMenu
;
80 sal_uInt16 m_nIgnoreWordId
;
81 sal_uInt16 m_nAddMenuId
;
83 sal_uInt16 m_nSpellDialogId
;
84 sal_uInt16 m_nCorrectMenuId
;
85 sal_uInt16 m_nCorrectDialogId
;
86 sal_uInt16 m_nLangSelectionMenuId
;
87 sal_uInt16 m_nLangParaMenuId
;
88 sal_uInt16 m_nRedlineAcceptId
;
89 sal_uInt16 m_nRedlineRejectId
;
90 sal_uInt16 m_nRedlineNextId
;
91 sal_uInt16 m_nRedlinePrevId
;
93 css::uno::Sequence
< css::uno::Reference
< css::linguistic2::XDictionary
> > m_aDics
;
94 css::uno::Reference
< css::linguistic2::XSpellAlternatives
> m_xSpellAlt
;
96 OUString m_sExplanationLink
;
98 LanguageType m_nCheckedLanguage
;
100 std::map
< sal_Int16
, OUString
> m_aLangTable_Text
;
101 std::map
< sal_Int16
, OUString
> m_aLangTable_Paragraph
;
103 OUString m_aDicNameSingle
;
104 bool m_bGrammarResults
; // show grammar results? Or show spellcheck results?
106 static void fillLangPopupMenu( PopupMenu
*pPopupMenu
, sal_uInt16 nLangStart
,
107 const css::uno::Sequence
< OUString
>& aSeq
, SwWrtShell
* pWrtSh
,
108 std::map
< sal_Int16
, OUString
> &rLangTable
);
110 /// Checks if any of the redline menu items should be hidden.
114 SwSpellPopup( SwWrtShell
*pWrtSh
,
115 css::uno::Reference
< css::linguistic2::XSpellAlternatives
> xAlt
,
116 const OUString
& rParaText
);
118 SwSpellPopup( SwWrtShell
*pWrtSh
,
119 const css::linguistic2::ProofreadingResult
&rResult
,
120 sal_Int32 nErrorInResult
,
121 const css::uno::Sequence
< OUString
> &rSuggestions
,
122 const OUString
& rParaText
);
126 void InitItemCommands(const css::uno::Sequence
< OUString
>& aSuggestions
);
130 return *m_xPopupMenu
;
133 rtl::Reference
<VCLXPopupMenu
> CreateMenuInterface() { return new VCLXPopupMenu(m_xPopupMenu
); }
135 void Execute( const tools::Rectangle
& rPopupPos
, vcl::Window
* pWin
);
136 void Execute( sal_uInt16 nId
);
139 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */