From e6fd3d0318d0f53c51cf4cc87ccdc8f9741957e7 Mon Sep 17 00:00:00 2001 From: Robert Bieber Date: Fri, 23 Jul 2010 07:31:53 +0000 Subject: Theme Editor: Switched back to Lorenzo Bettini's find/replace dialog (with some modifications) as he changed the license to LGPL v2.1 git-svn-id: svn://svn.rockbox.org/rockbox/trunk@27528 a1c6a512-1295-4272-9138-f99709370657 --- utils/themeeditor/qtfindreplacedialog/findform.h | 45 ++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 utils/themeeditor/qtfindreplacedialog/findform.h (limited to 'utils/themeeditor/qtfindreplacedialog/findform.h') diff --git a/utils/themeeditor/qtfindreplacedialog/findform.h b/utils/themeeditor/qtfindreplacedialog/findform.h new file mode 100644 index 0000000000..57911c4ef1 --- /dev/null +++ b/utils/themeeditor/qtfindreplacedialog/findform.h @@ -0,0 +1,45 @@ +/* + * Copyright (C) 2009 Lorenzo Bettini + * See COPYING file that comes with this distribution + */ + +#ifndef FINDFORM_H +#define FINDFORM_H + +#include +#include + +#include "findreplace_global.h" + +#include "findreplaceform.h" + +/** + * The form for the find dialog (it is basically the same + * as FindReplaceForm without the replace related widgets). + */ +class FINDREPLACESHARED_EXPORT FindForm : public FindReplaceForm { + Q_OBJECT +public: + FindForm(QWidget *parent = 0); + ~FindForm(); + + /** + * 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 = "FindDialog"); + + /** + * 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 = "FindDialog"); + +protected: + void changeEvent(QEvent *e); + +}; + +#endif // FINDFORM_H -- cgit v1.2.3