⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 test20.c

📁 安装DDD之前
💻 C
字号:
/* *  when a the mouse is moved into the drawing area, keystrokes should *  be seen; when in the menu area, the shouldn't be seen. */#include <Xm/RowColumn.h>#include <Xm/RowColumnP.h>#include <Xm/DrawingA.h>#include <Xm/PushB.h>#include <stdio.h>Widget rowcol, canvas;voidcb(Widget w, XtPointer data, XtPointer cbs) {}static voidprocess_key(Widget w, XtPointer p, XEvent *ev, Boolean *b){   printf("process_key\n");}intmain(int argc, char **argv){  Widget toplevel;  XtAppContext app;  XmString button1 = XmStringCreateLocalized("button number 1");  XmString button2 = XmStringCreateLocalized("button number 2");  XmString button3 = XmStringCreateLocalized("button number 3");  XtSetLanguageProc(NULL, NULL, NULL);  toplevel = XtVaAppInitialize(&app, "RowColumn", NULL, 0, &argc, argv,NULL, NULL);  canvas = XtVaCreateManagedWidget(            "canvas", xmDrawingAreaWidgetClass, toplevel,            XmNwidth, 100,            XmNheight, 200,            NULL);  rowcol = XmVaCreateSimpleMenuBar(canvas, "radioBox",                                   XmVaCASCADEBUTTON, button1, 'b',                                   XmVaCASCADEBUTTON, button2, 'u',                                   XmVaCASCADEBUTTON, button3, 't',                                   XmNbuttonCount, 8,                                   NULL);  XmVaCreateSimplePulldownMenu(rowcol, "b_menu", 0, cb,                               XmVaPUSHBUTTON, button1, 'b', NULL, NULL,                               NULL);  XtAddEventHandler(canvas, KeyPressMask | KeyReleaseMask, 0,process_key, NULL);  XmStringFree(button1);  XmStringFree(button2);  XmStringFree(button3);  XtManageChild(rowcol);  XtRealizeWidget(toplevel);  {  static XtWidgetGeometry Expected[] = {  	CWWidth | CWHeight,		0,	0,	100,	200,	0,0,0,  	CWWidth | CWHeight | CWX | CWY,	10,	10,	328,	31,	0,0,0,  	CWWidth | CWHeight | CWX | CWY,	5,	5,	106,	21,	0,0,0,  	CWWidth | CWHeight | CWX | CWY,	111,	5,	106,	21,	0,0,0,  	CWWidth | CWHeight | CWX | CWY,	217,	5,	106,	21,	0,0,0,};  PrintDetails(toplevel, Expected);  }    LessTifTestMainLoop(toplevel);    /*  XtAppMainLoop(app);  */  exit(0);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -