Difference between revisions of "OOP344 20131 CDroid++"

From CDOT Wiki
Jump to: navigation, search
(Issue 2.4: CButton Mock-up Class)
 
(6 intermediate revisions by 2 users not shown)
Line 63: Line 63:
 
* Assigned to:  ''Mohammad-Reza''
 
* Assigned to:  ''Mohammad-Reza''
 
* Code reviewed by: ''''
 
* Code reviewed by: ''''
* Status: ''Pending''
+
* Status: ''Complete''
 
*:
 
*:
 
* Comments:
 
* Comments:
Line 73: Line 73:
 
* Assigned to: ''Mohammed Al Zubair''
 
* Assigned to: ''Mohammed Al Zubair''
 
* Code reviewed by: ''Christopher Ho''
 
* Code reviewed by: ''Christopher Ho''
* Status:          ''Merged''
+
* Status:          ''Complete''
 
*:
 
*:
 
* Comments:
 
* Comments:
Line 80: Line 80:
 
* Assigned to: ''Christopher Ho''
 
* Assigned to: ''Christopher Ho''
 
* Code reviewed by: ''Christopher Ho''
 
* Code reviewed by: ''Christopher Ho''
* Status:          ''Merged''
+
* Status:          ''Complete''
 
*:
 
*:
 
* Comments:
 
* Comments:
Line 87: Line 87:
 
* Assigned to:      ''Mohammad-Reza''
 
* Assigned to:      ''Mohammad-Reza''
 
* Code reviewed by: ''Christopher Ho''
 
* Code reviewed by: ''Christopher Ho''
* Status:          ''Merged''
+
* Status:          ''Complete''
 
*:
 
*:
 
* Comments:
 
* Comments:
Line 94: Line 94:
 
* Assigned to: ''Omkar Parmar''
 
* Assigned to: ''Omkar Parmar''
 
* Code reviewed by: ''Christopher Ho''
 
* Code reviewed by: ''Christopher Ho''
* Status:            ''Merged''
+
* Status:            ''Complete''
 
*:
 
*:
 
* Comments:
 
* Comments:
 
*
 
*
 +
== 0.3 Milestone ((Due March 6th, 23:59)) ==
 +
=== Issue 3.1: Apply changes to CDialog, cuigh.h and update and test your related mock-ups===
 +
* Assigned to: ''''
 +
* Code reviewed by: ''''
 +
