Changeset 2217 in Sophya for trunk/SophyaPI/PIext
- Timestamp:
- Oct 20, 2002, 4:39:21 PM (23 years ago)
- Location:
- trunk/SophyaPI/PIext
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIext/basexecut.cc
r2188 r2217 827 827 kw = "setaxesatt"; 828 828 usage = "To set default axes attributes \n Usage: setaxesatt att_list \n"; 829 usage += "Color/Line/Font attributes and axes attributes ";829 usage += "Color/Line/Font attributes and axes attributes \n"; 830 830 usage += ">> Axes: stdaxes=defaxes=boxaxes boxaxesgrid centeredaxes\n"; 831 831 usage += " fineaxes finecenteredaxes fineaxesgrid=grid \n"; -
trunk/SophyaPI/PIext/piaversion.h
r2167 r2217 2 2 #define PIAPPVERSION_H_SEEN 3 3 4 #define PIAPP_VERSIONNUMBER 3. 554 #define PIAPP_VERSIONNUMBER 3.60 5 5 6 6 #endif -
trunk/SophyaPI/PIext/pistdimgapp.cc
r2188 r2217 584 584 585 585 // decode des options en chaine de caracteres 586 pii->DecodeOptionString(mDefaultAtt, false); // d'abord les options par defaut 587 pii->DecodeOptionString(opts); // ensuite, les options specifies en argument 586 if (mAxesAtt.size() > 0) 587 pii->DecodeOptionString(mAxesAtt, false); // Les options d'axe 588 if (mDefaultAtt.size() > 0) 589 pii->DecodeOptionString(mDefaultAtt, false); // d'abord les options par defaut 590 if (opts.size() > 0) 591 pii->DecodeOptionString(opts); // ensuite, les options specifies en argument 588 592 589 593 // printf("!!DBG!! PIImage Pos= %d %d Size= %d %d \n", pii->XPos(), pii->YPos(), pii->XSize(), pii->YSize() ); … … 662 666 if ( mDefaultAtt.size() > 0) { 663 667 scwatt = mDefaultAtt; 668 scd->DecodeOptionString(scwatt, true); 664 669 scw->DecodeOptionString(scwatt, true); 665 670 } … … 751 756 if ( mDefaultAtt.size() > 0) { 752 757 scwatt = mDefaultAtt; 758 dr3->DecodeOptionString(scwatt, true); 753 759 wd3->DecodeOptionString(scwatt, true); 754 760 }
Note:
See TracChangeset
for help on using the changeset viewer.