Changeset 2118 in Sophya for trunk/SophyaPI/PIext
- Timestamp:
- Jul 19, 2002, 1:30:38 AM (23 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/basexecut.cc
r2089 r2118 773 773 usage += " rainbow16 \n"; 774 774 usage += " revcmap : This flag reverses ColorMap indexing \n"; 775 usage += ">> ZoomFactors : defzoom zoomx1 zoomx2 zoomx3 zoomx4 zoomx5\n";776 usage += " zoom/2 zoom/3 zoom/4 zoom/5\n";775 usage += ">> ZoomFactors zoomxN zoomx1 zoomx2 zoomx3 ... \n"; 776 usage += " (image display) zoom/N zoom/2 zoom/3 zoom/4 ...\n"; 777 777 usage += ">> imagecenter=ix,iy -> Position the image in widget \n"; 778 usage += ">> Axes: stdaxes=defaxes=boxaxes simpleaxes boxaxesgrid \n"; 779 usage += " fineaxes finesimpleaxes fineaxesgrid=grid \n"; 780 usage += " simpleaxesgrid finesimpleaxesgrid \n"; 778 usage += ">> lut=ltyp,min,max -> Sets LUT type and min/max for image display \n"; 779 usage += " (ltyp=lin/log/sqrt/square) \n"; 780 usage += ">> Axes: stdaxes=defaxes=boxaxes boxaxesgrid centeredaxes\n"; 781 usage += " fineaxes finecenteredaxes fineaxesgrid=grid \n"; 782 usage += " centeredaxesgrid finecenteredaxesgrid \n"; 781 783 usage += ">> LogScale : linx liny logx logy -> Lin/Log Scales for 2D plots \n"; 782 usage += ">> XYLimits : xylimits-> Forces X-Y limits in 2-D plots \n";784 usage += ">> xylimits=xmin,xmax,ymin,ymax -> Forces X-Y limits in 2-D plots \n"; 783 785 usage += ">> stat/nostat or stats/nostats -> Toggle statistic display flag \n"; 784 786 usage += ">> title/notitle or tit/notit -> Toggle Auto AddTitle flag \n"; … … 789 791 kw = "setaxesatt"; 790 792 usage = "To set default axes attributes \n Usage: setaxesatt att_list \n"; 791 usage += ">> Axes: stdaxes=defaxes=boxaxes simpleaxes boxaxesgrid \n"; 792 usage += " fineaxes finesimpleaxes fineaxesgrid=grid \n"; 793 usage += " simpleaxesgrid finesimpleaxesgrid \n"; 793 usage += "Color/Line/Font attributes and axes attributes"; 794 usage += ">> Axes: stdaxes=defaxes=boxaxes boxaxesgrid centeredaxes\n"; 795 usage += " fineaxes finecenteredaxes fineaxesgrid=grid \n"; 796 usage += " centeredaxesgrid finecenteredaxesgrid \n"; 794 797 usage += ">> LogScale : linx liny logx logy -> Lin/Log Scales for 2D plots \n"; 795 798 usage += ">> xylimits=xmin,xmax,ymin,ymax -> Forces X-Y limits in 2-D plots \n"; 796 799 mpiac->RegisterCommand(kw, usage, this, "Graphics"); 797 798 800 799 801 kw = "setinsetlimits"; … … 803 805 usage += " Usage: setinsetlimits xmin xmax ymin ymax"; 804 806 usage += "\n Related commands: graphicatt /inset"; 805 mpiac->RegisterCommand(kw, usage, this, "Graphics");806 807 kw = "setimgcenter";808 usage = "Define image center postion \n Usage: setimgcenter xc yc";809 usage += "\n Related commands: graphicatt /centerimg";810 807 mpiac->RegisterCommand(kw, usage, this, "Graphics"); 811 808 -
trunk/SophyaPI/PIext/piaversion.h
r1971 r2118 2 2 #define PIAPPVERSION_H_SEEN 3 3 4 #define PIAPP_VERSIONNUMBER 3. 404 #define PIAPP_VERSIONNUMBER 3.50 5 5 6 6 #endif -
trunk/SophyaPI/PIext/pistdimgapp.cc
r2106 r2118 563 563 pii->SetUserData(NULL, oid); 564 564 565 // decode des options en chaine de caracteres566 pii->DecodeOptionString(mDefaultAtt, false); // d'abord les options par defaut567 pii->DecodeOptionString(opts); // ensuite, les options specifies en argument568 569 565 570 566 // On recalcule la taille de la fenetre si Disp_Win … … 580 576 } 581 577 582 pii->SetImage(nouv, false); 578 pii->SetImage(nouv, true, false); 579 580 // decode des options en chaine de caracteres 581 pii->DecodeOptionString(mDefaultAtt, false); // d'abord les options par defaut 582 pii->DecodeOptionString(opts); // ensuite, les options specifies en argument 583 583 584 584 // printf("!!DBG!! PIImage Pos= %d %d Size= %d %d \n", pii->XPos(), pii->YPos(), pii->XSize(), pii->YSize() ); … … 588 588 mBWId++; 589 589 mBWList[mBWId] = pii; 590 pii->Refresh(); 590 // pii->Refresh(); 591 pii->Apply(); 592 cmapv->Refresh(); 591 593 return(mBWId); 592 594 } … … 1246 1248 else if (token == "inset") rc = Disp_Inset; 1247 1249 else if (token == "stack") rc = Disp_Stack; 1250 else if (token == "next") rc = Disp_Next; 1248 1251 // Option a etre decode par les drawers, etc ... 1249 1252 else opts.push_back(token);
Note:
See TracChangeset
for help on using the changeset viewer.