home *** CD-ROM | disk | FTP | other *** search
- package icontrols;
-
- import com.ms.wd.core.Event;
- import com.ms.wd.ui.Graphics;
- import com.ms.wd.ui.Rectangle;
-
- public class CustomDrawEvent extends Event {
- public Graphics graphics = null;
- public Rectangle bounds = null;
- public Rectangle clipRect = null;
- public CustomDrawData data = null;
-
- public CustomDrawEvent(Graphics graphics, Rectangle bounds, Rectangle clipRect, CustomDrawData data) {
- this.graphics = graphics;
- this.bounds = bounds;
- this.clipRect = clipRect;
- this.data = data;
- }
- }
-