summaryrefslogtreecommitdiff
path: root/utils/nscolour.h
blob: 910d7f7a565c5f5bb7c390140f080bd9d39df00a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
/*
 * Copyright 2020 Michael Drake <tlsa@netsurf-browser.org>
 *
 * This file is part of NetSurf, http://www.netsurf-browser.org/
 *
 * NetSurf is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; version 2 of the License.
 *
 * NetSurf is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

/** \file
 * NetSurf UI colours (interface).
 *
 * Interface to acquire common colours used throughout NetSurf's interface.
 */

#ifndef _NETSURF_UTILS_NSCOLOUR_H_
#define _NETSURF_UTILS_NSCOLOUR_H_

#include "netsurf/types.h"

/**
 * NetSurf UI colour key.
 */
enum nscolour {
	NSCOLOUR_WIN_ODD_BG,
	NSCOLOUR_WIN_ODD_BG_HOVER,
	NSCOLOUR_WIN_ODD_FG,
	NSCOLOUR_WIN_ODD_FG_SUBTLE,
	NSCOLOUR_WIN_ODD_FG_FADED,
	NSCOLOUR_WIN_ODD_FG_GOOD,
	NSCOLOUR_WIN_ODD_FG_BAD,
	NSCOLOUR_WIN_ODD_BORDER,
	NSCOLOUR_WIN_EVEN_BG,
	NSCOLOUR_WIN_EVEN_BG_HOVER,
	NSCOLOUR_WIN_EVEN_FG,
	NSCOLOUR_WIN_EVEN_FG_SUBTLE,
	NSCOLOUR_WIN_EVEN_FG_FADED,
	NSCOLOUR_WIN_EVEN_FG_GOOD,
	NSCOLOUR_WIN_EVEN_FG_BAD,
	NSCOLOUR_WIN_EVEN_BORDER,
	NSCOLOUR_SEL_BG,
	NSCOLOUR_SEL_FG,
	NSCOLOUR_SEL_FG_SUBTLE,
	NSCOLOUR_SCROLL_WELL,
	NSCOLOUR_BUTTON_BG,
	NSCOLOUR_BUTTON_FG,
	NSCOLOUR__COUNT,
};

/**
 * NetSurf UI colour table.
 */
extern colour nscolours[];

/**
 * Update the nscolour table from the current nsoptions.
 *
 * \return NSERROR_OK on success, or appropriate error otherwise.
 */
nserror nscolour_update(void);

/**
 * Get a pointer to a stylesheet for nscolours.
 *
 * \return NSERROR_OK on success, or appropriate error otherwise.
 */
nserror nscolour_get_stylesheet(const char **stylesheet_out);

#endif