LibreOffice Module sw (master) 1
gloslst.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_SOURCE_UIBASE_INC_GLOSLST_HXX
21#define INCLUDED_SW_SOURCE_UIBASE_INC_GLOSLST_HXX
22
23#include <rtl/ustring.hxx>
24#include <tools/datetime.hxx>
25#include <vcl/timer.hxx>
26
27#include <vector>
28
29class SwGlossaries;
30
32{
33 sal_uInt16 nCount;
34 OUString sName;
35 OUString sTitle;
36 OUString sLongNames; // by 0x0A separated long names
37 OUString sShortNames; // by 0x0A separated short names
39
41 : nCount(0)
43 {
44 }
45};
46
47class SwGlossaryList final : public AutoTimer
48{
49 std::vector<std::unique_ptr<AutoTextGroup>> m_aGroupArr;
50 OUString m_sPath;
52
53 AutoTextGroup* FindGroup(std::u16string_view rGroupName);
54 static void FillGroup(AutoTextGroup* pGroup, SwGlossaries* pGloss);
55
56public:
58 virtual ~SwGlossaryList() override;
59
60 void HasLongName(const std::vector<OUString>& rBeginCandidates,
61 std::vector<std::pair<OUString, sal_uInt16>>& rLongNames);
62 bool GetShortName(std::u16string_view rLongName,
63 OUString& rShortName, OUString& rGroupName );
64
65 size_t GetGroupCount();
66 OUString GetGroupName(size_t nPos);
67 OUString GetGroupTitle(size_t nPos);
68
69 sal_uInt16 GetBlockCount(size_t nGroup);
70 OUString GetBlockLongName(size_t nGroup, sal_uInt16 nBlock);
71 OUString GetBlockShortName(size_t nGroup, sal_uInt16 nBlock);
72
73 void Update();
74
75 virtual void Invoke() override;
76
77 void ClearGroups();
78};
79
80#endif
81
82/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
OUString GetBlockShortName(size_t nGroup, sal_uInt16 nBlock)
Definition: gloslst.cxx:223
OUString GetGroupName(size_t nPos)
Definition: gloslst.cxx:178
size_t GetGroupCount()
Definition: gloslst.cxx:171
void ClearGroups()
Definition: gloslst.cxx:439
virtual void Invoke() override
Definition: gloslst.cxx:336
virtual ~SwGlossaryList() override
Definition: gloslst.cxx:96
std::vector< std::unique_ptr< AutoTextGroup > > m_aGroupArr
Definition: gloslst.hxx:49
void Update()
Definition: gloslst.cxx:234
bool m_bFilled
Definition: gloslst.hxx:51
static void FillGroup(AutoTextGroup *pGroup, SwGlossaries *pGloss)
Definition: gloslst.cxx:353
void HasLongName(const std::vector< OUString > &rBeginCandidates, std::vector< std::pair< OUString, sal_uInt16 > > &rLongNames)
Definition: gloslst.cxx:374
OUString GetBlockLongName(size_t nGroup, sal_uInt16 nBlock)
Definition: gloslst.cxx:212
AutoTextGroup * FindGroup(std::u16string_view rGroupName)
Definition: gloslst.cxx:343
OUString GetGroupTitle(size_t nPos)
Definition: gloslst.cxx:190
OUString m_sPath
Definition: gloslst.hxx:50
bool GetShortName(std::u16string_view rLongName, OUString &rShortName, OUString &rGroupName)
Definition: gloslst.cxx:105
sal_uInt16 GetBlockCount(size_t nGroup)
Definition: gloslst.cxx:201
constexpr OUStringLiteral EMPTY
OUString sLongNames
Definition: gloslst.hxx:36
OUString sTitle
Definition: gloslst.hxx:35
sal_uInt16 nCount
Definition: gloslst.hxx:33
OUString sShortNames
Definition: gloslst.hxx:37
DateTime aDateModified
Definition: gloslst.hxx:38
OUString sName
Definition: gloslst.hxx:34