Version 7.6.3.2-android, tag libreoffice-7.6.3.2-android
[LibreOffice.git] / offapi / com / sun / star / util / XTheme.idl
blob0efa1847aaed92aac30f28c8d5ddd703f90cf323
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 module com { module sun { module star { module util {
12 /** Theme interface
14 @since LibreOffice 7.6
16 interface XTheme
18 /** Get the name of the theme */
19 string getName();
21 /** Get the color set defined for the theme.
23 The color set is a sequence of 12 colors:
24 Dark 1, Light 1, Dark 2, Light 2,
25 Accent 1, Accent 2, Accent 3, Accent 4, Accent 5, Accent6,
26 Hyperlink, FollowedHyperlink
29 sequence<com::sun::star::util::Color> getColorSet();
32 }; }; }; };
34 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */