mirror of
https://github.com/gryf/wmaker.git
synced 2025-12-18 20:10:29 +01:00
41 lines
707 B
C
41 lines
707 B
C
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <WINGs/WINGs.h>
|
|
|
|
void showSelectedColor(void *self, void *cdata)
|
|
{
|
|
WMColorPanel *panel = (WMColorPanel *) self;
|
|
|
|
(void) cdata;
|
|
printf("Selected Color: %s\n", WMGetColorRGBDescription(WMGetColorPanelColor(panel)));
|
|
}
|
|
|
|
int main(int argc, char **argv)
|
|
{
|
|
Display *dpy;
|
|
WMScreen *scr;
|
|
|
|
WMInitializeApplication("wmcolorpick", &argc, argv);
|
|
|
|
dpy = XOpenDisplay("");
|
|
if (!dpy) {
|
|
printf("could not open display\n");
|
|
exit(1);
|
|
}
|
|
|
|
scr = WMCreateScreen(dpy, DefaultScreen(dpy));
|
|
|
|
{
|
|
WMColorPanel *panel = WMGetColorPanel(scr);
|
|
|
|
WMSetColorPanelAction(panel, showSelectedColor, NULL);
|
|
|
|
WMShowColorPanel(panel);
|
|
}
|
|
|
|
WMScreenMainLoop(scr);
|
|
|
|
return 0;
|
|
}
|