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
|
#include <stdlib.h>
#include <stdio.h>
#include "iup.h"
static unsigned char pixmap [ ] =
{
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,1,2,3,3,3,3,3,3,3,2,1,0,0,0,
0,0,2,1,2,3,3,3,3,3,2,1,2,0,0,0,
0,0,3,2,1,2,3,3,3,2,1,2,3,0,0,0,
0,0,3,3,2,1,2,3,2,1,2,3,3,0,0,0,
0,0,3,3,3,2,1,2,1,2,3,3,3,0,0,0,
0,0,3,3,3,3,2,1,2,3,3,3,3,0,0,0,
0,0,3,3,3,2,1,2,1,2,3,3,3,0,0,0,
0,0,3,3,2,1,2,3,2,1,2,3,3,0,0,0,
0,0,3,2,1,2,3,3,3,2,1,2,3,0,0,0,
0,0,2,1,2,3,3,3,3,3,2,1,2,0,0,0,
0,0,1,2,3,3,3,3,3,3,3,2,1,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,
};
static int close(Ihandle* ih)
{
IupDestroy((Ihandle*)IupGetAttribute(ih, "_DIALOG"));
return IUP_DEFAULT;
// return IUP_CLOSE;
}
static int hide(Ihandle* ih)
{
IupSetAttribute((Ihandle*)IupGetAttribute(ih, "_DIALOG"), "HIDETASKBAR", "YES");
return IUP_DEFAULT;
}
static int show(Ihandle* ih)
{
IupSetAttribute((Ihandle*)IupGetAttribute(ih, "_DIALOG"), "HIDETASKBAR", "NO");
return IUP_DEFAULT;
}
static int showmenu(Ihandle* ih)
{
Ihandle* menu = IupMenu(IupItem("Show", "show"), IupItem("Hide", "hide"), IupItem("Exit", "close"), NULL);
IupSetAttribute(menu, "_DIALOG", (char*)ih);
IupSetFunction("show", (Icallback) show);
IupSetFunction("hide", (Icallback) hide);
IupSetFunction("close", (Icallback) close);
IupPopup(menu, IUP_MOUSEPOS, IUP_MOUSEPOS);
IupDestroy(menu);
return IUP_DEFAULT;
}
static int k_esc(Ihandle* ih)
{
IupDestroy(ih);
return IUP_DEFAULT;
}
static int close_cb(Ihandle* ih)
{
IupSetAttribute(ih, "HIDETASKBAR", "YES");
return IUP_IGNORE;
}
static int trayclick(Ihandle *ih, int button, int pressed, int dclick)
{
printf("trayclick_cb(button=%d, pressed=%d, dclick=%d)\n", button, pressed, dclick);
if (button == 1 && pressed)
IupSetAttribute(ih, "HIDETASKBAR", "NO");
else if (button == 3 && pressed)
showmenu(ih);
return IUP_DEFAULT;
}
void TrayTest(void)
{
Ihandle *dlg, *img;
img = IupImage(16, 16, pixmap);
IupSetAttribute(img, "0", "BGCOLOR");
IupSetAttribute(img, "1", "255 255 0");
IupSetAttribute(img, "2", "255 0 0");
IupSetAttribute(img, "3", "255 255 0");
IupSetHandle ("img", img);
dlg = IupDialog(NULL);
IupSetAttribute(dlg, "TITLE", "Tray Test");
IupSetAttribute(dlg, "TRAY", "YES");
IupSetAttribute(dlg, "TRAYTIP", "Tip at Tray");
IupSetAttribute(dlg, "TRAYIMAGE", "img");
IupSetAttribute(dlg, "SIZE", "100x100");
IupSetCallback(dlg, "TRAYCLICK_CB", (Icallback)trayclick);
IupSetCallback(dlg, "CLOSE_CB", (Icallback)close_cb);
IupSetCallback(dlg, "K_ESC", (Icallback)k_esc);
IupShowXY(dlg, IUP_CENTER, IUP_CENTER);
/* start only the task bar icon */
IupSetAttribute(dlg, "HIDETASKBAR", "YES");
}
#ifndef BIG_TEST
int main(int argc, char* argv[])
{
IupOpen(&argc, &argv);
TrayTest();
IupMainLoop();
IupClose();
return EXIT_SUCCESS;
}
#endif
|