ecere/gui/Window: Prevent uninitialized values if base Window methods not overridden...
[sdk] / extras / gui / layout.ec
1 #ifdef ECERE_STATIC
2 public import static "ecere"
3 #else
4 public import "ecere"
5 #endif
6
7 default:
8
9 private:
10
11 public class LayoutPage : Stacker
12 {
13    direction = vertical;
14    gap = 4;
15    opacity = 0.0f;
16    //clickThrough = true;
17    tabCycle = true;
18 }
19
20 public class LayoutLine : Stacker
21 {
22    direction = horizontal;
23    gap = 8;
24    opacity = 0.0f;
25    tabCycle = true;
26
27    size = { h = 26 };
28    anchor = { left = 0, right = 0 };
29 }
30
31 public class LayoutSeperatorLine : Window
32 {
33    background = black;
34    size = { h = 1 };
35    anchor = { left = 8, right = 8 };
36    tabCycle = true;
37 }