[QgsFilterLineEdit] disable clear action when read only

This commit is contained in:
Denis Rouzaud 2018-03-10 14:40:10 -04:00
parent e1ad1cb473
commit cc0c1bc6a4
3 changed files with 26 additions and 0 deletions

View File

@ -213,6 +213,15 @@ Will select all text when this widget receives the focus.
.. versionadded:: 3.0
%End
virtual bool event( QEvent *event );
%Docstring
Reimplemented to enable/disable the clear action
depending on read-only status
.. versionadded:: 3.0.1
%End
public slots:
virtual void clearValue();

View File

@ -178,3 +178,11 @@ bool QgsFilterLineEdit::shouldShowClear() const
}
return false; //avoid warnings
}
bool QgsFilterLineEdit::event( QEvent *event )
{
if ( event->type() == QEvent::ReadOnlyChange )
updateClearIcon();
return QLineEdit::event( event );;
}

View File

@ -213,6 +213,15 @@ class GUI_EXPORT QgsFilterLineEdit : public QLineEdit
*/
void setSelectOnFocus( bool selectOnFocus );
/**
* Reimplemented to enable/disable the clear action
* depending on read-only status
*
* \since QGIS 3.0.1
*/
virtual bool event( QEvent *event ) override;
public slots:
/**