aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/libraries/winFang.edc
blob: 6942aeff8ce21b4e12570078fb6aefbb96923766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
images
{
  image: "bubble.png"		COMP;  // COMP means to use lossless compression.
  image: "bubble_sh.png"	COMP;
  image: "logo.png"		COMP;
  image: "pt.png"		COMP;
  image: "sky_01.jpg"		COMP;
  image: "sky_02.jpg"		COMP;
  image: "sky_03.jpg"		COMP;
  image: "sky_04.jpg"		COMP;
}

collections
{
  group
  {
    name: "winFang/layout";
    parts
    {
      part
      { name: "winFang/background";
	type: IMAGE;
	// Ignore mouse events.
	mouse_events: 0;
	// Each part has one or more descriptions, or states.
	// They all have to have at least this default state.
	description
	{ state: "default" 0.0;
	  // RGBA, so this is purple, and semi transparent.
//	  color: 50   0  100   100;  // pre multiplied  R = (r * a) / 255
	  color: 126  0  255   100;  //                 r = (R * 255) / a
	  aspect_preference: HORIZONTAL;
	  image{normal: "sky_04.jpg";}
	}
      }

      part
      { name: "winFang/underlay";
	type: SWALLOW;
	mouse_events: 1;

	description
	{ state: "default" 0.0;
	  rel1
	  {
	    relative: 0.0 0.0;
	    to: "winFang/background";
	  }
	  rel2
	  {
	    relative: 1.0 1.0;
	    to: "winFang/background";
	  }
	}
      } // winFang/underlay

      part
      { name: "winFang/title";
	type: SWALLOW;
	mouse_events: 0;

	description
	{ state: "default" 0.0;
	  fixed: 0 1;
	  visible: 0;
	}

	description
	{ state: "internal" 0.0;
	  inherit: "default" 0;
	  visible: 1;
	  rel1
	  {
	    relative: 0.0 0.0;
	    to: "winFang/background";
	  }
	  rel2
	  {
	    relative: 1.0 0.0;
	    to: "winFang/background";
	    offset: 0 15;
	  }
	}
      }

      part
      { name: "winFang/box";
	type: BOX;
	mouse_events: 1;

	description
	{
	  state: "default" 0.0;
	  fixed: 0 0;
	  box{layout: "vertical";}
	  rel1
	  {
	     relative: 0.0 0.0;
	    to: "winFang/background";
	  }
	  rel2
	  {
	    relative: 1.0 1.0;
	    to: "winFang/background";
	  }
	}

	description
	{ state: "internal" 0.0;
	  inherit: "default" 0;
	  rel1
	  {
	     relative: 0.0 0.0;
	    to: "winFang/title";
		offset: 0 15;
	  }
	  rel2
	  {
	    relative: 1.0 1.0;
	    to: "winFang/background";
	  }
	}
      } // winFang/box

      part
      { name: "winFang/content";
	type: SWALLOW;
	mouse_events: 1;

	description
	{ state: "default" 0.0;
	  fixed: 0 0;
	  rel1
	  {
	    relative: 0.0 0.0;
	    to: "winFang/box";
	  }
	  rel2
	  {
	    relative: 1.0 1.0;
	    to: "winFang/box";
	  }
	}
      } // winFang/content

      programs
      {
	program
	{ name: "isInternal";
	  signal: "isInternal";
	  source: "isInternal";
	  action: STATE_SET "internal" 0.0;
	  target: "winFang/title";
	  target: "winFang/box";
	}
      }

    }
  }
}