LibreOffice Module sw (master) 1
olmenu.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#pragma once
20
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>
25
26#include <rtl/ustring.hxx>
28#include <vcl/builder.hxx>
29#include <vcl/menu.hxx>
30
31#include <map>
32#include <vector>
33
34#include <swdllapi.h>
35
37#define MN_IGNORE_SELECTION 201
38#define MN_SHORT_COMMENT 208
39#define MN_EXPLANATION_LINK 209
40
41// id range for dictionaries sub menu
42#define MN_DICTIONARIES_START 300
43#define MN_DICTIONARIES_END (MN_DICTIONARIES_START + 99)
44
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)
48
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)
52
53// max number of language entries sub menus
54#define MN_MAX_NUM_LANG 99
55
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)
59
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)
66
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)
73
74class SwWrtShell;
75
77{
80 sal_uInt16 m_nIgnoreWordId;
81 sal_uInt16 m_nAddMenuId;
82 sal_uInt16 m_nAddId;
83 sal_uInt16 m_nSpellDialogId;
84 sal_uInt16 m_nCorrectMenuId;
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;
95
97
99
100 std::map< sal_Int16, OUString > m_aLangTable_Text;
101 std::map< sal_Int16, OUString > m_aLangTable_Paragraph;
102
104 bool m_bGrammarResults; // show grammar results? Or show spellcheck results?
105
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 );
109
111 void checkRedline();
112
113public:
115 css::uno::Reference< css::linguistic2::XSpellAlternatives > xAlt,
116 const OUString & rParaText );
117
119 const css::linguistic2::ProofreadingResult &rResult,
120 sal_Int32 nErrorInResult,
121 const css::uno::Sequence< OUString > &rSuggestions,
122 const OUString & rParaText );
123
125
126 void InitItemCommands(const css::uno::Sequence< OUString >& aSuggestions);
127
129 {
130 return *m_xPopupMenu;
131 }
132
134
135 void Execute( const tools::Rectangle& rPopupPos, vcl::Window* pWin );
136 void Execute( sal_uInt16 nId );
137};
138
139/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
LanguageType m_nCheckedLanguage
Definition: olmenu.hxx:98
sal_uInt16 m_nCorrectDialogId
Definition: olmenu.hxx:85
SwWrtShell * m_pSh
Definition: olmenu.hxx:92
VclBuilder m_aBuilder
Definition: olmenu.hxx:78
OUString m_aDicNameSingle
Definition: olmenu.hxx:103
sal_uInt16 m_nLangSelectionMenuId
Definition: olmenu.hxx:86
sal_uInt16 m_nSpellDialogId
Definition: olmenu.hxx:83
css::uno::Reference< css::linguistic2::XSpellAlternatives > m_xSpellAlt
Definition: olmenu.hxx:94
sal_uInt16 m_nRedlinePrevId
Definition: olmenu.hxx:91
SwSpellPopup(SwWrtShell *pWrtSh, const css::linguistic2::ProofreadingResult &rResult, sal_Int32 nErrorInResult, const css::uno::Sequence< OUString > &rSuggestions, const OUString &rParaText)
sal_uInt16 m_nRedlineNextId
Definition: olmenu.hxx:90
SwSpellPopup(SwWrtShell *pWrtSh, css::uno::Reference< css::linguistic2::XSpellAlternatives > xAlt, const OUString &rParaText)
bool m_bGrammarResults
Definition: olmenu.hxx:104
css::uno::Sequence< css::uno::Reference< css::linguistic2::XDictionary > > m_aDics
Definition: olmenu.hxx:93
PopupMenu & GetMenu()
Definition: olmenu.hxx:128
sal_uInt16 m_nCorrectMenuId
Definition: olmenu.hxx:84
rtl::Reference< VCLXPopupMenu > CreateMenuInterface()
Definition: olmenu.hxx:133
sal_uInt16 m_nAddMenuId
Definition: olmenu.hxx:81
std::map< sal_Int16, OUString > m_aLangTable_Text
Definition: olmenu.hxx:100
VclPtr< PopupMenu > m_xPopupMenu
Definition: olmenu.hxx:79
OUString m_sExplanationLink
Definition: olmenu.hxx:96
sal_uInt16 m_nLangParaMenuId
Definition: olmenu.hxx:87
std::map< sal_Int16, OUString > m_aLangTable_Paragraph
Definition: olmenu.hxx:101
sal_uInt16 m_nAddId
Definition: olmenu.hxx:82
sal_uInt16 m_nIgnoreWordId
Definition: olmenu.hxx:80
sal_uInt16 m_nRedlineRejectId
Definition: olmenu.hxx:89
sal_uInt16 m_nRedlineAcceptId
Definition: olmenu.hxx:88
Used by the UI to modify the document model.
Definition: wrtsh.hxx:97
const ::avmedia::MediaItem * Execute(const SdrMarkView *pSdrView, SfxRequest const &rReq)
#define SW_DLLPUBLIC
Definition: swdllapi.h:28