Former-commit-id:7fa9dbd5fb
[formerly4bfbdad17d
] [formerly9f8cb727a5
] [formerly7fa9dbd5fb
[formerly4bfbdad17d
] [formerly9f8cb727a5
] [formerly8485b90ff8
[formerly9f8cb727a5
[formerly bf53d06834caa780226121334ac1bcf0534c3f16]]]] Former-commit-id:8485b90ff8
Former-commit-id:40aa780b3d
[formerly33a67cdd82
] [formerly 73930fb29d0c1e91204e76e6ebfdbe757414f319 [formerlya28d70b5c5
]] Former-commit-id: a16a1b4dd44fc344ee709abbe262aeed58a8339b [formerlye5543a0e86
] Former-commit-id:0c25458510
38 lines
1.9 KiB
C
38 lines
1.9 KiB
C
/***************************************************************/
|
|
/* SHARP-95 */
|
|
/* Advanced Interactive Sounding Analysis Program */
|
|
/* */
|
|
/* DOS Video Graphics Routines (Part #4) */
|
|
/* These routines handle sub-screen windows and option boxes. */
|
|
/* */
|
|
/* John A. Hart */
|
|
/* National Severe Storms Forecast Center */
|
|
/* Kansas City, Missouri */
|
|
/* -------------------------------------------------- */
|
|
/* List of Routines in this module: */
|
|
/* */
|
|
/* RESET_OPTIONS */
|
|
/* */
|
|
/***************************************************************/
|
|
#define VIDEO
|
|
#include "gui.h"
|
|
#include "sharp95.h"
|
|
|
|
|
|
/*=============================================================================*/
|
|
|
|
void reset_options ( short mode, short pagenum )
|
|
/*************************************************************/
|
|
/* RESET_OPTIONS */
|
|
/* John Hart NSSFC KCMO */
|
|
/* */
|
|
/* Asks the user if they want to reload original sounding, */
|
|
/* or just clear screen. */
|
|
/*************************************************************/
|
|
{
|
|
redraw_graph( mode );
|
|
define_parcel( sndgp->lplvals.flag, sndgp->lplvals.pres );
|
|
if ( mode == 1 ) trace_parcel(sndgp->lplvals.pres, sndgp->lplvals.temp, sndgp->lplvals.dwpt);
|
|
show_page( pagenum );
|
|
return;
|
|
}
|