Line data Source code
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_UI_INC_GLOSLST_HXX
21 : #define INCLUDED_SW_SOURCE_UI_INC_GLOSLST_HXX
22 :
23 : #include <rtl/ustring.hxx>
24 : #include <tools/datetime.hxx>
25 : #include <vcl/timer.hxx>
26 :
27 : class SwGlossaries;
28 : class vector;
29 :
30 0 : struct AutoTextGroup
31 : {
32 : sal_uInt16 nCount;
33 : OUString sName;
34 : OUString sTitle;
35 : OUString sLongNames; // by 0x0A separated long names
36 : OUString sShortNames; // by 0x0A separated short names
37 : DateTime aDateModified;
38 :
39 0 : AutoTextGroup()
40 : : nCount(0)
41 0 : , aDateModified(DateTime::EMPTY)
42 : {
43 0 : }
44 : };
45 :
46 : typedef std::vector<AutoTextGroup*> AutoTextGroups;
47 :
48 : class SwGlossaryList : public AutoTimer
49 : {
50 : AutoTextGroups aGroupArr;
51 : OUString sPath;
52 : bool bFilled;
53 :
54 : AutoTextGroup* FindGroup(const OUString& rGroupName);
55 : void FillGroup(AutoTextGroup* pGroup, SwGlossaries* pGloss);
56 :
57 : public:
58 : SwGlossaryList();
59 : virtual ~SwGlossaryList();
60 :
61 : bool HasLongName(const OUString& rBegin, std::vector<OUString> *pLongNames);
62 : sal_Bool GetShortName(const OUString& rLongName,
63 : OUString& rShortName, OUString& rGroupName );
64 :
65 : sal_uInt16 GetGroupCount();
66 : OUString GetGroupName(sal_uInt16 nPos, bool bNoPath = true);
67 : OUString GetGroupTitle(sal_uInt16 nPos);
68 :
69 : sal_uInt16 GetBlockCount(sal_uInt16 nGroup);
70 : OUString GetBlockLongName(sal_uInt16 nGroup, sal_uInt16 nBlock);
71 : OUString GetBlockShortName(sal_uInt16 nGroup, sal_uInt16 nBlock);
72 :
73 : void Update();
74 :
75 : virtual void Timeout() SAL_OVERRIDE;
76 :
77 : void ClearGroups();
78 : };
79 :
80 : #endif
81 :
82 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|