aboutsummaryrefslogtreecommitdiffstats
path: root/src/gamma-dummy.c
blob: d87c2dd5f77f02aec4358b4786f314feedcda71e (plain) (blame)
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
/* gamma-dummy.c -- No-op gamma adjustment
   This file is part of Redshift.

   Redshift 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, either version 3 of the License, or
   (at your option) any later version.

   Redshift 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 Redshift.  If not, see <http://www.gnu.org/licenses/>.

   Copyright (c) 2013-2017  Jon Lund Steffensen <jonlst@gmail.com>
*/
#include "common.h"


static int
gamma_dummy_init(struct gamma_state **state)
{
	*state = NULL;
	return 0;
}

static int
gamma_dummy_start(struct gamma_state *state, enum program_mode mode)
{
	fputs(_("WARNING: Using dummy gamma method! Display will not be affected by this gamma method.\n"), stderr);
	return 0;
}

static void
gamma_dummy_restore(struct gamma_state *state)
{
}

static void
gamma_dummy_free(struct gamma_state *state)
{
}

static void
gamma_dummy_print_help(FILE *f)
{
	fputs(_("Does not affect the display but prints the color temperature to the terminal.\n"), f);
	fputs("\n", f);
}

static int
gamma_dummy_set_option(struct gamma_state *state, const char *key, const char *value)
{
	fprintf(stderr, _("Unknown method parameter: `%s'.\n"), key);
	return -1;
}

static int
gamma_dummy_set_temperature(
	struct gamma_state *state, const struct color_setting *setting, int preserve)
{
	printf(_("Temperature: %i\n"), setting->temperature);
	return 0;
}


const struct gamma_method dummy_gamma_method = {
	"dummy", 0,
	&gamma_dummy_init,
	&gamma_dummy_start,
	&gamma_dummy_free,
	&gamma_dummy_print_help,
	&gamma_dummy_set_option,
	&gamma_dummy_restore,
	&gamma_dummy_set_temperature
};