/usr/share/ecere/extras/gui/layout.ec is in ecere-extras 0.44.15-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | #ifdef ECERE_STATIC
public import static "ecere"
#else
public import "ecere"
#endif
default:
private:
public class LayoutPage : Stacker
{
direction = vertical;
gap = 4;
opacity = 0.0f;
//clickThrough = true;
tabCycle = true;
}
public class LayoutLine : Stacker
{
direction = horizontal;
gap = 8;
opacity = 0.0f;
tabCycle = true;
size = { h = 26 };
anchor = { left = 0, right = 0 };
}
public class LayoutSeperatorLine : Window
{
background = black;
size = { h = 1 };
anchor = { left = 8, right = 8 };
tabCycle = true;
}
|