Changeset 2217 in Sophya for trunk


Ignore:
Timestamp:
Oct 20, 2002, 4:39:21 PM (23 years ago)
Author:
ansari
Message:

MAJ numero de version piapp, correction ds l'ordre de prise en compte

des attributs graphiques par defaut entre le Drawer et le PIScDrawWdg et
le PI3DDrawWdg Reza 20/10/02

Location:
trunk/SophyaPI/PIext
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PIext/basexecut.cc

    r2188 r2217  
    827827kw = "setaxesatt";
    828828usage = "To set default axes attributes \n  Usage: setaxesatt att_list \n";
    829 usage += "Color/Line/Font attributes and axes attributes";
     829usage += "Color/Line/Font attributes and axes attributes \n";
    830830usage += ">> Axes:  stdaxes=defaxes=boxaxes boxaxesgrid centeredaxes\n";
    831831usage += "          fineaxes finecenteredaxes fineaxesgrid=grid \n";
  • trunk/SophyaPI/PIext/piaversion.h

    r2167 r2217  
    22#define PIAPPVERSION_H_SEEN
    33
    4 #define PIAPP_VERSIONNUMBER  3.55
     4#define PIAPP_VERSIONNUMBER  3.60
    55
    66#endif
  • trunk/SophyaPI/PIext/pistdimgapp.cc

    r2188 r2217  
    584584
    585585// 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
     586if (mAxesAtt.size() > 0)
     587  pii->DecodeOptionString(mAxesAtt, false);   // Les options d'axe
     588if (mDefaultAtt.size() > 0)
     589  pii->DecodeOptionString(mDefaultAtt, false);  // d'abord les options par defaut
     590if (opts.size() > 0)
     591  pii->DecodeOptionString(opts);    // ensuite, les options specifies en argument
    588592
    589593// printf("!!DBG!! PIImage Pos= %d %d  Size= %d %d \n", pii->XPos(), pii->YPos(), pii->XSize(), pii->YSize()   );
     
    662666if ( mDefaultAtt.size() > 0) {
    663667  scwatt = mDefaultAtt;
     668  scd->DecodeOptionString(scwatt, true);
    664669  scw->DecodeOptionString(scwatt, true);
    665670}
     
    751756if ( mDefaultAtt.size() > 0) {
    752757  scwatt = mDefaultAtt;
     758  dr3->DecodeOptionString(scwatt, true);
    753759  wd3->DecodeOptionString(scwatt, true);
    754760}
Note: See TracChangeset for help on using the changeset viewer.