source: Sophya/trunk/Poubelle/archediab.old/archediab.sources/c/phaseSST.c@ 649

Last change on this file since 649 was 649, checked in by ansari, 26 years ago

archediab 28 vol

File size: 910 bytes
Line 
1#include "manip.h"
2#include "phaseSST.h"
3
4
5
6
7
8//-------------------- fonction exec de la fenetre : phase -------------------------------
9
10
11void exec_phase(int fen,int item,double valeur,...)
12{
13if(item>1000) item-=1000; // pour appeler le case pour tous les cara d'un edit texte
14
15switch(item)
16 {
17 case ouverture :
18 selectgra(fen);
19 graph->ymin=-0.1;
20 graph->ymax=0.1;
21 graph->ypas=0.1;
22 graph->xmin=0.;
23 graph->xmax=360.;
24 graph->xpas=90.;
25 graph->grille=0;
26 graph->graduations=1;
27 graph->taille_graduations=10;
28 graph->sans_image=0;
29 graph->avec_icones=0;
30 strcpy(graph->xtitre, "phases");
31 strcpy(graph->ytitre, "Timedrift");
32 retrace(fen);
33 break;
34 case fermeture :
35 break;
36 case PHS_dtdephase :
37 break;
38 default : break;
39 }
40}
Note: See TracBrowser for help on using the repository browser.