kmscon: add --xkb-repeat-rate/delay command-line arguments
[platform/upstream/kmscon.git] / src / main.h
1 /*
2  * Main App
3  *
4  * Copyright (c) 2012 David Herrmann <dh.herrmann@googlemail.com>
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining
7  * a copy of this software and associated documentation files
8  * (the "Software"), to deal in the Software without restriction, including
9  * without limitation the rights to use, copy, modify, merge, publish,
10  * distribute, sublicense, and/or sell copies of the Software, and to
11  * permit persons to whom the Software is furnished to do so, subject to
12  * the following conditions:
13  *
14  * The above copyright notice and this permission notice shall be included
15  * in all copies or substantial portions of the Software.
16  *
17  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
18  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
19  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
20  * IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
21  * CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
22  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
23  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
24  */
25
26 /*
27  * This includes global data for the whole kmscon application. For instance,
28  * global parameters can be accessed via this header.
29  */
30
31 #ifndef KMSCON_MAIN_H
32 #define KMSCON_MAIN_H
33
34 #include <stdbool.h>
35 #include <stdlib.h>
36 #include "conf.h"
37
38 struct kmscon_conf_t {
39         /* show help/usage information */
40         bool help;
41         /* exit application after parsing options */
42         bool exit;
43         /* enable debug messages */
44         bool debug;
45         /* enable verbose info messages */
46         bool verbose;
47         /* disable notices and warnings */
48         bool silent;
49         /* VT number to run on on seat0 */
50         char *vt;
51         /* enter new VT directly */
52         bool switchvt;
53         /* use framebuffers instead of DRM */
54         bool use_fbdev;
55         /* use dumb DRM devices */
56         bool dumb;
57         /* render engine */
58         char *render_engine;
59
60         /* input KBD layout */
61         char *xkb_layout;
62         char *xkb_variant;
63         char *xkb_options;
64         unsigned int xkb_repeat_delay;
65         unsigned int xkb_repeat_rate;
66
67         /* TERM value */
68         char *term;
69         /* custom login process */
70         bool login;
71         /* argv for login process */
72         char **argv;
73         /* terminal scroll-back buffer size */
74         unsigned int sb_size;
75         /* scroll-up grab */
76         struct conf_grab *grab_scroll_up;
77         /* scroll-down grab */
78         struct conf_grab *grab_scroll_down;
79         /* page-up grab */
80         struct conf_grab *grab_page_up;
81         /* page-down grab */
82         struct conf_grab *grab_page_down;
83
84         /* seats */
85         char **seats;
86         bool all_seats;
87
88         /* font engine */
89         char *font_engine;
90         /* font size */
91         unsigned int font_size;
92         /* font name */
93         char *font_name;
94         /* font ppi (overrides per monitor PPI) */
95         unsigned int font_ppi;
96
97         /* color palette */
98         char *palette;
99
100         /* frame-rate limit */
101         unsigned int fps;
102         /* print rendering engine timing information */
103         bool render_timing;
104 };
105
106 extern struct kmscon_conf_t kmscon_conf;
107
108 #endif /* KMSCON_MAIN_H */