aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/coreplugin/locator/externaltoolsfilter.cpp
diff options
context:
space:
mode:
authorNikita Baryshnikov <nib952051@gmail.com>2015-04-27 18:24:23 +0300
committerNikita Baryshnikov <nib952051@gmail.com>2015-04-28 09:59:56 +0000
commitaa893918c1a51cb20c909a4c32e401c6d2d254c0 (patch)
tree045a25553a11f5a4f2385093dce9d6941ceef423 /src/plugins/coreplugin/locator/externaltoolsfilter.cpp
parent62da71491a488ded067433175ce15179eeef7dc0 (diff)
Locator: run external tools
Change-Id: I7f5b6a452822481e4b85b91a356727979b23cab4 Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com> Reviewed-by: Leena Miettinen <riitta-leena.miettinen@theqtcompany.com>
Diffstat (limited to 'src/plugins/coreplugin/locator/externaltoolsfilter.cpp')
-rw-r--r--src/plugins/coreplugin/locator/externaltoolsfilter.cpp86
1 files changed, 86 insertions, 0 deletions
diff --git a/src/plugins/coreplugin/locator/externaltoolsfilter.cpp b/src/plugins/coreplugin/locator/externaltoolsfilter.cpp
new file mode 100644
index 00000000000..29802cd03b9
--- /dev/null
+++ b/src/plugins/coreplugin/locator/externaltoolsfilter.cpp
@@ -0,0 +1,86 @@
+/****************************************************************************
+**
+** Copyright (C) 2015 The Qt Company Ltd.
+** Contact: http://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 http://www.qt.io/terms-conditions. For further information
+** use the contact form at http://www.qt.io/contact-us.
+**
+** GNU Lesser General Public License Usage
+** Alternatively, this file may be used under the terms of the GNU Lesser
+** General Public License version 2.1 or version 3 as published by the Free
+** Software Foundation and appearing in the file LICENSE.LGPLv21 and
+** LICENSE.LGPLv3 included in the packaging of this file. Please review the
+** following information to ensure the GNU Lesser General Public License
+** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
+** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
+**
+** In addition, as a special exception, The Qt Company gives you certain additional
+** rights. These rights are described in The Qt Company LGPL Exception
+** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
+**
+****************************************************************************/
+
+#include <coreplugin/externaltool.h>
+#include <coreplugin/externaltoolmanager.h>
+#include <coreplugin/messagemanager.h>
+#include <utils/qtcassert.h>
+
+#include "externaltoolsfilter.h"
+
+using namespace Core;
+using namespace Core::Internal;
+
+ExternalToolsFilter::ExternalToolsFilter()
+{
+ setId("Run external tool");
+ setDisplayName(tr("Run External Tool"));
+ setShortcutString(QLatin1String("x"));
+ setPriority(Medium);
+}
+
+QList<LocatorFilterEntry> ExternalToolsFilter::matchesFor(QFutureInterface<LocatorFilterEntry> &,
+ const QString &)
+{
+ return m_results;
+}
+
+void ExternalToolsFilter::accept(LocatorFilterEntry selection) const
+{
+ auto tool = selection.internalData.value<ExternalTool *>();
+ QTC_ASSERT(tool, return);
+
+ auto runner = new ExternalToolRunner(tool);
+ if (runner->hasError())
+ MessageManager::write(runner->errorString());
+}
+
+void ExternalToolsFilter::refresh(QFutureInterface<void> &)
+{
+}
+
+void ExternalToolsFilter::prepareSearch(const QString &entry)
+{
+ m_results.clear();
+
+ Qt::CaseSensitivity useCaseSensitivity = caseSensitivity(entry);
+ const QMap<QString, ExternalTool *> externalToolsById = ExternalToolManager::toolsById();
+ auto end = externalToolsById.cend();
+ for (auto it = externalToolsById.cbegin(); it != end; ++it) {
+ ExternalTool *tool = *it;
+ if (tool->description().contains(entry, useCaseSensitivity) ||
+ tool->displayName().contains(entry, useCaseSensitivity)) {
+
+ LocatorFilterEntry filterEntry(this, tool->displayName(), QVariant::fromValue(tool));
+ filterEntry.extraInfo = tool->description();
+ m_results.append(filterEntry);
+ }
+ }
+}