/usr/include/k3fileview.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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | // -*- c++ -*-
/* This file is part of the KDE libraries
Copyright (C) 1997 Stephan Kulow <coolo@kde.org>
Copyright (C) 2001 Carsten Pfeiffer <pfeiffer@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 KFILEVIEW_H
#define KFILEVIEW_H
class QPoint;
class QWidget;
class QDropEvent;
class KActionCollection;
#include "kde3support_export.h"
#include "kfileitem.h"
#include "kfile.h"
/**
* internal class to make easier to use signals possible
* @internal
**/
class KDE3SUPPORT_EXPORT K3FileViewSignaler : public QObject
{
Q_OBJECT
public:
/**
* Call this method when an item is selected (depends on single click /
* double click configuration). Emits the appropriate signal.
**/
void activate( const KFileItem &item );
/**
* emits the highlighted signal for item. Call this in your view class
* whenever the selection changes.
*/
void highlightFile( const KFileItem &item );
void activateMenu( const KFileItem &item, const QPoint& pos );
void changeSorting( QDir::SortFlags sorting );
void dropURLs( const KFileItem &item, QDropEvent *event, const KUrl::List &urls);
Q_SIGNALS:
void dirActivated( const KFileItem &item );
void sortingChanged( QDir::SortFlags );
/**
* the @p item maybe be a null item, indicating that we're in multiselection mode and
* the selection has changed.
*/
void fileHighlighted( const KFileItem &item );
void fileSelected( const KFileItem &item );
void activatedMenu( const KFileItem &item, const QPoint &pos );
void dropped( const KFileItem &item, QDropEvent *event, const KUrl::List &urls );
};
/**
* This class defines an interface to all file views. Its intent is
* to allow to switch the view of the files in the selector very easily.
* It defines some pure virtual functions, that must be implemented to
* make a file view working.
*
* Since this class is not a widget, but it's meant to be added to other
* widgets, its most important function is widget. This should return
* a pointer to the implemented widget.
*
* @short A base class for views of the KDE file selector
* @author Stephan Kulow <coolo@kde.org>
**/
class KDE3SUPPORT_EXPORT K3FileView {
public:
/**
* Creates a new file view.
*/
K3FileView();
/**
* Destroys the file view.
*/
virtual ~K3FileView();
/**
* Inserts a list of items.
**/
void addItemList(const KFileItemList &list);
/**
* a pure virtual function to get a QWidget, that can be added to
* other widgets. This function is needed to make it possible for
* derived classes to derive from other widgets.
**/
virtual QWidget *widget() = 0;
/**
* Returns the widget.
*/
QWidget *widget() const;
/**
* Sets @p filename the current item in the view, if available.
*/
void setCurrentItem( const QString &filename );
/**
* Reimplement this to set @p item the current item in the view, e.g.
* the item having focus.
*/
virtual void setCurrentItem( const KFileItem &item ) = 0;
/**
* @returns the "current" KFileItem, e.g. where the cursor is.
* Returns an null file item when there is no current item (e.g. in an empty view).
* Subclasses have to implement this.
*/
virtual KFileItem currentFileItem() const = 0;
/**
* Clears the view and all item lists.
*/
virtual void clear();
/**
* does a repaint of the view.
*
* The default implementation calls
* \code
* widget()->repaint(f)
* \endcode
**/
virtual void updateView(bool f = true);
virtual void updateView(const KFileItem&);
/**
* Removes an item from the list; has to be implemented by the view.
* Call K3FileView::removeItem( item ) after removing it.
*/
virtual void removeItem(const KFileItem &item);
/**
* This hook is called when all items of the currently listed directory
* are listed and inserted into the view, i.e. there won't come any new
* items anymore.
*/
virtual void listingCompleted();
/**
* Returns the sorting order of the internal list. Newly added files
* are added through this sorting.
*/
QDir::SortFlags sorting() const;
/**
* Sets the sorting order of the view.
*
* Default is QDir::Name | QDir::IgnoreCase | QDir::DirsFirst
* Override this in your subclass and sort accordingly (usually by
* setting the sorting-key for every item and telling QIconView
* or QListView to sort.
*
* A view may choose to use a different sorting than QDir::Name, Time
* or Size. E.g. to sort by mimetype or any possible string. Set the
* sorting to QDir::Unsorted for that and do the rest internally.
*
* @see sortingKey
*/
virtual void setSorting(QDir::SortFlags sort);
/**
* Tells whether the current items are in reversed order (shortcut to
* sorting() & QDir::Reversed).
*/
bool isReversed() const;
void sortReversed();
/**
* @returns the number of dirs and files
**/
uint count() const;
/**
* @returns the number of files.
**/
uint numFiles() const;
/**
* @returns the number of directories
**/
uint numDirs() const;
virtual void setSelectionMode( KFile::SelectionMode sm );
virtual KFile::SelectionMode selectionMode() const;
enum ViewMode {
Files = 1,
Directories = 2,
All = Files | Directories
};
virtual void setViewMode( ViewMode vm );
virtual ViewMode viewMode() const;
/**
* @returns the localized name of the view, which could be displayed
* somewhere, e.g. in a menu, where the user can choose between views.
* @see setViewName
*/
QString viewName() const;
/**
* Sets the name of the view, which could be displayed somewhere.
* E.g. "Image Preview".
*/
void setViewName( const QString& name );
virtual void setParentView(K3FileView *parent);
/**
* The derived view must implement this function to add
* the file in the widget.
*
* Make sure to call this implementation, i.e.
* K3FileView::insertItem( i );
*
*/
virtual void insertItem( const KFileItem &i);
/**
* pure virtual function, that should be implemented to clear
* the view. At this moment the list is already empty
**/
virtual void clearView() = 0;
/**
* pure virtual function, that should be implemented to make item i
* visible, i.e. by scrolling the view appropriately.
*/
virtual void ensureItemVisible( const KFileItem &i ) = 0;
/**
* Clears any selection, unhighlights everything. Must be implemented by
* the view.
*/
virtual void clearSelection() = 0;
/**
* Selects all items. You may want to override this, if you can implement
* it more efficiently than calling setSelected() with every item.
* This works only in Multiselection mode of course.
*/
virtual void selectAll();
/**
* Inverts the current selection, i.e. selects all items, that were up to
* now not selected and deselects the other.
*/
virtual void invertSelection();
/**
* Tells the view that it should highlight the item.
* This function must be implemented by the view.
**/
virtual void setSelected(const KFileItem &, bool enable) = 0;
/**
* @returns whether the given item is currently selected.
* Must be implemented by the view.
*/
virtual bool isSelected( const KFileItem & ) const = 0;
/**
* @returns all currently highlighted items.
*/
KFileItemList selectedItems() const;
/**
* @returns all items currently available in the current sort-order
*/
KFileItemList items() const;
virtual KFileItem firstFileItem() const = 0;
virtual KFileItem nextItem( const KFileItem & ) const = 0;
virtual KFileItem prevItem( const KFileItem & ) const = 0;
/**
* This is a KFileDialog specific hack: we want to select directories with
* single click, but not files. But as a generic class, we have to be able
* to select files on single click as well.
*
* This gives us the opportunity to do both.
*
* Every view has to decide when to call select( item ) when a file was
* single-clicked, based on onlyDoubleClickSelectsFiles().
*/
void setOnlyDoubleClickSelectsFiles( bool enable );
/**
* @returns whether files (not directories) should only be select()ed by
* double-clicks.
* @see setOnlyDoubleClickSelectsFiles
*/
bool onlyDoubleClickSelectsFiles() const;
/**
* increases the number of dirs and files.
* @returns true if the item fits the view mode
*/
bool updateNumbers(const KFileItem &i);
/**
* @returns the view-specific action-collection. Every view should
* add its actions here (if it has any) to make them available to
* e.g. the KDirOperator's popup-menu.
*/
virtual KActionCollection * actionCollection() const;
K3FileViewSignaler * signaler() const;
virtual void readConfig( KConfigGroup *);
virtual void writeConfig( KConfigGroup *);
/**
* Various options for drag and drop support.
* These values can be or'd together.
* @li @p AutoOpenDirs Automatically open directory after hovering above it
* for a short while while dragging.
*/
enum DropOptions {
AutoOpenDirs = 1
};
/**
* Specify DND options. See DropOptions for details.
* All options are disabled by default.
*/
virtual void setDropOptions(int options);
/**
* Returns the DND options in effect.
* See DropOptions for details.
*/
int dropOptions();
/**
* This method calculates a QString from the given parameters, that is
* suitable for sorting with e.g. QIconView or QListView. Their
* Item-classes usually have a setKey( const QString& ) method or a virtual
* method QString key() that is used for sorting.
*
* @param value Any string that should be used as sort criterion
* @param isDir Tells whether the key is computed for an item representing
* a directory (directories are usually sorted before files)
* @param SortFlags An ORed combination of QDir::SortFlag flags.
* Currently, the values IgnoreCase, Reversed and
* DirsFirst are taken into account.
*/
static QString sortingKey( const QString& value, bool isDir, QDir::SortFlags SortFlags);
/**
* An overloaded method that takes not a QString, but a number as sort
* criterion. You can use this for file-sizes or dates/times for example.
* If you use a time_t, you need to cast that to KIO::filesize_t because
* of ambiguity problems.
*/
static QString sortingKey( KIO::filesize_t value, bool isDir,QDir::SortFlags SortFlags);
/**
* @internal
* delay before auto opening a directory
*/
static int autoOpenDelay();
protected:
/**
* @internal
* class to distribute the signals
**/
K3FileViewSignaler *sig;
private:
class K3FileViewPrivate;
K3FileViewPrivate* const d;
};
#endif // KFILEINFOLISTWIDGET_H
|