home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / tcl / tkstep0.3b3 / tkstep0 / tkstep / tkUnixDefault.h < prev   
Encoding:
C/C++ Source or Header  |  1996-07-08  |  14.0 KB  |  438 lines

  1. /*
  2.  * tkUnixDefault.h --
  3.  *
  4.  *    This file defines the defaults for all options for all of
  5.  *    the Tk widgets.
  6.  *
  7.  * Copyright (c) 1991-1994 The Regents of the University of California.
  8.  * Copyright (c) 1994-1995 Sun Microsystems, Inc.
  9.  *
  10.  * See the file "license.terms" for information on usage and redistribution
  11.  * of this file, and for a DISCLAIMER OF ALL WARRANTIES.
  12.  *
  13.  * SCCS: @(#) tkUnixDefault.h 1.85 96/02/15 18:55:24
  14.  */
  15. /*
  16.  * TkSTEP modifications Copyright by
  17.  * Alfredo K. Kojima
  18.  */
  19.  
  20. #ifndef _TKUNIXDEFAULT
  21. #define _TKUNIXDEFAULT
  22.  
  23. /*
  24.  * The definitions below provide symbolic names for the default colors.
  25.  * NORMAL_BG -        Normal background color.
  26.  * ACTIVE_BG -        Background color when widget is active.
  27.  * SELECT_BG -        Background color for selected text.
  28.  * TROUGH -        Background color for troughs in scales and scrollbars.
  29.  * INDICATOR -        Color for indicator when button is selected.
  30.  * DISABLED -        Foreground color when widget is disabled.
  31.  */
  32.  
  33. #define BLACK        "Black"
  34. #define WHITE        "White"
  35.  
  36. #define NORMAL_BG    "#bfbfbf"
  37. #define ACTIVE_BG    "#ffffff"
  38. #define SELECT_BG    "#c3c3c3"
  39. #define TROUGH        "#bfbfbf"
  40. #define INDICATOR    "#ffffff"
  41. #define DISABLED    "#636363"
  42.  
  43. /*
  44.  * Defaults for labels, buttons, checkbuttons, and radiobuttons:
  45.  */
  46.  
  47. #define DEF_BUTTON_ANCHOR        "center"
  48. #define DEF_BUTTON_ACTIVE_BG_COLOR    NORMAL_BG
  49. #define DEF_BUTTON_ACTIVE_BG_MONO    WHITE
  50. #define DEF_BUTTON_ACTIVE_FG_COLOR    BLACK
  51. #define DEF_BUTTON_ACTIVE_FG_MONO    BLACK
  52. #define DEF_BUTTON_BG_COLOR        NORMAL_BG
  53. #define DEF_BUTTON_BG_MONO        WHITE
  54. #define DEF_BUTTON_BITMAP        ""
  55. #define DEF_BUTTON_BORDER_WIDTH        "2"
  56. #define DEF_BUTTON_CURSOR        ""
  57. #define DEF_BUTTON_COMMAND        ""
  58. #define DEF_BUTTON_DISABLED_FG_COLOR    DISABLED
  59. #define DEF_BUTTON_DISABLED_FG_MONO    ""
  60. #define DEF_BUTTON_FG            BLACK
  61. #define DEF_BUTTON_FONT            "-Adobe-Helvetica-Medium-R-Normal--*-120-*-*-*-*-*-*"
  62. #define DEF_BUTTON_HEIGHT        "0"
  63. #define DEF_BUTTON_HIGHLIGHT_BG        NORMAL_BG
  64. #define DEF_BUTTON_HIGHLIGHT        BLACK
  65. #define DEF_LABEL_HIGHLIGHT_WIDTH    "0"
  66. #define DEF_BUTTON_HIGHLIGHT_WIDTH    "0"
  67. #define DEF_BUTTON_IMAGE        (char *) NULL
  68. #define DEF_BUTTON_INDICATOR        "1"
  69. #define DEF_BUTTON_JUSTIFY        "center"
  70. #define DEF_BUTTON_OFF_VALUE        "0"
  71. #define DEF_BUTTON_ON_VALUE        "1"
  72. #define DEF_BUTTON_PADX            "3m"
  73. #define DEF_LABCHKRAD_PADX        "1"
  74. #define DEF_BUTTON_PADY            "1m"
  75. #define DEF_LABCHKRAD_PADY        "1"
  76. #define DEF_BUTTON_RELIEF        "raised"
  77. #define DEF_LABCHKRAD_RELIEF        "flat"
  78. #define DEF_BUTTON_SELECT_COLOR        INDICATOR
  79. #define DEF_BUTTON_SELECT_MONO        BLACK
  80. #define DEF_BUTTON_SELECT_IMAGE        (char *) NULL
  81. #define DEF_BUTTON_STATE        "normal"
  82. #define DEF_LABEL_TAKE_FOCUS        "0"
  83. #define DEF_BUTTON_TAKE_FOCUS        (char *) NULL
  84. #define DEF_BUTTON_TEXT            ""
  85. #define DEF_BUTTON_TEXT_VARIABLE    ""
  86. #define DEF_BUTTON_UNDERLINE        "-1"
  87. #define DEF_BUTTON_VALUE        ""
  88. #define DEF_BUTTON_WIDTH        "0"
  89. #define DEF_BUTTON_WRAP_LENGTH        "0"
  90. #define DEF_RADIOBUTTON_VARIABLE    "selectedButton"
  91. #define DEF_CHECKBUTTON_VARIABLE    ""
  92.  
  93. /*
  94.  * Defaults for canvases:
  95.  */
  96.  
  97. #define DEF_CANVAS_BG_COLOR        NORMAL_BG
  98. #define DEF_CANVAS_BG_MONO        WHITE
  99. #define DEF_CANVAS_BORDER_WIDTH        "0"
  100. #define DEF_CANVAS_CLOSE_ENOUGH        "1"
  101. #define DEF_CANVAS_CONFINE        "1"
  102. #define DEF_CANVAS_CURSOR        ""
  103. #define DEF_CANVAS_HEIGHT        "7c"
  104. #define DEF_CANVAS_HIGHLIGHT_BG        NORMAL_BG
  105. #define DEF_CANVAS_HIGHLIGHT        WHITE
  106. #define DEF_CANVAS_HIGHLIGHT_WIDTH    "2"
  107. #define DEF_CANVAS_INSERT_BG        BLACK
  108. #define DEF_CANVAS_INSERT_BD_COLOR    "0"
  109. #define DEF_CANVAS_INSERT_BD_MONO    "0"
  110. #define DEF_CANVAS_INSERT_OFF_TIME    "300"
  111. #define DEF_CANVAS_INSERT_ON_TIME    "600"
  112. #define DEF_CANVAS_INSERT_WIDTH        "2"
  113. #define DEF_CANVAS_RELIEF        "flat"
  114. #define DEF_CANVAS_SCROLL_REGION    ""
  115. #define DEF_CANVAS_SELECT_COLOR        SELECT_BG
  116. #define DEF_CANVAS_SELECT_MONO        BLACK
  117. #define DEF_CANVAS_SELECT_BD_COLOR    "1"
  118. #define DEF_CANVAS_SELECT_BD_MONO    "0"
  119. #define DEF_CANVAS_SELECT_FG_COLOR    BLACK
  120. #define DEF_CANVAS_SELECT_FG_MONO    WHITE
  121. #define DEF_CANVAS_TAKE_FOCUS        (char *) NULL
  122. #define DEF_CANVAS_WIDTH        "10c"
  123. #define DEF_CANVAS_X_SCROLL_CMD        ""
  124. #define DEF_CANVAS_X_SCROLL_INCREMENT    "0"
  125. #define DEF_CANVAS_Y_SCROLL_CMD        ""
  126. #define DEF_CANVAS_Y_SCROLL_INCREMENT    "0"
  127.  
  128. /*
  129.  * Defaults for entries:
  130.  */
  131.  
  132. #define DEF_ENTRY_BG_COLOR        NORMAL_BG
  133. #define DEF_ENTRY_BG_MONO        WHITE
  134. #define DEF_ENTRY_BORDER_WIDTH        "2"
  135. #define DEF_ENTRY_CURSOR        "xterm"
  136. #define DEF_ENTRY_EXPORT_SELECTION    "1"
  137. #define DEF_ENTRY_FONT            "-Adobe-Helvetica-Medium-R-Normal--*-120-*-*-*-*-*-*"
  138. #define DEF_ENTRY_FG            BLACK
  139. #define DEF_ENTRY_HIGHLIGHT_BG        NORMAL_BG
  140. #define DEF_ENTRY_HIGHLIGHT        BLACK
  141. #define DEF_ENTRY_HIGHLIGHT_WIDTH    "2"
  142. #define DEF_ENTRY_INSERT_BG        BLACK
  143. #define DEF_ENTRY_INSERT_BD_COLOR    "0"
  144. #define DEF_ENTRY_INSERT_BD_MONO    "0"
  145. #define DEF_ENTRY_INSERT_OFF_TIME    "300"
  146. #define DEF_ENTRY_INSERT_ON_TIME    "600"
  147. #define DEF_ENTRY_INSERT_WIDTH        "2"
  148. #define DEF_ENTRY_JUSTIFY        "left"
  149. #define DEF_ENTRY_RELIEF        "sunken"
  150. #define DEF_ENTRY_SCROLL_COMMAND    ""
  151. #define DEF_ENTRY_SELECT_COLOR        SELECT_BG
  152. #define DEF_ENTRY_SELECT_MONO        BLACK
  153. #define DEF_ENTRY_SELECT_BD_COLOR    "1"
  154. #define DEF_ENTRY_SELECT_BD_MONO    "0"
  155. #define DEF_ENTRY_SELECT_FG_COLOR    BLACK
  156. #define DEF_ENTRY_SELECT_FG_MONO    BLACK
  157. #define DEF_ENTRY_SHOW            (char *) NULL
  158. #define DEF_ENTRY_STATE            "normal"
  159. #define DEF_ENTRY_TAKE_FOCUS        (char *) NULL
  160. #define DEF_ENTRY_TEXT_VARIABLE        ""
  161. #define DEF_ENTRY_WIDTH            "20"
  162.  
  163. /*
  164.  * Defaults for frames:
  165.  */
  166.  
  167. #define DEF_FRAME_BG_COLOR        NORMAL_BG
  168. #define DEF_FRAME_BG_MONO        WHITE
  169. #define DEF_FRAME_BORDER_WIDTH        "0"
  170. #define DEF_FRAME_CLASS            "Frame"
  171. #define DEF_FRAME_COLORMAP        ""
  172. #define DEF_FRAME_CURSOR        ""
  173. #define DEF_FRAME_HEIGHT        "0"
  174. #define DEF_FRAME_HIGHLIGHT_BG        NORMAL_BG
  175. #define DEF_FRAME_HIGHLIGHT        WHITE
  176. #define DEF_FRAME_HIGHLIGHT_WIDTH    "0"
  177. #define DEF_FRAME_RELIEF        "flat"
  178. #define DEF_FRAME_TAKE_FOCUS        "0"
  179. #define DEF_FRAME_VISUAL        ""
  180. #define DEF_FRAME_WIDTH            "0"
  181.  
  182. /*
  183.  * Defaults for listboxes:
  184.  */
  185.  
  186. #define DEF_LISTBOX_BG_COLOR        NORMAL_BG
  187. #define DEF_LISTBOX_BG_MONO        WHITE
  188. #define DEF_LISTBOX_BORDER_WIDTH    "2"
  189. #define DEF_LISTBOX_CURSOR        ""
  190. #define DEF_LISTBOX_EXPORT_SELECTION    "1"
  191. #define DEF_LISTBOX_FONT        "-Adobe-Helvetica-Medium-R-Normal--*-120-*-*-*-*-*-*"
  192. #define DEF_LISTBOX_FG            BLACK
  193. #define DEF_LISTBOX_HEIGHT        "10"
  194. #define DEF_LISTBOX_HIGHLIGHT_BG    NORMAL_BG
  195. #define DEF_LISTBOX_HIGHLIGHT        BLACK
  196. #define DEF_LISTBOX_HIGHLIGHT_WIDTH    "2"
  197. #define DEF_LISTBOX_RELIEF        "sunken"
  198. #define DEF_LISTBOX_SCROLL_COMMAND    ""
  199. #define DEF_LISTBOX_SELECT_COLOR    SELECT_BG
  200. #define DEF_LISTBOX_SELECT_MONO        BLACK
  201. #define DEF_LISTBOX_SELECT_BD        "1"
  202. #define DEF_LISTBOX_SELECT_FG_COLOR    BLACK
  203. #define DEF_LISTBOX_SELECT_FG_MONO    WHITE
  204. #define DEF_LISTBOX_SELECT_MODE        "browse"
  205. #define DEF_LISTBOX_SET_GRID        "0"
  206. #define DEF_LISTBOX_TAKE_FOCUS        (char *) NULL
  207. #define DEF_LISTBOX_WIDTH        "20"
  208.  
  209. /*
  210.  * Defaults for individual entries of menus:
  211.  */
  212.  
  213. #define DEF_MENU_ENTRY_ACTIVE_BG    (char *) NULL
  214. #define DEF_MENU_ENTRY_ACTIVE_FG    (char *) NULL
  215. #define DEF_MENU_ENTRY_ACCELERATOR    (char *) NULL
  216. #define DEF_MENU_ENTRY_BG        (char *) NULL
  217. #define DEF_MENU_ENTRY_BITMAP        None
  218. #define DEF_MENU_ENTRY_COMMAND        (char *) NULL
  219. #define DEF_MENU_ENTRY_FG        (char *) NULL
  220. #define DEF_MENU_ENTRY_FONT        (char *) NULL
  221. #define DEF_MENU_ENTRY_IMAGE        (char *) NULL
  222. #define DEF_MENU_ENTRY_INDICATOR    "1"
  223. #define DEF_MENU_ENTRY_LABEL        (char *) NULL
  224. #define DEF_MENU_ENTRY_MENU        (char *) NULL
  225. #define DEF_MENU_ENTRY_OFF_VALUE    "0"
  226. #define DEF_MENU_ENTRY_ON_VALUE        "1"
  227. #define DEF_MENU_ENTRY_SELECT_IMAGE    (char *) NULL
  228. #define DEF_MENU_ENTRY_STATE        "normal"
  229. #define DEF_MENU_ENTRY_VALUE        (char *) NULL
  230. #define DEF_MENU_ENTRY_CHECK_VARIABLE    (char *) NULL
  231. #define DEF_MENU_ENTRY_RADIO_VARIABLE    "selectedButton"
  232. #define DEF_MENU_ENTRY_SELECT    (char *) NULL
  233. #define DEF_MENU_ENTRY_UNDERLINE    "-1"
  234.  
  235. /*
  236.  * Defaults for menus overall:
  237.  */
  238.  
  239. #define DEF_MENU_ACTIVE_BG_COLOR    ACTIVE_BG
  240. #define DEF_MENU_ACTIVE_BG_MONO        WHITE
  241. #define DEF_MENU_ACTIVE_BORDER_WIDTH    "2"
  242. #define DEF_MENU_ACTIVE_FG_COLOR    BLACK
  243. #define DEF_MENU_ACTIVE_FG_MONO        BLACK
  244. #define DEF_MENU_BG_COLOR        NORMAL_BG
  245. #define DEF_MENU_BG_MONO        WHITE
  246. #define DEF_MENU_BORDER_WIDTH        "2"
  247. #define DEF_MENU_CURSOR            "arrow"
  248. #define DEF_MENU_DISABLED_FG_COLOR    DISABLED
  249. #define DEF_MENU_DISABLED_FG_MONO    ""
  250. #define DEF_MENU_FONT            "-Adobe-Helvetica-Medium-R-Normal--*-120-*-*-*-*-*-*"
  251. #define DEF_MENU_FG            BLACK
  252. #define DEF_MENU_POST_COMMAND        ""
  253. #define DEF_MENU_RELIEF            "raised"
  254. #define DEF_MENU_SELECT_COLOR        INDICATOR
  255. #define DEF_MENU_SELECT_MONO        BLACK
  256. #define DEF_MENU_TAKE_FOCUS        "0"
  257. #define DEF_MENU_TEAROFF        "1"
  258. #define DEF_MENU_TEAROFF_CMD        (char *) NULL
  259. #define DEF_MENU_TRANSIENT        "1"
  260.  
  261. /*
  262.  * Defaults for menubuttons:
  263.  */
  264.  
  265. #define DEF_MENUBUTTON_ANCHOR        "center"
  266. #define DEF_MENUBUTTON_ACTIVE_BG_COLOR    NORMAL_BG
  267. #define DEF_MENUBUTTON_ACTIVE_BG_MONO    WHITE
  268. #define DEF_MENUBUTTON_ACTIVE_FG_COLOR    BLACK
  269. #define DEF_MENUBUTTON_ACTIVE_FG_MONO    BLACK
  270. #define DEF_MENUBUTTON_BG_COLOR        NORMAL_BG
  271. #define DEF_MENUBUTTON_BG_MONO        WHITE
  272. #define DEF_MENUBUTTON_BITMAP        ""
  273. #define DEF_MENUBUTTON_BORDER_WIDTH    "2"
  274. #define DEF_MENUBUTTON_CURSOR        ""
  275. #define DEF_MENUBUTTON_DISABLED_FG_COLOR DISABLED
  276. #define DEF_MENUBUTTON_DISABLED_FG_MONO    ""
  277. #define DEF_MENUBUTTON_FONT        "-Adobe-Helvetica-Medium-R-Normal--*-120-*-*-*-*-*-*"
  278. #define DEF_MENUBUTTON_FG        BLACK
  279. #define DEF_MENUBUTTON_HEIGHT        "0"
  280. #define DEF_MENUBUTTON_HIGHLIGHT_BG    NORMAL_BG
  281. #define DEF_MENUBUTTON_HIGHLIGHT    BLACK
  282. #define DEF_MENUBUTTON_HIGHLIGHT_WIDTH    "0"
  283. #define DEF_MENUBUTTON_IMAGE        (char *) NULL
  284. #define DEF_MENUBUTTON_INDICATOR    "0"
  285. #define DEF_MENUBUTTON_JUSTIFY        "center"
  286. #define DEF_MENUBUTTON_MENU        ""
  287. #define DEF_MENUBUTTON_PADX        "4p"
  288. #define DEF_MENUBUTTON_PADY        "3p"
  289. #define DEF_MENUBUTTON_RELIEF        "flat"
  290. #define DEF_MENUBUTTON_STATE        "normal"
  291. #define DEF_MENUBUTTON_TAKE_FOCUS    "0"
  292. #define DEF_MENUBUTTON_TEXT        ""
  293. #define DEF_MENUBUTTON_TEXT_VARIABLE    ""
  294. #define DEF_MENUBUTTON_UNDERLINE    "-1"
  295. #define DEF_MENUBUTTON_WIDTH        "0"
  296. #define DEF_MENUBUTTON_WRAP_LENGTH    "0"
  297.  
  298. /*
  299.  * Defaults for messages:
  300.  */
  301.  
  302. #define DEF_MESSAGE_ANCHOR        "center"
  303. #define DEF_MESSAGE_ASPECT        "150"
  304. #define DEF_MESSAGE_BG_COLOR        NORMAL_BG
  305. #define DEF_MESSAGE_BG_MONO        WHITE
  306. #define DEF_MESSAGE_BORDER_WIDTH    "2"
  307. #define DEF_MESSAGE_CURSOR        ""
  308. #define DEF_MESSAGE_FG            BLACK
  309. #define DEF_MESSAGE_FONT        "-Adobe-Helvetica-Medium-R-Normal--*-120-*-*-*-*-*-*"
  310. #define DEF_MESSAGE_HIGHLIGHT_BG    NORMAL_BG
  311. #define DEF_MESSAGE_HIGHLIGHT        BLACK
  312. #define DEF_MESSAGE_HIGHLIGHT_WIDTH    "0"
  313. #define DEF_MESSAGE_JUSTIFY        "left"
  314. #define DEF_MESSAGE_PADX        "-1"
  315. #define DEF_MESSAGE_PADY        "-1"
  316. #define DEF_MESSAGE_RELIEF        "flat"
  317. #define DEF_MESSAGE_TAKE_FOCUS        "0"
  318. #define DEF_MESSAGE_TEXT        ""
  319. #define DEF_MESSAGE_TEXT_VARIABLE    ""
  320. #define DEF_MESSAGE_WIDTH        "0"
  321.  
  322. /*
  323.  * Defaults for scales:
  324.  */
  325.  
  326. #define DEF_SCALE_ACTIVE_BG_COLOR    ACTIVE_BG
  327. #define DEF_SCALE_ACTIVE_BG_MONO    WHITE
  328. #define DEF_SCALE_BG_COLOR        NORMAL_BG
  329. #define DEF_SCALE_BG_MONO        WHITE
  330. #define DEF_SCALE_BIG_INCREMENT        "0"
  331. #define DEF_SCALE_BORDER_WIDTH        "2"
  332. #define DEF_SCALE_COMMAND        ""
  333. #define DEF_SCALE_CURSOR        ""
  334. #define DEF_SCALE_DIGITS        "0"
  335. #define DEF_SCALE_FONT            "-Adobe-Helvetica-Bold-R-Normal--*-120-*-*-*-*-*-*"
  336. #define DEF_SCALE_FG_COLOR        BLACK
  337. #define DEF_SCALE_FG_MONO        BLACK
  338. #define DEF_SCALE_FROM            "0"
  339. #define DEF_SCALE_HIGHLIGHT_BG        NORMAL_BG
  340. #define DEF_SCALE_HIGHLIGHT        BLACK
  341. #define DEF_SCALE_HIGHLIGHT_WIDTH    "2"
  342. #define DEF_SCALE_LABEL            ""
  343. #define DEF_SCALE_LENGTH        "100"
  344. #define DEF_SCALE_ORIENT        "vertical"
  345. #define DEF_SCALE_RELIEF        "flat"
  346. #define DEF_SCALE_REPEAT_DELAY    "300"
  347. #define DEF_SCALE_REPEAT_INTERVAL    "100"
  348. #define DEF_SCALE_RESOLUTION        "1"
  349. #define DEF_SCALE_TROUGH_COLOR        TROUGH
  350. #define DEF_SCALE_TROUGH_MONO        BLACK
  351. #define DEF_SCALE_SHOW_VALUE        "1"
  352. #define DEF_SCALE_SLIDER_LENGTH        "20"
  353. #define DEF_SCALE_SLIDER_RELIEF        "raised"
  354. #define DEF_SCALE_STATE            "normal"
  355. #define DEF_SCALE_TAKE_FOCUS        (char *) NULL
  356. #define DEF_SCALE_TICK_INTERVAL        "0"
  357. #define DEF_SCALE_TO            "100"
  358. #define DEF_SCALE_VARIABLE        ""
  359. #define DEF_SCALE_WIDTH            "14"
  360.  
  361. /*
  362.  * Defaults for scrollbars:
  363.  */
  364.  
  365. #define DEF_SCROLLBAR_ACTIVE_BG_COLOR    NORMAL_BG
  366. #define DEF_SCROLLBAR_ACTIVE_BG_MONO    WHITE
  367. #define DEF_SCROLLBAR_ACTIVE_RELIEF    "raised"
  368. #define DEF_SCROLLBAR_BG_COLOR        NORMAL_BG
  369. #define DEF_SCROLLBAR_BG_MONO        WHITE
  370. #define DEF_SCROLLBAR_BORDER_WIDTH    "2"
  371. #define DEF_SCROLLBAR_COMMAND        ""
  372. #define DEF_SCROLLBAR_CURSOR        ""
  373. #define DEF_SCROLLBAR_EL_BORDER_WIDTH    "-1"
  374. #define DEF_SCROLLBAR_HIGHLIGHT_BG    NORMAL_BG
  375. #define DEF_SCROLLBAR_HIGHLIGHT        BLACK
  376. #define DEF_SCROLLBAR_HIGHLIGHT_WIDTH    "0"
  377. #define DEF_SCROLLBAR_JUMP        "0"
  378. #define DEF_SCROLLBAR_ORIENT        "vertical"
  379. #define DEF_SCROLLBAR_RELIEF        "flat"
  380. #define DEF_SCROLLBAR_REPEAT_DELAY    "300"
  381. #define DEF_SCROLLBAR_REPEAT_INTERVAL    "100"
  382. #define DEF_SCROLLBAR_TAKE_FOCUS    (char *) NULL
  383. #define DEF_SCROLLBAR_TROUGH_COLOR    TROUGH
  384. #define DEF_SCROLLBAR_TROUGH_MONO    BLACK
  385. #define DEF_SCROLLBAR_WIDTH        "16"
  386.  
  387. /*
  388.  * Defaults for texts:
  389.  */
  390.  
  391. #define DEF_TEXT_BG_COLOR        NORMAL_BG
  392. #define DEF_TEXT_BG_MONO        WHITE
  393. #define DEF_TEXT_BORDER_WIDTH        "2"
  394. #define DEF_TEXT_CURSOR            "xterm"
  395. #define DEF_TEXT_FG            BLACK
  396. #define DEF_TEXT_EXPORT_SELECTION    "1"
  397. #define DEF_TEXT_FONT            "-*-Courier-Medium-R-Normal--*-120-*-*-*-*-*-*"
  398. #define DEF_TEXT_HEIGHT            "24"
  399. #define DEF_TEXT_HIGHLIGHT_BG        NORMAL_BG
  400. #define DEF_TEXT_HIGHLIGHT        BLACK
  401. #define DEF_TEXT_HIGHLIGHT_WIDTH    "2"
  402. #define DEF_TEXT_INSERT_BG        BLACK
  403. #define DEF_TEXT_INSERT_BD_COLOR    "0"
  404. #define DEF_TEXT_INSERT_BD_MONO        "0"
  405. #define DEF_TEXT_INSERT_OFF_TIME    "300"
  406. #define DEF_TEXT_INSERT_ON_TIME        "600"
  407. #define DEF_TEXT_INSERT_WIDTH        "2"
  408. #define DEF_TEXT_PADX            "1"
  409. #define DEF_TEXT_PADY            "1"
  410. #define DEF_TEXT_RELIEF            "sunken"
  411. #define DEF_TEXT_SELECT_COLOR        NORMAL_BG
  412. #define DEF_TEXT_SELECT_MONO        WHITE
  413. #define DEF_TEXT_SELECT_BD_COLOR    "1"
  414. #define DEF_TEXT_SELECT_BD_MONO        "0"
  415. #define DEF_TEXT_SELECT_FG_COLOR    BLACK
  416. #define DEF_TEXT_SELECT_FG_MONO        BLACK
  417. #define DEF_TEXT_SET_GRID        "0"
  418. #define DEF_TEXT_SPACING1        "0"
  419. #define DEF_TEXT_SPACING2        "0"
  420. #define DEF_TEXT_SPACING3        "0"
  421. #define DEF_TEXT_STATE            "normal"
  422. #define DEF_TEXT_TABS            ""
  423. #define DEF_TEXT_TAKE_FOCUS        (char *) NULL
  424. #define DEF_TEXT_WIDTH            "80"
  425. #define DEF_TEXT_WRAP            "char"
  426. #define DEF_TEXT_XSCROLL_COMMAND    ""
  427. #define DEF_TEXT_YSCROLL_COMMAND    ""
  428.  
  429. /*
  430.  * Defaults for toplevels (most of the defaults for frames also apply
  431.  * to toplevels):
  432.  */
  433.  
  434. #define DEF_TOPLEVEL_CLASS        "Toplevel"
  435. #define DEF_TOPLEVEL_SCREEN        ""
  436.  
  437. #endif /* _TKUNIXDEFAULT */
  438.