Changeset 3342 in Sophya for trunk/SophyaPI/PIGcont/pigncont.h
- Timestamp:
- Oct 8, 2007, 9:46:38 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PIGcont/pigncont.h
r2250 r3342 33 33 int NContours(){return _npolys;}; 34 34 void SetCntLevelKind(t_contour_levels_kind kind){Contour_Levels_kind = kind;}; 35 t_contour_levels_kind GetCntLevelKind() {return Contour_Levels_kind ;};35 t_contour_levels_kind GetCntLevelKind() const {return Contour_Levels_kind ;}; 36 36 void SetCntKind(t_contour_kind kind){Contour_kind = kind;}; 37 t_contour_kind GetCntKind() {return Contour_kind ;};37 t_contour_kind GetCntKind() const {return Contour_kind ;}; 38 38 39 39 … … 75 75 virtual void Draw(PIGraphicUC* g, double xmin, double ymin, double xmax, double ymax); 76 76 virtual void UpdateLimits(); 77 virtual bool IsLineOn() ;78 virtual bool IsMarkOn() ;79 virtual bool IsLabelOn() ;77 virtual bool IsLineOn() const; 78 virtual bool IsMarkOn() const; 79 virtual bool IsLabelOn() const; 80 80 virtual void SetLineOn(bool b=true); 81 81 virtual void SetMarkOn(bool b=true); … … 92 92 virtual void DeactivateControlWindow(PIBaseWdgGen* wdg); 93 93 // Methode permettant de decoder des options a partir de chaines 94 int DecodeOptionString(vector<string> & opt, bool rmdecopt=true); 94 virtual int DecodeOptionString(vector<string> & opt, bool rmdecopt=true); 95 virtual int OptionToString(vector<string> & opt) const; 96 // Texte d'aide des options disponibles 97 virtual void GetOptionsHelpInfo(string& info); 95 98 96 99
Note:
See TracChangeset
for help on using the changeset viewer.