Changeset 329 in Sophya for trunk/SophyaPI/PI/pistdwdggen.cc
- Timestamp:
- Jun 24, 1999, 4:24:58 PM (26 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaPI/PI/pistdwdggen.cc
r323 r329 22 22 //-- 23 23 //++ 24 // PILabel(PIContainerGen* par, c har* nom, int sx=10, int sy=10, int px=0, int py=0)24 // PILabel(PIContainerGen* par, const char* nom, int sx=10, int sy=10, int px=0, int py=0) 25 25 // Création d'un objet PILabel ayant un contenu (étiquette) identique à "nom". 26 26 // void SetLabel(string const& lab) … … 31 31 32 32 33 PILabelGen::PILabelGen(PIContainerGen *par, c har *nom,33 PILabelGen::PILabelGen(PIContainerGen *par, const char *nom, 34 34 int sx, int sy, int px, int py) 35 35 : PIWdg(par, nom, sx, sy, px, py) … … 61 61 //-- 62 62 //++ 63 // PIButton(PIContainerGen* par, c har* nom, PIMessage msg, int sx=10, int sy=10, int px=0, int py=0)63 // PIButton(PIContainerGen* par, const char* nom, PIMessage msg, int sx=10, int sy=10, int px=0, int py=0) 64 64 // Création d'un objet PIButton avec une étiquette identique à "nom". 65 65 // void SetLabel(string const& lab) … … 69 69 70 70 71 PIButtonGen::PIButtonGen(PIContainerGen *par, c har *nom, PIMessage msg,71 PIButtonGen::PIButtonGen(PIContainerGen *par, const char *nom, PIMessage msg, 72 72 int sx, int sy, int px, int py) 73 73 : PIWdg(par, nom, sx, sy, px, py) … … 105 105 //-- 106 106 //++ 107 // PIText(PIContainerGen* par, c har* nom, int sx=10, int sy=10, int px=0, int py=0)107 // PIText(PIContainerGen* par, const char* nom, int sx=10, int sy=10, int px=0, int py=0) 108 108 // Création d'un objet PIText. 109 // PIText(PIContainerGen* par, c har* nom, bool vsb, bool hsb, -109 // PIText(PIContainerGen* par, const char* nom, bool vsb, bool hsb, - 110 110 // int sx=10, int sy=10, int px=0, int py=0) 111 111 // Création d'un objet PIText multiligne, muni d'ascenseurs … … 121 121 //-- 122 122 123 PITextGen::PITextGen(PIContainerGen *par, c har *nom,124 int sx, int sy, int px, int py) 125 : PIWdg(par, nom, sx, sy, px, py) 126 {} 127 128 PITextGen::PITextGen(PIContainerGen *par, c har *nom, bool vsb, bool hsb,123 PITextGen::PITextGen(PIContainerGen *par, const char *nom, 124 int sx, int sy, int px, int py) 125 : PIWdg(par, nom, sx, sy, px, py) 126 {} 127 128 PITextGen::PITextGen(PIContainerGen *par, const char *nom, bool vsb, bool hsb, 129 129 int sx, int sy, int px, int py) 130 130 : PIWdg(par, nom, sx, sy, px, py) … … 139 139 /************* PICheckBoxGen ************/ 140 140 141 PICheckBoxGen::PICheckBoxGen(PIContainerGen *par, c har *nom, PIMessage msg,141 PICheckBoxGen::PICheckBoxGen(PIContainerGen *par, const char *nom, PIMessage msg, 142 142 int sx, int sy, int px, int py) 143 143 : PIWdg(par, nom, sx, sy, px, py) … … 171 171 //-- 172 172 //++ 173 // PICheckBox(PIContainerGen* par, c har* nom, PIMessage msg, int sx=10, int sy=10, int px=0, int py=0);173 // PICheckBox(PIContainerGen* par, const char* nom, PIMessage msg, int sx=10, int sy=10, int px=0, int py=0); 174 174 // Création d'un objet PICheckBox. 175 175 // void SetState(bool st=false) … … 204 204 //-- 205 205 //++ 206 // PIScale(PIContainerGen* par, c har* nom, PIMessage msg, int dir=kSDirLtoR, int sx=100, int sy=10, int px=0, int py=0)206 // PIScale(PIContainerGen* par, const char* nom, PIMessage msg, int dir=kSDirLtoR, int sx=100, int sy=10, int px=0, int py=0) 207 207 // Création d'un objet PIScale. "dir" indique la direction et le sens d'affichage et peut 208 208 // prendre les valeurs "kSDirLtoR" (gauche à droite), "kSDirRtoL" (droite à gauche), … … 219 219 220 220 221 PIScaleGen::PIScaleGen(PIContainerGen *par, c har *nom, PIMessage msg,221 PIScaleGen::PIScaleGen(PIContainerGen *par, const char *nom, PIMessage msg, 222 222 int /*dir*/, int sx, int sy, int px, int py) 223 223 : PIWdg(par, nom, sx, sy, px, py) … … 255 255 //-- 256 256 //++ 257 // PIScrollBar(PIContainerGen* par, c har* nom, PIMessage msg, int dir=kSDirUpDown, int sx=10, int sy=100, int px=0, int py=0)257 // PIScrollBar(PIContainerGen* par, const char* nom, PIMessage msg, int dir=kSDirUpDown, int sx=10, int sy=100, int px=0, int py=0) 258 258 // Création d'un objet PIScrollBar. "dir" indique la direction et le sens d'affichage et peut 259 259 // prendre les valeurs "kSDirLtoR" (gauche à droite), "kSDirRtoL" (droite à gauche), … … 276 276 //-- 277 277 278 PIScrollBarGen::PIScrollBarGen(PIContainerGen *par, c har *nom, PIMessage msg,278 PIScrollBarGen::PIScrollBarGen(PIContainerGen *par, const char *nom, PIMessage msg, 279 279 int /*dir*/, int sx, int sy, int px, int py) 280 280 : PIWdg(par, nom, sx, sy, px, py)
Note:
See TracChangeset
for help on using the changeset viewer.