/usr/include/kfiletreeview.h is in kdelibs5-dev 4:4.13.3-0ubuntu0.5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /*
This file is part of the KDE project
Copyright (C) 2007 Tobias Koenig <tokoe@kde.org>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef KFILETREEVIEW_H
#define KFILETREEVIEW_H
#include <QtGui/QTreeView>
#include <kurl.h>
#include <kfile_export.h>
/**
* The file treeview offers a treeview on the filesystem.
*/
class KFILE_EXPORT KFileTreeView : public QTreeView // KDE5: remove KFILE_EXPORT? Seems internal only.
{
Q_OBJECT
public:
/**
* Creates a new file tree view.
*/
KFileTreeView(QWidget *parent = 0);
/**
* Destroys the file tree view.
*/
~KFileTreeView();
/**
* Returns the current url.
*/
KUrl currentUrl() const;
/**
* Returns the selected url.
*/
KUrl selectedUrl() const;
/**
* Returns all selected urls.
*/
KUrl::List selectedUrls() const;
/**
* Returns the current root url of the view.
*/
KUrl rootUrl() const;
/**
* Returns true if the view is currently showing hidden files
* @since 4.3
*/
bool showHiddenFiles() const;
/**
* @reimplemented
*/
QSize sizeHint() const;
public Q_SLOTS:
/**
* Sets whether the dir-only mode is @p enabled.
*
* In dir-only mode, only directories and subdirectories
* are listed in the view.
*/
void setDirOnlyMode(bool enabled);
/**
* Sets whether hidden files shall be listed.
*/
void setShowHiddenFiles(bool enabled);
/**
* Sets the current @p url of the view.
*/
void setCurrentUrl(const KUrl &url);
/**
* Sets the root @p url of the view.
*
* The default is file:///.
*/
void setRootUrl(const KUrl &url);
Q_SIGNALS:
/**
* This signal is emitted whenever an @p url has been activated.
*/
void activated(const KUrl &url);
/**
* This signal is emitted whenever the current @p url has been changed.
*/
void currentChanged(const KUrl &url);
protected:
virtual void contextMenuEvent( QContextMenuEvent* );
private:
class Private;
Private* const d;
Q_PRIVATE_SLOT(d, void _k_activated(const QModelIndex&))
Q_PRIVATE_SLOT(d, void _k_currentChanged(const QModelIndex&, const QModelIndex&))
Q_PRIVATE_SLOT(d, void _k_expanded(const QModelIndex&))
};
#endif
|