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
|
#include <stdlib.h>
#include <stdio.h>
#include <iup.h>
void VboxTest(void)
{
/* IUP identifiers */
Ihandle *dlg;
Ihandle *fr1, *fr2, *fr3;
Ihandle *btn_11, *btn_12, *btn_13;
Ihandle *btn_21, *btn_22, *btn_23;
Ihandle *btn_31, *btn_32, *btn_33;
Ihandle *vbox_1, *vbox_2, *vbox_3;
/* Creates frame 1 */
fr1 = IupFrame
(
vbox_1 = IupVbox
(
IupFill(),
btn_11=IupButton("1", NULL),
btn_12=IupButton("2", NULL),
btn_13=IupButton("3", NULL),
IupFill(),
NULL
)
);
IupSetAttribute(fr1, "TITLE", "ALIGNMENT=ALEFT");
IupSetAttribute(btn_11, "SIZE", "20x10");
IupSetAttribute(btn_12, "SIZE", "30x20");
IupSetAttribute(btn_13, "SIZE", "40x30");
IupSetAttribute(vbox_1, "ALIGNMENT", "ALEFT");
// IupSetAttribute(vbox_1, "MARGIN", "20x20");
// IupSetAttribute(vbox_1, "GAP", "10");
IupSetAttribute(vbox_1, "HOMOGENEOUS", "YES");
IupSetAttribute(vbox_1, "EXPANDCHILDREN", "YES");
// IupSetAttribute(btn_12, "VISIBLE", "NO");
// IupSetAttribute(btn_12, "FLOATING", "YES");
/* Creates frame 2 */
fr2 = IupFrame
(
vbox_2 = IupVbox
(
IupFill(),
btn_21 = IupButton ("1", NULL),
btn_22 = IupButton ("2", NULL),
btn_23 = IupButton ("3", NULL),
IupFill(),
NULL
)
);
IupSetAttribute(fr2, "TITLE", "ALIGNMENT=ACENTER");
IupSetAttribute(btn_21, "SIZE", "20x30");
IupSetAttribute(btn_22, "SIZE", "30x30");
IupSetAttribute(btn_23, "SIZE", "40x30");
IupSetAttribute(vbox_2, "ALIGNMENT", "ACENTER");
/* Creates frame 3 */
fr3 = IupFrame
(
vbox_3 = IupVbox
(
IupFill (),
btn_31=IupButton ("1", NULL),
btn_32=IupButton ("2", NULL),
btn_33=IupButton ("3", NULL),
IupFill (),
NULL
)
);
IupSetAttribute(fr3, "TITLE", "ALIGNMENT=ARIGHT");
IupSetAttribute(btn_31, "SIZE", "20x30");
IupSetAttribute(btn_32, "SIZE", "30x30");
IupSetAttribute(btn_33, "SIZE", "40x30");
IupSetAttribute(vbox_3, "ALIGNMENT", "ARIGHT");
dlg = IupDialog
(
IupHbox
(
fr1,
IupFill (),
fr2,
IupFill (),
fr3,
IupFill (),
NULL
)
);
IupSetAttribute(dlg, "TITLE", "IupVbox Test"); /* Sets dlg's title */
IupSetAttribute(dlg, "MARGIN", "10x10");
IupSetAttribute(dlg, "GAP", "10");
IupSetAttribute(fr1, "MARGIN", "0x0"); /* avoid attribute propagation */
IupSetAttribute(fr2, "MARGIN", "0x0");
IupSetAttribute(fr3, "MARGIN", "0x0");
IupSetAttribute(fr1, "GAP", "0");
IupSetAttribute(fr2, "GAP", "0");
IupSetAttribute(fr3, "GAP", "0");
/* Shows dlg in the center of the screen */
IupShowXY(dlg, IUP_CENTER, IUP_CENTER);
}
#ifndef BIG_TEST
int main(int argc, char* argv[])
{
IupOpen(&argc, &argv);
VboxTest();
IupMainLoop();
IupClose();
return EXIT_SUCCESS;
}
#endif
|