aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/git/gitgrep.h
diff options
context:
space:
mode:
authorOrgad Shaneh <[email protected]>2015-11-30 23:14:41 +0200
committerOrgad Shaneh <[email protected]>2016-01-25 14:43:00 +0000
commit6fee5a88f37af0e58d2a44d12b0ef51d7771c459 (patch)
treebbbd6b14d4322ad0cecb08815a898ba4d83f74c8 /src/plugins/git/gitgrep.h
parent96a445812186afb3cbe604ff3ac146ba3ac14d3e (diff)
Git: Support Git Grep
Task-number: QTCREATORBUG-3556 Change-Id: Ieca1bdaa39281a2e085340f045e5a48b875f7967 Reviewed-by: Eike Ziller <[email protected]>
Diffstat (limited to 'src/plugins/git/gitgrep.h')
-rw-r--r--src/plugins/git/gitgrep.h78
1 files changed, 78 insertions, 0 deletions
diff --git a/src/plugins/git/gitgrep.h b/src/plugins/git/gitgrep.h
new file mode 100644
index 00000000000..d919cfad8d6
--- /dev/null
+++ b/src/plugins/git/gitgrep.h
@@ -0,0 +1,78 @@
+/****************************************************************************
+**
+** Copyright (C) 2016 Orgad Shaneh <[email protected]>.
+** Contact: https://www.qt.io/licensing/
+**
+** This file is part of Qt Creator.
+**
+** Commercial License Usage
+** Licensees holding valid commercial Qt licenses may use this file in
+** accordance with the commercial license agreement provided with the
+** Software or, alternatively, in accordance with the terms contained in
+** a written agreement between you and The Qt Company. For licensing terms
+** and conditions see https://www.qt.io/terms-conditions. For further
+** information use the contact form at https://www.qt.io/contact-us.
+**
+** GNU General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU
+** General Public License version 3 as published by the Free Software
+** Foundation with exceptions as appearing in the file LICENSE.GPL3-EXCEPT
+** included in the packaging of this file. Please review the following
+** information to ensure the GNU General Public License requirements will
+** be met: https://www.gnu.org/licenses/gpl-3.0.html.
+**
+****************************************************************************/
+
+#ifndef GITGREP_H
+#define GITGREP_H
+
+#include <texteditor/basefilefind.h>
+
+#include <utils/fileutils.h>
+
+#include <QPointer>
+#include <QStringListModel>
+
+namespace Utils {
+class FancyLineEdit;
+class PathChooser;
+}
+
+namespace Git {
+namespace Internal {
+
+class GitGrep : public TextEditor::BaseFileFind
+{
+ Q_OBJECT
+
+public:
+ QString id() const override;
+ QString displayName() const override;
+ QFuture<Utils::FileSearchResultList> executeSearch(
+ const TextEditor::FileFindParameters &parameters) override;
+ QWidget *createConfigWidget() override;
+ void writeSettings(QSettings *settings) override;
+ void readSettings(QSettings *settings) override;
+ bool isValid() const override;
+
+ void setDirectory(const Utils::FileName &directory);
+
+protected:
+ Utils::FileIterator *files(const QStringList &nameFilters,
+ const QVariant &additionalParameters) const override;
+ QVariant additionalParameters() const override;
+ QString label() const override;
+ QString toolTip() const override;
+
+private:
+ Utils::FileName path() const;
+ bool validateDirectory(Utils::FancyLineEdit *edit, QString *errorMessage) const;
+
+ QPointer<QWidget> m_configWidget;
+ QPointer<Utils::PathChooser> m_directory;
+};
+
+} // namespace Internal
+} // namespace Git
+
+#endif // FINDINFILES_H