* Status:          ''''
 +
*:
 +
* Comments:
 +
=== Issue 3.2:CLabel Implementation ===
 +
* Assigned to: ''Mohammed Al Zubair''
 +
* Code reviewed by: ''Omkar Parmar''
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
=== Issue 3.3:CDialog Implementation ===
 +
* Assigned to: ''Christopher Ho''
 +
* Code reviewed by: ''Mohammed Al Zubair''
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
=== Issue 3.4:CLineEdit Implementation ===
 +
* Assigned to: ''Mohammad-Reza''
 +
* Code reviewed by: ''Christopher Ho''
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
=== Issue 3.5:CButton Implementation ===
 +
* Assigned to: ''Omkar Parmar''
 +
* Code reviewed by: ''Mohammad-Reza''
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
 +
 +
 +
== 0.5 Milestone ((Due Thursday March, 28th 23:59)) ==
 +
=== Issue 5.1:Mock-ups Class===
 +
=== Issue CValEdit Mock-ups Class===
 +
* Assigned to: ''Mohammed Al Zubair''
 +
 +
* Code reviewed by: ''Christopher Ho''
 +
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
=== Issue CCheckMark Mock-ups Class===
 +
* Assigned to: ''Christopher Ho''
 +
* Code reviewed by: ''Omkar Parmar''
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
=== Issue  CMenuItem Mock-ups Class===
 +
* Assigned to: ''Omkar Parmar''
 +
* Code reviewed by: ''Mohammed Al Zubair''
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
== ==
 +
=== Issue 5.2:CValEdit Implementation===
 +
* Assigned to: ''Mohammed Al Zubair''
 +
 +
* Code reviewed by: ''Christopher Ho''
 +
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
=== Issue 5.3:CCheckMark Implementation ===
 +
* Assigned to: ''Christopher Ho''
 +
* Code reviewed by: ''Mohammad-Reza''
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:
 +
=== Issue 5.4:CMenuItem Implementation ===
 +
* Assigned to: ''Omkar Parmar''
 +
* Code reviewed by: ''Mohammed Al Zubair''
 +
* Status:          ''Complete''
 +
*:
 +
* Comments:

Latest revision as of 13:22, 20 April 2013


OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources

CDroid ++ (Team 9)

Repository

Github Repo: CDroid (https://github.com/Seneca-OOP344/9-CDroid)


Useful Links


Guidelines For Coding (Must Follow)

1. Use 2 space indentations on anything you code

2. Use 1TBS(One True Brace Style) layout for braces around your code

3. Use general comments throughout your code

4. Use line spacing for the ease of reading

Example for above points

 int main(){
   //Variable defination and initialization
   int a = 10;
   int b = 20;
   bool check;   
   //checks if a is greater than b and vice versa
   if(a > b){
     check = true;
   }
   else{
     check = false;
   }
  
   //returns the value of check
   return check;
 }//End Of Code

Team Members

Email to all members

First Name Last Name Section Seneca ID Wiki ID IRC nick Github ID Blog URL
Omkar Parmar A onparmar onparmar onparmar onparmar C++ OOP Programming
Mohammed Al Zubair A malzubair Mohammed Al Zubair moalzubair malzubair Mohammed's Blog
Mohammad-Reza Akbari B makbari11 Mohammad-Reza Akbari reza-oop344 reza-oop344 Mohammad-Reza's Blog
Christopher Ho A csho3 Christopher Ho csho3 Chhoris Chris's blog

0.2 Milestone ((Due Thur Feb 14th, 23:59) )

Issue 1: Add console class to project and test with cio_test

  • Assigned to: Mohammad-Reza
  • Code reviewed by: '
  • Status: Complete
  • Comments:

Issue 2: Create Mock-up classes

Create the class files (header and cpp) with blank methods and make sure they compile

Issue 2.1: CLabel Mock-up Class

  • Assigned to: Mohammed Al Zubair
  • Code reviewed by: Christopher Ho
  • Status: Complete
  • Comments:

Issue 2.2: CDialog Mock-up Class

  • Assigned to: Christopher Ho
  • Code reviewed by: Christopher Ho
  • Status: Complete
  • Comments:

Issue 2.3: CLineEdit Mock-up Class

  • Assigned to: Mohammad-Reza
  • Code reviewed by: Christopher Ho
  • Status: Complete
  • Comments:

Issue 2.4: CButton Mock-up Class

  • Assigned to: Omkar Parmar
  • Code reviewed by: Christopher Ho
  • Status: Complete
  • Comments:

0.3 Milestone ((Due March 6th, 23:59))

Issue 3.1: Apply changes to CDialog, cuigh.h and update and test your related mock-ups

  • Assigned to: '
  • Code reviewed by: '
  • Status: '
  • Comments:

Issue 3.2:CLabel Implementation

  • Assigned to: Mohammed Al Zubair
  • Code reviewed by: Omkar Parmar
  • Status: Complete
  • Comments:

Issue 3.3:CDialog Implementation

  • Assigned to: Christopher Ho
  • Code reviewed by: Mohammed Al Zubair
  • Status: Complete
  • Comments:

Issue 3.4:CLineEdit Implementation

  • Assigned to: Mohammad-Reza
  • Code reviewed by: Christopher Ho
  • Status: Complete
  • Comments:

Issue 3.5:CButton Implementation

  • Assigned to: Omkar Parmar
  • Code reviewed by: Mohammad-Reza
  • Status: Complete
  • Comments:


0.5 Milestone ((Due Thursday March, 28th 23:59))

Issue 5.1:Mock-ups Class

Issue CValEdit Mock-ups Class

  • Assigned to: Mohammed Al Zubair
  • Code reviewed by: Christopher Ho
  • Status: Complete
  • Comments:

Issue CCheckMark Mock-ups Class

  • Assigned to: Christopher Ho
  • Code reviewed by: Omkar Parmar
  • Status: Complete
  • Comments:

Issue CMenuItem Mock-ups Class

  • Assigned to: Omkar Parmar
  • Code reviewed by: Mohammed Al Zubair
  • Status: Complete
  • Comments:

Issue 5.2:CValEdit Implementation

  • Assigned to: Mohammed Al Zubair
  • Code reviewed by: Christopher Ho
  • Status: Complete
  • Comments:

Issue 5.3:CCheckMark Implementation

  • Assigned to: Christopher Ho
  • Code reviewed by: Mohammad-Reza
  • Status: Complete
  • Comments:

Issue 5.4:CMenuItem Implementation

  • Assigned to: Omkar Parmar
  • Code reviewed by: Mohammed Al Zubair
  • Status: Complete
  • Comments: