-rw-r--r-- | korganizer/kotodoviewitem.cpp | 21 |
1 files changed, 15 insertions, 6 deletions
diff --git a/korganizer/kotodoviewitem.cpp b/korganizer/kotodoviewitem.cpp index 848e9e7..519bb16 100644 --- a/korganizer/kotodoviewitem.cpp +++ b/korganizer/kotodoviewitem.cpp | |||
@@ -38,16 +38,27 @@ KOTodoViewItem::KOTodoViewItem( KOTodoViewItem *parent, Todo *todo, KOTodoView * | |||
38 | { | 38 | { |
39 | construct(); | 39 | construct(); |
40 | } | 40 | } |
41 | 41 | ||
42 | QString KOTodoViewItem::key(int column,bool) const | 42 | QString KOTodoViewItem::key(int column,bool) const |
43 | { | 43 | { |
44 | if ( column == 0 ) | ||
45 | return text(0).lower(); | ||
46 | if ( column == 1 ) { | ||
47 | if ( mTodo->isCompleted() ) { | ||
48 | return "6"+QString::number(mTodo->priority())+text(0).lower(); | ||
49 | } | ||
50 | return QString::number(mTodo->priority())+text(0).lower(); | ||
51 | } | ||
44 | QMap<int,QString>::ConstIterator it = mKeyMap.find(column); | 52 | QMap<int,QString>::ConstIterator it = mKeyMap.find(column); |
45 | if (it == mKeyMap.end()) { | 53 | if (it == mKeyMap.end()) { |
46 | return text(column).lower(); | 54 | return text(column).lower(); |
47 | } else { | 55 | } else { |
56 | if ( column == 2 ) { | ||
57 | return *it+text(0).lower(); | ||
58 | } | ||
48 | return *it; | 59 | return *it; |
49 | } | 60 | } |
50 | } | 61 | } |
51 | 62 | ||
52 | void KOTodoViewItem:: setup() | 63 | void KOTodoViewItem:: setup() |
53 | { | 64 | { |
@@ -85,18 +96,16 @@ void KOTodoViewItem::construct() | |||
85 | 96 | ||
86 | setOn(mTodo->isCompleted()); | 97 | setOn(mTodo->isCompleted()); |
87 | setText(0,mTodo->summary()); | 98 | setText(0,mTodo->summary()); |
88 | setText(1,QString::number(mTodo->priority())); | 99 | setText(1,QString::number(mTodo->priority())); |
89 | setText(2,i18n("%1 %").arg(QString::number(mTodo->percentComplete()))); | 100 | setText(2,i18n("%1 %").arg(QString::number(mTodo->percentComplete()))); |
90 | if (mTodo->percentComplete()<100) { | 101 | if (mTodo->percentComplete()<100) { |
91 | if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); | 102 | setSortKey(2,QString::number(mTodo->percentComplete())); |
92 | else setSortKey(2,QString::number(mTodo->percentComplete())); | ||
93 | } | 103 | } |
94 | else { | 104 | else { |
95 | if (mTodo->isCompleted()) setSortKey(2,QString::number(999)); | 105 | setSortKey(2,"999"); |
96 | else setSortKey(2,QString::number(99)); | ||
97 | } | 106 | } |
98 | if (mTodo->hasDueDate()) { | 107 | if (mTodo->hasDueDate()) { |
99 | setText(3, mTodo->dtDueDateStr()); | 108 | setText(3, mTodo->dtDueDateStr()); |
100 | QDate d = mTodo->dtDue().date(); | 109 | QDate d = mTodo->dtDue().date(); |
101 | keyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); | 110 | keyd.sprintf("%04d%02d%02d",d.year(),d.month(),d.day()); |
102 | // setSortKey(3,keyd); | 111 | // setSortKey(3,keyd); |
@@ -112,16 +121,16 @@ void KOTodoViewItem::construct() | |||
112 | } else { | 121 | } else { |
113 | setText(3,""); | 122 | setText(3,""); |
114 | setText(4,""); | 123 | setText(4,""); |
115 | } | 124 | } |
116 | setSortKey(3,keyd); | 125 | setSortKey(3,keyd); |
117 | setSortKey(4,keyt); | 126 | setSortKey(4,keyt); |
118 | 127 | #if 0 | |
119 | if (mTodo->isCompleted()) setSortKey(1,"6" + QString::number(mTodo->priority())+keyd+keyt); | 128 | if (mTodo->isCompleted()) setSortKey(1,"6" + QString::number(mTodo->priority())+keyd+keyt); |
120 | else setSortKey(1,QString::number(mTodo->priority())+keyd+keyt); | 129 | else setSortKey(1,QString::number(mTodo->priority())+keyd+keyt); |
121 | 130 | #endif | |
122 | keyd = ""; | 131 | keyd = ""; |
123 | keyt = ""; | 132 | keyt = ""; |
124 | 133 | ||
125 | if (mTodo->isRunning() ) { | 134 | if (mTodo->isRunning() ) { |
126 | QDate d = mTodo->runStart().date(); | 135 | QDate d = mTodo->runStart().date(); |
127 | QTime t = mTodo->runStart().time(); | 136 | QTime t = mTodo->runStart().time(); |