Changeset 72
- Timestamp:
- 05/19/07 15:42:13 (2 years ago)
- Files:
-
- branches/bughunt/docs/minwin/paint.d (modified) (1 diff)
- branches/bughunt/docs/minwin/window.d (modified) (1 diff)
- branches/bughunt/minwin/paint.d (modified) (1 diff)
- branches/bughunt/minwin/window.d (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/bughunt/docs/minwin/paint.d
r71 r72 4 4 5 5 module minwin.paint; 6 7 import minwin.font; 8 import minwin.geometry; 9 import minwin.image; 6 10 7 11 /// Return a new GContext branches/bughunt/docs/minwin/window.d
r44 r72 41 41 /// Multi-delegate for paint processing. 42 42 MultiDelegate!(Component, GContext) paintDelegate; 43 /// Multi-delegate for extended-paint processing.44 MultiDelegate!(Component, GXContext) paintXDelegate;45 43 /// Multi-delegate for command processing. 46 44 MultiDelegate!(Component, int) commandDelegate; branches/bughunt/minwin/paint.d
r71 r72 2 2 * 3 3 * An GContext is a simple 2D drawing API similar to a Windows DC 4 * and an X11 Graphics Context. A GXContext is a more advanced 5 * painting API that is similar to GDI+ or Quartz. 4 * and an X11 Graphics Context. 6 5 * 7 6 * Written by Ben Hinkle and released to the public domain, as branches/bughunt/minwin/window.d
r70 r72 105 105 106 106 MultiDelegate!(Component, GContext) paintDelegate; 107 MultiDelegate!(Component, GXContext) paintXDelegate;108 107 MultiDelegate!(Component, int) commandDelegate; 109 108 MultiBoolDelegate!(Component) cancelCloseDelegate; // don't quit if bool is true
