mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-04 00:04:25 -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 * );
 | 
						|
};
 |