aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp
diff options
context:
space:
mode:
authorDavid Schulz <david.schulz@qt.io>2018-11-08 11:39:48 +0100
committerDavid Schulz <david.schulz@qt.io>2019-01-28 11:37:08 +0000
commit14834e6b0a4e7c1272ec3a1838b0634dd66e72ea (patch)
tree23caed8a748c0d38c59e1f92b448551122d11df2 /src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp
parent1c77d7e1a79f59485eb90c066d17ec7436f46a93 (diff)
TextEditor: replace generic highlighter with ksyntaxhighlighting
Fixes: QTCREATORBUG-21029 Change-Id: I9894c4384e0e47da6bf030b7b8e07c3ad4737ff3 Reviewed-by: Orgad Shaneh <orgads@gmail.com>
Diffstat (limited to 'src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp')
-rw-r--r--src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp135
1 files changed, 0 insertions, 135 deletions
diff --git a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp b/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp
deleted file mode 100644
index 1a6aa42ce0..0000000000
--- a/src/plugins/texteditor/generichighlighter/managedefinitionsdialog.cpp
+++ /dev/null
@@ -1,135 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2016 The Qt Company Ltd.
-** 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.
-**
-****************************************************************************/
-
-#include "managedefinitionsdialog.h"
-#include "manager.h"
-
-#include <QUrl>
-#include <QIODevice>
-#include <QFile>
-#include <QFileInfo>
-#include <QMessageBox>
-
-using namespace TextEditor;
-using namespace Internal;
-
-ManageDefinitionsDialog::ManageDefinitionsDialog(
- const QList<DefinitionMetaDataPtr> &metaDataList,
- const QString &path,
- QWidget *parent) :
- QDialog(parent),
- m_path(path)
-{
- ui.setupUi(this);
- ui.definitionsTable->setHorizontalHeaderLabels(
- QStringList() << tr("Name") << tr("Installed") << tr("Available"));
- ui.definitionsTable->horizontalHeader()->setSectionResizeMode(0, QHeaderView::Stretch);
-
- setWindowTitle(tr("Download Definitions"));
-
- populateDefinitionsWidget(metaDataList);
- ui.definitionsTable->sortItems(0);
-
- connect(ui.downloadButton, &QPushButton::clicked, this, &ManageDefinitionsDialog::downloadDefinitions);
- connect(ui.allButton, &QPushButton::clicked, this, &ManageDefinitionsDialog::selectAll);
- connect(ui.clearButton, &QPushButton::clicked, this, &ManageDefinitionsDialog::clearSelection);
- connect(ui.invertButton, &QPushButton::clicked, this, &ManageDefinitionsDialog::invertSelection);
-}
-
-void ManageDefinitionsDialog::populateDefinitionsWidget(const QList<DefinitionMetaDataPtr> &definitionsMetaData)
-{
- const int size = definitionsMetaData.size();
- ui.definitionsTable->setRowCount(size);
- for (int i = 0; i < size; ++i) {
- const HighlightDefinitionMetaData &downloadData = *definitionsMetaData.at(i);
-
- // Look for this definition in the current path specified by the user, not the one
- // stored in the settings. So the manager should not be queried for this information.
- QString dirVersion;
- QFileInfo fi(m_path + downloadData.fileName);
- QFile definitionFile(fi.absoluteFilePath());
- if (definitionFile.open(QIODevice::ReadOnly | QIODevice::Text)) {
- const DefinitionMetaDataPtr data = Manager::parseMetadata(fi);
- if (!data.isNull())
- dirVersion = data->version;
- }
-
- for (int j = 0; j < 3; ++j) {
- auto item = new QTableWidgetItem;
- if (j == 0) {
- item->setText(downloadData.name);
- item->setData(Qt::UserRole, downloadData.url);
- } else if (j == 1) {
- item->setText(dirVersion);
- item->setTextAlignment(Qt::AlignCenter);
- } else if (j == 2) {
- item->setText(downloadData.version);
- item->setTextAlignment(Qt::AlignCenter);
- }
- ui.definitionsTable->setItem(i, j, item);
- }
- }
-}
-
-void ManageDefinitionsDialog::downloadDefinitions()
-{
- if (Manager::instance()->isDownloadingDefinitions()) {
- QMessageBox::information(
- this,
- tr("Download Information"),
- tr("There is already one download in progress. Please wait until it is finished."));
- return;
- }
-
- QList<QUrl> urls;
- foreach (const QModelIndex &index, ui.definitionsTable->selectionModel()->selectedRows()) {
- const QVariant url = ui.definitionsTable->item(index.row(), 0)->data(Qt::UserRole);
- urls.append(url.toUrl());
- }
- Manager::instance()->downloadDefinitions(urls, m_path);
- accept();
-}
-
-void ManageDefinitionsDialog::selectAll()
-{
- ui.definitionsTable->selectAll();
- ui.definitionsTable->setFocus();
-}
-
-void ManageDefinitionsDialog::clearSelection()
-{
- ui.definitionsTable->clearSelection();
-}
-
-void ManageDefinitionsDialog::invertSelection()
-{
- const QModelIndex &topLeft = ui.definitionsTable->model()->index(0, 0);
- const QModelIndex &bottomRight =
- ui.definitionsTable->model()->index(ui.definitionsTable->rowCount() - 1,
- ui.definitionsTable->columnCount() - 1);
- QItemSelection itemSelection(topLeft, bottomRight);
- ui.definitionsTable->selectionModel()->select(itemSelection, QItemSelectionModel::Toggle);
- ui.definitionsTable->setFocus();
-}