/src/libreoffice/sw/inc/acmplwrd.hxx
Line | Count | Source |
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 | | #pragma once |
21 | | |
22 | | #include <deque> |
23 | | #include <memory> |
24 | | |
25 | | #include <editeng/swafopt.hxx> |
26 | | #include <editeng/Trie.hxx> |
27 | | #include <rtl/ustring.hxx> |
28 | | |
29 | | class SwDoc; |
30 | | class SwAutoCompleteWord_Impl; |
31 | | class SwAutoCompleteString; |
32 | | |
33 | | typedef std::deque<SwAutoCompleteString*> SwAutoCompleteStringPtrDeque; |
34 | | |
35 | | class SwAutoCompleteWord |
36 | | { |
37 | | friend class SwAutoCompleteClient; |
38 | | |
39 | | /// contains extended strings carrying source information |
40 | | editeng::SortedAutoCompleteStrings m_WordList; |
41 | | editeng::Trie m_LookupTree; |
42 | | SwAutoCompleteStringPtrDeque m_aLRUList; |
43 | | |
44 | | std::unique_ptr<SwAutoCompleteWord_Impl> m_pImpl; |
45 | | editeng::SortedAutoCompleteStrings::size_type m_nMaxCount; |
46 | | sal_uInt16 m_nMinWordLen; |
47 | | bool m_bLockWordList; |
48 | | |
49 | | void DocumentDying(const SwDoc& rDoc); |
50 | | public: |
51 | | SwAutoCompleteWord( |
52 | | editeng::SortedAutoCompleteStrings::size_type nWords, |
53 | | sal_uInt16 nMWrdLen ); |
54 | | ~SwAutoCompleteWord(); |
55 | | |
56 | | bool InsertWord( const OUString& rWord, SwDoc& rDoc ); |
57 | | |
58 | 0 | bool IsLockWordLstLocked() const { return m_bLockWordList; } |
59 | 0 | void SetLockWordLstLocked( bool bFlag ) { m_bLockWordList = bFlag; } |
60 | | |
61 | | void SetMaxCount( editeng::SortedAutoCompleteStrings::size_type n ); |
62 | | |
63 | 0 | sal_uInt16 GetMinWordLen() const { return m_nMinWordLen; } |
64 | | void SetMinWordLen( sal_uInt16 n ); |
65 | | |
66 | | const editeng::SortedAutoCompleteStrings& GetWordList() const |
67 | 0 | { return m_WordList; } |
68 | | |
69 | | void CheckChangedList(const editeng::SortedAutoCompleteStrings& rNewLst); |
70 | | |
71 | | // Returns all words matching a given prefix aMatch. |
72 | | bool GetWordsMatching(std::u16string_view aMatch, std::vector<OUString>& aWords) const; |
73 | | }; |
74 | | |
75 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |