- Timestamp:
- Feb 15, 2008, 6:03:25 PM (18 years ago)
- Location:
- trunk/SophyaPI/PI
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/piapplx.cc
r3372 r3475 8 8 #include "piapplx.h" 9 9 #include "picontainerx.h" 10 #include "picons.h" 10 11 11 12 // $CHECK$ - Reza Aout 99 -
trunk/SophyaPI/PI/pidrwtools.cc
r2797 r3475 900 900 class PIDrwPosSizeEvH : public PIEventHandler { 901 901 public: 902 PIDrwPosSizeEvH(PIBaseWdg * bwdg, bool fgxor=true);902 PIDrwPosSizeEvH(PIBaseWdgGen* bwdg, bool fgxor=true); 903 903 void CheckBeforeDelete(); 904 904 virtual void ProcessEvent(); … … 911 911 912 912 913 PIBaseWdg * mBWdg;913 PIBaseWdgGen* mBWdg; 914 914 bool _fgxor; 915 915 int _x1, _y1, _x2, _y2; … … 925 925 926 926 /* --Methode-- */ 927 PIDrwPosSizeEvH::PIDrwPosSizeEvH(PIBaseWdg * bwdg, bool fgxor)927 PIDrwPosSizeEvH::PIDrwPosSizeEvH(PIBaseWdgGen* bwdg, bool fgxor) 928 928 { 929 929 mBWdg = bwdg; … … 1205 1205 class PIDrwSelectEvH : public PIEventHandler { 1206 1206 public: 1207 PIDrwSelectEvH(PIBaseWdg * bwdg);1207 PIDrwSelectEvH(PIBaseWdgGen* bwdg); 1208 1208 void CheckBeforeDelete(); 1209 1209 virtual void ProcessEvent(); … … 1216 1216 1217 1217 1218 PIBaseWdg * mBWdg;1218 PIBaseWdgGen* mBWdg; 1219 1219 int _caid; 1220 1220 int _x1, _y1, _x2, _y2; … … 1226 1226 1227 1227 /* --Methode-- */ 1228 PIDrwSelectEvH::PIDrwSelectEvH(PIBaseWdg * bwdg)1228 PIDrwSelectEvH::PIDrwSelectEvH(PIBaseWdgGen* bwdg) 1229 1229 { 1230 1230 mBWdg = bwdg; … … 1387 1387 //------------------------------------------------------------ 1388 1388 /* --Methode-- */ 1389 PIDrwMgrMenu::PIDrwMgrMenu(PIBaseWdg * bwdg, bool fgxor)1389 PIDrwMgrMenu::PIDrwMgrMenu(PIBaseWdgGen* bwdg, bool fgxor) 1390 1390 : PIMenu(bwdg, "PIDrwMgrMenu", k_PopupMenu) 1391 1391 { -
trunk/SophyaPI/PI/pidrwtools.h
r2780 r3475 89 89 class PIDrwMgrMenu : public PIMenu { 90 90 public: 91 PIDrwMgrMenu(PIBaseWdg * bwdg, bool fgxor=true);91 PIDrwMgrMenu(PIBaseWdgGen* bwdg, bool fgxor=true); 92 92 virtual ~PIDrwMgrMenu(); 93 93 virtual void Process(PIMessage msg, PIMsgHandler* sender, void* data=NULL); 94 94 protected: 95 95 PIMenu* mListDrw; 96 PIBaseWdg * mBWdg;96 PIBaseWdgGen* mBWdg; 97 97 bool mFgxor; 98 98 PIDrwPosSizeEvH* mEvH;
Note:
See TracChangeset
for help on using the changeset viewer.