fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kio / kio / defaultviewadapter.cpp
blob15887e36087b31f71ec81b53c3f64fb0d305ddae
1 /*******************************************************************************
2 * Copyright (C) 2008 by Peter Penz <peter.penz@gmx.at> *
3 * *
4 * This library is free software; you can redistribute it and/or *
5 * modify it under the terms of the GNU Library General Public *
6 * License as published by the Free Software Foundation; either *
7 * version 2 of the License, or (at your option) any later version. *
8 * *
9 * This library is distributed in the hope that it will be useful, *
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU *
12 * Library General Public License for more details. *
13 * *
14 * You should have received a copy of the GNU Library General Public License *
15 * along with this library; see the file COPYING.LIB. If not, write to *
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
17 * Boston, MA 02110-1301, USA. *
18 *******************************************************************************/
20 #include "defaultviewadapter_p.h"
21 #include "kmimetyperesolver.h"
23 #include <QAbstractItemView>
24 #include <QScrollBar>
26 namespace KIO
29 DefaultViewAdapter::DefaultViewAdapter(QAbstractItemView* view, QObject* parent) :
30 KAbstractViewAdapter(parent),
31 m_view(view)
35 QAbstractItemModel *DefaultViewAdapter::model() const
37 return m_view->model();
40 QSize DefaultViewAdapter::iconSize() const
42 return m_view->iconSize();
45 QPalette DefaultViewAdapter::palette() const
47 return m_view->palette();
50 QRect DefaultViewAdapter::visibleArea() const
52 return m_view->viewport()->rect();
55 QRect DefaultViewAdapter::visualRect(const QModelIndex& index) const
57 return m_view->visualRect(index);
60 void DefaultViewAdapter::connect(Signal signal, QObject* receiver, const char* slot)
62 if (signal == ScrollBarValueChanged) {
63 QObject::connect(m_view->horizontalScrollBar(), SIGNAL(valueChanged(int)), receiver, slot);
64 QObject::connect(m_view->verticalScrollBar(), SIGNAL(valueChanged(int)), receiver, slot);