/usr/include/k3filetreeview.h is in kdelibs5-dev 4:4.14.2-5+deb8u2.
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 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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 | /* This file is part of the KDE project
Copyright (C) 2000 David Faure <faure@kde.org>
2000 Carsten Pfeiffer <pfeiffer@kde.org>
2002 Klaas Freitag <freitag@suse.de>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License version 2 as published by the Free Software Foundation.
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 kfile_tree_view_h
#define kfile_tree_view_h
#include <QtCore/QMap>
#include <QtCore/QPoint>
#include <QtGui/QPixmap>
#include <k3listview.h>
#include <kdirnotify.h>
#include <kio/job.h>
#include <k3filetreeviewitem.h>
#include <kfiletreebranch.h>
class QTimer;
/**
* The filetreeview offers a treeview on the file system which behaves like
* a QTreeView showing files and/or directories in the file system.
*
* K3FileTreeView is able to handle more than one URL, represented by
* KFileTreeBranch.
*
* Typical usage:
* 1. create a K3FileTreeView fitting in your layout and add columns to it
* 2. call addBranch to create one or more branches
* 3. retrieve the root item with KFileTreeBranch::root() and set it open
* if desired. That starts the listing.
*/
class KDE3SUPPORT_EXPORT K3FileTreeView : public K3ListView
{
Q_OBJECT
public:
K3FileTreeView( QWidget *parent );
virtual ~K3FileTreeView();
/**
* @return the current (i.e. selected) item
*/
K3FileTreeViewItem * currentKFileTreeViewItem() const;
/**
* @return the URL of the current selected item.
*/
KUrl currentUrl() const;
/**
* Adds a branch to the treeview item.
*
* This high-level function creates the branch, adds it to the treeview and
* connects some signals. Note that directory listing does not start until
* a branch is expanded either by opening the root item by user or by setOpen
* on the root item.
*
* @returns a pointer to the new branch or zero
* @param path is the base url of the branch
* @param name is the name of the branch, which will be the text for column 0
* @param showHidden says if hidden files and directories should be visible
*/
KFileTreeBranch* addBranch( const KUrl &path, const QString& name, bool showHidden = false );
/**
* same as the function above but with a pixmap to set for the branch.
*/
virtual KFileTreeBranch* addBranch( const KUrl &path, const QString& name ,
const QPixmap& pix, bool showHidden = false );
/**
* same as the function above but letting the user create the branch.
*/
virtual KFileTreeBranch* addBranch( KFileTreeBranch * );
/**
* removes the branch from the treeview.
* @param branch is a pointer to the branch
* @returns true on success.
*/
virtual bool removeBranch( KFileTreeBranch *branch );
/**
* @returns a pointer to the KFileTreeBranch in the K3FileTreeView or zero on failure.
* @param searchName is the name of a branch
*/
KFileTreeBranch *branch( const QString& searchName );
/**
* @returns a list of pointers to all existing branches in the treeview.
**/
KFileTreeBranchList& branches();
/**
* set the directory mode for branches. If true is passed, only directories will be loaded.
* @param branch is a pointer to a KFileTreeBranch
*/
virtual void setDirOnlyMode( KFileTreeBranch *branch, bool );
/**
* searches a branch for a K3FileTreeViewItem identified by the relative url given as
* second parameter. The method adds the branches base url to the relative path and finds
* the item.
* @returns a pointer to the item or zero if the item does not exist.
* @param brnch is a pointer to the branch to search in
* @param relUrl is the branch relativ url
*/
K3FileTreeViewItem *findItem( KFileTreeBranch* brnch, const QString& relUrl );
/**
* see method above, differs only in the first parameter. Finds the branch by its name.
*/
K3FileTreeViewItem *findItem( const QString& branchName, const QString& relUrl );
/**
* @returns a flag indicating if extended folder pixmaps are displayed or not.
*/
bool showFolderOpenPixmap() const;
public Q_SLOTS:
/**
* set the flag to show 'extended' folder icons on or off. If switched on, folders will
* have an open folder pixmap displayed if their children are visible, and the standard
* closed folder pixmap (from mimetype folder) if they are closed.
* If switched off, the plain mime pixmap is displayed.
* @param showIt = false displays mime type pixmap only
*/
virtual void setShowFolderOpenPixmap( bool showIt = true );
protected:
/**
* @returns true if we can decode the drag and support the action
*/
virtual bool acceptDrag(QDropEvent* event) const;
virtual Q3DragObject * dragObject();
virtual void startAnimation( K3FileTreeViewItem* item, const char * iconBaseName = "kde", uint iconCount = 6 );
virtual void stopAnimation( K3FileTreeViewItem* item );
virtual void contentsDragEnterEvent( QDragEnterEvent *e );
virtual void contentsDragMoveEvent( QDragMoveEvent *e );
virtual void contentsDragLeaveEvent( QDragLeaveEvent *e );
virtual void contentsDropEvent( QDropEvent *ev );
protected Q_SLOTS:
virtual void slotNewTreeViewItems( KFileTreeBranch*,
const K3FileTreeViewItemList& );
virtual void slotSetNextUrlToSelect( const KUrl &url );
virtual QPixmap itemIcon( K3FileTreeViewItem*, int gap = 0 ) const;
private Q_SLOTS:
void slotExecuted( Q3ListViewItem * );
void slotExpanded( Q3ListViewItem * );
void slotCollapsed( Q3ListViewItem *item );
void slotSelectionChanged();
void slotAnimation();
void slotAutoOpenFolder();
void slotOnItem( Q3ListViewItem * );
void slotItemRenamed(Q3ListViewItem*, const QString &, int);
void slotPopulateFinished( K3FileTreeViewItem* );
Q_SIGNALS:
void onItem( const QString& );
/* New signals if you like it ? */
void dropped( QWidget*, QDropEvent* );
void dropped( QWidget*, QDropEvent*, KUrl::List& );
void dropped( KUrl::List&, KUrl& );
// The drop event allows to differentiate between move and copy
void dropped( QWidget*, QDropEvent*, KUrl::List&, KUrl& );
void dropped( QDropEvent *, Q3ListViewItem * );
void dropped(K3FileTreeView *, QDropEvent *, Q3ListViewItem *);
void dropped(QDropEvent *, Q3ListViewItem *, Q3ListViewItem *);
void dropped(K3FileTreeView *, QDropEvent *, Q3ListViewItem *, Q3ListViewItem *);
protected:
KUrl m_nextUrlToSelect;
private:
// Returns whether item is still a valid item in the tree
bool isValidItem( Q3ListViewItem *item);
void clearTree();
/* List that holds the branches */
KFileTreeBranchList m_branches;
struct AnimationInfo
{
AnimationInfo( const char * _iconBaseName, uint _iconCount, const QPixmap & _originalPixmap )
: iconBaseName(_iconBaseName), iconCount(_iconCount), iconNumber(1), originalPixmap(_originalPixmap) {}
AnimationInfo() : iconCount(0) {}
QByteArray iconBaseName;
uint iconCount;
uint iconNumber;
QPixmap originalPixmap;
};
typedef QMap<K3FileTreeViewItem *, AnimationInfo> MapCurrentOpeningFolders;
MapCurrentOpeningFolders m_mapCurrentOpeningFolders;
QTimer *m_animationTimer;
QPoint m_dragPos;
bool m_bDrag;
bool m_wantOpenFolderPixmaps; // Flag weather the folder should have open-folder pixmaps
Q3ListViewItem *m_currentBeforeDropItem; // The item that was current before the drag-enter event happened
Q3ListViewItem *m_dropItem; // The item we are moving the mouse over (during a drag)
QPixmap m_openFolderPixmap;
QTimer *m_autoOpenTimer;
private:
class K3FileTreeViewPrivate;
K3FileTreeViewPrivate *d;
};
#endif
|