dotgnu-pnet-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Dotgnu-pnet-commits] CVS: pnetlib/System.Drawing/Toolkit IToolkitPrintS


From: Rhys Weatherley <address@hidden>
Subject: [Dotgnu-pnet-commits] CVS: pnetlib/System.Drawing/Toolkit IToolkitPrintSession.cs, 1.1, 1.2
Date: Thu, 17 Jul 2003 23:53:35 -0400

Update of /cvsroot/dotgnu-pnet/pnetlib/System.Drawing/Toolkit
In directory subversions:/tmp/cvs-serv31887/System.Drawing/Toolkit

Modified Files:
        IToolkitPrintSession.cs 
Log Message:


Implement the core loop for sending pages to the printer.


Index: IToolkitPrintSession.cs
===================================================================
RCS file: 
/cvsroot/dotgnu-pnet/pnetlib/System.Drawing/Toolkit/IToolkitPrintSession.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** IToolkitPrintSession.cs     7 Jun 2003 22:40:58 -0000       1.1
--- IToolkitPrintSession.cs     18 Jul 2003 03:53:32 -0000      1.2
***************
*** 25,31 ****
  using System.Drawing.Printing;
  
! public interface IToolkitPrintSession : IDisposable
  {
!       // TODO
  
  }; // interface IToolkitPrintSession
--- 25,51 ----
  using System.Drawing.Printing;
  
! public interface IToolkitPrintSession
  {
!       // Get or set the document that is associated with this session.
!       PrintDocument Document { get; set; }
! 
!       // Start the printing session.
!       void StartPrint(PrintEventArgs e);
! 
!       // End the printing session.
!       void EndPrint(PrintEventArgs e);
! 
!       // Start printing a page, and return a "Graphics" object for it.
!       Graphics StartPage(PrintPageEventArgs e);
! 
!       // End printing of the current page.
!       void EndPage(PrintPageEventArgs e);
! 
!       // Get the preview page information for all pages.  This is only
!       // used for preview sessions.  Normal printers should return null.
!       PreviewPageInfo[] GetPreviewPageInfo();
! 
!       // Get or set the anti-alias flag for preview operations.
!       bool UseAntiAlias { get; set; }
  
  }; // interface IToolkitPrintSession





reply via email to

[Prev in Thread] Current Thread [Next in Thread]