]> git.tdb.fi Git - r2c2.git/blobdiff - engineer.res
Rewrite command/reply system
[r2c2.git] / engineer.res
index 7f75ae494214146e84dc095614b84b2882c64d8e..ce53e1ce67e23ed11f1a9870d36ad6fdd99a5a67 100644 (file)
@@ -1,3 +1,5 @@
+/* $Id$ */
+
 default_font "dejavu-12.font";
 
 graphic "greybutton"
@@ -68,6 +70,19 @@ graphic "entrycursor"
        slice 54 74 2 12;
 };
 
+graphic "dropdownbg"
+{
+       texture "gui.png";
+       slice 58 72 30 16;
+       border { top 4; right 20; bottom 4; left 2; };
+};
+
+graphic "dropdownarrow"
+{
+       texture "gui.png";
+       slice 90 75 10 8;
+};
+
 graphic "yellowlamp"
 {
        texture "gui.png";
@@ -291,3 +306,47 @@ style "root"
 {
        special "children";
 };
+
+style "dropdown"
+{
+       font_color 0.0 0.0 0.0;
+
+       part
+       {
+               graphic NORMAL "dropdownbg";
+       };
+
+       part
+       {
+               graphic NORMAL "dropdownarrow";
+               align 1.0 0.5;
+               fill 0.0 0.0;
+               margin { right 2; };
+       };
+
+       special "text"
+       {
+               align 0.0 0.5;
+               fill 0.0 0.0;
+               margin { left 2; };
+       };
+
+       special "list";
+};
+
+style "list"
+{
+       font_color 0.0 0.0 0.0;
+
+       part
+       {
+               graphic NORMAL "entrybg";
+       };
+
+       special "items"
+       {
+               margin { top 2; right 2; bottom 2; left 2; };
+       };
+};
+
+style "vslider";