Paginator.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Diagnostics;
  4. using System.Windows;
  5. using System.Windows.Documents;
  6. using GCHR.Model.Konto;
  7. namespace GCHR.Control.Printing
  8. {
  9. public class RandomTabularPaginator : DocumentPaginator
  10. {
  11. private int _rowsPerPage;
  12. private Size _pageSize;
  13. private readonly int _rows;
  14. private readonly List<HaendlerKonto> _konten;
  15. private readonly String _aktuellePeriode;
  16. private readonly String _altePeriode;
  17. public RandomTabularPaginator(String aktuellePeriode, String altePeriode, List<HaendlerKonto> konten, Size pageSize)
  18. {
  19. _aktuellePeriode = aktuellePeriode;
  20. _altePeriode = altePeriode;
  21. _konten = konten;
  22. _rows = konten.Count;
  23. PageSize = pageSize;
  24. }
  25. public override DocumentPage GetPage(int pageNumber)
  26. {
  27. var currentRow = _rowsPerPage * pageNumber;
  28. var page = new PageElement(currentRow, Math.Min(_rowsPerPage, _rows - currentRow), _konten, _aktuellePeriode, _altePeriode)
  29. {
  30. Width = PageSize.Width,
  31. Height = PageSize.Height,
  32. };
  33. page.Measure(PageSize);
  34. page.Arrange(new Rect(new Point(0, 0), PageSize));
  35. return new DocumentPage(page);
  36. }
  37. public override bool IsPageCountValid
  38. { get { return true; } }
  39. public override int PageCount
  40. { get { return (int)Math.Ceiling(_rows / (double)_rowsPerPage); } }
  41. public override sealed Size PageSize
  42. {
  43. get { return _pageSize; }
  44. set
  45. {
  46. _pageSize = value;
  47. _rowsPerPage = PageElement.RowsPerPage(PageSize.Height);
  48. //Can't print anything if you can't fit a row on a page
  49. Debug.Assert(_rowsPerPage > 0);
  50. }
  51. }
  52. public override IDocumentPaginatorSource Source
  53. { get { return null; } }
  54. }
  55. }