summaryrefslogtreecommitdiff
path: root/core/pim/todo/tableitems.cpp
blob: 86fe07de9105ee83de44a7ace7af6acfc67c5c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*
               =.            This file is part of the OPIE Project
             .=l.            Copyright (c)  2002 <>
           .>+-=
 _;:,     .>    :=|.         This program is free software; you can
.> <`_,   >  .   <=          redistribute it and/or  modify it under
:`=1 )Y*s>-.--   :           the terms of the GNU General Public
.="- .-=="i,     .._         License as published by the Free Software
 - .   .-<_>     .<>         Foundation; either version 2 of the License,
     ._= =}       :          or (at your option) any later version.
    .%`+i>       _;_.
    .i_,=:_.      -<s.       This program is distributed in the hope that
     +  .  -:.       =       it will be useful,  but WITHOUT ANY WARRANTY;
    : ..    .:,     . . .    without even the implied warranty of
    =_        +     =;=|`    MERCHANTABILITY or FITNESS FOR A
  _.=:.       :    :=>`:     PARTICULAR PURPOSE. See the GNU
..}^=.=       =       ;      Library General Public License for more
++=   -.     .`     .:       details.
 :     =  ...= . :.=-
 -.   .:....=;==+<;          You should have received a copy of the GNU
  -_. . .   )=.  =           Library General Public License along with
    --        :-=`           this library; see the file COPYING.LIB.
                             If not, write to the Free Software Foundation,
                             Inc., 59 Temple Place - Suite 330,
                             Boston, MA 02111-1307, USA.

*/
#include "tableview.h"

#include "tableitems.h"
#include <string.h>

using namespace Todo;

CheckItem::CheckItem( QTable* t,
                      const QString& sortKey,
                      int uid,
                      const QArray<int>& lis)
    : OCheckItem(t, sortKey), m_uid(uid ), m_cat( lis )
{
}
CheckItem::~CheckItem() {
}
void CheckItem::setChecked( bool b ) {
    OCheckItem::setChecked(b);
}
void CheckItem::toggle() {
    TableView* view = static_cast<TableView*>( table() );
    OTodo ev = view->find( view->current() );
    ev.setCompleted(!isChecked() );
    //view->updateFromTable( ev );

    OCheckItem::toggle();
    table()->updateCell( row(), col() );
}
int CheckItem::uid() const {
    return m_uid;
}
QArray<int> CheckItem::cats() {
    return m_cat;
}

/* ComboItem */
ComboItem::ComboItem( QTable* t, EditType et )
    : QTableItem( t, et, "3" ), m_cb(0)
{
    setReplaceable( FALSE );
}
ComboItem::~ComboItem() {

}
QWidget* ComboItem::createEditor()const {
    qWarning( "create editor");
    QString txt = text();

    ( (ComboItem*)this)-> m_cb = new QComboBox( table()->viewport() );

    m_cb->insertItem( "1" );
    m_cb->insertItem( "2" );
    m_cb->insertItem( "3" );
    m_cb->insertItem( "4" );
    m_cb->insertItem( "5" );
    m_cb->setCurrentItem( txt.toInt() - 1 );

    return m_cb;
}
void ComboItem::setContentFromEditor( QWidget* w) {
    TableView* view = static_cast<TableView*>( table() );
    OTodo ev = view->find( view->current() );

    if ( w->inherits( "QComboBox" ) )
        setText( ( (QComboBox*)w )->currentText() );
    else
        QTableItem::setContentFromEditor( w );

    ev.setPriority( text().toInt() );
    //view->updateFromTable( ev );
}
void ComboItem::setText( const QString& s ) {
    if ( m_cb )
        m_cb->setCurrentItem( s.toInt()-1 );

    QTableItem::setText( s );
}
QString ComboItem::text()const {
    if ( m_cb)
        return m_cb->currentText();

    return QTableItem::text();
}

/* TodoTextItem */
TodoTextItem::~TodoTextItem() {

}
TodoTextItem::TodoTextItem( QTable* t,
                            const QString& string )
    : QTableItem( t,  QTableItem::Never, string )
{}

/* DueTextItem */
DueTextItem::DueTextItem( QTable* t, const OTodo& ev)
    : QTableItem(t, Never, QString::null )
{
    setToDoEvent( ev );
}
DueTextItem::~DueTextItem() {

}
QString DueTextItem::key() const {
    QString key;

    if( m_hasDate ){
        if(m_off == 0 ){
            key.append("b");
        }else if( m_off > 0 ){
            key.append("c");
        }else if( m_off < 0 ){
            key.append("a");
        }
        key.append(QString::number(m_off ) );
    }else{
        key.append("d");
    }
    return key;
}
void DueTextItem::setCompleted( bool comp ) {
    m_completed = comp;
    table()->updateCell( row(), col() );
}
void DueTextItem::setToDoEvent( const OTodo& ev ) {
    m_hasDate = ev.hasDueDate();
    m_completed = ev.isCompleted();

    if( ev.hasDueDate() ){
        QDate today = QDate::currentDate();
        m_off = today.daysTo(ev.dueDate() );
        setText( QString::number(m_off)  + " day(s) " );
    }else{
        setText("n.d." );
        m_off = 0;
    }
}
void DueTextItem::paint( QPainter* p, const QColorGroup &cg,
                         const QRect& cr, bool selected ) {
    QColorGroup cg2(cg);

    QColor text = cg.text();
    if( m_hasDate && !m_completed ){
        if( m_off < 0 ){
            cg2.setColor(QColorGroup::Text, QColor(red ) );
        }else if( m_off == 0 ){
            cg2.setColor(QColorGroup::Text, QColor(yellow) ); // orange isn't predefined
        }else if( m_off > 0){
            cg2.setColor(QColorGroup::Text, QColor(green ) );
        }
    }
    QTableItem::paint(p, cg2, cr, selected );
    /* restore default color */
    cg2.setColor(QColorGroup::Text, text );
}