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
|
#include <stdlib.h>
#include <stdio.h>
#include "iup.h"
#include "iupkey.h"
static int spin_cb(Ihandle* ih, int pos)
{
(void)ih;
printf("SPIN_CB(%d)\n", pos);
if (!IupGetInt(ih, "SPINAUTO"))
IupSetfAttribute(ih, "VALUE", "%s(%d)", "Test", pos);
return IUP_DEFAULT;
}
static int action_cb(Ihandle* ih, int c, char* after)
{
printf("ACTION(%d, %s)\n", c, after);
return IUP_DEFAULT;
}
static int setspinvalue(Ihandle* ih)
{
IupSetAttribute(IupGetDialogChild(ih, "spin"), "SPINVALUE", "25");
return IUP_DEFAULT;
}
void TextSpinTest(void)
{
Ihandle *dlg, *text;
text = IupText(NULL);
IupSetAttribute(text, "SIZE", "60x");
// IupSetAttribute(text, "EXPAND", "HORIZONTAL");
IupSetAttribute(text, "SPIN", "YES");
// IupSetAttribute(text, "SPINMIN", "10");
// IupSetAttribute(text, "SPINMAX", "60");
// IupSetAttribute(text, "SPININC", "5");
// IupSetAttribute(text, "SPINWRAP", "YES");
// IupSetAttribute(text, "SPINALIGN", "LEFT");
// IupSetAttribute(text, "SPINVALUE", "25");
// IupSetAttribute(text, "SPINAUTO", "NO");
IupSetAttribute(text, "NAME", "spin");
IupSetCallback(text, "SPIN_CB", (Icallback)spin_cb);
IupSetCallback(text, "ACTION", (Icallback)action_cb);
dlg = IupDialog(IupVbox(text, IupButton("SPINVALUE", "setspinvalue"), NULL));
IupSetAttribute(dlg, "GAP", "20");
IupSetAttribute(dlg, "MARGIN", "20x20");
// IupSetAttribute(dlg, "BGCOLOR", "173 177 194"); // Motif BGCOLOR for documentation
IupSetFunction("setspinvalue", (Icallback)setspinvalue);
IupSetAttribute(dlg, "TITLE", "Text Spin Test");
IupShow(dlg);
}
#ifndef BIG_TEST
int main(int argc, char* argv[])
{
IupOpen(&argc, &argv);
TextSpinTest();
IupMainLoop();
IupClose();
return EXIT_SUCCESS;
}
#endif
|