mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
16 lines
248 B
Plaintext
16 lines
248 B
Plaintext
|
|
/** LineEdit with builtin clear button
|
|
*/
|
|
class QgsFilterLineEdit : QLineEdit
|
|
{
|
|
%TypeHeaderCode
|
|
#include <qgsfilterlineedit.h>
|
|
%End
|
|
|
|
public:
|
|
QgsFilterLineEdit( QWidget* parent = 0 );
|
|
|
|
protected:
|
|
void resizeEvent( QResizeEvent * );
|
|
};
|