summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-08-26 11:32:13 +0900
committerTomaž Vajngerl <tomaz.vajngerl@collabora.co.uk>2015-08-27 11:23:22 +0900
commitc9df840d207c8d965b2df993e0a90be89f52c254 (patch)
tree2ceaaf8458af99af3711c27177f60bc32563b450 /include
parentShow previews of style presets in sidebar (diff)
downloadcore-c9df840d207c8d965b2df993e0a90be89f52c254.tar.gz
core-c9df840d207c8d965b2df993e0a90be89f52c254.zip
ColorSets: add preview to ThemePanel, move impl. to own file
Change-Id: I1b05edc954125e5bdeed05b5fdce1430f8eaba26
Diffstat (limited to 'include')
-rw-r--r--include/svx/ColorSets.hxx70
1 files changed, 70 insertions, 0 deletions
diff --git a/include/svx/ColorSets.hxx b/include/svx/ColorSets.hxx
new file mode 100644
index 000000000000..009ee4017af4
--- /dev/null
+++ b/include/svx/ColorSets.hxx
@@ -0,0 +1,70 @@
+/* -*- 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_SVX_COLORSETS_HXX
+#define INCLUDED_SVX_COLORSETS_HXX
+
+#include <svx/svxdllapi.h>
+#include <vector>
+#include <rtl/ustring.hxx>
+#include <tools/color.hxx>
+
+namespace svx
+{
+
+class SVX_DLLPUBLIC ColorSet
+{
+ OUString maName;
+ std::vector<Color> maColors;
+public:
+ ColorSet(OUString aName);
+ ~ColorSet();
+
+ void add(sal_uInt32 nIndex, sal_uInt32 aColorData)
+ {
+ maColors[nIndex] = Color(aColorData);
+ }
+
+ const OUString& getName() const
+ {
+ return maName;
+ }
+ const Color& getColor(sal_uInt32 nIndex) const
+ {
+ return maColors[nIndex];
+ }
+};
+
+class SVX_DLLPUBLIC ColorSets
+{
+ std::vector<ColorSet> maColorSets;
+public:
+ ColorSets();
+ ~ColorSets();
+
+ void init();
+ const std::vector<ColorSet>& getColorSets()
+ {
+ return maColorSets;
+ }
+
+ const ColorSet& getColorSet(sal_uInt32 nIndex)
+ {
+ return maColorSets[nIndex];
+ }
+
+ const ColorSet& getColorSet(const OUString& rName);
+};
+
+} // end of namespace svx
+
+#endif // INCLUDED_SVX_COLORSETS_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */