### -------------------------------------------------------------------------
###
###  FileTags (TkDesk Configuration File)
###
###  Contains definitions for color and font of specific file types, that
###  will be used in TkDesk's file lists.
###
### -------------------------------------------------------------------------

### Definition of file tags resp. appearance:
### The entries are defined by the elements of a Tcl list.
### (In the following I try to explain its structure, although it will
### probably best to just have a look at the example definition below.)
### Each element of the list is again a Tcl list, which contains between
### 2 and 4 elements. The first element is a list of "glob" patterns
### that match this definition. The second element is the color to use
### for files matching one of those patterns. Elements number 3 and 4 are
### optional. The third element, if given, defines a font to use for these
### files, while the fourth element, gives the filename of an icon that
### is to be used if the "Add Icons" option has been activated (the path
### defaults to the "images" directory in TkDesk library path). Note that
### if you want the definition to contain an icon, but no font, that the
### third element has to be given as an empty list: {}.
###
### Colors and fonts used to distinguish directories, executables etc. from
### regular files are defined in the "System" configuration file.
###
set tkdesk(file_tags) {
    {{*README*} {SteelBlue} {} {ficons16/text.xpm}}
    {{*.txt} {black} {} {ficons16/text.xpm}}
    {{*.html} {black} {} {ficons16/html.xpm}}
    {{{*.tcl} {*.c} {*.h}} 
	{black} {-*-courier-medium-r-*-*-12-*-*-*-*-*-*-*}}
    {{{*.mpg} {*.mpeg}} {magenta} {} {ficons16/video.xpm}}
    {{*.dvi} {purple}}
    {{{*.gif} {*.jpg} {*.jpeg} {*.pcx} {*.p?m} {*.rle}} {brown} {}
	{ficons16/image.xpm}}
    {{*.ps} {orange3} {} {ficons16/prism.xpm}}
    {{*.sgml} {SeaGreen}}
    {{{*.tar.z} {*.tar.gz} {*.tgz} {*.tar.Z} {*.taz} {*.t.Z}} {black} {}
    	{ficons16/parcel.xpm}}
    {{*.tex} {blue2}}
    {{{*.wav} {*.au} {*.voc}} {maroon} {} {ficons16/sound.xpm}}
    {{*.viff} {SeaGreen}}
    {{*.xv} {SeaGreen}}
    {{{*~} {#*#}} {slategray}}
    {{tkdesk} {red} {-*-helvetica-*-r-*-*-18-*-*-*-*-*-*-*}}
}




