/*
 * Copyright (c) 1995-1997 Mark Brinicombe.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 * 3. All advertising materials mentioning features or use of this software
 *    must display the following acknowledgement:
 *	This product includes software developed by Mark Brinicombe.
 * 4. The name of the company nor the name of the author may be used to
 *    endorse or promote products derived from this software without specific
 *    prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * RiscBSD kernel project
 *
 * icons.h
 *
 * Icon definitions
 *
 * Created      : 26/04/95
 * Last updated : 20/06/97
 */

#ifndef __icons_h
#define __icons_h

#include "Wimp.h"

#define INFO_WINDOW_ICON_VERSION 3

#define VERSION_STRING "V2.88 20th June 1997"

#define CONFIG_WINDOW_ICON_BOOT		0
#define CONFIG_WINDOW_ICON_SAVE		1
#define CONFIG_WINDOW_ICON_CMOS		2
#define CONFIG_WINDOW_ICON_LOGO		3

#define CONFIG_PANE_ICON_KERNEL		3
#define CONFIG_PANE_ICON_NATIVE		4
#define CONFIG_PANE_ICON_RISCOSFS	5
#define CONFIG_PANE_ICON_RISCOSFS_POPUP	6
#define CONFIG_PANE_ICON_RISCOS_DRIVE	7

#define CONFIG_PANE_ICON_ROOTDEV	11
#define CONFIG_PANE_ICON_ROOTDEV_POPUP	12
#define CONFIG_PANE_ICON_OTHER		14
#define CONFIG_PANE_ICON_SINGLE		15

#define CONFIG_PANE_ICON_SCREENMODE	19
#define CONFIG_PANE_ICON_VIDEO_DRAM	21


#define CONFIG_PANE_ICON_NOCACHE	24
#define CONFIG_PANE_ICON_NOWRTBUF	25
#define CONFIG_PANE_ICON_NOFPA		26
#define CONFIG_PANE_ICON_FPA_CLK_2	27

#define CONFIG_PANE_ICON_MAXPROC	31
#define CONFIG_PANE_ICON_RAMDISC	33
#define CONFIG_PANE_ICON_RAMDISC_POPUP	34
#define CONFIG_PANE_ICON_SYMBOL_TABLE	35
#define CONFIG_PANE_ICON_IPKDB		36
#define CONFIG_PANE_ICON_DDB_BOOT	37

#define CONFIG_PANE_ICON_PMAP_DEBUG	40
#define CONFIG_PANE_ICON_PMAP_DEBUG_VAL	41


#define CONFIG_PANE_ICON_VIDC_OPS1	42
#define CONFIG_PANE_ICON_VIDC_OPS1_VAL	43
#define CONFIG_PANE_ICON_VIDC_OPS2	44
#define CONFIG_PANE_ICON_VIDC_OPS2_VAL	45

#define CONFIG_PANE_WIDTH		740
#define CONFIG_PANE_EXTRA_HEIGHT	328

#define CONFIG_PANE_VERTICAL_OFFSET	16
#define CONFIG_PANE_LEFT_OFFSET		16

#define CMOS_WINDOW_ICON_AUTOBOOT	2
#define CMOS_WINDOW_ICON_REBOOT		3

#define MAIN_MENU_OPTION_INFO		0
#define MAIN_MENU_OPTION_CONFIG		1
#define MAIN_MENU_OPTION_QUIT		2

#endif

/* End of icons.h */
