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

📄 test11.c

📁 安装DDD之前
💻 C
字号:
/* $Header: /cvsroot/lesstif/lesstif/test/Xm/scrolledwindow/test11.c,v 1.8 2001/05/23 14:30:30 amai Exp $ * create a scrolled window with a drawing area inside... resize the * drawing area when the pushbutton is clicked (also draw a line * to show the clipping area) */#include <stdio.h>#include <stdlib.h>#include <Xm/Form.h>#include <Xm/Label.h>#include <Xm/PushB.h>#include <Xm/ScrolledW.h>#include <Xm/DrawingA.h>#include "../../common/Test.h"Widget toplevel;Widget form;Widget scrollw;Widget execute_button;Widget da;unsigned long valuemask;XGCValues values;GC gc;static char *FallBack[] = {		"*.geometrySlop: 2",		NULL};voidcb (    Widget w,    XtPointer d,    XtPointer c){    static Dimension width = 100;    static Dimension height = 100;    Dimension twidth, theight;    width += 100;    height += 100;    XtVaGetValues(da,		  XtNwidth, &twidth,		  XtNheight, &theight,		  NULL);    fprintf(stderr, "***********width, height is %dx%d\n", twidth, theight);    XtVaSetValues(da,		  XtNwidth, width,		  XtNheight, height,		  NULL);    XDrawLine(XtDisplay(da), XtWindow(da), gc, 0, 0, 500, 500);}int main (    int argc,    char **argv){    Arg al[64];    int ac;	    XtAppContext app;    toplevel = XtVaAppInitialize(&app, "test11", NULL, 0,			    &argc, argv, FallBack, NULL);    form = XmCreateForm( toplevel, "myform", NULL, 0);    XtManageChild(form);    ac = 0;    XtSetArg(al[ac], XmNtopAttachment, XmATTACH_FORM);  ac++;    XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM);  ac++;    XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM);  ac++;    execute_button = XmCreatePushButton ( form, "execute_button", al, ac );    XtAddCallback(execute_button, XmNactivateCallback, cb, NULL);    XtManageChild(execute_button);    ac = 0;    XtSetArg(al[ac], XmNwidth, 500);  ac++;    XtSetArg(al[ac], XmNheight, 600);  ac++;    XtSetArg(al[ac], XmNtopAttachment, XmATTACH_WIDGET);  ac++;    XtSetArg(al[ac], XmNtopWidget, execute_button);  ac++;    XtSetArg(al[ac], XmNleftAttachment, XmATTACH_FORM);  ac++;    XtSetArg(al[ac], XmNrightAttachment, XmATTACH_FORM);  ac++;    XtSetArg(al[ac], XmNbottomAttachment, XmATTACH_FORM);  ac++;    XtSetArg(al[ac], XmNscrollingPolicy, XmAUTOMATIC);  ac++;    scrollw = XmCreateScrolledWindow ( form, "myscroll", al, ac );    XtManageChild(scrollw);    da = XtVaCreateManagedWidget("mycanvas", xmDrawingAreaWidgetClass, 				 scrollw, 					 XmNwidth, 100,				 XmNheight, 100,				 NULL);    XtRealizeWidget(toplevel);    values.foreground = BlackPixelOfScreen(XtScreen(da));    values.background = WhitePixelOfScreen(XtScreen(da));    valuemask = GCForeground | GCBackground;    gc = XCreateGC(XtDisplay(da), XtWindow(da), valuemask, &values);  {    static XtWidgetGeometry Expected[] = {   CWWidth | CWHeight            ,  508,  391,  500,  625, 0,0,0, /* myform */   CWWidth | CWHeight | CWX | CWY,    0,    0,  500,   25, 0,0,0, /* execute_button */   CWWidth | CWHeight | CWX | CWY,    0,   25,  500,  600, 0,0,0, /* myscroll */   CWWidth | CWHeight | CWX | CWY,    2,    2,  496,  596, 0,0,0, /* ScrolledWindowClipWindow */   CWWidth | CWHeight | CWX | CWY,    0,    0,  100,  100, 0,0,0, /* mycanvas */   CWWidth | CWHeight | CWX | CWY,  500,    0,   19,  600, 0,0,0, /* VertScrollBar */   CWWidth | CWHeight | CWX | CWY,    0,  600,  500,   19, 0,0,0, /* HorScrollBar */    CWWidth | CWHeight            ,  508,  391,  500,  625, 0,0,0, /* myform */   CWWidth | CWHeight | CWX | CWY,    0,    0,  500,   25, 0,0,0, /* execute_button */   CWWidth | CWHeight | CWX | CWY,    0,   25,  500,  600, 0,0,0, /* myscroll */   CWWidth | CWHeight | CWX | CWY,    2,    2,  496,  596, 0,0,0, /* ScrolledWindowClipWindow */   CWWidth | CWHeight | CWX | CWY,    0,    0,  300,  300, 0,0,0, /* mycanvas */   CWWidth | CWHeight | CWX | CWY,  500,    0,   19,  600, 0,0,0, /* VertScrollBar */   CWWidth | CWHeight | CWX | CWY,    0,  600,  500,   19, 0,0,0, /* HorScrollBar */    CWWidth | CWHeight            ,  508,  391,  500,  625, 0,0,0, /* myform */   CWWidth | CWHeight | CWX | CWY,    0,    0,  500,   25, 0,0,0, /* execute_button */   CWWidth | CWHeight | CWX | CWY,    0,   25,  500,  600, 0,0,0, /* myscroll */   CWWidth | CWHeight | CWX | CWY,    2,    2,  496,  596, 0,0,0, /* ScrolledWindowClipWindow */   CWWidth | CWHeight | CWX | CWY,    0,    0,  400,  400, 0,0,0, /* mycanvas */   CWWidth | CWHeight | CWX | CWY,  500,    0,   19,  600, 0,0,0, /* VertScrollBar */   CWWidth | CWHeight | CWX | CWY,    0,  600,  500,   19, 0,0,0, /* HorScrollBar */    CWWidth | CWHeight            ,  508,  391,  500,  625, 0,0,0, /* myform */   CWWidth | CWHeight | CWX | CWY,    0,    0,  500,   25, 0,0,0, /* execute_button */   CWWidth | CWHeight | CWX | CWY,    0,   25,  500,  600, 0,0,0, /* myscroll */   CWWidth | CWHeight | CWX | CWY,    4,    2,  492,  571, 0,0,0, /* ScrolledWindowClipWindow */   CWWidth | CWHeight | CWX | CWY,    0,    0,  500,  500, 0,0,0, /* mycanvas */   CWWidth | CWHeight | CWX | CWY,  500,    0,   19,  600, 0,0,0, /* VertScrollBar */   CWWidth | CWHeight | CWX | CWY,    0,  581,  500,   19, 0,0,0, /* HorScrollBar */    CWWidth | CWHeight            ,  508,  391,  500,  625, 0,0,0, /* myform */   CWWidth | CWHeight | CWX | CWY,    0,    0,  500,   25, 0,0,0, /* execute_button */   CWWidth | CWHeight | CWX | CWY,    0,   25,  500,  600, 0,0,0, /* myscroll */   CWWidth | CWHeight | CWX | CWY,    4,    4,  469,  569, 0,0,0, /* ScrolledWindowClipWindow */   CWWidth | CWHeight | CWX | CWY,    0,    0,  600,  600, 0,0,0, /* mycanvas */   CWWidth | CWHeight | CWX | CWY,  481,    0,   19,  577, 0,0,0, /* VertScrollBar */   CWWidth | CWHeight | CWX | CWY,    0,  581,  477,   19, 0,0,0, /* HorScrollBar */    CWWidth | CWHeight            ,  508,  391,  500,  625, 0,0,0, /* myform */   CWWidth | CWHeight | CWX | CWY,    0,    0,  500,   25, 0,0,0, /* execute_button */   CWWidth | CWHeight | CWX | CWY,    0,   25,  500,  600, 0,0,0, /* myscroll */   CWWidth | CWHeight | CWX | CWY,    4,    4,  469,  569, 0,0,0, /* ScrolledWindowClipWindow */   CWWidth | CWHeight | CWX | CWY,    0,    0,  600,  600, 0,0,0, /* mycanvas */   CWWidth | CWHeight | CWX | CWY,  481,    0,   19,  577, 0,0,0, /* VertScrollBar */   CWWidth | CWHeight | CWX | CWY,    0,  581,  477,   19, 0,0,0, /* HorScrollBar */     };    PrintDetails(toplevel,Expected);  LessTifTestWaitForIt(toplevel);  LessTifTestPushButton(execute_button);  LessTifTestWaitForIt(toplevel);  PrintDetails(toplevel,Expected);  LessTifTestPushButton(execute_button);  LessTifTestWaitForIt(toplevel);  PrintDetails(toplevel,Expected);  LessTifTestPushButton(execute_button);  LessTifTestWaitForIt(toplevel);  PrintDetails(toplevel,Expected);  LessTifTestPushButton(execute_button);  LessTifTestWaitForIt(toplevel);  PrintDetails(toplevel,Expected);  LessTifTestPushButton(execute_button);  LessTifTestWaitForIt(toplevel);  PrintDetails(toplevel,Expected);};  LessTifTestMainLoop(toplevel);  exit(0);}

⌨️ 快捷键说明

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