summaryrefslogtreecommitdiff
path: root/utils/themeeditor/qtfindreplacedialog/finddialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/qtfindreplacedialog/finddialog.h')
-rw-r--r--utils/themeeditor/qtfindreplacedialog/finddialog.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/utils/themeeditor/qtfindreplacedialog/finddialog.h b/utils/themeeditor/qtfindreplacedialog/finddialog.h
new file mode 100644
index 0000000000..2dfa4c7b59
--- /dev/null
+++ b/utils/themeeditor/qtfindreplacedialog/finddialog.h
@@ -0,0 +1,40 @@
1/*
2 * Copyright (C) 2009 Lorenzo Bettini <http://www.lorenzobettini.it>
3 * See COPYING file that comes with this distribution
4 */
5
6#ifndef FINDDIALOG_H
7#define FINDDIALOG_H
8
9#include <QDialog>
10
11#include "findreplace_global.h"
12
13#include "findreplacedialog.h"
14
15/**
16 * A find dialog (it is basically the same
17 * as FindReplaceDialog without the replace related widgets).
18 */
19class FINDREPLACESHARED_EXPORT FindDialog : public FindReplaceDialog {
20 Q_OBJECT
21public:
22 FindDialog(QWidget *parent = 0);
23 ~FindDialog();
24
25 /**
26 * Writes the state of the form to the passed settings.
27 * @param settings
28 * @param prefix the prefix to insert in the settings
29 */
30 virtual void writeSettings(QSettings &settings, const QString &prefix = "FindDialog");
31
32 /**
33 * Reads the state of the form from the passed settings.
34 * @param settings
35 * @param prefix the prefix to look for in the settings
36 */
37 virtual void readSettings(QSettings &settings, const QString &prefix = "FindDialog");
38};
39
40#endif // FINDDIALOG_H