mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-22 21:21:32 +00:00
Disable some Adv F&R widgets for read-only documents
This commit is contained in:
parent
a8ad60d603
commit
c30b0aac4b
@ -3138,6 +3138,11 @@ ParConstIterator Buffer::par_iterator_end() const
|
|||||||
return ParConstIterator(doc_iterator_end(this));
|
return ParConstIterator(doc_iterator_end(this));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Buffer::empty() const
|
||||||
|
{
|
||||||
|
return paragraphs().size() == 1 && paragraphs().front().empty();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
Language const * Buffer::language() const
|
Language const * Buffer::language() const
|
||||||
{
|
{
|
||||||
|
@ -567,6 +567,8 @@ public:
|
|||||||
ParIterator par_iterator_end();
|
ParIterator par_iterator_end();
|
||||||
///
|
///
|
||||||
ParConstIterator par_iterator_end() const;
|
ParConstIterator par_iterator_end() const;
|
||||||
|
/// Is document empty ?
|
||||||
|
bool empty() const;
|
||||||
|
|
||||||
// Position of the child buffer where it appears first in the master.
|
// Position of the child buffer where it appears first in the master.
|
||||||
DocIterator firstChildPosition(Buffer const * child);
|
DocIterator firstChildPosition(Buffer const * child);
|
||||||
|
@ -90,6 +90,7 @@ void FindAndReplaceWidget::dockLocationChanged(Qt::DockWidgetArea area)
|
|||||||
|
|
||||||
bool FindAndReplaceWidget::eventFilter(QObject * obj, QEvent * event)
|
bool FindAndReplaceWidget::eventFilter(QObject * obj, QEvent * event)
|
||||||
{
|
{
|
||||||
|
updateGUI();
|
||||||
if (event->type() != QEvent::KeyPress
|
if (event->type() != QEvent::KeyPress
|
||||||
|| (obj != find_work_area_ && obj != replace_work_area_))
|
|| (obj != find_work_area_ && obj != replace_work_area_))
|
||||||
return QWidget::eventFilter(obj, event);
|
return QWidget::eventFilter(obj, event);
|
||||||
@ -622,7 +623,10 @@ void FindAndReplaceWidget::updateGUI()
|
|||||||
} else
|
} else
|
||||||
old_buffer_ = nullptr;
|
old_buffer_ = nullptr;
|
||||||
|
|
||||||
bool const replace_enabled = bv && !bv->buffer().isReadonly();
|
bool const find_enabled = !find_work_area_->bufferView().buffer().empty();
|
||||||
|
findNextPB->setEnabled(find_enabled);
|
||||||
|
bool const replace_enabled = find_enabled && bv && !bv->buffer().isReadonly();
|
||||||
|
replaceLabel->setEnabled(replace_enabled);
|
||||||
replace_work_area_->setEnabled(replace_enabled);
|
replace_work_area_->setEnabled(replace_enabled);
|
||||||
replacePB->setEnabled(replace_enabled);
|
replacePB->setEnabled(replace_enabled);
|
||||||
replaceallPB->setEnabled(replace_enabled);
|
replaceallPB->setEnabled(replace_enabled);
|
||||||
|
Loading…
Reference in New Issue
Block a user