2006-03-05 17:24:44 +00:00
|
|
|
// -*- C++ -*-
|
|
|
|
/**
|
2007-08-31 05:53:55 +00:00
|
|
|
* \file GuiSearch.h
|
2006-03-05 17:24:44 +00:00
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
* Licence details can be found in the file COPYING.
|
|
|
|
*
|
|
|
|
* \author John Levon
|
|
|
|
*
|
|
|
|
* Full author contact details are available in file CREDITS.
|
|
|
|
*/
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
#ifndef GUISEARCH_H
|
|
|
|
#define GUISEARCH_H
|
2006-03-05 17:24:44 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
#include "GuiDialog.h"
|
2007-08-31 22:16:11 +00:00
|
|
|
#include "ControlSearch.h"
|
2007-08-11 15:48:15 +00:00
|
|
|
#include "ui_SearchUi.h"
|
2007-08-31 22:16:11 +00:00
|
|
|
|
2006-03-05 17:24:44 +00:00
|
|
|
namespace lyx {
|
|
|
|
namespace frontend {
|
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
class ControlSearch;
|
2007-04-24 13:27:23 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
class GuiSearchDialog : public GuiDialog, public Ui::SearchUi
|
|
|
|
{
|
2007-04-24 13:27:23 +00:00
|
|
|
Q_OBJECT
|
2007-09-05 20:33:29 +00:00
|
|
|
|
2007-04-24 13:27:23 +00:00
|
|
|
public:
|
2007-09-05 20:33:29 +00:00
|
|
|
GuiSearchDialog(LyXView & lv);
|
2007-04-24 13:27:23 +00:00
|
|
|
|
2007-09-05 20:33:29 +00:00
|
|
|
private Q_SLOTS:
|
2007-04-24 13:27:23 +00:00
|
|
|
void findChanged();
|
|
|
|
void findClicked();
|
|
|
|
void replaceClicked();
|
|
|
|
void replaceallClicked();
|
|
|
|
|
|
|
|
private:
|
2007-09-05 20:33:29 +00:00
|
|
|
void showView();
|
|
|
|
void closeEvent(QCloseEvent * e);
|
2007-08-31 22:16:11 +00:00
|
|
|
/// parent controller
|
2007-09-11 18:33:42 +00:00
|
|
|
ControlSearch & controller();
|
2007-09-05 20:33:29 +00:00
|
|
|
///
|
2006-12-10 11:52:46 +00:00
|
|
|
void find(docstring const & str, bool casesens,
|
2007-09-05 20:33:29 +00:00
|
|
|
bool words, bool backwards);
|
|
|
|
///
|
2006-12-10 11:52:46 +00:00
|
|
|
void replace(docstring const & findstr,
|
2007-09-05 20:33:29 +00:00
|
|
|
docstring const & replacestr,
|
|
|
|
bool casesens, bool words, bool backwards, bool all);
|
2006-03-05 17:24:44 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace frontend
|
|
|
|
} // namespace lyx
|
|
|
|
|
2007-08-31 22:16:11 +00:00
|
|
|
#endif // GUISEARCH_H
|