mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 21:49:51 +00:00
b4aadacc23
also when switching from an editable buffer to a read-only buffer, without waiting for the moment in which the dialog is focused. git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40582 a592a061-630c-0410-9148-cb99ea01b6c8
111 lines
2.5 KiB
C++
111 lines
2.5 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 "GuiWorkArea.h"
|
|
|
|
#include "DockView.h"
|
|
// This is needed so that ui_FindAndReplaceUi.h can find qt_()
|
|
#include "qt_helpers.h"
|
|
#include "ui_FindAndReplaceUi.h"
|
|
|
|
#include "BufferView.h"
|
|
#include "Buffer.h"
|
|
#include "LyX.h"
|
|
#include "Text.h"
|
|
#include "lyxfind.h"
|
|
|
|
#include <QDialog>
|
|
|
|
#include <string>
|
|
|
|
namespace lyx {
|
|
namespace frontend {
|
|
|
|
class FindAndReplaceWidget : public QTabWidget, public Ui::FindAndReplaceUi
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
FindAndReplaceWidget(GuiView & view);
|
|
bool initialiseParams(std::string const & params);
|
|
void updateGUI();
|
|
|
|
private:
|
|
///
|
|
GuiView & view_;
|
|
|
|
/// 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);
|
|
|
|
void virtual showEvent(QShowEvent *ev);
|
|
void virtual hideEvent(QHideEvent *ev);
|
|
|
|
void hideDialog();
|
|
|
|
protected Q_SLOTS:
|
|
void on_findNextPB_clicked();
|
|
void on_replacePB_clicked();
|
|
void on_replaceallPB_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 = 0);
|
|
|
|
~FindAndReplace();
|
|
|
|
bool initialiseParams(std::string const &);
|
|
void clearParams() {}
|
|
void dispatchParams() {}
|
|
bool isBufferDependent() const { return false; }
|
|
bool canApplyToReadOnly() const { return true; }
|
|
void selectAll();
|
|
|
|
/// update
|
|
void updateView();
|
|
//virtual void update_contents() {}
|
|
|
|
protected:
|
|
virtual bool wantInitialFocus() const { return true; }
|
|
|
|
private:
|
|
/// The encapsulated widget.
|
|
FindAndReplaceWidget * widget_;
|
|
};
|
|
|
|
|
|
} // namespace frontend
|
|
} // namespace lyx
|
|
|
|
#endif // QSEARCHADV_H
|