File: cell.c

package info (click to toggle)
acm 5.0-29.2
  • links: PTS
  • area: main
  • in suites: buster
  • size: 8,596 kB
  • sloc: ansic: 42,445; makefile: 710; cpp: 293; perl: 280; sh: 198
file content (162 lines) | stat: -rw-r--r-- 3,657 bytes parent folder | download | duplicates (9)
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
/*
 *  Copyright (c) 1994, Riley Rainey,  riley@netcon.com
 *
 *  Permission to use, copy, modify and distribute (without charge) this
 *  software, documentation, images, etc. is granted, provided that this 
 *  comment and the author's name is retained.
 *
 *  This software is provided by the author as is, and without any expressed
 *  or implied warranties, including, but not limited to, the implied
 *  warranties of merchantability and fitness for a particular purpose.  In no
 *  event shall the author be liable for any direct, indirect, incidental, or
 *  consequential damages arising in any way out of the use of this software.
 */

#include "XrMisc.h"
#include <stdio.h>
#include <stdlib.h>
#include <Xm/Xm.h>
#include <Xm/LabelG.h>
#include <Xm/TextF.h>
#include "cell.h"

extern Widget CreateExtendedFormDialog();
extern void MenuCB();

Widget
CreatePanelDialog (name, parent, p, count, calc_fn, cancel)
char	*name;
Widget	parent;
struct cell *p;
int	count;
int	calc_fn, cancel;
{
	Arg	args[10];
	char	s1[32], s2[32];
	static ActionAreaButton action_items[] = {
        	{ "Calculate",	MenuCB,	(XtPointer) NULL },
        	{ "Dismiss",	MenuCB,	(XtPointer) NULL },
        	{ "Help",	NULL,	NULL 	},
	};
	Widget	dialog, form, label;
	int	i, n;
	XmString s;
	
	count --;
	
	action_items[0].client_data = (XtPointer) calc_fn;
	action_items[1].client_data = (XtPointer) cancel;

	dialog = CreateExtendedFormDialog (name, parent, &form, action_items,
		XtNumber (action_items), 0);

	for (i=0; i<count; ++i) {

		sprintf (s1, "label_%d", i+1);
		sprintf (s2, "field_%d", i+1);

		s = XmStringCreateSimple (p[i].prompt);

		n = 0;
		XtSetArg (args[n], XmNrightAttachment, XmATTACH_POSITION);  n++;
		XtSetArg (args[n], XmNrightPosition, 70); n++;
		XtSetArg (args[n], XmNlabelString, s); n++;
		if (i == 0) {
		    XtSetArg (args[n], XmNtopAttachment, XmATTACH_FORM);  n++;
		}
		else {
		    XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET);  n++;
		    XtSetArg (args[n], XmNtopWidget, p[i-1].field);  n++;
		}

		p[i].label = XtCreateManagedWidget (s1, xmLabelGadgetClass,
			form, args, n);

		n = 0;
		XtSetArg (args[n], XmNcolumns, p[i].field_width);  n++;
		XtSetArg (args[n], XmNleftAttachment, XmATTACH_POSITION);  n++;
		XtSetArg (args[n], XmNleftPosition, 70); n++;
		if (i == 0) {
		    XtSetArg (args[n], XmNtopAttachment, XmATTACH_FORM);  n++;
		}
		else {
		    XtSetArg (args[n], XmNtopAttachment, XmATTACH_WIDGET);  n++;
		    XtSetArg (args[n], XmNtopWidget, p[i-1].field);  n++;
		}

		p[i].field = XtCreateManagedWidget (s2, xmTextFieldWidgetClass,
			form, args, n);

		XmTextFieldSetString (p[i].field,  p[i].initial_value);

	}

	XtManageChild (form);
	return dialog;
}

int
LocateCell (p, id)
struct cell *p;
int	id;
{
	int	n;
	for (n = 0; p->id >= 0; n++, p++) {
		if (id == p->id) {
			return n;
		}
	}

	fprintf (stderr, "Unable to locate cell %d\n \
Cell zero will contain invalid data\n", id);
	return 0;
}

double
GetCellValueDouble (p, n, value)
struct cell *p;
int	n;
double	*value;
{
	char	*s;

	s = XmTextFieldGetString (p[LocateCell(p, n)].field);
	*value = atof(s);
	XtFree (s);
	return *value;
}

void
SetCellValueDouble (p, n, value)
struct cell *p;
int	n;
double	value;
{
	char	s[64];

	sprintf (s, "%.8lg", value);
	XmTextFieldSetString (p[LocateCell(p, n)].field, s);
}

char *
GetCellValueString (p, n, value)
struct cell *p;
int	n;
char	*value;
{
	char	*s;

	s = XmTextFieldGetString (p[LocateCell(p, n)].field);
	strcpy (value, s);
	XtFree (s);
	return value;
}

void
SetCellValueString (p, n, value)
struct cell *p;
int	n;
char *value;
{
	XmTextFieldSetString (p[LocateCell(p, n)].field, value);
}