blob: 3d5c19b7724d993a04688f66203acee2dc277c78 [file] [log] [blame]
adamdunkels1103ef92003-04-02 09:17:18 +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.
adamdunkels16a7b262004-07-04 21:15:53 +000014 * 3. The name of the author may not be used to endorse or promote
adamdunkels1103ef92003-04-02 09:17:18 +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 *
adamdunkels16a7b262004-07-04 21:15:53 +000032 * $Id: ctk-conf.h,v 1.5 2004/07/04 21:15:53 adamdunkels Exp $
adamdunkels1103ef92003-04-02 09:17:18 +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
adamdunkelsf6959692003-04-15 21:19:47 +000044/* Toggles mouse support (must have support functions in the
45architecture specific files to work). */
46#define CTK_CONF_MOUSE_SUPPORT 1
47
adamdunkels1103ef92003-04-02 09:17:18 +000048/* Defines which key that is to be used for activating the menus */
49#define CTK_CONF_MENU_KEY CH_F1
50
51/* Defines which key that is to be used for switching the frontmost
52 window. */
53#define CTK_CONF_WINDOWSWITCH_KEY CH_F3
54
oliverschmidt513b88c2004-06-27 12:49:32 +000055/* Defines which key that is to be used for switching to the next
56 widget. */
adamdunkelsc50bd4a2003-08-11 22:20:03 +000057#define CTK_CONF_WIDGETDOWN_KEY CH_TAB
oliverschmidt513b88c2004-06-27 12:49:32 +000058
59/* Defines which key that is to be used for switching to the prevoius
60 widget. */
adamdunkelsc50bd4a2003-08-11 22:20:03 +000061#define CTK_CONF_WIDGETUP_KEY CH_F5
62
oliverschmidt513b88c2004-06-27 12:49:32 +000063/* Toggles support for icons. */
adamdunkels1103ef92003-04-02 09:17:18 +000064#define CTK_CONF_ICONS 1 /* 107 bytes */
65
oliverschmidt513b88c2004-06-27 12:49:32 +000066/* Toggles support for icon bitmaps. */
67#define CTK_CONF_ICON_BITMAPS 1
68
69/* Toggles support for icon textmaps. */
70#define CTK_CONF_ICON_TEXTMAPS 1
71
adamdunkels1103ef92003-04-02 09:17:18 +000072/* 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
adamdunkels1103ef92003-04-02 09:17:18 +000078/* 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
adamdunkels16a7b262004-07-04 21:15:53 +000086#define CTK_CONF_WIDGET_FLAGS 1
87
adamdunkels1103ef92003-04-02 09:17:18 +000088#endif /* __CTK_CONF_H__ */