2 * Copyright (C) 2009 Lorenzo Bettini <http://www.lorenzobettini.it>
3 * See COPYING file that comes with this distribution
10 #include <QTextCursor>
12 #include "findreplace_global.h"
14 #include "findreplaceform.h"
17 * The form for the find dialog (it is basically the same
18 * as FindReplaceForm without the replace related widgets).
20 class FINDREPLACESHARED_EXPORT FindForm
: public FindReplaceForm
{
23 FindForm(QWidget
*parent
= 0);
27 * Writes the state of the form to the passed settings.
29 * @param prefix the prefix to insert in the settings
31 virtual void writeSettings(QSettings
&settings
, const QString
&prefix
= "FindDialog");
34 * Reads the state of the form from the passed settings.
36 * @param prefix the prefix to look for in the settings
38 virtual void readSettings(QSettings
&settings
, const QString
&prefix
= "FindDialog");
41 void changeEvent(QEvent
*e
);