BTP300B A2 Team 3 Bugs Report

From CDOT Wiki
Revision as of 20:31, 27 October 2013 by Alek Minassian (talk | contribs) (Bugs/Problems)
Jump to: navigation, search

<-- Go Back

Accomplishments

Week 1: Oct 6 - 12

  • Sunday - Alek: Initial creation of the various files required for getting started on the project: iframe.h, cfg.h, cframe.h/cpp, etc.
  • Monday - Alek: Basic functionality of the following methods were implemented (approximately 60% complete). A simplified version of a2test.cpp is used to test these methods:
    • Constructors and destructors
    • setLine()
    • capture() and restore()
    • display()
    • edit()
    • draw()
  • Tuesday: Justin- Had team meeting to discuss how CFrame worked with its parents, wrote functions for retrieving and setting rows, cols, height, width


Week 2: Oct 13 - 19

  • Sunday - Alek: The project has been set up on SVN including the branches, README, ChangeLog, TestLog, and the build scripts for each of Microsoft, Borland, and Linux. Also used a2test to test the basic functionality that has been developed so far.


Week 3: Oct 20 - 26

  • Thursday - Alek: Made the following changes:
    • Modified the constructor:
      • Accounted for negative width or height
      • Accounted for the border being invalid
    • Modified capture():
      • Release the capture buffer before capturing. This is to account for the case where capture() is called a second time because of a redraw.
    • Modified display():
      • Accounted for a bordered/non-bordered frame
      • Adjusted width to restrict it to the boundaries of the parent frame
    • Modified edit():
      • Accounted for a bordered/non-bordered frame
      • Adjusted width to restrict it to the boundaries of the parent frame
    • Modified draw():
      • Accounted for a bordered/non-bordered frame
  • Thursday - Alek: Merged Anson's changes from his branch to mine.


Week 4: Oct 27 - Nov 2


Bugs/Problems

Week 1: Oct 6 - 12

  • Sunday - Alek: a2test includes CDialog, etc. which will not be implemented until Part 2. Therefore, we cannot even compile it for Part 1 of this assignment. For now, I have deleted the parts that are not required for Part 1 so that it can be compiled, built, and used for Part 1 of the assignment.


Week 4: Oct 27 - Nov 2

  • Fixed a bug in the constructor. If row or col is negative, it will be set to 0.