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 254 255 256 257 258 259 260 261
|
/*****************************************************************************
FILE : $Source: /usr/local/bv/SNNS/SNNSv4.1/xgui/sources/RCS/ui_setupP.c,v $
SHORTNAME : setupP.c
SNNS VERSION : 4.1
PURPOSE :
NOTES :
AUTHOR : Tilman Sommer
DATE : 23.7.1990
CHANGED BY :
IDENTIFICATION : $State: Exp $ $Locker: $
RCS VERSION : $Revision: 2.4 $
LAST CHANGE : $Date: 1995/11/16 07:27:49 $
Copyright (c) 1990-1995 SNNS Group, IPVR, Univ. Stuttgart, FRG
******************************************************************************/
#include <stdio.h>
#include "ui.h"
#include <X11/Xaw/Toggle.h>
#include "ui_selection.h"
#include "ui_display.h"
#include "ui_xWidgets.h"
#include "ui_setup.h"
#include "ui_layer.h"
#include "ui_mainP.h"
#include "ui_action.h"
#include "ui_setupP.ph"
/*****************************************************************************
FUNCTION : ui_set_showProc
PURPOSE : callback. Called by menu items of SHOW menu buttons
RETURNS : void
NOTES :
UPDATE :
*****************************************************************************/
void ui_set_showProc(Widget w, int value, caddr_t call_data)
{
switch (value) {
case UI_ACTIVATION:
ui_xSetLabel(ui_showBottomLabel, "activation");
(ui_set_displayPtr->setup).showValue = UI_ACTIVATION;
break;
case UI_INITIAL_ACTIVATION:
ui_xSetLabel(ui_showBottomLabel, "initial act.");
(ui_set_displayPtr->setup).showValue = UI_INITIAL_ACTIVATION;
break;
case UI_OUTPUT:
ui_xSetLabel(ui_showBottomLabel, "output");
(ui_set_displayPtr->setup).showValue = UI_OUTPUT;
break;
case UI_BIAS:
ui_xSetLabel(ui_showBottomLabel, "bias");
(ui_set_displayPtr->setup).showValue = UI_BIAS;
break;
case UI_NAME:
ui_xSetLabel(ui_showTopLabel, "name");
(ui_set_displayPtr->setup).showTitle = UI_NAME;
break;
case UI_NUMBER:
ui_xSetLabel(ui_showTopLabel, "number");
(ui_set_displayPtr->setup).showTitle = UI_NUMBER;
break;
case UI_ZVALUE:
ui_xSetLabel(ui_showTopLabel, "z-value");
(ui_set_displayPtr->setup).showTitle = UI_ZVALUE;
break;
case UI_WINNER:
ui_xSetLabel(ui_showTopLabel, "winner");
(ui_set_displayPtr->setup).showTitle = UI_WINNER;
break;
}
}
/*****************************************************************************
FUNCTION : ui_set_getSetupData
PURPOSE : stores the current setting in the global variable ui_set_displayPtr->setup
RETURNS : void
NOTES : This is a callback of toggles.
UPDATE : 23.7.1990
******************************************************************************/
void ui_set_getSetupData(Widget widget, int toggleNumber, caddr_t call_data)
{
/* typedef char Boolean !! */
switch (toggleNumber) {
case UI_UNIT_TOP_GENERAL:
(ui_set_displayPtr->setup).showTitleFlg = ui_xGetToggleState(widget);
break;
case UI_UNIT_BOTTOM_GENERAL:
(ui_set_displayPtr->setup).showValueFlg = ui_xGetToggleState(widget);
break;
case UI_LINK_GENERAL:
(ui_set_displayPtr->setup).showLinkFlg = ui_xGetToggleState(widget);
break;
case UI_LINK_VALUE:
(ui_set_displayPtr->setup).showWeightFlg = ui_xGetToggleState(widget);
break;
case UI_LINK_DIRECTION:
(ui_set_displayPtr->setup).showDirectionFlg = ui_xGetToggleState(widget);
break;
}
}
/*****************************************************************************
FUNCTION : ui_set_assignLayers
PURPOSE : popup the layer assignment window.
RETURNS : void
NOTES :
UPDATE :
*****************************************************************************/
void ui_set_assignLayers(Widget w, caddr_t client_data, caddr_t call_data)
{
Arg args[5];
Position x, y;
Dimension width, height;
Cardinal n;
/* Upper left corner will be in the center of the calling button */
n = 0;
XtSetArg(args[n], XtNwidth, &width); n++;
XtSetArg(args[n], XtNheight, &height); n++;
XtGetValues(w, args, n);
XtTranslateCoords(w, (Position) (width / 2), (Position) (height / 2),
&x, &y);
/* set start value for the buttons */
ui_layerStartValue = ui_set_displayPtr->layers;
ui_displayLayerPanel(x,y); /* absolute screen coordinates */
/* assign return value */
ui_set_displayPtr->layers = ui_layerReturnValue;
ui_sel_checkList(ui_set_displayPtr, UI_GLOBAL);
}
/*****************************************************************************
FUNCTION : ui_scrolled
PURPOSE : Prints the location of the pointer
RETURNS : void
NOTES : value_ptr - the amount the bar has been scrolled.
UPDATE : 2.8.1990
******************************************************************************/
void ui_scrolled(Widget widget, caddr_t label_ptr, XtPointer value_ptr)
{
int value = (int) value_ptr;
char message[80];
sprintf( message, " Scrolled by %d pixels", value);
ui_printMessage(message);
}
/*****************************************************************************
FUNCTION : ui_thumbed
PURPOSE : Prints the location of the thumb as a percentage of the height
RETURNS : void
NOTES : top_ptr - a pointer to a float containing the location of
of the scrollbar's thumb
UPDATE : 2.8.1990
******************************************************************************/
void ui_thumbed(Widget widget, int trigger, XtPointer top_ptr)
{
float top = *(float *) top_ptr;
char buf[80];
switch (trigger) {
case UI_LINKS_POS:
sprintf(buf,"links pos: %8.5f = %.1f%%",
((ui_set_displayPtr->setup).linkPosTrigger =
top * ui_maxWeight), (100.0 * top));
break;
case UI_LINKS_NEG:
sprintf(buf,"links neg: %8.5f = %.1f%%",
((ui_set_displayPtr->setup).linkNegTrigger =
top * ui_minWeight), (100.0 * top));
break;
case UI_SCALE_FACTOR:
(ui_set_displayPtr->setup).unitScaleFactor = top * ui_maxAct;
if ((ui_set_displayPtr->setup).unitScaleFactor <= 0) {
(ui_set_displayPtr->setup).unitScaleFactor = 1;
}
sprintf(buf,"scale factor: %8.5f = %.1f%%", top * ui_maxAct, (100.0 * top));
break;
case UI_SCALE_LINKS:
(ui_set_displayPtr->setup).linkScaleFactor = top * 10.0;
if ((ui_set_displayPtr->setup).unitScaleFactor <= 0) {
(ui_set_displayPtr->setup).unitScaleFactor = 1;
}
sprintf(buf,"scale links: %8.5f = %.1f%%", top * 10.0, (100.0 * top));
break;
}
ui_xSetLabel(ui_setupSliderMessage, buf);
}
/*****************************************************************************
FUNCTION : ui_set_colorProc
PURPOSE : called by menu items of COLOR menu button in monochrome mode
RETURNS : void
NOTES :
UPDATE :
*****************************************************************************/
void ui_set_colorProc(Widget w, int value, caddr_t call_data)
{
if (value == UI_PALETTE_MONO) {
ui_set_displayPtr->setup.backgroundColorIndex = UI_WHITE;
ui_set_displayPtr->setup.textColorIndex = UI_BLACK;
} else {
ui_set_displayPtr->setup.backgroundColorIndex = UI_BLACK;
ui_set_displayPtr->setup.textColorIndex = UI_WHITE;
}
}
/* end of file */
/* lines: 267 */
|