QGIS/python/gui/qgsfilterlineedit.sip

21 lines
358 B
Plaintext
Raw Normal View History

/** LineEdit with builtin clear button
*/
class QgsFilterLineEdit : QLineEdit
{
%TypeHeaderCode
#include <qgsfilterlineedit.h>
%End
public:
QgsFilterLineEdit( QWidget* parent = 0 );
2014-05-27 23:22:50 +02:00
void setNullValue( QString nullValue );
2013-06-23 16:00:16 +02:00
signals:
void cleared();
protected:
void resizeEvent( QResizeEvent * );
2013-06-23 16:00:16 +02:00
void changeEvent( QEvent * );
};