test2.c

来自「安装DDD之前」· C语言 代码 · 共 56 行

C
56
字号
/* $Header: /cvsroot/lesstif/lesstif/test/Xm/list/test2.c,v 1.7 2002/05/01 15:54:45 amai Exp $ */#include <stdlib.h>#include <stdio.h>#include <Xm/List.h>#include "../../common/Test.h"char *days[] = { "Sunday", "Monday", "Tuesday", "Wednesday", "Thursday",		     "Friday", "Saturday" };intmain(int argc, char **argv){    XtAppContext app;    Widget toplevel, listw;    XmStringTable str_days;    int i;        toplevel = XtVaAppInitialize(&app, "SINGLE", NULL, 0,				 &argc, argv, NULL, NULL);    str_days = (XmStringTable) XtMalloc(7 * sizeof(XmString*));    for(i=0; i<7; ++i)	str_days[i] = XmStringCreateSimple(days[i]);    listw = XtVaCreateManagedWidget( "test_of_list",				    xmListWidgetClass, toplevel,				    XmNselectionPolicy, XmSINGLE_SELECT,				    XmNitemCount, 7,				    XmNvisibleItemCount, 7,				    XmNitems, str_days,				    NULL );    for(i=0; i<7; ++i)	XmStringFree(str_days[i]);    XtFree((XtPointer)str_days);      XtRealizeWidget(toplevel);    XdbPrintTree(toplevel);{static XtWidgetGeometry Expected[] = {   CWWidth | CWHeight            ,   57,   73,   64,  119, 0,0,0, /* test_of_list */};/* toplevel should be replaced with to correct applicationShell */PrintDetails(toplevel, Expected);}  LessTifTestMainLoop(toplevel);    exit(0);}

⌨️ 快捷键说明

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