mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
20 lines
314 B
Plaintext
20 lines
314 B
Plaintext
|
|
/** LineEdit with builtin clear button
|
|
*/
|
|
class QgsFilterLineEdit : QLineEdit
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsfilterlineedit.h>
|
|
%End
|
|
|
|
public:
|
|
QgsFilterLineEdit( QWidget* parent = 0 );
|
|
|
|
signals:
|
|
void cleared();
|
|
|
|
protected:
|
|
void resizeEvent( QResizeEvent * );
|
|
void changeEvent( QEvent * );
|
|
};
|