summaryrefslogtreecommitdiff
path: root/scp2
diff options
context:
space:
mode:
authorPranav Kant <pranavk@libreoffice.org>2016-01-19 19:05:40 +0530
committerMiklos Vajna <vmiklos@collabora.co.uk>2016-01-19 17:33:34 +0000
commit85b46f51928dc17cda1bc974bca9159de9221b4d (patch)
tree4fd127437ed0f06ac21d61bbc75ef54113383d11 /scp2
parent11a3449429c5853c5feedce6ac3f8f3829d1bbf9 (diff)
lokdocview: Add scp files for selection handle PNGs
Change-Id: I4d3eab1f16751a1b3f24a995e3d28322fd2f510b Reviewed-on: https://gerrit.libreoffice.org/21606 Reviewed-by: Miklos Vajna <vmiklos@collabora.co.uk> Tested-by: Miklos Vajna <vmiklos@collabora.co.uk>
Diffstat (limited to 'scp2')
-rw-r--r--scp2/InstallModule_ooo.mk1
-rw-r--r--scp2/source/ooo/module_libreofficekit.scp59
2 files changed, 60 insertions, 0 deletions
diff --git a/scp2/InstallModule_ooo.mk b/scp2/InstallModule_ooo.mk
index c9e41996c1db..77b865c46782 100644
--- a/scp2/InstallModule_ooo.mk
+++ b/scp2/InstallModule_ooo.mk
@@ -102,6 +102,7 @@ $(eval $(call gb_InstallModule_add_scpfiles,scp2/ooo,\
scp2/source/ooo/mingw_dlls \
) \
scp2/source/ooo/module_filter \
+ scp2/source/ooo/module_libreofficekit \
))
$(eval $(call gb_InstallModule_add_localized_scpfiles,scp2/ooo,\
diff --git a/scp2/source/ooo/module_libreofficekit.scp b/scp2/source/ooo/module_libreofficekit.scp
new file mode 100644
index 000000000000..e66331f9cdf0
--- /dev/null
+++ b/scp2/source/ooo/module_libreofficekit.scp
@@ -0,0 +1,59 @@
+/* -*- 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/.
+ */
+
+#include "macros.inc"
+
+Module gid_Module_Libreofficekit
+ Name = "Libreofficekit Data";
+ Description = "Libreofficekit Data";
+ PackageInfo = "packinfo_office.txt";
+ ParentID = gid_Module_Root_Brand;
+ Styles = (HIDDEN_ROOT);
+ Dirs = (gid_Dir_Share_Libreofficekit);
+ Files = (
+ gid_File_Dat_HandleImageStart,
+ gid_File_Dat_HandleImageMiddle,
+ gid_File_Dat_HandleImageEnd,
+ gid_File_Dat_HandleGraphic);
+End
+
+Directory gid_Dir_Share_Libreofficekit
+ ParentID = gid_Brand_Dir_Share;
+ DosName = "libreofficekit";
+End
+
+File gid_File_Dat_HandleImageStart
+ TXT_FILE_BODY;
+ Dir = gid_Dir_Share_Libreofficekit;
+ Name = "handle_image_start.png";
+ Styles = (PACKED);
+End
+
+File gid_File_Dat_HandleImageMiddle
+ TXT_FILE_BODY;
+ Dir = gid_Dir_Share_Libreofficekit;
+ Name = "handle_image_middle.png";
+ Styles = (PACKED);
+End
+
+File gid_File_Dat_HandleImageEnd
+ TXT_FILE_BODY;
+ Dir = gid_Dir_Share_Libreofficekit;
+ Name = "handle_image_end.png";
+ Styles = (PACKED);
+End
+
+File gid_File_Dat_HandleGraphic
+ TXT_FILE_BODY;
+ Dir = gid_Dir_Share_Libreofficekit;
+ Name = "handle_graphic.png";
+ Styles = (PACKED);
+End
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */