/usr/include/qgis/qgsfiledropedit.h is in libqgis-dev 2.8.6+dfsg-1build1.
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 | /***************************************************************************
    qgsfiledropedit.h - File Dropable LineEdit
     --------------------------------------
    Date                 : 31-Jan-2007
    Copyright            : (C) 2007 by Tom Elwertowski
    Email                : telwertowski at users dot sourceforge dot net
 ***************************************************************************
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 ***************************************************************************/
#ifndef QGSFILEDROPEDIT_H
#define QGSFILEDROPEDIT_H
#include <QLineEdit>
/** \ingroup gui
 * A line edit for capturing file names that can have files dropped onto
 * it via drag & drop.
 */
class GUI_EXPORT QgsFileDropEdit: public QLineEdit
{
  public:
    QgsFileDropEdit( QWidget *parent = 0 );
    virtual ~QgsFileDropEdit();
    bool isDirOnly() const { return mDirOnly; }
    void setDirOnly( bool isDirOnly );
    bool isFileOnly() const { return mFileOnly; }
    void setFileOnly( bool isFileOnly );
    const QString& suffixFilter() const { return mSuffix; }
    void setSuffixFilter( const QString& suffix );
  protected:
    virtual void dragEnterEvent( QDragEnterEvent *event ) override;
    virtual void dragLeaveEvent( QDragLeaveEvent *event ) override;
    virtual void dropEvent( QDropEvent *event ) override;
    virtual void paintEvent( QPaintEvent *e ) override;
  private:
    QString acceptableFilePath( QDropEvent *event ) const;
    QString mSuffix;
    bool mDirOnly;
    bool mFileOnly;
    bool mDragActive;
};
#endif
 |