blob: 1f9a24b7ac1734045acb2a514587160d3b369e08 [file] [log] [blame]
adamdunkelsd9ae56d2003-04-11 20:29:28 +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.
adamdunkels1dc4ca02004-07-04 19:58:55 +000014 * 3. The name of the author may not be used to endorse or promote
adamdunkelsd9ae56d2003-04-11 20:29:28 +000015 * 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 *
adamdunkels1dc4ca02004-07-04 19:58:55 +000032 * $Id: ctk-conf.h,v 1.3 2004/07/04 19:58:56 adamdunkels Exp $
adamdunkelsd9ae56d2003-04-11 20:29:28 +000033 *
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 */
adamdunkels1dc4ca02004-07-04 19:58:55 +000045#define CTK_CONF_MENU_KEY 0
adamdunkelsd9ae56d2003-04-11 20:29:28 +000046
47/* Defines which key that is to be used for switching the frontmost
48 window. */
adamdunkels1dc4ca02004-07-04 19:58:55 +000049#define CTK_CONF_WINDOWSWITCH_KEY 1
50#define CTK_CONF_WIDGETUP_KEY 2
51#define CTK_CONF_WIDGETDOWN_KEY 3
adamdunkelsd9ae56d2003-04-11 20:29:28 +000052
oliverschmidte4231442004-06-27 12:51:23 +000053/* Toggles support for icons. */
adamdunkelsd9ae56d2003-04-11 20:29:28 +000054#define CTK_CONF_ICONS 1 /* 107 bytes */
55
oliverschmidte4231442004-06-27 12:51:23 +000056/* Toggles support for icon bitmaps. */
57#define CTK_CONF_ICON_BITMAPS 1
58
59/* Toggles support for icon textmaps. */
60#define CTK_CONF_ICON_TEXTMAPS 1
61
adamdunkelsd9ae56d2003-04-11 20:29:28 +000062/* Toggles support for movable windows. */
63#define CTK_CONF_WINDOWMOVE 1 /* 333 bytes */
64
65/* Toggles support for closable windows. */
66#define CTK_CONF_WINDOWCLOSE 1 /* 14 bytes */
67
adamdunkelsd9ae56d2003-04-11 20:29:28 +000068/* Toggles support for menus. */
69#define CTK_CONF_MENUS 1 /* 1384 bytes */
70
71/* Defines the default width of a menu. */
72#define CTK_CONF_MENUWIDTH 16
73/* The maximum number of menu items in each menu. */
74#define CTK_CONF_MAXMENUITEMS 10
75
76#endif /* __CTK_CONF_H__ */