From 6fee5a88f37af0e58d2a44d12b0ef51d7771c459 Mon Sep 17 00:00:00 2001 From: Orgad Shaneh Date: Mon, 30 Nov 2015 23:14:41 +0200 Subject: Git: Support Git Grep Task-number: QTCREATORBUG-3556 Change-Id: Ieca1bdaa39281a2e085340f045e5a48b875f7967 Reviewed-by: Eike Ziller --- src/plugins/git/gitgrep.h | 78 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 78 insertions(+) create mode 100644 src/plugins/git/gitgrep.h (limited to 'src/plugins/git/gitgrep.h') diff --git a/src/plugins/git/gitgrep.h b/src/plugins/git/gitgrep.h new file mode 100644 index 0000000000..d919cfad8d --- /dev/null +++ b/src/plugins/git/gitgrep.h @@ -0,0 +1,78 @@ +/**************************************************************************** +** +** Copyright (C) 2016 Orgad Shaneh . +** 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 + +#include + +#include +#include + +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 executeSearch( + const TextEditor::FileFindParameters ¶meters) 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 m_configWidget; + QPointer m_directory; +}; + +} // namespace Internal +} // namespace Git + +#endif // FINDINFILES_H -- cgit v1.2.1