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

📄 test22.c

📁 安装DDD之前
💻 C
字号:
/* $Header: /cvsroot/lesstif/lesstif/test/Xm/form/test22.c,v 1.6 2001/05/16 09:23:15 amai Exp $ */#include <stdlib.h>#include <stdio.h>#include <Xm/Xm.h>#include <Xm/Label.h>#include <Xm/TextF.h>#include <Xm/Form.h>#include "../../common/Test.h"static String FallBack[] = {	"*borderWidth: 1",NULL};intmain(int argc, char **argv){  Widget toplevel;  Widget Form;  Widget LeftLabel;  Widget RightLabel;  XtAppContext app;  XtSetLanguageProc(NULL, NULL, NULL);  toplevel = XtVaAppInitialize(&app, "test22", NULL, 0, &argc, argv, FallBack, NULL);  Form = XmCreateForm(toplevel, "Form", NULL, 0);  XtVaSetValues(Form,	XmNresizePolicy, XmRESIZE_GROW,#if 1  	XmNwidth, 200,#else  	XmNheight, 200,#endif  	NULL);  RightLabel = XmCreateLabel(Form, "RightLabel", NULL,0);  LeftLabel = XmCreateLabel(Form, "LeftLabel", NULL,0);#if 1  XtVaSetValues(RightLabel,  	XmNtopAttachment, XmATTACH_FORM,  	XmNleftAttachment, XmATTACH_WIDGET,  	XmNleftOffset, 10,  	XmNleftWidget, LeftLabel,  	XmNwidth, 90,  	XmNrightAttachment, XmATTACH_FORM,  	XmNrightOffset, 10,  	NULL);  XtManageChild(RightLabel);  XtVaSetValues(LeftLabel,  	XmNleftAttachment, XmATTACH_FORM,  	XmNtopAttachment, XmATTACH_FORM,  	XmNleftOffset, 50,  	XmNwidth, 100,  	NULL);  XtManageChild(LeftLabel);#else  XtVaSetValues(RightLabel,  	XmNleftAttachment, XmATTACH_FORM,  	XmNtopAttachment, XmATTACH_WIDGET,  	XmNtopOffset, 10,  	XmNtopWidget, LeftLabel,  	XmNheight, 90,  	XmNbottomAttachment, XmATTACH_FORM,  	XmNbottomOffset, 10,  	NULL);  XtManageChild(RightLabel);  XtVaSetValues(LeftLabel,  	XmNtopAttachment, XmATTACH_FORM,  	XmNleftAttachment, XmATTACH_FORM,  	XmNtopOffset, 50,  	XmNheight, 100,  	NULL);  XtManageChild(LeftLabel);#endif  XtManageChild(Form);  XtRealizeWidget(toplevel);  {  static XtWidgetGeometry Expected[] = {  	CWWidth | CWHeight,		0,	0,	200,	19,	0,0,0,	/* Form */  	CWWidth | CWHeight | CWX | CWY,	162,	0,	26,	17,	0,0,0,	/* two */  	CWWidth | CWHeight | CWX | CWY,	50,	0,	100,	17,	0,0,0,	/* two */  	CWWidth | CWHeight,		0,	0,	250,	40,	0,0,0,	/* Form */  	CWWidth | CWHeight | CWX | CWY,	162,	0,	76,	17,	0,0,0,	/* two */  	CWWidth | CWHeight | CWX | CWY,	50,	0,	100,	17,	0,0,0,	/* two */};  PrintDetails(toplevel, Expected);      LessTifTestWaitForIt(toplevel);      LessTifTestResizeWidget(toplevel, 250, 40);  PrintDetails(toplevel, Expected);  }      LessTifTestMainLoop(toplevel);  exit(0);}

⌨️ 快捷键说明

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