summaryrefslogtreecommitdiff
path: root/utils/themeeditor/gui/findreplacedialog.h
diff options
context:
space:
mode:
authorRobert Bieber <robby@bieberphoto.com>2010-07-23 07:31:53 +0000
committerRobert Bieber <robby@bieberphoto.com>2010-07-23 07:31:53 +0000
commite6fd3d0318d0f53c51cf4cc87ccdc8f9741957e7 (patch)
treeda29255f5c33ae915c28a1dbff5525fdf912fbe6 /utils/themeeditor/gui/findreplacedialog.h
parentb21b7714209230cbadab1e709c6778c4cc214437 (diff)
downloadrockbox-e6fd3d0318d0f53c51cf4cc87ccdc8f9741957e7.tar.gz
rockbox-e6fd3d0318d0f53c51cf4cc87ccdc8f9741957e7.zip
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
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