Changeset 1804 for trunk/MagicSoft/Cosy/gui/MGEmbeddedCanvas.cc
- Timestamp:
- 03/02/03 17:08:13 (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Cosy/gui/MGEmbeddedCanvas.cc
r1702 r1804 52 52 } 53 53 54 void MGEmbeddedCanvas::Resize(TGDimension size) 55 { 56 fWidth = size.fWidth; 57 fPix = 2.*fRange/size.fWidth; 58 TRootEmbeddedCanvas::Resize(size); 59 } 60 61 void MGEmbeddedCanvas::Resize(UInt_t w, UInt_t h) 62 { 63 fWidth = w; 64 fPix = 2.*fRange/w; 65 TRootEmbeddedCanvas::Resize(w, h); 66 } 67 68 void MGEmbeddedCanvas::MoveResize(Int_t x, Int_t y, UInt_t w, UInt_t h) 69 { 70 fWidth = w; 71 fPix = 2.*fRange/w; 72 TRootEmbeddedCanvas::MoveResize(x, y, w, h); 73 } 74 54 75 // ------------------------------------------------------------------------ 55 76 //
Note:
See TracChangeset
for help on using the changeset viewer.