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 .
20 #ifndef INCLUDED_SW_SOURCE_UIBASE_INC_GLOSLST_HXX
21 #define INCLUDED_SW_SOURCE_UIBASE_INC_GLOSLST_HXX
23 #include <rtl/ustring.hxx>
24 #include <tools/datetime.hxx>
25 #include <vcl/timer.hxx>
36 OUString sLongNames
; // by 0x0A separated long names
37 OUString sShortNames
; // by 0x0A separated short names
38 DateTime aDateModified
;
42 , aDateModified(DateTime::EMPTY
)
47 class SwGlossaryList
: public AutoTimer
49 std::vector
<std::unique_ptr
<AutoTextGroup
>> aGroupArr
;
53 AutoTextGroup
* FindGroup(const OUString
& rGroupName
);
54 static void FillGroup(AutoTextGroup
* pGroup
, SwGlossaries
* pGloss
);
58 virtual ~SwGlossaryList() override
;
60 void HasLongName(const std::vector
<OUString
>& rBeginCandidates
,
61 std::vector
<std::pair
<OUString
, sal_uInt16
>>& rLongNames
);
62 bool GetShortName(const OUString
& rLongName
,
63 OUString
& rShortName
, OUString
& rGroupName
);
65 size_t GetGroupCount();
66 OUString
GetGroupName(size_t nPos
);
67 OUString
GetGroupTitle(size_t nPos
);
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
);
75 virtual void Invoke() override
;
82 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */