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

📄 test9.c

📁 安装DDD之前
💻 C
字号:
/* the window should show a string, upon button press resize to show a * pixmap.  The highlight should show correctly as the cursor enters * and leaves the window. */#include <stdio.h>#include <stdlib.h>#include <Xm/Xm.h>#include <Xm/PushB.h>#include <Xm/LabelP.h>static voidmytest(Widget w, XtPointer p, XtPointer s){    Pixel fg, bg;    int height, width;    Pixmap pixmap;    printf("hi\n");    XtVaGetValues(w,		  XmNwidth, &width,		  XmNheight, &height,		  NULL);    printf("height == %d, width == %d\n", height, width);    fg = XBlackPixelOfScreen(XtScreen(w));    bg = XWhitePixelOfScreen(XtScreen(w));    pixmap = XmGetPixmap(XtScreen(w), "xlogo64", fg, bg);    XtVaSetValues(w,		  XmNwidth, 0,		  XmNheight, 0,		  XmNlabelPixmap, pixmap,		  XmNlabelType,XmPIXMAP,		  NULL);    XtVaGetValues(w,		  XmNwidth, &width,		  XmNheight, &height,		  NULL);    printf("height == %d, width == %d\n", height, width);}String fallbacks[] = {"Hello*allowShellResize: True",		      "Hello*highlightThickness: 10",		      NULL};intmain(int argc, char **argv){    Widget toplevel, button;    XtAppContext app;    toplevel = XtVaAppInitialize(&app, "Hello", NULL, 0,				 &argc, argv, fallbacks, NULL);    button =	XtVaCreateManagedWidget("pushmePlease", xmPushButtonWidgetClass,				toplevel, NULL);    XtAddCallback(button, XmNactivateCallback, mytest, NULL);    XtRealizeWidget(toplevel);  {  static XtWidgetGeometry Expected[] = {  	CWWidth | CWHeight,		0,	0,	100,	41,	0,0,0,	/* Form */  	CWWidth | CWHeight | CWX | CWY,	45,	30,	30,	25,	0,0,0,	/* two */};  PrintDetails(toplevel, Expected);  }  LessTifTestMainLoop(toplevel);  /*    XtAppMainLoop(app);    */    exit(0);}

⌨️ 快捷键说明

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