31 completed=False, _time=0, isProjectTask=False, |
31 completed=False, _time=0, isProjectTask=False, |
32 taskType=TypeTodo, project=None, description=""): |
32 taskType=TypeTodo, project=None, description=""): |
33 """ |
33 """ |
34 Constructor |
34 Constructor |
35 |
35 |
36 @param parent parent widget of the task (QWidget) |
|
37 @param summary summary text of the task (string) |
36 @param summary summary text of the task (string) |
38 @param priority priority of the task (0=high, 1=normal, 2=low) |
37 @param priority priority of the task (0=high, 1=normal, 2=low) |
39 @param filename filename containing the task (string) |
38 @param filename filename containing the task (string) |
40 @param lineno line number containing the task (integer) |
39 @param lineno line number containing the task (integer) |
41 @param completed flag indicating completion status (boolean) |
40 @param completed flag indicating completion status (boolean) |
42 @param _time creation time of the task (float, if 0 use current time) |
41 @param _time creation time of the task (float, if 0 use current time) |
43 @param isProjectTask flag indicating a task related to the current project |
42 @param isProjectTask flag indicating a task related to the current |
44 (boolean) |
43 project (boolean) |
45 @param taskType type of the task (one of TypeFixme, TypeTodo, |
44 @param taskType type of the task (one of TypeFixme, TypeTodo, |
46 TypeWarning, TypeNote) |
45 TypeWarning, TypeNote) |
47 @param project reference to the project object (Project) |
46 @param project reference to the project object (Project) |
48 @param description explanatory text of the task (string) |
47 @param description explanatory text of the task (string) |
49 """ |
48 """ |