|
1 # vt100.idf |
|
2 # |
|
3 # Copyright (c) 2010 Accenture. All rights reserved. |
|
4 # This component and the accompanying materials are made available |
|
5 # under the terms of the "Eclipse Public License v1.0" |
|
6 # which accompanies this distribution, and is available |
|
7 # at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 # |
|
9 # Initial Contributors: |
|
10 # Accenture - Initial contribution |
|
11 # |
|
12 |
|
13 support_attributes boolean |
|
14 support_attributes.name Support attributes |
|
15 support_attributes.description Controls whether manipulation of the terminal's attributes (defining color, boldness, etc.) will be attempted. |
|
16 support_attributes.default yes |
|
17 |
|
18 foreground_color enum |
|
19 foreground_color.name Foreground color |
|
20 foreground_color.description Sets the foreground color of the terminal |
|
21 # values for this correspond to enum ConsoleAttributes::TColor (reset probably isn't a valid choice!) |
|
22 foreground_color.values black,red,green,yellow,blue,magenta,cyan,white,reset,unchanged |
|
23 foreground_color.default unchanged |
|
24 |
|
25 background_color enum |
|
26 background_color.name Background color |
|
27 background_color.description Sets the background color of the terminal |
|
28 # values for this correspond to enum ConsoleAttributes::TColor (reset probably isn't a valid choice!) |
|
29 background_color.values black,red,green,yellow,blue,magenta,cyan,white,reset,unchanged |
|
30 background_color.default unchanged |
|
31 |
|
32 console_size_detect boolean |
|
33 console_size_detect.name Autodetect console size |
|
34 console_size_detect.description Automatically detect the VT100 terminal emualator |
|
35 console_size_detect.default true |
|
36 |