blob: 789dd326aef47f133800ba36325a77136aabd8c9 [file] [log] [blame]
adamdunkels0da04a82003-04-02 09:57: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.
adamdunkels06f897e2004-06-06 05:59:20 +000014 * 3. The name of the author may not be used to endorse or promote
adamdunkels0da04a82003-04-02 09:57:26 +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 *
oliverschmidt9163a3f2004-06-27 12:31:24 +000032 * $Id: ctk-conf.h.example,v 1.7 2004/06/27 12:31:24 oliverschmidt Exp $
adamdunkels0da04a82003-04-02 09:57:26 +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 */
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_F3
50
oliverschmidt104e5fd2004-06-27 10:09:36 +000051/* Defines which key that is to be used for switching to the prevoius
52 widget. */
53#define CTK_CONF_WIDGETUP_KEY CH_F5
54
55/* Defines which key that is to be used for switching to the next
56 widget. */
57#define CTK_CONF_WIDGETDOWN_KEY CH_F7
58
adamdunkelsc4902862003-04-09 00:30:45 +000059/* Toggles mouse support (must have support functions in the
60architecture specific files to work). */
adamdunkels24cb6392003-04-11 20:17:18 +000061#define CTK_CONF_MOUSE_SUPPORT 0 /* 1342 bytes */
adamdunkelsc4902862003-04-09 00:30:45 +000062
oliverschmidt9163a3f2004-06-27 12:31:24 +000063/* Toggles support for icons. */
adamdunkels0da04a82003-04-02 09:57:26 +000064#define CTK_CONF_ICONS 1 /* 107 bytes */
65
oliverschmidt9163a3f2004-06-27 12:31:24 +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
adamdunkels0da04a82003-04-02 09:57:26 +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
adamdunkels0da04a82003-04-02 09:57:26 +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
adamdunkels66109622003-04-24 17:17:10 +000086/* Toggles support for screen savers. */
87#define CTK_CONF_SCREENSAVER 0
88
adamdunkels0da04a82003-04-02 09:57:26 +000089#endif /* __CTK_CONF_H__ */