tizen 2.4 release
[framework/uifw/elementary.git] / src / examples / prefs_example_02.epc
1 collection
2 {
3    page
4    {
5       name: "main";
6       version: 1;
7       title: "Preferences Widget";
8       subtitle: "Example 02";
9       widget: "elm/vertical_frame";
10
11       items {
12          item {
13             name: "text";
14             type: TEXTAREA;
15             editable: 1;
16
17             textarea {
18                placeholder: "This is a editable text entry";
19                default: "This is DEFAULT!";
20                accept: "^[a-zA-Z ]*$";
21             }
22          }
23
24          item {
25             name: "floatsp";
26             type: FLOAT;
27             editable: 1;
28             label: "Floating...";
29
30             float {
31                default: 0.7;
32                min: 0;
33                max: 1;
34             }
35          }
36
37          item {
38             name: "checkb";
39             type: BOOL;
40             label: "Checkbox";
41
42             bool {
43                default: true;
44             }
45          }
46
47          item {
48             name: "sep";
49             type: SEPARATOR;
50          }
51
52          item {
53             name: "save";
54             type: SAVE;
55             label: "Save";
56          }
57
58          item {
59             name: "action";
60             type: ACTION;
61             label: "Action!";
62          }
63       }
64    }
65 }