mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-16 04:58:35 +00:00
2104ae8068
Adding this particular line created bad redraw interactions. See thread on lyx-devel here: https://marc.info/?l=lyx-devel&m=165648365808777&w=2 The code is reorganized a bit: - the part of updateGUI() that (en|dis)abled elements is not moved to updateBottons ; the rest is renamed updateWorkAreas() - only updateButtons is called now in eventFilter - finally the recursion curse is fixed now in updateWorkAreas() by setting the old_buffer value _before_ calling copy_params. This avoid recursion if some bad update were to happen again.
123 lines
3.0 KiB
C++
123 lines
3.0 KiB
C++
// -*- C++ -*-
|
|
/**
|
|
* \file FindAndReplace.h
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Tommaso Cucinotta
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#ifndef QSEARCHADV_H
|
|
#define QSEARCHADV_H
|
|
|
|
#include "DockView.h"
|
|
// This is needed so that ui_FindAndReplaceUi.h can find qt_()
|
|
#include "qt_helpers.h"
|
|
#include "ui_FindAndReplaceUi.h"
|
|
#include "support/docstring.h"
|
|
|
|
#include <string>
|
|
|
|
namespace lyx {
|
|
|
|
class FindAndReplaceOptions;
|
|
|
|
namespace frontend {
|
|
|
|
class FindAndReplaceWidget : public QTabWidget, public Ui::FindAndReplaceUi
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FindAndReplaceWidget(GuiView & view);
|
|
bool initialiseParams(std::string const & params);
|
|
void updateWorkAreas();
|
|
void updateButtons();
|
|
|
|
// return true if \c wa is one if the adv. F&R workareas
|
|
bool hasWorkArea(GuiWorkArea * wa) const;
|
|
|
|
public Q_SLOTS:
|
|
///
|
|
void dockLocationChanged(Qt::DockWidgetArea area);
|
|
|
|
private:
|
|
///
|
|
GuiView & view_;
|
|
///
|
|
Buffer * old_buffer_;
|
|
|
|
/// add a string to the combo if needed
|
|
void remember(std::string const & find, QComboBox & combo);
|
|
|
|
/// Perform the scope-related buffer switch while searching
|
|
bool findAndReplaceScope(FindAndReplaceOptions & opt, bool replace_all = false);
|
|
|
|
/// Collect options from the GUI elements, then perform the search
|
|
bool findAndReplace(bool backwards, bool replace, bool replace_all = false);
|
|
|
|
/// FIXME Probably to be merged with findAndReplace(bool, bool, bool)
|
|
bool findAndReplace(bool casesensitive, bool matchword, bool backwards,
|
|
bool expandmacros, bool ignoreformat, bool replace,
|
|
bool keep_case, bool replace_all = false);
|
|
|
|
bool eventFilter(QObject *obj, QEvent *event) override;
|
|
|
|
void virtual showEvent(QShowEvent *ev) override;
|
|
void virtual hideEvent(QHideEvent *ev) override;
|
|
|
|
void hideDialog();
|
|
|
|
void setFormatIgnores(bool const b);
|
|
|
|
docstring const checkState(std::string const s, bool const b);
|
|
|
|
protected Q_SLOTS:
|
|
void on_findNextPB_clicked();
|
|
void on_replacePB_clicked();
|
|
void on_replaceallPB_clicked();
|
|
void on_searchbackCB_clicked();
|
|
void on_selectAllPB_clicked();
|
|
void on_deselectAllPB_clicked();
|
|
};
|
|
|
|
|
|
class FindAndReplace : public DockView
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
FindAndReplace(
|
|
GuiView & parent, ///< the main window where to dock.
|
|
Qt::DockWidgetArea area = Qt::RightDockWidgetArea, ///< Position of the dock (and also drawer)
|
|
Qt::WindowFlags flags = {});
|
|
|
|
~FindAndReplace();
|
|
|
|
bool initialiseParams(std::string const &) override;
|
|
void clearParams() override {}
|
|
void dispatchParams() override {}
|
|
bool isBufferDependent() const override { return false; }
|
|
bool canApplyToReadOnly() const override { return true; }
|
|
bool hasWorkArea(GuiWorkArea * wa) const { return widget_->hasWorkArea(wa); }
|
|
void selectAll();
|
|
|
|
/// update
|
|
void updateView() override;
|
|
//virtual void update_contents() {}
|
|
|
|
protected:
|
|
bool wantInitialFocus() const override { return true; }
|
|
|
|
private:
|
|
/// The encapsulated widget.
|
|
FindAndReplaceWidget * widget_;
|
|
};
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // QSEARCHADV_H
|