home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 4 / DATAFILE_PDCD4.iso / unix / riscbsd / 1_1_beta / upgrades / bootloader / !BtRiscBSD_h_icons < prev    next >
Encoding:
Text File  |  1996-02-26  |  3.3 KB  |  96 lines

  1. /*
  2.  * Copyright (c) 1995 Mark Brinicombe.
  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 copyright
  11.  *    notice, this list of conditions and the following disclaimer in the
  12.  *    documentation and/or other materials provided with the distribution.
  13.  * 3. All advertising materials mentioning features or use of this software
  14.  *    must display the following acknowledgement:
  15.  *    This product includes software developed by Mark Brinicombe.
  16.  * 4. The name of the company nor the name of the author may be used to
  17.  *    endorse or promote products derived from this software without specific
  18.  *    prior written permission.
  19.  *
  20.  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
  21.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  22.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
  23.  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  24.  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
  25.  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
  26.  * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  27.  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  28.  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
  29.  * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  30.  *
  31.  * RiscBSD kernel project
  32.  *
  33.  * icons.h
  34.  *
  35.  * Icon definitions
  36.  *
  37.  * Created      : 26/04/95
  38.  * Last updated : 24/02/96
  39.  */
  40.  
  41. #ifndef __icons_h
  42. #define __icons_h
  43.  
  44. #include "Wimp.h"
  45.  
  46. #define INFO_WINDOW_ICON_VERSION 3
  47.  
  48. #define VERSION_STRING "V2.70 24th February 1996"
  49.  
  50. #define CONFIG_WINDOW_ICON_BOOT      0
  51. #define CONFIG_WINDOW_ICON_SAVE      1
  52. #define CONFIG_WINDOW_ICON_CANCEL    2
  53. #define CONFIG_WINDOW_ICON_LOGO      3
  54.  
  55. #define CONFIG_PANE_ICON_KERNEL      8
  56. #define CONFIG_PANE_ICON_ROOTDEV     9
  57. #define CONFIG_PANE_ICON_SWAPDEV    10
  58. #define CONFIG_PANE_ICON_SINGLE     11
  59. #define CONFIG_PANE_ICON_KGDB       12
  60. #define CONFIG_PANE_ICON_SCREENMODE 13
  61. #define CONFIG_PANE_ICON_OTHER      14
  62. #define CONFIG_PANE_ICON_NOCACHE    15
  63. #define CONFIG_PANE_ICON_NOWRTBUF   16
  64. #define CONFIG_PANE_ICON_NOFPA      17
  65. #define CONFIG_PANE_ICON_MAXPROC    18
  66. #define CONFIG_PANE_ICON_RAMDISC    19
  67.  
  68. #define CONFIG_PANE_ICON_PMAP_DEBUG     28
  69. #define CONFIG_PANE_ICON_PMAP_DEBUG_VAL 29
  70. #define CONFIG_PANE_ICON_KMODULE        30
  71. #define CONFIG_PANE_ICON_KMODULE_VAL    31
  72. #define CONFIG_PANE_ICON_TERMDEBUG      32
  73.  
  74. #define CONFIG_PANE_ICON_ROOTDEV_POPUP  40
  75. #define CONFIG_PANE_ICON_SWAPDEV_POPUP  41
  76. #define CONFIG_PANE_ICON_NATIVE         42
  77. #define CONFIG_PANE_ICON_RAMDISC_POPUP  43
  78. #define CONFIG_PANE_ICON_SYMBOL_TABLE    44
  79. #define CONFIG_PANE_ICON_VIDEO_DRAM    46
  80. #define CONFIG_PANE_ICON_FPA_CLK_2      47
  81. #define CONFIG_PANE_ICON_DDB_BOOT    48
  82.  
  83. #define CONFIG_PANE_WIDTH       742
  84. #define CONFIG_PANE_MIN_HEIGHT -484
  85.  
  86. #define CONFIG_PANE_VERTICAL_OFFSET 16
  87. #define CONFIG_PANE_LEFT_OFFSET     16
  88.  
  89. #define MAIN_MENU_OPTION_INFO     0
  90. #define MAIN_MENU_OPTION_CONFIG   1
  91. #define MAIN_MENU_OPTION_QUIT     2
  92.  
  93. #endif
  94.  
  95. /* End of icons.h */
  96.