home *** CD-ROM | disk | FTP | other *** search
- /*
- * Copyright (c) 1995 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 : 24/02/96
- */
-
- #ifndef __icons_h
- #define __icons_h
-
- #include "Wimp.h"
-
- #define INFO_WINDOW_ICON_VERSION 3
-
- #define VERSION_STRING "V2.70 24th February 1996"
-
- #define CONFIG_WINDOW_ICON_BOOT 0
- #define CONFIG_WINDOW_ICON_SAVE 1
- #define CONFIG_WINDOW_ICON_CANCEL 2
- #define CONFIG_WINDOW_ICON_LOGO 3
-
- #define CONFIG_PANE_ICON_KERNEL 8
- #define CONFIG_PANE_ICON_ROOTDEV 9
- #define CONFIG_PANE_ICON_SWAPDEV 10
- #define CONFIG_PANE_ICON_SINGLE 11
- #define CONFIG_PANE_ICON_KGDB 12
- #define CONFIG_PANE_ICON_SCREENMODE 13
- #define CONFIG_PANE_ICON_OTHER 14
- #define CONFIG_PANE_ICON_NOCACHE 15
- #define CONFIG_PANE_ICON_NOWRTBUF 16
- #define CONFIG_PANE_ICON_NOFPA 17
- #define CONFIG_PANE_ICON_MAXPROC 18
- #define CONFIG_PANE_ICON_RAMDISC 19
-
- #define CONFIG_PANE_ICON_PMAP_DEBUG 28
- #define CONFIG_PANE_ICON_PMAP_DEBUG_VAL 29
- #define CONFIG_PANE_ICON_KMODULE 30
- #define CONFIG_PANE_ICON_KMODULE_VAL 31
- #define CONFIG_PANE_ICON_TERMDEBUG 32
-
- #define CONFIG_PANE_ICON_ROOTDEV_POPUP 40
- #define CONFIG_PANE_ICON_SWAPDEV_POPUP 41
- #define CONFIG_PANE_ICON_NATIVE 42
- #define CONFIG_PANE_ICON_RAMDISC_POPUP 43
- #define CONFIG_PANE_ICON_SYMBOL_TABLE 44
- #define CONFIG_PANE_ICON_VIDEO_DRAM 46
- #define CONFIG_PANE_ICON_FPA_CLK_2 47
- #define CONFIG_PANE_ICON_DDB_BOOT 48
-
- #define CONFIG_PANE_WIDTH 742
- #define CONFIG_PANE_MIN_HEIGHT -484
-
- #define CONFIG_PANE_VERTICAL_OFFSET 16
- #define CONFIG_PANE_LEFT_OFFSET 16
-
- #define MAIN_MENU_OPTION_INFO 0
- #define MAIN_MENU_OPTION_CONFIG 1
- #define MAIN_MENU_OPTION_QUIT 2
-
- #endif
-
- /* End of icons.h */
-