Listing 4
templates {
alias empty bitmap_and_text;
surface bitmap_and_text {
surfaces { bitmap pict, text txt}
}
window button {
surfaces { bitmap_and_text content; gradient_fill bg; border is_focused }
bg.from_col = parent.bg - rgb(40,40,40);
bg.to_col = parent.bg + rgb(0,40,40);
is_focused.col = color("blue");
txt.size = 10;
}
window edit {
surfaces { fill bg; text text; border edge }
edge.col = rgb(241,241,241);
text.size = 8; // small text
text.font_name = "Tahoma";
bg.col = rgb(225,235,251)
}
}