2 * WINGs demo: font lister
4 * Copyright (c) 1998 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,
36 void show(WMWidget
*self
, void *data
)
40 WMLabel
*l
= (WMLabel
*)data
;
41 d
= WMGetHangedData(self
);
42 sprintf(buf
, "%i - 0x%x - 0%o", (int)d
, (int)d
, (int)d
);
43 WMSetLabelText(l
, buf
);
46 void quit(WMWidget
*self
, void *data
)
53 main(int argc
, char **argv
)
58 WMButton
*lab
, *l0
=NULL
;
63 WMInitializeApplication("FontView", &argc
, argv
);
65 dpy
= XOpenDisplay("");
67 wfatal("cant open display");
71 scr
= WMCreateSimpleApplicationScreen(dpy
);
73 win
= WMCreateWindow(scr
, "main");
74 WMResizeWidget(win
, 20*33, 20+20*9);
75 WMSetWindowTitle(win
, "Font Chars");
76 WMSetWindowCloseAction(win
, quit
, NULL
);
77 pos
= WMCreateLabel(win
);
78 WMResizeWidget(pos
, 20*33, 20);
79 WMMoveWidget(pos
, 10, 5);
83 for (x
=0; x
<32; x
++, c
++) {
84 lab
= WMCreateCustomButton(win
, WBBStateLightMask
);
85 WMResizeWidget(lab
, 20, 20);
86 WMMoveWidget(lab
, 10+x
*20, 30+y
*20);
87 sprintf(buf
, "%c", c
);
88 WMSetButtonText(lab
, buf
);
89 WMSetButtonAction(lab
, show
, pos
);
90 WMHangData(lab
, (void*)c
);
92 WMGroupButtons(l0
, lab
);
101 WMScreenMainLoop(scr
);