Version 4.3.0.0.beta1, tag libreoffice-4.3.0.0.beta1
[LibreOffice.git] / include / vcl / IconThemeInfo.hxx
blob8d9c0e345a16de7b620cc54f872ef6eab8dcebfc
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:
32 /** Construct an IconThemeInfo from the URL to a file.
33 * This method will throw a std::runtime_error if the URL cannot be properly parsed.
34 * Check the URL with UrlCanBeParsed() first.
36 IconThemeInfo(const OUString& urlToFile);
38 const OUString& GetDisplayName() const {return mDisplayName;}
40 const OUString& GetThemeId() const { return mThemeId; }
42 const OUString& GetUrlToFile() const { return mUrlToFile; }
44 /** Obtain the icon size by theme name.
45 * @internal
46 * It is not clear where this information belongs to. The sizes were hard-coded before they moved here.
47 * Maybe there is a way to determine the sizes from the icon theme packages.
49 static Size SizeByThemeName(const OUString&);
51 /** Check whether a IconThemeInfo can be constructed from an URL */
52 static bool UrlCanBeParsed(const OUString& url);
54 /** Find an icon theme by its id in a vector.
55 * Throws a runtime_error if the theme is not contained in the vector
57 static const vcl::IconThemeInfo&
58 FindIconThemeById(const std::vector<vcl::IconThemeInfo>& themes, const OUString& themeId);
60 /** Check whether a theme with a specified id is in a vector of IconThemeInfo */
61 static bool
62 IconThemeIsInVector(const std::vector<vcl::IconThemeInfo>& themes, const OUString& themeId);
64 private:
65 /** private constructor for testing purposes only */
66 IconThemeInfo();
68 /** Determine the icon theme name from the filename
69 * If the name has an underscore, the name is taken from the first underscore to the last dot,
70 * e.g., images_oxygen.zip becomes oxygen
71 * If the name does not have an underscore in it, the whole name until the last dot is returned,
72 * e.g. default.zip becomes default
74 static OUString FileNameToThemeId(const OUString&);
76 /** Creates the display name for the given id of a file.
77 * Currently, we only uppercase the id.
79 static OUString ThemeIdToDisplayName(const OUString&);
81 /** The name which is presented to the user */
82 OUString mDisplayName;
83 /** The theme id. This id is used in ... to determine the file name */
84 OUString mThemeId;
85 /** The url to the icon theme package */
86 OUString mUrlToFile;
88 friend class ::IconThemeInfoTest;
89 friend class ::IconThemeScannerTest;
90 friend class ::IconThemeSelectorTest;
93 } // namespace vcl
96 #endif // INCLUDED_VCL_ICONTHEMEINFO_HXX