Changeset 3475 in Sophya for trunk


Ignore:
Timestamp:
Feb 15, 2008, 6:03:25 PM (18 years ago)
Author:
ansari
Message:

1/ Ajout include picons.h ds piapplx.cc suite suppression include ds piapplgen.h
2/ Remplacement PIBaseWdg par PIBaseWdgGen ds pidrwtools.h .cc

Reza , 15/02/2008

Location:
trunk/SophyaPI/PI
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/SophyaPI/PI/piapplx.cc

    r3372 r3475  
    88#include "piapplx.h"
    99#include "picontainerx.h"
     10#include "picons.h"
    1011
    1112// $CHECK$ - Reza Aout 99
  • trunk/SophyaPI/PI/pidrwtools.cc

    r2797 r3475  
    900900class PIDrwPosSizeEvH : public PIEventHandler {
    901901public:
    902   PIDrwPosSizeEvH(PIBaseWdg* bwdg, bool fgxor=true);
     902  PIDrwPosSizeEvH(PIBaseWdgGen* bwdg, bool fgxor=true);
    903903          void    CheckBeforeDelete();
    904904  virtual void    ProcessEvent();
     
    911911
    912912
    913   PIBaseWdg* mBWdg;
     913  PIBaseWdgGen* mBWdg;
    914914  bool _fgxor;
    915915  int _x1, _y1, _x2, _y2;
     
    925925
    926926/* --Methode-- */
    927 PIDrwPosSizeEvH::PIDrwPosSizeEvH(PIBaseWdg* bwdg, bool fgxor)
     927PIDrwPosSizeEvH::PIDrwPosSizeEvH(PIBaseWdgGen* bwdg, bool fgxor)
    928928{
    929929  mBWdg = bwdg;
     
    12051205class PIDrwSelectEvH : public PIEventHandler {
    12061206public:
    1207   PIDrwSelectEvH(PIBaseWdg* bwdg);
     1207  PIDrwSelectEvH(PIBaseWdgGen* bwdg);
    12081208          void    CheckBeforeDelete();
    12091209  virtual void    ProcessEvent();
     
    12161216
    12171217
    1218   PIBaseWdg* mBWdg;
     1218  PIBaseWdgGen* mBWdg;
    12191219  int _caid;
    12201220  int _x1, _y1, _x2, _y2;
     
    12261226
    12271227/* --Methode-- */
    1228 PIDrwSelectEvH::PIDrwSelectEvH(PIBaseWdg* bwdg)
     1228PIDrwSelectEvH::PIDrwSelectEvH(PIBaseWdgGen* bwdg)
    12291229{
    12301230  mBWdg = bwdg;
     
    13871387//------------------------------------------------------------
    13881388/* --Methode-- */
    1389 PIDrwMgrMenu::PIDrwMgrMenu(PIBaseWdg* bwdg, bool fgxor)
     1389PIDrwMgrMenu::PIDrwMgrMenu(PIBaseWdgGen* bwdg, bool fgxor)
    13901390  : PIMenu(bwdg, "PIDrwMgrMenu", k_PopupMenu)
    13911391{
  • trunk/SophyaPI/PI/pidrwtools.h

    r2780 r3475  
    8989class PIDrwMgrMenu : public PIMenu {
    9090public:
    91                   PIDrwMgrMenu(PIBaseWdg* bwdg, bool fgxor=true);
     91                  PIDrwMgrMenu(PIBaseWdgGen* bwdg, bool fgxor=true);
    9292  virtual         ~PIDrwMgrMenu();
    9393  virtual void    Process(PIMessage msg, PIMsgHandler* sender, void* data=NULL);
    9494protected:
    9595  PIMenu*  mListDrw;
    96   PIBaseWdg* mBWdg;
     96  PIBaseWdgGen* mBWdg;
    9797  bool mFgxor;
    9898  PIDrwPosSizeEvH* mEvH;
Note: See TracChangeset for help on using the changeset viewer.