using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Drawing.Printing; using System.Drawing; using System.Data; using System.Drawing.Drawing2D; namespace IndianHealthService.ClinicalScheduling { /// /// Class that encapsulates printing functions in Clinical Scheduling /// public static class Printing { /// /// Print Appointments /// /// Strongly Typed DataSet contains Resources and Appointments /// PrintPageEventArgs from PrintDocument Print handler /// Begin Datetime to print appointments /// End Datetime to print appointmentsThe resouce to print /// Current Appointment printing /// Current page number /// beg and end have no effect on operation--they are there for documentation for user only public static void PrintAppointments(dsPatientApptDisplay2 ds, PrintPageEventArgs e, DateTime beg, DateTime end, int resourceToPrint, ref int apptPrinting, int pageNumber) { Graphics g = e.Graphics; //g.PageUnit = GraphicsUnit.Millimeter; //SizeF szVCB = g.VisibleClipBounds.Size; //PointF[] ptszVCB = {new PointF(szVCB.Width,szVCB.Height)}; //g.TransformPoints(CoordinateSpace.Page, CoordinateSpace.Device, ptszVCB); //Create Fonts Font f8 = new Font(FontFamily.GenericSerif, 8); Font f10 = new Font(FontFamily.GenericSerif, 10); Font f14bold = new Font(FontFamily.GenericSerif, 14, FontStyle.Bold); //Center Alignment for some stuff StringFormat sf = new StringFormat(); sf.Alignment = StringAlignment.Center; //Header g.DrawString("Confidential Patient Information", f8, Brushes.Black, e.PageBounds, sf); //Footer sf.Alignment = StringAlignment.Center; sf.LineAlignment = StringAlignment.Far; g.DrawString("Page " + pageNumber, f8, Brushes.Black, e.PageBounds, sf); //Typical manipulable print area Rectangle printArea = e.MarginBounds; //resource we want to print dsPatientApptDisplay2.BSDXResourceRow r = ds.BSDXResource[resourceToPrint]; //header string toprint; if (beg == end) toprint = "Appointments for " + r.RESOURCE_NAME + " on " + beg.ToLongDateString(); else toprint = "Appointments for " + r.RESOURCE_NAME + " from " + beg.ToShortDateString() + " to " + end.ToShortDateString(); g.DrawString(toprint, f14bold, Brushes.Black, printArea); //Move print area down printArea.Height -= (int)f14bold.GetHeight(); printArea.Y += (int)f14bold.GetHeight(); //Draw Line g.DrawLine(new Pen(Brushes.Black, 0), printArea.X, printArea.Y, printArea.X + printArea.Width, printArea.Y); //Move print area down printArea.Y += 5; printArea.Height -= 5; System.Data.DataRow[] appts = r.GetChildRows(ds.Relations[0]); //ds has only one relation StringFormat sf2 = new StringFormat(); //sf to hold tab stops sf2.SetTabStops(50, new float[] { 100, 250, 25 }); //appt printed starts at zero while (apptPrinting < appts.Length) { dsPatientApptDisplay2.PatientApptsRow a = (dsPatientApptDisplay2.PatientApptsRow)appts[apptPrinting]; StringBuilder apptPrintStr = new StringBuilder(200); apptPrintStr.AppendLine(a.ApptDate.ToString() + "\t" + a.Name + "(" + a.Sex + ")" + "\t" + "DOB: " + a.DOB.ToString("dd-MMM-yyyy") + "\t" + "ID: " + a.HRN); apptPrintStr.AppendLine("P: " + a.HOMEPHONE + "\t" + "Address: " + a.STREET + ", " + a.CITY + ", " + a.STATE + " " + a.ZIP); apptPrintStr.AppendLine("Note: " + a.NOTE); apptPrintStr.AppendLine("Appointment made by " + a.APPT_MADE_BY + " on " + a.DATE_APPT_MADE); int printedApptHeight = (int)g.MeasureString(apptPrintStr.ToString(), f10, printArea.Width).Height; if (printedApptHeight > printArea.Height) // too much to print -- move to next page // but don't increment the appointment to print since we haven't printed it yet. // i.e. apptPrinting stays the same. { e.HasMorePages = true; break; } //otherwise print it g.DrawString(apptPrintStr.ToString(), f10, Brushes.Black, printArea, sf2); //Move print area down printArea.Y += printedApptHeight + 3; printArea.Height -= printedApptHeight + 3; //Draw a divider line Point pt1 = new Point((int)(printArea.X + printArea.Width * 0.25), printArea.Y); Point pt2 = new Point((int)(printArea.X + printArea.Width * 0.75), printArea.Y); g.DrawLine(Pens.Gray, pt1, pt2); //move down, again printArea.Y += 3; printArea.Height -= 3; //go to the next appointment apptPrinting++; } } /// /// Print Letter to be given or mailed to the patient /// /// Strongly typed PatientApptsRow to pass (just one ApptRow) /// You know what that is /// Contains letter string /// Title of the letter public static void PrintReminderLetter(dsPatientApptDisplay2.PatientApptsRow ptRow, PrintPageEventArgs e, string letter, string title) { Rectangle printArea = e.MarginBounds; Graphics g = e.Graphics; StringFormat sf = new StringFormat(); sf.Alignment = StringAlignment.Center; //for title Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title Font fBody = new Font(FontFamily.GenericSerif, 12); g.DrawString(title, fTitle, Brushes.Black, printArea, sf); //title // move down int titleHeight = (int)g.MeasureString(title, fTitle, printArea.Width).Height; printArea.Y += titleHeight; printArea.Height -= titleHeight; // draw underline g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y)); printArea.Y += 15; printArea.Height -= 15; // write appointment date string str = "Appointment Date: " + ptRow.ApptDate + "\n\n"; g.DrawString(str, fBody, Brushes.Black, printArea); // move down int strHeight = (int)g.MeasureString(str, fBody, printArea.Width).Height; printArea.Y += strHeight; printArea.Height -= strHeight; // write missive g.DrawString(letter, fBody, Brushes.Black, printArea); //print Address in lower left corner for windowed envolopes printArea.Location = new Point(e.MarginBounds.X, (int)(e.PageBounds.Height * 0.66)); printArea.Height = (int)(e.MarginBounds.Height * 0.20); sf.Alignment = StringAlignment.Near; sf.LineAlignment = StringAlignment.Center; StringBuilder address = new StringBuilder(100); address.AppendLine(ptRow.Name); address.AppendLine(ptRow.STREET); address.AppendLine(ptRow.CITY + ", " + ptRow.STATE + " " + ptRow.ZIP); g.DrawString(address.ToString(), fBody, Brushes.Black, printArea, sf); } /// /// Cancellation Letter to be given or mailed to the patient /// /// Strongly typed PatientApptsRow to pass (just one ApptRow) /// You know what that is /// Contains letter string /// Title of the letter public static void PrintCancelLetter(dsRebookAppts.PatientApptsRow ptRow, PrintPageEventArgs e, string letter, string title) { Rectangle printArea = e.MarginBounds; Graphics g = e.Graphics; StringFormat sf = new StringFormat(); sf.Alignment = StringAlignment.Center; //for title Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title Font fBody = new Font(FontFamily.GenericSerif, 12); g.DrawString(title, fTitle, Brushes.Black, printArea, sf); //title // move down int titleHeight = (int)g.MeasureString(title, fTitle, printArea.Width).Height; printArea.Y += titleHeight; printArea.Height -= titleHeight; // draw underline g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y)); printArea.Y += 15; printArea.Height -= 15; // write appointment date string str = "Appointment Date: " + ptRow.OldApptDate + "\n\n"; g.DrawString(str, fBody, Brushes.Black, printArea); // move down int strHeight = (int)g.MeasureString(str, fBody, printArea.Width).Height; printArea.Y += strHeight; printArea.Height -= strHeight; // write missive g.DrawString(letter, fBody, Brushes.Black, printArea); //print Address in lower left corner for windowed envolopes printArea.Location = new Point(e.MarginBounds.X, (int)(e.PageBounds.Height * 0.66)); printArea.Height = (int)(e.MarginBounds.Height * 0.20); sf.Alignment = StringAlignment.Near; sf.LineAlignment = StringAlignment.Center; StringBuilder address = new StringBuilder(100); address.AppendLine(ptRow.Name); address.AppendLine(ptRow.STREET); address.AppendLine(ptRow.CITY + ", " + ptRow.STATE + " " + ptRow.ZIP); g.DrawString(address.ToString(), fBody, Brushes.Black, printArea, sf); } /// /// Print rebook letters. Prints old and new appointments dates then the missive. /// /// Strongly typed appointment row /// etc /// Text of the letter to print /// Title to print at the top of the letter public static void PrintRebookLetter(dsRebookAppts.PatientApptsRow ptRow, PrintPageEventArgs e, string letter, string title) { Rectangle printArea = e.MarginBounds; Graphics g = e.Graphics; StringFormat sf = new StringFormat(); sf.Alignment = StringAlignment.Center; //for title Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title Font fBody = new Font(FontFamily.GenericSerif, 12); g.DrawString(title, fTitle, Brushes.Black, printArea, sf); //title // move down int titleHeight = (int)g.MeasureString(title, fTitle, printArea.Width).Height; printArea.Y += titleHeight; printArea.Height -= titleHeight; // draw underline g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y)); printArea.Y += 15; printArea.Height -= 15; // write old and new appointment dates string str = "Old Appointment Date:\t\t" + ptRow.OldApptDate + "\n"; str += "New Appointment Date:\t\t" + ptRow.NewApptDate + "\n\n"; g.DrawString(str, fBody, Brushes.Black, printArea); // move down int strHeight = (int)g.MeasureString(str, fBody, printArea.Width).Height; printArea.Y += strHeight; printArea.Height -= strHeight; // write missive g.DrawString(letter, fBody, Brushes.Black, printArea); //print Address in lower left corner for windowed envolopes printArea.Location = new Point(e.MarginBounds.X, (int)(e.PageBounds.Height * 0.66)); printArea.Height = (int)(e.MarginBounds.Height * 0.20); sf.Alignment = StringAlignment.Near; sf.LineAlignment = StringAlignment.Center; StringBuilder address = new StringBuilder(100); address.AppendLine(ptRow.Name); address.AppendLine(ptRow.STREET); address.AppendLine(ptRow.CITY + ", " + ptRow.STATE + " " + ptRow.ZIP); g.DrawString(address.ToString(), fBody, Brushes.Black, printArea, sf); } /// /// Print message on a page; typically that there are no appointments to be found. /// Or just a test message to verify that printing works. /// /// The exact string to print. /// Print Page event args public static void PrintMessage(string msg, PrintPageEventArgs e) { e.Graphics.DrawString(msg, new Font(FontFamily.GenericSerif, 14), Brushes.Black, e.MarginBounds); } /// /// Print Routing Slip /// /// Appointment Data Structure /// String to print for title /// etc public static void PrintRoutingSlip(CGAppointment a, string title, PrintPageEventArgs e) { Rectangle printArea = e.MarginBounds; Graphics g = e.Graphics; StringFormat sf = new StringFormat(); sf.Alignment = StringAlignment.Center; //for title Font fTitle = new Font(FontFamily.GenericSerif, 24, FontStyle.Bold); //for title Font fBody = new Font(FontFamily.GenericSerif, 18); Font fBodyEm = new Font(FontFamily.GenericSerif, 18, FontStyle.Bold); g.DrawString(title, fTitle, Brushes.Black, printArea, sf); //title // move down int titleHeight = (int)g.MeasureString(title, fTitle, printArea.Width).Height; printArea.Y += titleHeight; printArea.Height -= titleHeight; // draw underline g.DrawLine(Pens.Black, printArea.Location, new Point(printArea.Right, printArea.Y)); printArea.Y += 15; printArea.Height -= 15; //construct what to print string toprint = "Patient: " + a.PatientName + "\t" + "ID: " + a.PatientID; toprint += "\n\n"; toprint += "Appointment Time: " + a.StartTime.ToLongDateString() + " " + a.StartTime.ToLongTimeString(); toprint += "\n\n"; toprint += "Notes:\n" + a.Note; //print g.DrawString(toprint, fBody, Brushes.Black, printArea); // Print Date Printed //sf to move to bottom center StringFormat sf2 = new StringFormat(); sf2.LineAlignment = StringAlignment.Far; sf2.Alignment = StringAlignment.Center; //Print Font fFooter = new Font(FontFamily.GenericSerif, 8); g.DrawString("Printed: " + DateTime.Now, fFooter, Brushes.Black, printArea, sf2); } } }