2 * WINGs demo: font lister
4 * Copyright (c) 1998-2003 Alfredo K. Kojima
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
25 #include <WINGs/WINGs.h>
26 #include <WINGs/WUtil.h>
33 void show(WMWidget * self, void *data)
37 WMLabel *l = (WMLabel *) data;
38 d = WMGetHangedData(self);
39 sprintf(buf, "%i - 0x%x - 0%o", (int)(uintptr_t) d, (int)(uintptr_t) d, (int)(uintptr_t) d);
40 WMSetLabelText(l, buf);
43 void quit(WMWidget * self, void *data)
48 int main(int argc, char **argv)
53 WMButton *lab, *l0 = NULL;
58 WMInitializeApplication("FontView", &argc, argv);
60 dpy = XOpenDisplay("");
62 wfatal("cant open display");
66 scr = WMCreateSimpleApplicationScreen(dpy);
68 win = WMCreateWindow(scr, "main");
69 WMResizeWidget(win, 20 * 33, 20 + 20 * 9);
70 WMSetWindowTitle(win, "Font Chars");
71 WMSetWindowCloseAction(win, quit, NULL);
72 pos = WMCreateLabel(win);
73 WMResizeWidget(pos, 20 * 33, 20);
74 WMMoveWidget(pos, 10, 5);
77 for (y = 0; y < 8; y++) {
78 for (x = 0; x < 32; x++, c++) {
79 lab = WMCreateCustomButton(win, WBBStateLightMask);
80 WMResizeWidget(lab, 20, 20);
81 WMMoveWidget(lab, 10 + x * 20, 30 + y * 20);
82 sprintf(buf, "%c", c);
83 WMSetButtonText(lab, buf);
84 WMSetButtonAction(lab, show, pos);
85 WMHangData(lab, (void *)(uintptr_t) c);
87 WMGroupButtons(l0, lab);
96 WMScreenMainLoop(scr);