summaryrefslogtreecommitdiff
path: root/utils/themeeditor/gui/findreplacedialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/themeeditor/gui/findreplacedialog.h')
-rw-r--r--utils/themeeditor/gui/findreplacedialog.h59
1 files changed, 0 insertions, 59 deletions
diff --git a/utils/themeeditor/gui/findreplacedialog.h b/utils/themeeditor/gui/findreplacedialog.h
deleted file mode 100644
index 009a077d8b..0000000000
--- a/utils/themeeditor/gui/findreplacedialog.h
+++ /dev/null
@@ -1,59 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Robert Bieber
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef FINDREPLACEDIALOG_H
23#define FINDREPLACEDIALOG_H
24
25#include <QDialog>
26#include <QPlainTextEdit>
27
28namespace Ui {
29 class FindReplaceDialog;
30}
31
32class FindReplaceDialog : public QDialog {
33 Q_OBJECT
34public:
35 FindReplaceDialog(QWidget *parent = 0);
36 virtual ~FindReplaceDialog();
37
38 void setTextEdit(QPlainTextEdit* editor){ this->editor = editor; }
39
40protected:
41 void changeEvent(QEvent *e);
42 void closeEvent(QCloseEvent* event);
43
44private slots:
45 void find();
46 void replace();
47 void replaceAll();
48 void textChanged();
49
50private:
51 void setupUI();
52
53 Ui::FindReplaceDialog *ui;
54
55 QPlainTextEdit* editor;
56 QTextCursor textFound;
57};
58
59#endif // FINDREPLACEDIALOG_H