/Release/1.0.1/Bills/FormPaymentReminder.cs

# · C# · 359 lines · 195 code · 48 blank · 116 comment · 27 complexity · 72be2e3a505151a563e7ad23b4355914 MD5 · raw file

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Windows.Forms;
  5. using BillsPresentation;
  6. using BillsDomain;
  7. [assembly: CLSCompliant(true)]
  8. namespace Bills
  9. {
  10. /// <summary>
  11. /// Interaction logic for FormPaymentReminder
  12. /// </summary>
  13. public partial class FormPaymentReminder : Form, IPaymentReminderView
  14. {
  15. /// <summary>
  16. /// Occurs when the delete button is clicked.
  17. /// </summary>
  18. public event EventHandler DeleteClicked;
  19. /// <summary>
  20. /// Occurs when the an item used to calculate the projected balance is changed.
  21. /// </summary>
  22. public event EventHandler ProjectedBalanceItemsChanged;
  23. /// <summary>
  24. /// The form for adding and editing payments
  25. /// </summary>
  26. private FormAddPayment addPaymentForm;
  27. /// <summary>
  28. /// This form's presenter
  29. /// </summary>
  30. private PaymentReminderPresenter presenter;
  31. /// <summary>
  32. /// Initializes a new instance of the <see cref="FormPaymentReminder"/> class.
  33. /// </summary>
  34. public FormPaymentReminder()
  35. {
  36. InitializeComponent();
  37. this.presenter = new PaymentReminderPresenter(this, new ScheduledPaymentController());
  38. }
  39. /// <summary>
  40. /// Handles the Click event of the buttonAddPayment control.
  41. /// </summary>
  42. /// <param name="sender">The source of the event.</param>
  43. /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
  44. private void buttonAddPayment_Click(object sender, EventArgs e)
  45. {
  46. if (addPaymentForm == null)
  47. addPaymentForm = new FormAddPayment(this.presenter.Controller);
  48. addPaymentForm.AddMode = true;
  49. addPaymentForm.ShowDialog(this);
  50. }
  51. #region IPaymentReminderView Members
  52. /// <summary>
  53. /// Gets or sets the list of upcoming payments.
  54. /// </summary>
  55. /// <value>The upcoming payments.</value>
  56. public UpcomingPaymentsCollection UpcomingPayments
  57. {
  58. get { return this.bindingSourcePaymentsWithDates.DataSource as UpcomingPaymentsCollection; }
  59. set
  60. {
  61. this.bindingSourcePaymentsWithDates.DataSource = value;
  62. //this.dataGridViewUpcomingPayments.DataSource = null;
  63. this.dataGridViewUpcomingPayments.DataSource = this.bindingSourcePaymentsWithDates;
  64. }
  65. }
  66. /// <summary>
  67. /// Gets or sets the first date to consider when generating the upcoming payment list and the projected balance.
  68. /// </summary>
  69. /// <value>As of day.</value>
  70. public DateTime AsOfDay
  71. {
  72. get { return this.dateTimePickerAsOfDay.Value; }
  73. set { this.dateTimePickerAsOfDay.Value = value; }
  74. }
  75. /// <summary>
  76. /// Gets or sets the list of days and their balances.
  77. /// </summary>
  78. /// <value>The days and balances.</value>
  79. public BindingList<CalendarDay> DaysAndBalances
  80. {
  81. get { return this.bindingSourceCalendarDays.DataSource as BindingList<CalendarDay>; }
  82. set
  83. {
  84. this.bindingSourceCalendarDays.DataSource = value;
  85. this.chartBalance.DataBind();
  86. }
  87. }
  88. #endregion
  89. /// <summary>
  90. /// Handles the ValueChanged event of the dateTimePickerAsOfDay control.
  91. /// </summary>
  92. /// <param name="sender">The source of the event.</param>
  93. /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
  94. private void dateTimePickerAsOfDay_ValueChanged(object sender, EventArgs e)
  95. {
  96. if (this.AsOfDateChanged != null)
  97. {
  98. this.AsOfDateChanged(sender, e);
  99. }
  100. }
  101. #region IPaymentReminderView Members
  102. /// <summary>
  103. /// Occurs when the as of date is changed.
  104. /// </summary>
  105. public event EventHandler AsOfDateChanged;
  106. /// <summary>
  107. /// Occurs when a scheduled payment is changed or added.
  108. /// </summary>
  109. public event EventHandler<ScheduledPaymentChangedEventArgs> ScheduledPaymentChanged;
  110. /// <summary>
  111. /// Occurs when the window is closed.
  112. /// </summary>
  113. public event EventHandler FormClose;
  114. #endregion
  115. /// <summary>
  116. /// Handles the FormClosing event of the FormPaymentReminder control.
  117. /// </summary>
  118. /// <param name="sender">The source of the event.</param>
  119. /// <param name="e">The <see cref="System.Windows.Forms.FormClosingEventArgs"/> instance containing the event data.</param>
  120. private void FormPaymentReminder_FormClosing(object sender, FormClosingEventArgs e)
  121. {
  122. if (this.FormClose != null)
  123. {
  124. this.FormClose(sender, EventArgs.Empty);
  125. }
  126. }
  127. /// <summary>
  128. /// Handles the Click event of the buttonEditPayment control.
  129. /// </summary>
  130. /// <param name="sender">The source of the event.</param>
  131. /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
  132. private void buttonEditPayment_Click(object sender, EventArgs e)
  133. {
  134. //TODO: Make selected item a view property
  135. PaymentWithDate selectedRow = this.dataGridViewUpcomingPayments.SelectedRows[0].DataBoundItem as PaymentWithDate;
  136. //BillsDataSet.UpcomingPaymentRow selectedUpcomingPaymentRow = selectedRow.Row as BillsDataSet.UpcomingPaymentRow;
  137. if (this.ScheduledPaymentChanged != null)
  138. {
  139. this.ScheduledPaymentChanged(sender, new ScheduledPaymentChangedEventArgs() { SelectedPayment = selectedRow });
  140. }
  141. if (addPaymentForm == null)
  142. addPaymentForm = new FormAddPayment(this.presenter.Controller);
  143. addPaymentForm.AddMode = false;
  144. addPaymentForm.ShowDialog(this);
  145. }
  146. /// <summary>
  147. /// Handles the DoubleClick event of the dataGridViewUpcomingPayments control.
  148. /// </summary>
  149. /// <param name="sender">The source of the event.</param>
  150. /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
  151. private void dataGridViewUpcomingPayments_DoubleClick(object sender, EventArgs e)
  152. {
  153. //TODO: Make selected item a view property
  154. //TODO: Refactor this code into another method
  155. PaymentWithDate r = this.dataGridViewUpcomingPayments.SelectedRows[0].DataBoundItem as PaymentWithDate;
  156. if (this.ScheduledPaymentChanged != null)
  157. {
  158. this.ScheduledPaymentChanged(sender, new ScheduledPaymentChangedEventArgs() { SelectedPayment = r });
  159. }
  160. if (addPaymentForm == null)
  161. addPaymentForm = new FormAddPayment(this.presenter.Controller);
  162. addPaymentForm.AddMode = false;
  163. addPaymentForm.ShowDialog(this);
  164. }
  165. /// <summary>
  166. /// Handles the Click event of the buttonDeletePayment control.
  167. /// </summary>
  168. /// <param name="sender">The source of the event.</param>
  169. /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
  170. private void buttonDeletePayment_Click(object sender, EventArgs e)
  171. {
  172. PaymentWithDate r = this.dataGridViewUpcomingPayments.SelectedRows[0].DataBoundItem as PaymentWithDate;
  173. if (this.ScheduledPaymentChanged != null)
  174. {
  175. this.ScheduledPaymentChanged(sender, new ScheduledPaymentChangedEventArgs() { SelectedPayment = r });
  176. }
  177. if (this.DeleteClicked != null)
  178. {
  179. this.DeleteClicked(sender, e);
  180. }
  181. }
  182. /// <summary>
  183. /// Handles the TextChanged event of the textBoxCurrentBalance control.
  184. /// </summary>
  185. /// <param name="sender">The source of the event.</param>
  186. /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
  187. private void textBoxCurrentBalance_TextChanged(object sender, EventArgs e)
  188. {
  189. if (this.ProjectedBalanceItemsChanged != null)
  190. {
  191. this.ProjectedBalanceItemsChanged(sender, e);
  192. }
  193. }
  194. /// <summary>
  195. /// Handles the ValueChanged event of the dateTimePickerProjectDate control.
  196. /// </summary>
  197. /// <param name="sender">The source of the event.</param>
  198. /// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
  199. private void dateTimePickerProjectDate_ValueChanged(object sender, EventArgs e)
  200. {
  201. if (this.ProjectedBalanceItemsChanged != null)
  202. {
  203. this.ProjectedBalanceItemsChanged(sender, e);
  204. }
  205. }
  206. #region IPaymentReminderView Members
  207. /// <summary>
  208. /// Gets the current balance.
  209. /// </summary>
  210. /// <value>The current balance.</value>
  211. public decimal? CurrentBalance
  212. {
  213. get
  214. {
  215. decimal? result;
  216. decimal nonNullResult;
  217. if (!decimal.TryParse(this.textBoxCurrentBalance.Text, out nonNullResult))
  218. {
  219. result = null;
  220. }
  221. else
  222. {
  223. result = nonNullResult;
  224. }
  225. return result;
  226. }
  227. }
  228. /// <summary>
  229. /// Gets or sets the projected balance.
  230. /// </summary>
  231. /// <value>The projected balance.</value>
  232. public string ProjectedBalance
  233. {
  234. get { return this.labelProjectedBalance.Text; }
  235. set { this.labelProjectedBalance.Text = value; }
  236. }
  237. /// <summary>
  238. /// Gets the date for balance projection.
  239. /// </summary>
  240. /// <value>The date for projection.</value>
  241. public DateTime DateForProjection
  242. {
  243. get { return this.dateTimePickerProjectDate.Value; }
  244. set { this.dateTimePickerProjectDate.Value = value; }
  245. }
  246. #endregion
  247. #region IPaymentReminderView Members
  248. /// <summary>
  249. /// Gets or sets the list of dates with payments.
  250. /// </summary>
  251. /// <value>The dates with payments.</value>
  252. public BindingList<CalendarDay> DatesWithPayments
  253. {
  254. get { throw new NotImplementedException(); }
  255. set
  256. {
  257. if (value != null)
  258. {
  259. List<DateTime> datesWithPayments = new List<DateTime>();
  260. foreach (CalendarDay item in value)
  261. {
  262. datesWithPayments.Add(item.Date);
  263. }
  264. this.monthCalendarImportantDates.BoldedDates = datesWithPayments.ToArray();
  265. }
  266. }
  267. }
  268. /// <summary>
  269. /// Occurs when a specific date on the calendar of days with payments is selected.
  270. /// </summary>
  271. public event EventHandler<DateSelectedEventArgs> SpecificDateSelected;
  272. #endregion
  273. /// <summary>
  274. /// Handles the DateSelected event of the monthCalendarImportantDates control.
  275. /// </summary>
  276. /// <param name="sender">The source of the event.</param>
  277. /// <param name="e">The <see cref="System.Windows.Forms.DateRangeEventArgs"/> instance containing the event data.</param>
  278. private void monthCalendarImportantDates_DateSelected(object sender, DateRangeEventArgs e)
  279. {
  280. if (this.SpecificDateSelected != null)
  281. {
  282. this.SpecificDateSelected(sender, new DateSelectedEventArgs() { SelectedDate = e.Start });
  283. }
  284. }
  285. #region IPaymentReminderView Members
  286. /// <summary>
  287. /// Gets or sets the day on calendar.
  288. /// </summary>
  289. /// <value>The day on calendar.</value>
  290. public DateTime DayOnCalendar
  291. {
  292. get { return this.monthCalendarImportantDates.SelectionStart; }
  293. set { this.monthCalendarImportantDates.SelectionRange = new SelectionRange(value, value); }
  294. }
  295. /// <summary>
  296. /// Gets or sets the list of payments for a specific day.
  297. /// </summary>
  298. /// <value>The payments for A day.</value>
  299. public IList<Payment> PaymentsForADay
  300. {
  301. get { return this.bindingSourcePayments.DataSource as IList<Payment>; }
  302. set
  303. {
  304. this.bindingSourcePayments.DataSource = value;
  305. this.dataGridViewPaymentsOnADay.DataSource = null;
  306. this.dataGridViewPaymentsOnADay.DataSource = this.bindingSourcePayments;
  307. }
  308. }
  309. #endregion
  310. }
  311. }