fix tricky regression noticed by Vyacheslav Tokarev on Google Reader.
[kdelibs.git] / kfile / kdiroperatordetailview_p.h
blobf58dde77974d18dc087835f989c81ea17e28fc68
1 /*****************************************************************************
2 * Copyright (C) 2007 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 version 2 as published by the Free Software Foundation. *
7 * *
8 * This library 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 * Library General Public License for more details. *
12 * *
13 * You should have received a copy of the GNU Library General Public License *
14 * along with this library; see the file COPYING.LIB. If not, write to *
15 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, *
16 * Boston, MA 02110-1301, USA. *
17 *****************************************************************************/
19 #ifndef KDIROPERATORDETAILVIEW_P_H
20 #define KDIROPERATORDETAILVIEW_P_H
22 #include <QtGui/QTreeView>
24 #include <kfile.h>
26 class QAbstractItemModel;
28 /**
29 * Default detail view for KDirOperator using
30 * custom resizing options and columns.
32 class KDirOperatorDetailView : public QTreeView
34 Q_OBJECT
36 public:
37 KDirOperatorDetailView(QWidget *parent = 0);
38 virtual ~KDirOperatorDetailView();
39 virtual void setModel(QAbstractItemModel *model);
41 /**
42 * Displays either Detail, Tree or DetailTree modes.
44 virtual bool setViewMode(KFile::FileView viewMode);
46 protected:
47 virtual bool event(QEvent *event);
48 virtual void dragEnterEvent(QDragEnterEvent *event);
49 virtual void resizeEvent(QResizeEvent *event);
50 virtual void mousePressEvent(QMouseEvent *event);
51 virtual void currentChanged(const QModelIndex& current, const QModelIndex& previous);
53 private slots:
54 void resetResizing();
55 void disableColumnResizing();
56 void slotLayoutChanged();
58 private:
59 bool m_resizeColumns;
60 bool m_hideDetailColumns;
63 #endif