Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / include / vcl / IconThemeInfo.hxx
blob0ac2b7dc2857d56e8a0acea1807b8c7377ffa008
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
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/.
8 */
10 #ifndef INCLUDED_VCL_ICONTHEMEINFO_HXX
11 #define INCLUDED_VCL_ICONTHEMEINFO_HXX
13 #include <vcl/dllapi.h>
14 #include <tools/gen.hxx>
15 #include <rtl/ustring.hxx>
17 #include <vector>
19 // forward declaration of unit test classes. Required for friend relationship.
20 class IconThemeInfoTest;
21 class IconThemeSelectorTest;
22 class IconThemeScannerTest;
24 namespace vcl
26 /** This class provides information about an icon theme.
28 class VCL_DLLPUBLIC IconThemeInfo
30 public:
31 /** The name of the icon theme to use for high contrast mode */
32 static constexpr OUStringLiteral HIGH_CONTRAST_ID_BRIGHT = u"sifr";
33 static constexpr OUStringLiteral HIGH_CONTRAST_ID_DARK = u"sifr_dark";
35 /** Construct an IconThemeInfo from the URL to a file.
36 * This method will throw a std::runtime_error if the URL cannot be properly parsed.
37 * Check the URL with UrlCanBeParsed() first.
39 IconThemeInfo(const OUString& urlToFile);
41 const OUString& GetDisplayName() const { return mDisplayName; }
43 const OUString& GetThemeId() const { return mThemeId; }
45 const OUString& GetUrlToFile() const { return mUrlToFile; }
47 /** Obtain the icon size by theme name.
48 * @internal
49 * It is not clear where this information belongs to. The sizes were hard-coded before they moved here.
50 * Maybe there is a way to determine the sizes from the icon theme packages.
52 static Size SizeByThemeName(std::u16string_view);
54 /** Check whether an IconThemeInfo can be constructed from a URL */
55 static bool UrlCanBeParsed(std::u16string_view url);
57 /** Find an icon theme by its id in a vector.
58 * Throws a runtime_error if the theme is not contained in the vector
60 static const vcl::IconThemeInfo&
61 FindIconThemeById(const std::vector<vcl::IconThemeInfo>& themes, const OUString& themeId);
63 /** Check whether a theme with a specified id is in a vector of IconThemeInfo */
64 static bool IconThemeIsInVector(const std::vector<vcl::IconThemeInfo>& themes,
65 const OUString& themeId);
67 private:
68 /** private constructor for testing purposes only */
69 IconThemeInfo();
71 /** Determine the icon theme name from the filename
72 * If the name has an underscore, the name is taken from the first underscore to the last dot,
73 * e.g., images_oxygen.zip becomes oxygen
74 * If the name does not have an underscore in it, the whole name until the last dot is returned,
75 * e.g. default.zip becomes default
77 static OUString FileNameToThemeId(std::u16string_view);
79 /** Creates the display name for the given id of a file.
80 * Currently, we only uppercase the id.
82 static OUString ThemeIdToDisplayName(const OUString&);
84 /** The name which is presented to the user */
85 OUString mDisplayName;
86 /** The theme id. This id is used in ... to determine the file name */
87 OUString mThemeId;
88 /** The url to the icon theme package */
89 OUString mUrlToFile;
91 friend class ::IconThemeInfoTest;
92 friend class ::IconThemeScannerTest;
93 friend class ::IconThemeSelectorTest;
96 } // namespace vcl
98 #endif // INCLUDED_VCL_ICONTHEMEINFO_HXX