~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to konqueror/listview/konq_infolistviewitem.cc

  • Committer: Bazaar Package Importer
  • Author(s): Ana Beatriz Guerrero Lopez
  • Date: 2009-04-05 05:22:13 UTC
  • mfrom: (0.4.2 experimental) (0.2.2 upstream)
  • mto: This revision was merged to the branch mainline in revision 235.
  • Revision ID: james.westby@ubuntu.com-20090405052213-39thr4l6p2ss07uj
Tags: 4:4.2.2-1
* New upstream release:
  - khtml fixes. (Closes: #290285, #359680)
  - Default konsole sessions can be deleted. (Closes: #286342)
  - Tag widget uses standard application palette. (Closes: #444800)
  - ... and surely many more but we have lost track...

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* This file is part of the KDE project
2
 
   Copyright (C) 2002 Rolf Magnus <ramagnus@kde.org>
3
 
 
4
 
   This program is free software; you can redistribute it and/or
5
 
   modify it under the terms of the GNU General Public
6
 
   License as published by the Free Software Foundation version 2.0
7
 
 
8
 
   This program is distributed in the hope that it will be useful,
9
 
   but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
 
    General Public License for more details.
12
 
 
13
 
   You should have received a copy of the GNU General Public License
14
 
   along with this program; see the file COPYING.  If not, write to
15
 
   the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
16
 
   Boston, MA 02110-1301, USA.
17
 
 
18
 
*/
19
 
 
20
 
#include "konq_listview.h"
21
 
#include <konq_settings.h>
22
 
#include <kfilemetainfo.h>
23
 
#include <kdebug.h>
24
 
#include <klocale.h>
25
 
#include <assert.h>
26
 
#include <stdio.h>
27
 
#include <qpainter.h>
28
 
#include <qheader.h>
29
 
#include <kiconloader.h>
30
 
#include "konq_infolistviewitem.h"
31
 
#include "konq_infolistviewwidget.h"
32
 
 
33
 
/**************************************************************
34
 
 *
35
 
 * KonqInfoListViewItem
36
 
 *
37
 
 **************************************************************/
38
 
KonqInfoListViewItem::KonqInfoListViewItem( KonqInfoListViewWidget *_widget, KonqInfoListViewItem * _parent, KFileItem* _fileitem )
39
 
:KonqBaseListViewItem( _widget,_parent,_fileitem ), m_ILVWidget(_widget)
40
 
{
41
 
    updateContents();
42
 
}
43
 
 
44
 
KonqInfoListViewItem::KonqInfoListViewItem( KonqInfoListViewWidget *_listViewWidget, KFileItem* _fileitem )
45
 
:KonqBaseListViewItem(_listViewWidget,_fileitem), m_ILVWidget(_listViewWidget)
46
 
{
47
 
   updateContents();
48
 
}
49
 
 
50
 
void KonqInfoListViewItem::updateContents()
51
 
{
52
 
    // Set the pixmap
53
 
    setDisabled( m_bDisabled );
54
 
 
55
 
    // Set the text of each column
56
 
    setText(0,m_fileitem->text());
57
 
 
58
 
#if 0
59
 
   if (S_ISDIR(m_fileitem->mode()))
60
 
       sortChar='0';
61
 
   //now we have the first column, so let's do the rest
62
 
 
63
 
   for (unsigned int i=0; i<KonqBaseListViewWidget::NumberOfAtoms; i++)
64
 
   {
65
 
      ColumnInfo *tmpColumn=&static_cast<KonqBaseListViewWidget *>(listView())->columnConfigInfo()[i];
66
 
      if (tmpColumn->displayThisOne)
67
 
      {
68
 
         switch (tmpColumn->udsId)
69
 
         {
70
 
         case KIO::UDS_USER:
71
 
            setText(tmpColumn->displayInColumn,m_fileitem->user());
72
 
            break;
73
 
         case KIO::UDS_GROUP:
74
 
            setText(tmpColumn->displayInColumn,m_fileitem->group());
75
 
            break;
76
 
         case KIO::UDS_FILE_TYPE:
77
 
            setText(tmpColumn->displayInColumn,m_fileitem->mimeComment());
78
 
            break;
79
 
         case KIO::UDS_MIME_TYPE:
80
 
            setText(tmpColumn->displayInColumn,m_fileitem->mimetype());
81
 
            break;
82
 
         case KIO::UDS_URL:
83
 
            setText(tmpColumn->displayInColumn,m_fileitem->url().prettyURL());
84
 
            break;
85
 
         case KIO::UDS_LINK_DEST:
86
 
            setText(tmpColumn->displayInColumn,m_fileitem->linkDest());
87
 
            break;
88
 
         case KIO::UDS_SIZE:
89
 
            if ( static_cast<KonqBaseListViewWidget *>(listView())->m_pSettings->fileSizeInBytes() )
90
 
                setText(tmpColumn->displayInColumn,KGlobal::locale()->formatNumber( m_fileitem->size(),0)+" ");
91
 
            else
92
 
                setText(tmpColumn->displayInColumn,KIO::convertSize(m_fileitem->size())+" ");
93
 
            break;
94
 
         case KIO::UDS_ACCESS:
95
 
            setText(tmpColumn->displayInColumn,m_fileitem->permissionsString());
96
 
            break;
97
 
         case KIO::UDS_MODIFICATION_TIME:
98
 
         case KIO::UDS_ACCESS_TIME:
99
 
         case KIO::UDS_CREATION_TIME:
100
 
            {
101
 
               QDateTime dt;
102
 
               time_t _time = m_fileitem->time( tmpColumn->udsId );
103
 
               if ( _time != 0 )
104
 
               {
105
 
                   dt.setTime_t( _time );
106
 
                   setText(tmpColumn->displayInColumn,KGlobal::locale()->formatDateTime(dt));
107
 
               }
108
 
            }
109
 
            break;
110
 
         default:
111
 
            break;
112
 
         };
113
 
      };
114
 
   };
115
 
#endif
116
 
}
117
 
 
118
 
void KonqInfoListViewItem::gotMetaInfo()
119
 
{
120
 
    KFileMetaInfo info = item()->metaInfo(false);
121
 
 
122
 
    if (!info.isValid()) return;
123
 
 
124
 
    QStringList::ConstIterator it = m_ILVWidget->columnKeys().begin();
125
 
    for (int i = 1; it != m_ILVWidget->columnKeys().end(); ++it, ++i)
126
 
    {
127
 
        KFileMetaInfoItem kfmii = info.item(*it);
128
 
 
129
 
        m_columnTypes.append(kfmii.type());
130
 
        m_columnValues.append(kfmii.value());
131
 
 
132
 
        if (!kfmii.isValid())
133
 
            continue;
134
 
 
135
 
        QString s = kfmii.string().simplifyWhiteSpace();
136
 
        setText(i, s.isNull() ? QString("") : s);
137
 
    }
138
 
}
139
 
 
140
 
int KonqInfoListViewItem::compare( QListViewItem *item, int col, bool ascending ) const
141
 
{
142
 
    if ( col == 0 )
143
 
        return KonqBaseListViewItem::compare( item, 0, ascending );
144
 
 
145
 
    KonqInfoListViewItem *i = static_cast<KonqInfoListViewItem *>(item);
146
 
 
147
 
    int size1 = m_columnValues.size();
148
 
    int size2 = i->m_columnValues.size();
149
 
 
150
 
    if ( size1 < col || size2 < col )
151
 
        return ascending ? ( size2 - size1 ) : ( size1 - size2 );
152
 
 
153
 
    QVariant value1 = m_columnValues[ col-1 ];
154
 
    QVariant value2 = i->m_columnValues[ col-1 ];
155
 
    QVariant::Type type1 = m_columnTypes[ col-1 ];
156
 
    QVariant::Type type2 = i->m_columnTypes[ col-1 ];
157
 
 
158
 
    if ( type1 != type2 )
159
 
        return ascending ? ( type1 - type2 ) : ( type2 - type1 );
160
 
 
161
 
#define KONQ_CASE( x ) \
162
 
    case QVariant::x:\
163
 
        return ( value1.to##x() > value2.to##x() ) ? 1 : (  value1.to##x() == value2.to##x() ) ? 0 : -1;
164
 
 
165
 
    switch( type1 ) {
166
 
    KONQ_CASE( Bool )
167
 
    KONQ_CASE( Int )
168
 
    KONQ_CASE( LongLong )
169
 
    KONQ_CASE( UInt )
170
 
    KONQ_CASE( ULongLong )
171
 
    KONQ_CASE( Double )
172
 
    KONQ_CASE( Date )
173
 
    KONQ_CASE( Time )
174
 
    KONQ_CASE( DateTime )
175
 
    case QVariant::Size:
176
 
    {
177
 
        int w1 = value1.toSize().width();
178
 
        int w2 = value2.toSize().width();
179
 
        if ( w1 != w2 )
180
 
            return ( w1 > w2 ) ? 1 : -1;
181
 
        int h1 = value1.toSize().height();
182
 
        int h2 = value2.toSize().height();
183
 
        return ( h1 > h2 ) ? 1 : ( h1 == h2 ) ? 0 : -1;
184
 
    }
185
 
    default:
186
 
        break;
187
 
    }
188
 
#undef KONQ_CASE
189
 
 
190
 
    QString text1 = text(col);
191
 
    QString text2 = i->text(col);
192
 
 
193
 
    if ( text1.isEmpty() )
194
 
        return ascending ? 1 : -1;
195
 
    if ( text2.isEmpty() )
196
 
        return ascending ? -1 : 1;
197
 
 
198
 
    return text1.lower().localeAwareCompare(text2.lower());
199
 
}
200
 
 
201
 
void KonqInfoListViewItem::setDisabled( bool disabled )
202
 
{
203
 
    KonqBaseListViewItem::setDisabled( disabled );
204
 
    int iconSize = static_cast<KonqBaseListViewWidget *>(listView())->iconSize();
205
 
    iconSize = iconSize ? iconSize : KGlobal::iconLoader()->currentSize( KIcon::Small ); // Default = small
206
 
    setPixmap( 0, m_fileitem->pixmap( iconSize, state() ) );
207
 
}
208
 
 
209
 
void KonqInfoListViewItem::paintCell( QPainter *_painter, const QColorGroup & _cg, int _column, int _width, int _alignment )
210
 
{
211
 
    QColorGroup cg( _cg );
212
 
 
213
 
    if ( _column == 0 )
214
 
    {
215
 
        _painter->setFont( m_pListViewWidget->itemFont() );
216
 
    }
217
 
 
218
 
    cg.setColor( QColorGroup::Text, m_pListViewWidget->itemColor() );
219
 
 
220
 
    KListView *lv = static_cast< KListView* >( listView() );
221
 
    const QPixmap *pm = lv->viewport()->paletteBackgroundPixmap();
222
 
    if ( _column == 0 && isSelected() && !lv->allColumnsShowFocus() )
223
 
    {
224
 
        int newWidth = width( lv->fontMetrics(), lv, _column );
225
 
        if ( newWidth > _width )
226
 
            newWidth = _width;
227
 
        if ( pm && !pm->isNull() )
228
 
        {
229
 
            cg.setBrush( QColorGroup::Base, QBrush( backgroundColor(_column), *pm ) );
230
 
            QPoint o = _painter->brushOrigin();
231
 
            _painter->setBrushOrigin( o.x() - lv->contentsX(), o.y() - lv->contentsY() );
232
 
            const QColorGroup::ColorRole crole =
233
 
                QPalette::backgroundRoleFromMode( lv->viewport()->backgroundMode() );
234
 
            _painter->fillRect( newWidth, 0, _width - newWidth, height(), cg.brush( crole ) );
235
 
            _painter->setBrushOrigin( o );
236
 
        }
237
 
        else
238
 
        {
239
 
            _painter->fillRect( newWidth, 0, _width - newWidth, height(), backgroundColor(_column) );
240
 
        }
241
 
 
242
 
        _width = newWidth;
243
 
    }
244
 
 
245
 
    KListViewItem::paintCell( _painter, cg, _column, _width, _alignment );
246
 
}
247
 
 
248
 
void KonqInfoListViewItem::paintFocus( QPainter * _painter, const QColorGroup & cg, const QRect & _r )
249
 
{
250
 
    QRect r( _r );
251
 
    QListView *lv = static_cast< QListView * >( listView() );
252
 
    r.setWidth( width( lv->fontMetrics(), lv, 0 ) );
253
 
    if ( r.right() > lv->header()->sectionRect( 0 ).right() )
254
 
        r.setRight( lv->header()->sectionRect( 0 ).right() );
255
 
    QListViewItem::paintFocus( _painter, cg, r );
256
 
}
257
 
 
258
 
#if 0
259
 
void KonqBaseListViewItem::mimetypeFound()
260
 
{
261
 
    // Update icon
262
 
    setDisabled( m_bDisabled );
263
 
    uint done = 0;
264
 
    KonqBaseListViewWidget * lv = static_cast<KonqBaseListViewWidget*>(listView());
265
 
    for (unsigned int i=0; i<KonqBaseListViewWidget::NumberOfAtoms && done < 2; i++)
266
 
    {
267
 
        ColumnInfo *tmpColumn=&lv->columnConfigInfo()[i];
268
 
        if (lv->columnConfigInfo()[i].udsId==KIO::UDS_FILE_TYPE && tmpColumn->displayThisOne)
269
 
        {
270
 
            setText(tmpColumn->displayInColumn, m_fileitem->mimeComment());
271
 
            done++;
272
 
        }
273
 
        if (lv->columnConfigInfo()[i].udsId==KIO::UDS_MIME_TYPE && tmpColumn->displayThisOne)
274
 
        {
275
 
            setText(tmpColumn->displayInColumn, m_fileitem->mimetype());
276
 
            done++;
277
 
        }
278
 
    }
279
 
}
280
 
 
281
 
#endif