summaryrefslogtreecommitdiff
path: root/include/vcl/IconThemeScanner.hxx
blob: 028173e9de59b74302024dcf3adbd491dd37bae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * This file is part of the LibreOffice project.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */

#ifndef INCLUDED_VCL_ICONTHEMESCANNER_HXX
#define INCLUDED_VCL_ICONTHEMESCANNER_HXX

#include <vcl/dllapi.h>
#include <tools/solar.h>

#include <rtl/ustring.hxx>

#include <memory>
#include <vector>

// forward declaration of unit test class. Required for friend relationship.
class IconThemeScannerTest;

namespace osl {
class Directory;
class DirectoryItem;
}

namespace vcl {
class IconThemeInfo;

/** This class scans a folder for icon themes and provides the results.
 */
class VCL_DLLPUBLIC IconThemeScanner
{
public:
    ~IconThemeScanner();

    /** Factory method to create the object.
     * Provide a path to search for IconThemes.
     */
    static std::shared_ptr<IconThemeScanner> Create(const OUString &path);

    /** This method will return the standard path where icon themes are located.
     */
    static OUString
    GetStandardIconThemePath();

    const std::vector<IconThemeInfo>&
    GetFoundIconThemes() const {return mFoundIconThemes;}

    /** Get the IconThemeInfo for a theme.
     * If the theme id is not among the found themes, a std::runtime_error will be thrown.
     * Use IconThemeIsInstalled() to check whether it is available.
     */
    const IconThemeInfo& GetIconThemeInfo(const OUString& themeId);

    /** Checks whether the theme with the provided name has been found in the
     * scanned directory.
     */
    bool
    IconThemeIsInstalled(const OUString& themeId) const;

private:
    IconThemeScanner();

    /** Scan a directory for icon themes.
     *
     * @return
     * This method will return true on success.
     * There are several cases when this method will fail:
     * - The directory does not exist
     * - There are no files which which match the pattern images_xxx.zip
     */
    bool
    ScanDirectoryForIconThemes(const OUString &path);

    /** Adds the provided icon theme by path.
     */
    bool
    AddIconThemeByPath(const OUString &path);

    /** Scans the provided directory for icon themes.
     * The returned strings will contain the URLs to the icon themes.
     */
    static std::vector<OUString>
    ReadIconThemesFromPath(const OUString& dir);

    /** Check whether a single file is valid */
    static bool
    FileIsValidIconTheme(const OUString&);

    std::vector<IconThemeInfo> mFoundIconThemes;

    friend class ::IconThemeScannerTest;
};

} // end namespace vcl

#endif // INCLUDED_VCL_ICONTHEMESCANNER_HXX

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */