dialogrc (2739B)
1 # Types of values: 2 # 3 # Number - <number> 4 # String - "string" 5 # Boolean - <ON|OFF> 6 # Attribute - (foreground,background,highlight?) 7 8 # Set aspect-ration. 9 aspect = 0 10 11 # Set separator (for multiple widgets output). 12 separate_widget = "" 13 14 # Set tab-length (for textbox tab-conversion). 15 tab_len = 0 16 17 # Make tab-traversal for checklist, etc., include the list. 18 visit_items = OFF 19 20 # Shadow dialog boxes? This also turns on color. 21 use_shadow = OFF 22 23 # Turn color support ON or OFF 24 use_colors = ON 25 26 # Screen color 27 screen_color = (WHITE,BLACK,ON) 28 29 # Shadow color 30 shadow_color = (WHITE,BLACK,ON) 31 32 # Dialog box color 33 dialog_color = (WHITE,BLACK,OFF) 34 35 # Dialog box title color 36 title_color = (WHITE,WHITE,ON) 37 38 # Dialog box border color 39 border2_color = (WHITE,BLACK,OFF) 40 border_color = (WHITE,BLACK,OFF) 41 42 # Active button color 43 button_active_color = (WHITE,BLACK,ON) 44 45 # Inactive button color 46 button_inactive_color = (WHITE,BLACK,OFF) 47 48 # Active button key color 49 button_key_active_color = (WHITE,BLACK,ON) 50 51 # Inactive button key color 52 button_key_inactive_color = (WHITE,BLACK,OFF) 53 54 # Active button label color 55 button_label_active_color = (WHITE,BLACK,ON) 56 57 # Inactive button label color 58 button_label_inactive_color = (WHITE,BLACK,OFF) 59 60 # Input box color 61 inputbox_color = (BLACK,WHITE,OFF) 62 63 # Input box border color 64 inputbox_border_color = (BLACK,WHITE,OFF) 65 66 # Search box color 67 searchbox_color = (BLACK,WHITE,OFF) 68 69 # Search box title color 70 searchbox_title_color = (WHITE,WHITE,ON) 71 72 # Search box border color 73 searchbox_border_color = (WHITE,WHITE,OFF) 74 75 # File position indicator color 76 position_indicator_color = (WHITE,WHITE,ON) 77 78 # Menu box color 79 menubox_color = (WHITE,BLACK,OFF) 80 81 # Menu box border color 82 menubox_border_color = (WHITE,BLACK,OFF) 83 menubox_border2_color = (WHITE,BLACK,OFF) 84 85 # Item color 86 item_color = (WHITE,BLACK,OFF) 87 88 # Selected item color 89 item_selected_color = (CYAN,BLACK,ON) 90 91 # Tag color 92 tag_color = (WHITE,BLACK,ON) 93 94 # Selected tag color 95 tag_selected_color = (CYAN,BLACK,ON) 96 97 # Tag key color 98 tag_key_color = (RED,BLACK,OFF) 99 100 # Selected tag key color 101 tag_key_selected_color = (CYAN,BLACK,OFF) 102 103 # Check box color 104 check_color = (WHITE,BLACK,OFF) 105 106 # Selected check box color 107 check_selected_color = (CYAN,BLACK,ON) 108 109 # Up arrow color 110 uarrow_color = (WHITE,BLACK,ON) 111 112 # Down arrow color 113 darrow_color = (WHITE,BLACK,ON) 114 115 # Item help-text color 116 itemhelp_color = (WHITE,BLACK,OFF) 117 118 # Active form text color 119 form_active_text_color = (BLACK,WHITE,ON) 120 121 # Form text color 122 form_text_color = (WHITE,WHITE,ON) 123 124 # Readonly form item color 125 form_item_readonly_color = (WHITE,WHITE,ON) 126 127 #bindkey * ^j ITEM_NEXT 128 #bindkey * ^k ITEM_PREV 129 bindkey menubox ^J ITEM_NEXT 130 bindkey menubox ^K ITEM_PREV 131 bindkey menubox ^L ENTER 132 bindkey menubox ENTER ENTER