Changeset 72

Show
Ignore:
Timestamp:
05/19/07 15:42:13 (2 years ago)
Author:
lindquist
Message:

last commit broke it

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/bughunt/docs/minwin/paint.d

    r71 r72  
    44 
    55module minwin.paint; 
     6 
     7import minwin.font; 
     8import minwin.geometry; 
     9import minwin.image; 
    610 
    711/// Return a new GContext 
  • branches/bughunt/docs/minwin/window.d

    r44 r72  
    4141    /// Multi-delegate for paint processing. 
    4242    MultiDelegate!(Component, GContext) paintDelegate; 
    43     /// Multi-delegate for extended-paint processing. 
    44     MultiDelegate!(Component, GXContext) paintXDelegate; 
    4543    /// Multi-delegate for command processing. 
    4644    MultiDelegate!(Component, int) commandDelegate; 
  • branches/bughunt/minwin/paint.d

    r71 r72  
    22 * 
    33 * 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. 
    65 * 
    76 * Written by Ben Hinkle and released to the public domain, as 
  • branches/bughunt/minwin/window.d

    r70 r72  
    105105 
    106106    MultiDelegate!(Component, GContext) paintDelegate; 
    107     MultiDelegate!(Component, GXContext) paintXDelegate; 
    108107    MultiDelegate!(Component, int) commandDelegate; 
    109108    MultiBoolDelegate!(Component) cancelCloseDelegate; // don't quit if bool is true