LibreOffice Module sw (master) 1
acmplwrd.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
20#ifndef INCLUDED_SW_INC_ACMPLWRD_HXX
21#define INCLUDED_SW_INC_ACMPLWRD_HXX
22
23#include <deque>
24#include <memory>
25
26#include <editeng/swafopt.hxx>
27#include <editeng/Trie.hxx>
28#include <rtl/ustring.hxx>
29
30class SwDoc;
33
34typedef std::deque<SwAutoCompleteString*> SwAutoCompleteStringPtrDeque;
35
37{
39
44
45 std::unique_ptr<SwAutoCompleteWord_Impl> m_pImpl;
46 editeng::SortedAutoCompleteStrings::size_type m_nMaxCount;
47 sal_uInt16 m_nMinWordLen;
49
50 void DocumentDying(const SwDoc& rDoc);
51public:
53 editeng::SortedAutoCompleteStrings::size_type nWords,
54 sal_uInt16 nMWrdLen );
56
57 bool InsertWord( const OUString& rWord, SwDoc& rDoc );
58
59 bool IsLockWordLstLocked() const { return m_bLockWordList; }
60 void SetLockWordLstLocked( bool bFlag ) { m_bLockWordList = bFlag; }
61
62 void SetMaxCount( editeng::SortedAutoCompleteStrings::size_type n );
63
64 sal_uInt16 GetMinWordLen() const { return m_nMinWordLen; }
65 void SetMinWordLen( sal_uInt16 n );
66
68 { return m_WordList; }
69
71
72 // Returns all words matching a given prefix aMatch.
73 bool GetWordsMatching(std::u16string_view aMatch, std::vector<OUString>& aWords) const;
74};
75
76#endif
77
78/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
std::deque< SwAutoCompleteString * > SwAutoCompleteStringPtrDeque
Definition: acmplwrd.hxx:32
editeng::SortedAutoCompleteStrings::size_type m_nMaxCount
Definition: acmplwrd.hxx:46
void SetMinWordLen(sal_uInt16 n)
Definition: acmplwrd.cxx:324
SwAutoCompleteWord(editeng::SortedAutoCompleteStrings::size_type nWords, sal_uInt16 nMWrdLen)
Definition: acmplwrd.cxx:219
void SetMaxCount(editeng::SortedAutoCompleteStrings::size_type n)
Definition: acmplwrd.cxx:304
void CheckChangedList(const editeng::SortedAutoCompleteStrings &rNewLst)
Definition: acmplwrd.cxx:359
editeng::SortedAutoCompleteStrings m_WordList
contains extended strings carrying source information
Definition: acmplwrd.hxx:41
bool InsertWord(const OUString &rWord, SwDoc &rDoc)
Definition: acmplwrd.cxx:238
editeng::Trie m_LookupTree
Definition: acmplwrd.hxx:42
bool GetWordsMatching(std::u16string_view aMatch, std::vector< OUString > &aWords) const
Return all words matching a given prefix.
Definition: acmplwrd.cxx:352
std::unique_ptr< SwAutoCompleteWord_Impl > m_pImpl
Definition: acmplwrd.hxx:45
void DocumentDying(const SwDoc &rDoc)
Definition: acmplwrd.cxx:400
SwAutoCompleteStringPtrDeque m_aLRUList
Definition: acmplwrd.hxx:43
bool IsLockWordLstLocked() const
Definition: acmplwrd.hxx:59
sal_uInt16 m_nMinWordLen
Definition: acmplwrd.hxx:47
const editeng::SortedAutoCompleteStrings & GetWordList() const
Definition: acmplwrd.hxx:67
void SetLockWordLstLocked(bool bFlag)
Definition: acmplwrd.hxx:60
sal_uInt16 GetMinWordLen() const
Definition: acmplwrd.hxx:64
Definition: doc.hxx:197