Difference between revisions of "A+ Programmers - OOP344 20113"
(→CLabel) |
(→tasks) |
||
Line 48: | Line 48: | ||
* Ramone Burrell | * Ramone Burrell | ||
* Done | * Done | ||
+ | |||
=== CLabel === | === CLabel === | ||
* complete all methods for this class | * complete all methods for this class | ||
Line 66: | Line 67: | ||
=== CDialog === | === CDialog === | ||
− | |||
* Constructor | * Constructor | ||
* Hesam Chobanlou | * Hesam Chobanlou | ||
Line 108: | Line 108: | ||
* being done by team member name / not assigned | * being done by team member name / not assigned | ||
* status | * status | ||
+ | |||
=== CButton === | === CButton === | ||
+ | * complete all methods for this class | ||
+ | * Ronson Wan | ||
+ | * Work in progress | ||
+ | |||
+ | === CMenuItem === | ||
+ | * task description | ||
+ | * being done by team member name / not assigned | ||
+ | * status | ||
+ | |||
+ | |||
+ | === CCheckMark === | ||
+ | * task description | ||
+ | * being done by team member name / not assigned | ||
+ | * status | ||
+ | |||
+ | |||
+ | === CValEdit === | ||
* task description | * task description | ||
* being done by team member name / not assigned | * being done by team member name / not assigned |
Revision as of 16:15, 8 November 2011
OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources
Contents
A+ Programmers
Project Marking Percentage
- due right after study break
Group work: 50% (25 <= xx <= 50) Individual work: 50% + (50 <= xx <= 75) ------------------------- Total 100%
Repository
- repo id:
Trunk Status
- committed/committing by
- id: emailid
- name: full name
- irc nick: mynick
- any other info
Team Members
First Name | Last Name | Section | Seneca Id | wiki id | IRC nick | Blog URL |
---|---|---|---|---|---|---|
Ronson | Wan | A | rwan1 | rwan1 | Ronsonnn | Ronson's Blog |
Ramone | Burrell | B | raburrell | raburrell | burrellramone | Ramone's Blog |
Hesam | Chobanlou | B | hchobanlou | hchobanlou | hchobanlou | Triggaz Blog |
Mike | Shutov | B | mshutov | mshutov | mshutov | Mike's Blog |
Akash | Patel | B | acpatel4 | acpatel4 | Akash123 | Akash Patel's Blog |
tasks
CField
- complete all functions for this class
- Ramone Burrell
- Done
CLabel
- complete all methods for this class
- Ronson Wan
- Completed
- Remove _length attribute and use _width of CFrame instead (use void width(int) and int width() to set and get length
- Ronson Wan
- Completed
- Modify CLabel Copy Constructor to the new definition
- Ramone Burrell
- Completed
- Modify void CLabel::set(const void* str) and remove the condition for memory reallocation
- Mike Shutov
- Completed
CDialog
- Constructor
- Hesam Chobanlou
- Completed
- Working on draw method.
- Akash Patel
- Completed
- Working on operator<<(CField& field)
- Ronson Wan
- Completed
- Working on int add(CField* field, bool dynamic = true)
- Ramone Burrell
- Completed
- Working on int add(CField& field, bool dynamic = false)
- Ramone Burrell
- Completed
- Working on destructor for cdialog class
- Ramone Burrell
- Completed
- Working on edit method for cdialog class
- Ronson Wan
- Completed
- Dummy File(Prototype of all functions)
- Mike Shutov
- Completed
- General Function maintenance and some work on many of the functions.
- CField& CDialog::operator[] and CField& CDialog::curField(){ and int CDialog::curIndex() + other queries
- Mike Shutov
- Completed
CLineEdit
- task description
- being done by team member name / not assigned
- status
CButton
- complete all methods for this class
- Ronson Wan
- Work in progress
CMenuItem
- task description
- being done by team member name / not assigned
- status
CCheckMark
- task description
- being done by team member name / not assigned
- status
CValEdit
- task description
- being done by team member name / not assigned
- status
Syntax Guidelines
This is a group of recommendation of coding style pertinent to this group. Feel free to add or modify where you see fit.
Comments:
- Comments should explain the purpose behind statements not logic.
- Explain each parameters role to the function.
- State the return of the function.
Example:
/* * Pourpose: A short description of the function. * * Parameters: int x -> Describe what use the function makes of the variable. * * Return: int, bool etc... */ void foo(int x) { return x; }
meetings
- latest will be on top