QGIS/python/gui/qgsfiledropedit.sip

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

73 lines
2.1 KiB
Plaintext
Raw Permalink Normal View History

2017-05-23 14:44:34 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsfiledropedit.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/
2017-06-26 09:57:09 +02:00
class QgsFileDropEdit: QLineEdit
{
2017-05-23 14:44:34 +02:00
%Docstring
A line edit for capturing file names that can have files dropped onto
it via drag & drop.
Dropping can be limited to files only, files with a specific extension
or directories only. By default, dropping is limited to files only.
%End
%TypeHeaderCode
2017-05-23 14:44:34 +02:00
#include "qgsfiledropedit.h"
%End
public:
QgsFileDropEdit( QWidget *parent /TransferThis/ = 0 );
bool isDirOnly() const;
2017-05-23 14:44:34 +02:00
%Docstring
:rtype: bool
%End
void setDirOnly( bool isDirOnly );
2017-05-23 14:44:34 +02:00
%Docstring
Limit drops to directories.
%End
bool isFileOnly() const;
2017-05-23 14:44:34 +02:00
%Docstring
:rtype: bool
%End
void setFileOnly( bool isFileOnly );
2017-05-23 14:44:34 +02:00
%Docstring
Limit drops to files.
%End
QString suffixFilter() const;
2017-05-23 14:44:34 +02:00
%Docstring
:rtype: str
%End
void setSuffixFilter( const QString &suffix );
2017-05-23 14:44:34 +02:00
%Docstring
Limit drops to files with specified extension.
%End
protected:
virtual void dragEnterEvent( QDragEnterEvent *event );
virtual void dragLeaveEvent( QDragLeaveEvent *event );
virtual void dropEvent( QDropEvent *event );
virtual void paintEvent( QPaintEvent *e );
2017-05-23 14:44:34 +02:00
};
2017-05-23 14:44:34 +02:00
/************************************************************************
* This file has been generated automatically from *
* *
* src/gui/qgsfiledropedit.h *
* *
* Do not edit manually ! Edit header and run scripts/sipify.pl again *
************************************************************************/