blob: cfe4925f5999caa6b5f27c4e4667b52dbc47a4aa [file] [log] [blame]
kthacker6de67752006-04-17 15:02:26 +00001/*
2 * Copyright (c) 2002, Adam Dunkels.
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above
11 * copyright notice, this list of conditions and the following
12 * disclaimer in the documentation and/or other materials provided
13 * with the distribution.
14 * 3. The name of the author may not be used to endorse or promote
15 * products derived from this software without specific prior
16 * written permission.
17 *
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
19 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
22 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
24 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 *
30 * This file is part of the "ctk" console GUI toolkit for cc65
31 *
32 * $Id: ctk-conf.h,v 1.1 2006/04/17 15:02:26 kthacker Exp $
33 *
34 */
35
36#ifndef __CTK_CONF_H__
37#define __CTK_CONF_H__
38
39/*
40 * This file is used for setting various compile time settings for the
41 * CTK GUI toolkit.
42*/
43
44/* Defines which key that is to be used for activating the menus */
45#define CTK_CONF_MENU_KEY CH_F1
46
47/* Defines which key that is to be used for switching the frontmost
48 window. */
49#define CTK_CONF_WINDOWSWITCH_KEY CH_F2
50
51/* Defines which key that is to be used for switching to the prevoius
52 widget. */
53#define CTK_CONF_WIDGETUP_KEY CH_F7
54
55/* Defines which key that is to be used for switching to the next
56 widget. */
57#define CTK_CONF_WIDGETDOWN_KEY CH_F4
58
59/* Toggles mouse support (must have support functions in the
60architecture specific files to work). */
61#define CTK_CONF_MOUSE_SUPPORT 0 /* 1342 bytes */
62
63/* Toggles support for icons. */
64#define CTK_CONF_ICONS 1 /* 107 bytes */
65
66/* Toggles support for icon bitmaps. */
PulkoMandy9d35dfb2014-06-29 20:26:47 +020067#define CTK_CONF_ICON_BITMAPS 0
kthacker6de67752006-04-17 15:02:26 +000068
69/* Toggles support for icon textmaps. */
70#define CTK_CONF_ICON_TEXTMAPS 1
71
72/* Toggles support for movable windows. */
73#define CTK_CONF_WINDOWMOVE 1 /* 333 bytes */
74
75/* Toggles support for closable windows. */
76#define CTK_CONF_WINDOWCLOSE 1 /* 14 bytes */
77
78/* Toggles support for menus. */
79#define CTK_CONF_MENUS 1 /* 1384 bytes */
80
81/* Defines the default width of a menu. */
82#define CTK_CONF_MENUWIDTH 16
83/* The maximum number of menu items in each menu. */
84#define CTK_CONF_MAXMENUITEMS 10
85
86/* Toggles support for screen savers. */
87#define CTK_CONF_SCREENSAVER 0
88
89#endif /* __CTK_CONF_H__ */