blob: e80b626fdc64c5176adc9972cad00582e183f75f [file] [log] [blame]
adamdunkels7e4982c2003-03-19 16:26: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.
adamdunkelsfb24dff2004-09-12 14:07:30 +000014 * 3. The name of the author may not be used to endorse or promote
adamdunkels7e4982c2003-03-19 16:26: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 *
adamdunkelsfb24dff2004-09-12 14:07:30 +000032 * $Id: ctk-conf.h,v 1.8 2004/09/12 14:07:31 adamdunkels Exp $
adamdunkels7e4982c2003-03-19 16:26: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
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
oliverschmidt0b6d7292004-06-27 12:44:21 +000051/* Defines which key that is to be used for switching to the prevoius
52 widget. */
adamdunkelsfb8c70e2003-08-09 23:38:15 +000053#define CTK_CONF_WIDGETUP_KEY CH_F5
oliverschmidt0b6d7292004-06-27 12:44:21 +000054
55/* Defines which key that is to be used for switching to the next
56 widget. */
adamdunkelsfb8c70e2003-08-09 23:38:15 +000057#define CTK_CONF_WIDGETDOWN_KEY CH_F7
58
adamdunkels942aabf2003-04-09 00:31:13 +000059/* Toggles mouse support (must have support functions in the
60architecture specific files to work). */
adamdunkels091157e2004-08-09 21:02:55 +000061#define CTK_CONF_MOUSE_SUPPORT 0
adamdunkels942aabf2003-04-09 00:31:13 +000062
oliverschmidt0b6d7292004-06-27 12:44:21 +000063/* Toggles support for icons. */
adamdunkels091157e2004-08-09 21:02:55 +000064#define CTK_CONF_ICONS 1
adamdunkels7e4982c2003-03-19 16:26:18 +000065
oliverschmidt0b6d7292004-06-27 12:44:21 +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
adamdunkels7e4982c2003-03-19 16:26:18 +000072/* Toggles support for movable windows. */
adamdunkels091157e2004-08-09 21:02:55 +000073#define CTK_CONF_WINDOWMOVE 1
adamdunkels7e4982c2003-03-19 16:26:18 +000074
75/* Toggles support for closable windows. */
adamdunkels091157e2004-08-09 21:02:55 +000076#define CTK_CONF_WINDOWCLOSE 1
adamdunkels7e4982c2003-03-19 16:26:18 +000077
adamdunkels7e4982c2003-03-19 16:26:18 +000078/* Toggles support for menus. */
adamdunkels091157e2004-08-09 21:02:55 +000079#define CTK_CONF_MENUS 1
adamdunkels7e4982c2003-03-19 16:26:18 +000080
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
adamdunkelsbc70b4d2003-04-24 17:10:32 +000086/* Toggles support for screen savers. */
87#define CTK_CONF_SCREENSAVER 1
88
adamdunkels7e4982c2003-03-19 16:26:18 +000089#endif /* __CTK_CONF_H__ */