]> git.tdb.fi Git - r2c2.git/blob - data/trainlistdialog.ui
Remove a queued block reservation if the block is released
[r2c2.git] / data / trainlistdialog.ui
1 layout
2 {
3         margin
4         {
5                 top 2;
6                 horizontal 8;
7                 bottom 6;
8         };
9 };
10
11 column
12 {
13         row
14         {
15                 label "lbl_title"
16                 {
17                         text "Trains";
18                 };
19
20                 split;
21
22                 action_button "btn_close" 0
23                 {
24                         style "red_cross";
25                 };
26         };
27
28         row
29         {
30                 panel ""
31                 {
32                         style "group";
33                         layout
34                         {
35                                 margin
36                                 {
37                                         horizontal 0;
38                                         vertical 0;
39                                 };
40                                 row_spacing 0;
41                         };
42
43                         column
44                         {
45                                 toggle "tgl_trains"
46                                 {
47                                         text "Trains";
48                                         style "pointer_left";
49                                         exclusive true;
50                                         value true;
51                                 };
52                                 toggle "tgl_import"
53                                 {
54                                         text "Import";
55                                         style "pointer_left";
56                                         exclusive true;
57                                 };
58                         };
59                 };
60
61                 stack
62                 {
63                         list "lst_trains"
64                         {
65                                 view_size 10;
66                         };
67
68                         list "lst_imported"
69                         {
70                                 view_size 10;
71                                 visible false;
72                         };
73                 };
74         };
75
76         row
77         {
78                 button "btn_new"
79                 {
80                         text "New";
81                 };
82
83                 button "btn_show"
84                 {
85                         text "Show";
86                 };
87         };
88 };
89
90 draghandle "";
91 expand true false;
92 constraint COPY_HEIGHT "lbl_title";
93 constraint LEFT_OF "btn_close";