blob: c3f2539113ff28daa63e80e483af052f813f6ce0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id$
*
* This file has been copied from Lorenzo Bettini, with minor modifications
* made available under the LGPL version 3, as the original file was licensed
*
****************************************************************************
*
* Copyright (C) 2009 Lorenzo Bettini <http://www.lorenzobettini.it>
* See COPYING file that comes with this distribution
*/
#ifndef FINDREPLACEDIALOG_H
#define FINDREPLACEDIALOG_H
#include <QDialog>
#include <QPlainTextEdit>
namespace Ui {
class FindReplaceDialog;
}
class QTextEdit;
class QSettings;
/**
* A find/replace dialog.
*
* It relies on a FindReplaceForm object (see that class for the functionalities provided).
*/
class FindReplaceDialog : public QDialog {
Q_OBJECT
public:
FindReplaceDialog(QWidget *parent = 0);
virtual ~FindReplaceDialog();
/**
* Associates the text editor where to perform the search
* @param textEdit
*/
void setTextEdit(QPlainTextEdit *textEdit);
/**
* Writes the state of the form to the passed settings.
* @param settings
* @param prefix the prefix to insert in the settings
*/
virtual void writeSettings(QSettings &settings, const QString &prefix = "FindReplaceDialog");
/**
* Reads the state of the form from the passed settings.
* @param settings
* @param prefix the prefix to look for in the settings
*/
virtual void readSettings(QSettings &settings, const QString &prefix = "FindReplaceDialog");
public slots:
/**
* Finds the next occurrence
*/
void findNext();
/**
* Finds the previous occurrence
*/
void findPrev();
protected:
void changeEvent(QEvent *e);
Ui::FindReplaceDialog *ui;
};
#endif // FINDREPLACEDIALOG_H
|