1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253
|
/*******************************************************************************
fileSelectionBoxDialog1.c
Associated Header file: fileSelectionBoxDialog1.h
*******************************************************************************/
#include <stdio.h>
#include <Xm/Xm.h>
#include <Xm/MwmUtil.h>
#include <Xm/DialogS.h>
#include <Xm/MenuShell.h>
#include "UxXt.h"
#include <Xm/FileSB.h>
/*******************************************************************************
Includes, Defines, and Global variables from the Declarations Editor:
*******************************************************************************/
/*
Copyright (C) 1993, 1994, RSNA and Washington University
The software and supporting documentation for the Radiological
Society of North America (RSNA) 1993, 1994 Digital Imaging and
Communications in Medicine (DICOM) Demonstration were developed
at the
Electronic Radiology Laboratory
Mallinckrodt Institute of Radiology
Washington University School of Medicine
510 S. Kingshighway Blvd.
St. Louis, MO 63110
as part of the 1993, 1994 DICOM Central Test Node project for, and
under contract with, the Radiological Society of North America.
THIS SOFTWARE IS MADE AVAILABLE, AS IS, AND NEITHER RSNA NOR
WASHINGTON UNIVERSITY MAKE ANY WARRANTY ABOUT THE SOFTWARE, ITS
PERFORMANCE, ITS MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR
USE, FREEDOM FROM ANY COMPUTER DISEASES OR ITS CONFORMITY TO ANY
SPECIFICATION. THE ENTIRE RISK AS TO QUALITY AND PERFORMANCE OF
THE SOFTWARE IS WITH THE USER.
Copyright of the software and supporting documentation is
jointly owned by RSNA and Washington University, and free access
is hereby granted as a license to use this software, copy this
software and prepare derivative works based upon this software.
However, any distribution of this software source code or
supporting documentation or derivative works (source code and
supporting documentation) must include the three paragraphs of
the copyright notice.
*/
/* Copyright marker. Copyright will be inserted above. Do not remove */
/*
** Electronic Radiology Laboratory
** Mallinckrodt Institute of Radiology
** Washington University School of Medicine
**
** Module Name(s): fileSelectionBoxDialog1
** okCallback_fileSelectionBoxDialog1
** cancelCB_fileSelectionBoxDialog1
**
** Author, Date: Chander L. Sabharwal, 27-June-94
**
** Intenet: This program pops up a file selection box
** and lets the user select a file.
**
** Last Updates: $Author: smm $, $Date: 1995-03-28 23:24:38 $
**
** Source File: $RCSfile: fileSelectionBoxDialog1.c,v $
**
** Revision: $Revision: 1.2 $
**
** Status: $State: Exp $
*/
static char rcsid[] = "$Revision: 1.2 $ $RCSfile: fileSelectionBoxDialog1.c,v $";
/*char info[500];*/
void copyWtext();
void openfile();
static swidget UxParent;
#define CONTEXT_MACRO_ACCESS 1
#include "fileSelectionBoxDialog1.h"
#undef CONTEXT_MACRO_ACCESS
Widget fileSelectionBoxDialog1;
/*******************************************************************************
The following are callback functions.
*******************************************************************************/
static void
okCallback_fileSelectionBoxDialog1(
Widget wgt,
XtPointer cd,
XtPointer cb)
{
Widget UxWidget = wgt;
XtPointer UxClientData = cd;
XtPointer UxCallbackArg = cb;
{
/*
* okCallback_fileSelectionBoxDialog1 *
*
* Purpose: * This subrouitne selects the DICOM filename from *
* list of files in the selectionbox, calls a suroutine * openfile
* and unmanages the selectionbox. *
*
* Parameter Dictionary: * cbs input, pointer to the
* selected DICOM file * filename the selected DICOM
* filename *
*
* Return Values: * none *
*
* Notes: *
*
* Algorithm: * Description of the algorithm (optional) and any
* other notes. *
*
*/
XmFileSelectionBoxCallbackStruct *cbs;
char *filename;
char *info;
cbs = (XmFileSelectionBoxCallbackStruct *) UxCallbackArg;
if ((filename = (char *) malloc(100)) == NULL)
printf(" malloc filename failed\n");
if ((info = (char *) malloc(500)) == NULL)
printf(" malloc info failed\n");
if (!XmStringGetLtoR(cbs->value, XmSTRING_DEFAULT_CHARSET, &filename)) {
strcpy(info, "No DICOM filename selected from fileSelectionBoxDialog1, ERROR\n");
copyWtext(info);
free(info);
}
UxPopdownInterface(fileSelectionBoxDialog1);
openfile(filename);
}
}
static void
cancelCB_fileSelectionBoxDialog1(
Widget wgt,
XtPointer cd,
XtPointer cb)
{
Widget UxWidget = wgt;
XtPointer UxClientData = cd;
XtPointer UxCallbackArg = cb;
{
/*
* cancelCB_fileSelectionBOxDialog1 *
*
* Purpose: * This subroutine lets the user close the file
* selection box *
*
* Parameter Dictionary: * None *
*
* Return Values: * None *
*
* Notes: *
*
* Algorithm: * Description of the algorithm (optional) and any
* other notes. *
*
*/
UxPopdownInterface(fileSelectionBoxDialog1);
}
}
/*******************************************************************************
The 'build_' function creates all the widgets
using the resource values specified in the Property Editor.
*******************************************************************************/
static Widget
_Uxbuild_fileSelectionBoxDialog1()
{
Widget _UxParent;
/* Creation of fileSelectionBoxDialog1 */
_UxParent = UxParent;
if (_UxParent == NULL) {
_UxParent = UxTopLevel;
}
_UxParent = XtVaCreatePopupShell("fileSelectionBoxDialog1_shell",
xmDialogShellWidgetClass, _UxParent,
XmNx, 420,
XmNy, 272,
XmNwidth, 568,
XmNheight, 548,
XmNshellUnitType, XmPIXELS,
XmNtitle, "fileSelectionBoxDialog1",
NULL);
fileSelectionBoxDialog1 = XtVaCreateWidget("fileSelectionBoxDialog1",
xmFileSelectionBoxWidgetClass,
_UxParent,
XmNwidth, 568,
XmNheight, 548,
XmNdialogType, XmDIALOG_FILE_SELECTION,
XmNunitType, XmPIXELS,
NULL);
XtAddCallback(fileSelectionBoxDialog1, XmNokCallback,
(XtCallbackProc) okCallback_fileSelectionBoxDialog1,
(XtPointer) NULL);
XtAddCallback(fileSelectionBoxDialog1, XmNcancelCallback,
(XtCallbackProc) cancelCB_fileSelectionBoxDialog1,
(XtPointer) NULL);
return (fileSelectionBoxDialog1);
}
/*******************************************************************************
The following is the 'Interface function' which is the
external entry point for creating this interface.
This function should be called from your application or from
a callback function.
*******************************************************************************/
Widget
create_fileSelectionBoxDialog1(swidget _UxUxParent)
{
Widget rtrn;
UxParent = _UxUxParent;
rtrn = _Uxbuild_fileSelectionBoxDialog1();
return (rtrn);
}
/*******************************************************************************
END OF FILE
*******************************************************************************/
|