tkMacDefault.h
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:17k
源码类别:

通讯编程

开发平台:

Visual C++

  1. /*
  2.  * tkMacDefault.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-1997 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.  * RCS: @(#) $Id: tkMacDefault.h,v 1.16 2002/06/21 23:09:55 hobbs Exp $
  14.  */
  15. #ifndef _TKMACDEFAULT
  16. #define _TKMACDEFAULT
  17. /*
  18.  * The definitions below provide symbolic names for the default colors.
  19.  * NORMAL_BG - Normal background color.
  20.  * ACTIVE_BG - Background color when widget is active.
  21.  * SELECT_BG - Background color for selected text.
  22.  * SELECT_FG - Foreground color for selected text.
  23.  * TROUGH - Background color for troughs in scales and scrollbars.
  24.  * INDICATOR - Color for indicator when button is selected.
  25.  * DISABLED - Foreground color when widget is disabled.
  26.  */
  27. #define BLACK "Black"
  28. #define WHITE "White"
  29. #define NORMAL_BG "systemWindowBody"
  30. #define ACTIVE_BG "#ececec"
  31. #define SELECT_BG "systemHighlight"
  32. #define SELECT_FG "systemHighlightText"
  33. #define TROUGH "#c3c3c3"
  34. #define INDICATOR "#b03060"
  35. #define DISABLED "#a3a3a3"
  36. /*
  37.  * Defaults for labels, buttons, checkbuttons, and radiobuttons:
  38.  */
  39. #define DEF_BUTTON_ANCHOR "center"
  40. #define DEF_BUTTON_ACTIVE_BG_COLOR "systemButtonText"
  41. #define DEF_BUTTON_ACTIVE_BG_MONO BLACK
  42. #define DEF_BUTTON_ACTIVE_FG_COLOR "systemButtonFace"
  43. #define DEF_CHKRAD_ACTIVE_FG_COLOR DEF_BUTTON_ACTIVE_FG_COLOR
  44. #define DEF_BUTTON_ACTIVE_FG_MONO WHITE
  45. #define DEF_BUTTON_BG_COLOR "systemButtonFace"
  46. #define DEF_BUTTON_BG_MONO WHITE
  47. #define DEF_BUTTON_BITMAP ""
  48. #define DEF_BUTTON_BORDER_WIDTH "2"
  49. #define DEF_BUTTON_CURSOR ""
  50. #define DEF_BUTTON_COMMAND ""
  51. #define DEF_BUTTON_COMPOUND "none"
  52. #define DEF_BUTTON_DEFAULT "disabled"
  53. #define DEF_BUTTON_DISABLED_FG_COLOR DISABLED
  54. #define DEF_BUTTON_DISABLED_FG_MONO ""
  55. #define DEF_BUTTON_FG "systemButtonText"
  56. #define DEF_CHKRAD_FG DEF_BUTTON_FG
  57. #define DEF_BUTTON_FONT "system"
  58. #define DEF_BUTTON_HEIGHT "0"
  59. #define DEF_BUTTON_HIGHLIGHT_BG_COLOR DEF_BUTTON_BG_COLOR
  60. #define DEF_BUTTON_HIGHLIGHT_BG_MONO DEF_BUTTON_BG_MONO
  61. #define DEF_BUTTON_HIGHLIGHT "systemButtonFrame"
  62. #define DEF_LABEL_HIGHLIGHT_WIDTH "0"
  63. #define DEF_BUTTON_HIGHLIGHT_WIDTH "4"
  64. #define DEF_BUTTON_IMAGE (char *) NULL
  65. #define DEF_BUTTON_INDICATOR "1"
  66. #define DEF_BUTTON_JUSTIFY "center"
  67. #define DEF_BUTTON_OFF_VALUE "0"
  68. #define DEF_BUTTON_ON_VALUE "1"
  69. #define DEF_BUTTON_OVER_RELIEF ""
  70. #define DEF_BUTTON_PADX "7"
  71. #define DEF_LABCHKRAD_PADX "1"
  72. #define DEF_BUTTON_PADY "3"
  73. #define DEF_LABCHKRAD_PADY "1"
  74. #define DEF_BUTTON_RELIEF "flat"
  75. #define DEF_LABCHKRAD_RELIEF "flat"
  76. #define DEF_BUTTON_REPEAT_DELAY "0"
  77. #define DEF_BUTTON_REPEAT_INTERVAL "0"
  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.  * Defaults for canvases:
  94.  */
  95. #define DEF_CANVAS_BG_COLOR NORMAL_BG
  96. #define DEF_CANVAS_BG_MONO WHITE
  97. #define DEF_CANVAS_BORDER_WIDTH "0"
  98. #define DEF_CANVAS_CLOSE_ENOUGH "1"
  99. #define DEF_CANVAS_CONFINE "1"
  100. #define DEF_CANVAS_CURSOR ""
  101. #define DEF_CANVAS_HEIGHT "7c"
  102. #define DEF_CANVAS_HIGHLIGHT_BG NORMAL_BG
  103. #define DEF_CANVAS_HIGHLIGHT BLACK
  104. #define DEF_CANVAS_HIGHLIGHT_WIDTH "3"
  105. #define DEF_CANVAS_INSERT_BG BLACK
  106. #define DEF_CANVAS_INSERT_BD_COLOR "0"
  107. #define DEF_CANVAS_INSERT_BD_MONO "0"
  108. #define DEF_CANVAS_INSERT_OFF_TIME "300"
  109. #define DEF_CANVAS_INSERT_ON_TIME "600"
  110. #define DEF_CANVAS_INSERT_WIDTH "2"
  111. #define DEF_CANVAS_RELIEF "flat"
  112. #define DEF_CANVAS_SCROLL_REGION ""
  113. #define DEF_CANVAS_SELECT_COLOR SELECT_BG
  114. #define DEF_CANVAS_SELECT_MONO BLACK
  115. #define DEF_CANVAS_SELECT_BD_COLOR "1"
  116. #define DEF_CANVAS_SELECT_BD_MONO "0"
  117. #define DEF_CANVAS_SELECT_FG_COLOR BLACK
  118. #define DEF_CANVAS_SELECT_FG_MONO WHITE
  119. #define DEF_CANVAS_TAKE_FOCUS (char *) NULL
  120. #define DEF_CANVAS_WIDTH "10c"
  121. #define DEF_CANVAS_X_SCROLL_CMD ""
  122. #define DEF_CANVAS_X_SCROLL_INCREMENT "0"
  123. #define DEF_CANVAS_Y_SCROLL_CMD ""
  124. #define DEF_CANVAS_Y_SCROLL_INCREMENT "0"
  125. /*
  126.  * Defaults for entries:
  127.  */
  128. #define DEF_ENTRY_BG_COLOR NORMAL_BG
  129. #define DEF_ENTRY_BG_MONO WHITE
  130. /* #define DEF_ENTRY_BORDER_WIDTH "2" */
  131. #define DEF_ENTRY_BORDER_WIDTH "1"
  132. #define DEF_ENTRY_CURSOR "xterm"
  133. #define DEF_ENTRY_DISABLED_BG_COLOR NORMAL_BG
  134. #define DEF_ENTRY_DISABLED_BG_MONO WHITE
  135. #define DEF_ENTRY_DISABLED_FG DISABLED
  136. #define DEF_ENTRY_EXPORT_SELECTION "1"
  137. #define DEF_ENTRY_FONT "Helvetica 12"
  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 "3" */
  142. #define DEF_ENTRY_HIGHLIGHT_WIDTH "0"
  143. #define DEF_ENTRY_INSERT_BG BLACK
  144. #define DEF_ENTRY_INSERT_BD_COLOR "0"
  145. #define DEF_ENTRY_INSERT_BD_MONO "0"
  146. #define DEF_ENTRY_INSERT_OFF_TIME "300"
  147. #define DEF_ENTRY_INSERT_ON_TIME "600"
  148. /* #define DEF_ENTRY_INSERT_WIDTH "2" */
  149. #define DEF_ENTRY_INSERT_WIDTH "1"
  150. #define DEF_ENTRY_JUSTIFY "left"
  151. #define DEF_ENTRY_READONLY_BG_COLOR NORMAL_BG
  152. #define DEF_ENTRY_READONLY_BG_MONO WHITE
  153. /* #define DEF_ENTRY_RELIEF "sunken" */
  154. #define DEF_ENTRY_RELIEF "solid"
  155. #define DEF_ENTRY_SCROLL_COMMAND ""
  156. #define DEF_ENTRY_SELECT_COLOR SELECT_BG
  157. #define DEF_ENTRY_SELECT_MONO BLACK
  158. #define DEF_ENTRY_SELECT_BD_COLOR "1"
  159. #define DEF_ENTRY_SELECT_BD_MONO "0"
  160. #define DEF_ENTRY_SELECT_FG_COLOR SELECT_FG
  161. #define DEF_ENTRY_SELECT_FG_MONO WHITE
  162. #define DEF_ENTRY_SHOW (char *) NULL
  163. #define DEF_ENTRY_STATE "normal"
  164. #define DEF_ENTRY_TAKE_FOCUS (char *) NULL
  165. #define DEF_ENTRY_TEXT_VARIABLE ""
  166. #define DEF_ENTRY_WIDTH "20"
  167. /*
  168.  * Defaults for frames:
  169.  */
  170. #define DEF_FRAME_BG_COLOR NORMAL_BG
  171. #define DEF_FRAME_BG_MONO WHITE
  172. #define DEF_FRAME_BORDER_WIDTH "0"
  173. #define DEF_FRAME_CLASS "Frame"
  174. #define DEF_FRAME_COLORMAP ""
  175. #define DEF_FRAME_CONTAINER "0"
  176. #define DEF_FRAME_CURSOR ""
  177. #define DEF_FRAME_HEIGHT "0"
  178. #define DEF_FRAME_HIGHLIGHT_BG NORMAL_BG
  179. #define DEF_FRAME_HIGHLIGHT BLACK
  180. #define DEF_FRAME_HIGHLIGHT_WIDTH "0"
  181. #define DEF_FRAME_PADX "0"
  182. #define DEF_FRAME_PADY "0"
  183. #define DEF_FRAME_RELIEF "flat"
  184. #define DEF_FRAME_TAKE_FOCUS "0"
  185. #define DEF_FRAME_VISUAL ""
  186. #define DEF_FRAME_WIDTH "0"
  187. /*
  188.  * Defaults for labelframes:
  189.  */
  190. #define DEF_LABELFRAME_BORDER_WIDTH "2"
  191. #define DEF_LABELFRAME_CLASS "Labelframe"
  192. #define DEF_LABELFRAME_RELIEF "groove"
  193. #define DEF_LABELFRAME_FG "systemButtonText"
  194. #define DEF_LABELFRAME_FONT "system"
  195. #define DEF_LABELFRAME_TEXT ""
  196. #define DEF_LABELFRAME_LABELANCHOR "nw"
  197. /*
  198.  * Defaults for listboxes:
  199.  */
  200. #define DEF_LISTBOX_ACTIVE_STYLE "underline"
  201. #define DEF_LISTBOX_BG_COLOR NORMAL_BG
  202. #define DEF_LISTBOX_BG_MONO WHITE
  203. #define DEF_LISTBOX_BORDER_WIDTH "1"
  204. #define DEF_LISTBOX_CURSOR ""
  205. #define DEF_LISTBOX_DISABLED_FG DISABLED
  206. #define DEF_LISTBOX_EXPORT_SELECTION "1"
  207. #define DEF_LISTBOX_FONT "application"
  208. #define DEF_LISTBOX_FG BLACK
  209. #define DEF_LISTBOX_HEIGHT "10"
  210. #define DEF_LISTBOX_HIGHLIGHT_BG NORMAL_BG
  211. #define DEF_LISTBOX_HIGHLIGHT BLACK
  212. #define DEF_LISTBOX_HIGHLIGHT_WIDTH "0"
  213. #define DEF_LISTBOX_RELIEF "solid"
  214. #define DEF_LISTBOX_SCROLL_COMMAND ""
  215. #define DEF_LISTBOX_LIST_VARIABLE ""
  216. #define DEF_LISTBOX_SELECT_COLOR SELECT_BG
  217. #define DEF_LISTBOX_SELECT_MONO BLACK
  218. #define DEF_LISTBOX_SELECT_BD "0"
  219. #define DEF_LISTBOX_SELECT_FG_COLOR SELECT_FG
  220. #define DEF_LISTBOX_SELECT_FG_MONO WHITE
  221. #define DEF_LISTBOX_SELECT_MODE "browse"
  222. #define DEF_LISTBOX_SET_GRID "0"
  223. #define DEF_LISTBOX_STATE "normal"
  224. #define DEF_LISTBOX_TAKE_FOCUS (char *) NULL
  225. #define DEF_LISTBOX_WIDTH "20"
  226. /*
  227.  * Defaults for individual entries of menus:
  228.  */
  229. #define DEF_MENU_ENTRY_ACTIVE_BG (char *) NULL
  230. #define DEF_MENU_ENTRY_ACTIVE_FG (char *) NULL
  231. #define DEF_MENU_ENTRY_ACCELERATOR (char *) NULL
  232. #define DEF_MENU_ENTRY_BG (char *) NULL
  233. #define DEF_MENU_ENTRY_BITMAP None
  234. #define DEF_MENU_ENTRY_COLUMN_BREAK "0"
  235. #define DEF_MENU_ENTRY_COMMAND (char *) NULL
  236. #define DEF_MENU_ENTRY_COMPOUND  "none"
  237. #define DEF_MENU_ENTRY_FG (char *) NULL
  238. #define DEF_MENU_ENTRY_FONT (char *) NULL
  239. #define DEF_MENU_ENTRY_HIDE_MARGIN "0"
  240. #define DEF_MENU_ENTRY_IMAGE (char *) NULL
  241. #define DEF_MENU_ENTRY_INDICATOR "1"
  242. #define DEF_MENU_ENTRY_LABEL (char *) NULL
  243. #define DEF_MENU_ENTRY_MENU (char *) NULL
  244. #define DEF_MENU_ENTRY_OFF_VALUE "0"
  245. #define DEF_MENU_ENTRY_ON_VALUE "1"
  246. #define DEF_MENU_ENTRY_SELECT_IMAGE (char *) NULL
  247. #define DEF_MENU_ENTRY_STATE "normal"
  248. #define DEF_MENU_ENTRY_VALUE (char *) NULL
  249. #define DEF_MENU_ENTRY_CHECK_VARIABLE (char *) NULL
  250. #define DEF_MENU_ENTRY_RADIO_VARIABLE "selectedButton"
  251. #define DEF_MENU_ENTRY_SELECT (char *) NULL
  252. #define DEF_MENU_ENTRY_UNDERLINE "-1"
  253. /*
  254.  * Defaults for menus overall:
  255.  */
  256. #define DEF_MENU_ACTIVE_BG_COLOR "SystemMenuActive"
  257. #define DEF_MENU_ACTIVE_BG_MONO BLACK
  258. #define DEF_MENU_ACTIVE_BORDER_WIDTH "0"
  259. #define DEF_MENU_ACTIVE_FG_COLOR "SystemMenuActiveText"
  260. #define DEF_MENU_ACTIVE_FG_MONO WHITE
  261. #define DEF_MENU_BG_COLOR "SystemMenu"
  262. #define DEF_MENU_BG_MONO WHITE
  263. #define DEF_MENU_BORDER_WIDTH "0"
  264. #define DEF_MENU_CURSOR "arrow"
  265. #define DEF_MENU_DISABLED_FG_COLOR "SystemMenuDisabled"
  266. #define DEF_MENU_DISABLED_FG_MONO ""
  267. #define DEF_MENU_FONT "system"
  268. #define DEF_MENU_FG "SystemMenuText"
  269. #define DEF_MENU_POST_COMMAND ""
  270. #define DEF_MENU_RELIEF "flat"
  271. #define DEF_MENU_SELECT_COLOR "SystemMenuActive"
  272. #define DEF_MENU_SELECT_MONO BLACK
  273. #define DEF_MENU_TAKE_FOCUS "0"
  274. #define DEF_MENU_TEAROFF "1"
  275. #define DEF_MENU_TEAROFF_CMD (char *) NULL
  276. #define DEF_MENU_TITLE ""
  277. #define DEF_MENU_TYPE "normal"
  278. /*
  279.  * Defaults for menubuttons:
  280.  */
  281. #define DEF_MENUBUTTON_ANCHOR "center"
  282. #define DEF_MENUBUTTON_ACTIVE_BG_COLOR ACTIVE_BG
  283. #define DEF_MENUBUTTON_ACTIVE_BG_MONO BLACK
  284. #define DEF_MENUBUTTON_ACTIVE_FG_COLOR BLACK
  285. #define DEF_MENUBUTTON_ACTIVE_FG_MONO WHITE
  286. #define DEF_MENUBUTTON_BG_COLOR NORMAL_BG
  287. #define DEF_MENUBUTTON_BG_MONO WHITE
  288. #define DEF_MENUBUTTON_BITMAP ""
  289. #define DEF_MENUBUTTON_BORDER_WIDTH "2"
  290. #define DEF_MENUBUTTON_CURSOR ""
  291. #define DEF_MENUBUTTON_DIRECTION "below"
  292. #define DEF_MENUBUTTON_DISABLED_FG_COLOR DISABLED
  293. #define DEF_MENUBUTTON_DISABLED_FG_MONO ""
  294. #define DEF_MENUBUTTON_FONT "system"
  295. #define DEF_MENUBUTTON_FG BLACK
  296. #define DEF_MENUBUTTON_HEIGHT "0"
  297. #define DEF_MENUBUTTON_HIGHLIGHT_BG_COLOR DEF_MENUBUTTON_BG_COLOR
  298. #define DEF_MENUBUTTON_HIGHLIGHT_BG_MONO  DEF_MENUBUTTON_BG_MONO
  299. #define DEF_MENUBUTTON_HIGHLIGHT BLACK
  300. #define DEF_MENUBUTTON_HIGHLIGHT_WIDTH "0"
  301. #define DEF_MENUBUTTON_IMAGE (char *) NULL
  302. #define DEF_MENUBUTTON_INDICATOR "0"
  303. /* #define DEF_MENUBUTTON_JUSTIFY "center" */
  304. #define DEF_MENUBUTTON_JUSTIFY "left"
  305. #define DEF_MENUBUTTON_MENU ""
  306. #define DEF_MENUBUTTON_PADX "4p"
  307. #define DEF_MENUBUTTON_PADY "3p"
  308. #define DEF_MENUBUTTON_RELIEF "flat"
  309. #define DEF_MENUBUTTON_STATE "normal"
  310. #define DEF_MENUBUTTON_TAKE_FOCUS "0"
  311. #define DEF_MENUBUTTON_TEXT ""
  312. #define DEF_MENUBUTTON_TEXT_VARIABLE ""
  313. #define DEF_MENUBUTTON_UNDERLINE "-1"
  314. #define DEF_MENUBUTTON_WIDTH "0"
  315. #define DEF_MENUBUTTON_WRAP_LENGTH "0"
  316. /*
  317.  * Defaults for messages:
  318.  */
  319. #define DEF_MESSAGE_ANCHOR "center"
  320. #define DEF_MESSAGE_ASPECT "150"
  321. #define DEF_MESSAGE_BG_COLOR NORMAL_BG
  322. #define DEF_MESSAGE_BG_MONO WHITE
  323. #define DEF_MESSAGE_BORDER_WIDTH "2"
  324. #define DEF_MESSAGE_CURSOR ""
  325. #define DEF_MESSAGE_FG BLACK
  326. #define DEF_MESSAGE_FONT "system"
  327. #define DEF_MESSAGE_HIGHLIGHT_BG NORMAL_BG
  328. #define DEF_MESSAGE_HIGHLIGHT BLACK
  329. #define DEF_MESSAGE_HIGHLIGHT_WIDTH "0"
  330. #define DEF_MESSAGE_JUSTIFY "left"
  331. #define DEF_MESSAGE_PADX "-1"
  332. #define DEF_MESSAGE_PADY "-1"
  333. #define DEF_MESSAGE_RELIEF "flat"
  334. #define DEF_MESSAGE_TAKE_FOCUS "0"
  335. #define DEF_MESSAGE_TEXT ""
  336. #define DEF_MESSAGE_TEXT_VARIABLE ""
  337. #define DEF_MESSAGE_WIDTH "0"
  338. /*
  339.  * Defaults for panedwindows
  340.  */
  341. #define DEF_PANEDWINDOW_BG_COLOR NORMAL_BG
  342. #define DEF_PANEDWINDOW_BG_MONO WHITE
  343. #define DEF_PANEDWINDOW_BORDERWIDTH "2"
  344. #define DEF_PANEDWINDOW_CURSOR ""
  345. #define DEF_PANEDWINDOW_HANDLEPAD "8"
  346. #define DEF_PANEDWINDOW_HANDLESIZE "8"
  347. #define DEF_PANEDWINDOW_HEIGHT ""
  348. #define DEF_PANEDWINDOW_OPAQUERESIZE "0"
  349. #define DEF_PANEDWINDOW_ORIENT "horizontal"
  350. #define DEF_PANEDWINDOW_RELIEF "flat"
  351. #define DEF_PANEDWINDOW_SASHCURSOR ""
  352. #define DEF_PANEDWINDOW_SASHPAD "2"
  353. #define DEF_PANEDWINDOW_SASHRELIEF "raised"
  354. #define DEF_PANEDWINDOW_SASHWIDTH "2"
  355. #define DEF_PANEDWINDOW_SHOWHANDLE "0"
  356. #define DEF_PANEDWINDOW_WIDTH ""
  357. /*
  358.  * Defaults for panedwindow panes
  359.  */
  360. #define DEF_PANEDWINDOW_PANE_AFTER ""
  361. #define DEF_PANEDWINDOW_PANE_BEFORE ""
  362. #define DEF_PANEDWINDOW_PANE_HEIGHT ""
  363. #define DEF_PANEDWINDOW_PANE_MINSIZE "0"
  364. #define DEF_PANEDWINDOW_PANE_PADX "0"
  365. #define DEF_PANEDWINDOW_PANE_PADY "0"
  366. #define DEF_PANEDWINDOW_PANE_STICKY "nsew"
  367. #define DEF_PANEDWINDOW_PANE_WIDTH ""
  368. /*
  369.  * Defaults for scales:
  370.  */
  371. #define DEF_SCALE_ACTIVE_BG_COLOR ACTIVE_BG
  372. #define DEF_SCALE_ACTIVE_BG_MONO BLACK
  373. #define DEF_SCALE_BG_COLOR NORMAL_BG
  374. #define DEF_SCALE_BG_MONO WHITE
  375. #define DEF_SCALE_BIG_INCREMENT "0"
  376. #define DEF_SCALE_BORDER_WIDTH "2"
  377. #define DEF_SCALE_COMMAND ""
  378. #define DEF_SCALE_CURSOR ""
  379. #define DEF_SCALE_DIGITS "0"
  380. #define DEF_SCALE_FONT "system"
  381. #define DEF_SCALE_FG_COLOR BLACK
  382. #define DEF_SCALE_FG_MONO BLACK
  383. #define DEF_SCALE_FROM "0"
  384. #define DEF_SCALE_HIGHLIGHT_BG_COLOR DEF_SCALE_BG_COLOR
  385. #define DEF_SCALE_HIGHLIGHT_BG_MONO DEF_SCALE_BG_MONO
  386. #define DEF_SCALE_HIGHLIGHT BLACK
  387. #define DEF_SCALE_HIGHLIGHT_WIDTH "0"
  388. #define DEF_SCALE_LABEL ""
  389. #define DEF_SCALE_LENGTH "100"
  390. #define DEF_SCALE_ORIENT "vertical"
  391. #define DEF_SCALE_RELIEF "flat"
  392. #define DEF_SCALE_REPEAT_DELAY "300"
  393. #define DEF_SCALE_REPEAT_INTERVAL "100"
  394. #define DEF_SCALE_RESOLUTION "1"
  395. #define DEF_SCALE_TROUGH_COLOR TROUGH
  396. #define DEF_SCALE_TROUGH_MONO WHITE
  397. #define DEF_SCALE_SHOW_VALUE "1"
  398. #define DEF_SCALE_SLIDER_LENGTH "30"
  399. #define DEF_SCALE_SLIDER_RELIEF "raised"
  400. #define DEF_SCALE_STATE "normal"
  401. #define DEF_SCALE_TAKE_FOCUS (char *) NULL
  402. #define DEF_SCALE_TICK_INTERVAL "0"
  403. #define DEF_SCALE_TO "100"
  404. #define DEF_SCALE_VARIABLE ""
  405. #define DEF_SCALE_WIDTH "15"
  406. /*
  407.  * Defaults for scrollbars:
  408.  */
  409. #define DEF_SCROLLBAR_ACTIVE_BG_COLOR ACTIVE_BG
  410. #define DEF_SCROLLBAR_ACTIVE_BG_MONO BLACK
  411. #define DEF_SCROLLBAR_ACTIVE_RELIEF "raised"
  412. #define DEF_SCROLLBAR_BG_COLOR NORMAL_BG
  413. #define DEF_SCROLLBAR_BG_MONO WHITE
  414. /* #define DEF_SCROLLBAR_BORDER_WIDTH "2" */
  415. #define DEF_SCROLLBAR_BORDER_WIDTH "0"
  416. #define DEF_SCROLLBAR_COMMAND ""
  417. #define DEF_SCROLLBAR_CURSOR ""
  418. #define DEF_SCROLLBAR_EL_BORDER_WIDTH "-1"
  419. #define DEF_SCROLLBAR_HIGHLIGHT_BG NORMAL_BG
  420. #define DEF_SCROLLBAR_HIGHLIGHT BLACK
  421. /* #define DEF_SCROLLBAR_HIGHLIGHT_WIDTH "2" */
  422. #define DEF_SCROLLBAR_HIGHLIGHT_WIDTH "0"
  423. #define DEF_SCROLLBAR_JUMP "0"
  424. #define DEF_SCROLLBAR_ORIENT "vertical"
  425. /*#define DEF_SCROLLBAR_RELIEF "sunken" */
  426. #define DEF_SCROLLBAR_RELIEF "flat"
  427. #define DEF_SCROLLBAR_REPEAT_DELAY "300"
  428. #define DEF_SCROLLBAR_REPEAT_INTERVAL "100"
  429. #define DEF_SCROLLBAR_TAKE_FOCUS (char *) NULL
  430. #define DEF_SCROLLBAR_TROUGH_COLOR TROUGH
  431. #define DEF_SCROLLBAR_TROUGH_MONO WHITE
  432. /*#define DEF_SCROLLBAR_WIDTH "15" */
  433. #define DEF_SCROLLBAR_WIDTH "16"
  434. /*
  435.  * Defaults for texts:
  436.  */
  437. #define DEF_TEXT_AUTO_SEPARATORS "1"
  438. #define DEF_TEXT_BG_COLOR NORMAL_BG
  439. #define DEF_TEXT_BG_MONO WHITE
  440. #define DEF_TEXT_BORDER_WIDTH "0"
  441. #define DEF_TEXT_CURSOR "xterm"
  442. #define DEF_TEXT_FG BLACK
  443. #define DEF_TEXT_EXPORT_SELECTION "1"
  444. #define DEF_TEXT_FONT "Courier 12"
  445. #define DEF_TEXT_HEIGHT "24"
  446. #define DEF_TEXT_HIGHLIGHT_BG NORMAL_BG
  447. #define DEF_TEXT_HIGHLIGHT BLACK
  448. #define DEF_TEXT_HIGHLIGHT_WIDTH "3"
  449. #define DEF_TEXT_INSERT_BG BLACK
  450. #define DEF_TEXT_INSERT_BD_COLOR "0"
  451. #define DEF_TEXT_INSERT_BD_MONO "0"
  452. #define DEF_TEXT_INSERT_OFF_TIME "300"
  453. #define DEF_TEXT_INSERT_ON_TIME "600"
  454. #define DEF_TEXT_INSERT_WIDTH "1"
  455. #define DEF_TEXT_MAX_UNDO     "0"
  456. #define DEF_TEXT_PADX "1"
  457. #define DEF_TEXT_PADY "1"
  458. #define DEF_TEXT_RELIEF "flat"
  459. #define DEF_TEXT_SELECT_COLOR SELECT_BG
  460. #define DEF_TEXT_SELECT_MONO BLACK
  461. #define DEF_TEXT_SELECT_BD_COLOR "1"
  462. #define DEF_TEXT_SELECT_BD_MONO "0"
  463. #define DEF_TEXT_SELECT_FG_COLOR SELECT_FG
  464. #define DEF_TEXT_SELECT_FG_MONO WHITE
  465. #define DEF_TEXT_SELECT_RELIEF "solid"
  466. #define DEF_TEXT_SET_GRID "0"
  467. #define DEF_TEXT_SPACING1 "0"
  468. #define DEF_TEXT_SPACING2 "0"
  469. #define DEF_TEXT_SPACING3 "0"
  470. #define DEF_TEXT_STATE "normal"
  471. #define DEF_TEXT_TABS ""
  472. #define DEF_TEXT_TAKE_FOCUS (char *) NULL
  473. #define DEF_TEXT_UNDO     "0"
  474. #define DEF_TEXT_WIDTH "80"
  475. #define DEF_TEXT_WRAP "char"
  476. #define DEF_TEXT_XSCROLL_COMMAND ""
  477. #define DEF_TEXT_YSCROLL_COMMAND ""
  478. /*
  479.  * Defaults for canvas text:
  480.  */
  481. #define DEF_CANVTEXT_FONT "Helvetica 12"
  482. /*
  483.  * Defaults for toplevels (most of the defaults for frames also apply
  484.  * to toplevels):
  485.  */
  486. #define DEF_TOPLEVEL_CLASS "Toplevel"
  487. #define DEF_TOPLEVEL_MENU ""
  488. #define DEF_TOPLEVEL_SCREEN ""
  489. #define DEF_TOPLEVEL_USE ""
  490. #endif /* _TKMACDEFAULT */