我正在尝试使用 DrawingAreas,但事情并没有按我预期的方式工作。
#include <Xm/Xm.h>
#include <Xm/DrawingA.h>
main(int argc, char *argv[])
{
Widget shell, workArea, box1;
XtAppContext app;
shell = XtVaAppInitialize(&app, "gp", NULL, 0, &argc, argv, NULL, XmNwidth, 500, XmNheight, 500, NULL);
XtRealizeWidget(shell);
workArea = XtCreateWidget("wa",xmDrawingAreaWidgetClass, shell, NULL, 0);
XtVaSetValues(workArea, XmNbackground, 30000, NULL);
box1 = XtCreateWidget("b1", xmDrawingAreaWidgetClass, workArea, NULL, 0);
XtVaSetValues(box1, XmNx, 0, XmNy, 0, XmNwidth, 400, XmNheight, 400, NULL);
XtManageChild(workArea);
XtManageChild(box1);
//XtAppMainLoop(app);
XEvent event;
Dimension x,y,w,h;
while(1)
{
XtAppNextEvent(app, &event);
if (event.type == EnterNotify)
{
XtVaGetValues(box1, XmNx, &x, XmNy, &y, XmNwidth, &w, XmNheight, &h, NULL);
printf("(x,y,w,h) == (%d,%d,%d,%d)\n", x, y, w, h);
}
if (event.type == LeaveNotify)
{
XtVaSetValues(box1, XmNx, 0, XmNy, 0, XmNwidth, 400, XmNheight, 400, NULL);
printf("tried to set (x,y,w,h) = (0,0,400,400)\n");
}
XtDispatchEvent(&event);
}
}
当我进入窗口并用指针离开窗口时,我得到输出:
(x,y,w,h) == (10,10,400,400)
(x,y,w,h) == (10,10,400,400)
tried to set (x,y,w,h) = (0,0,400,400)
tried to set (x,y,w,h) = (0,0,400,400)
(x,y,w,h) == (10,10,400,400)
(x,y,w,h) == (10,10,400,400)
tried to set (x,y,w,h) = (0,0,400,400)
tried to set (x,y,w,h) = (0,0,400,400)
为什么 XtVaSetValues 不将 box1 设置为 (X,Y) = (0,0)?如何在窗口内的 (0,0) 处放置绘图区域?
我想出了答案,但没有提供它的声誉:
XtManageChild(box1);
XtUnmanageChild(box1);
XtVaSetValues(box1, XmNx, 0, XmNy, 0, XmNwidth, 400, XmNheight, 400, NULL);
XtMapWidget(box1);