/**************************************************************************** ** ** Copyright (C) 2020 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 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 (at your option) any later version. ** The licenses are as published by the Free Software Foundation ** and appearing in the file LICENSE.LGPLv21 included in the packaging ** of this file. Please review the following information to ensure ** the GNU Lesser General Public License version 2.1 requirements ** will be met: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3 or (at your option) any later version ** approved by the KDE Free Qt Foundation. The licenses are as published by ** the Free Software Foundation and appearing in the file LICENSE.GPL3 ** 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 "workspaceview.h" #include "dockmanager.h" #include "workspacedialog.h" #include #include #include #include #include namespace ADS { // custom item delegate class class RemoveItemFocusDelegate : public QStyledItemDelegate { public: RemoveItemFocusDelegate(QObject *parent = nullptr) : QStyledItemDelegate(parent) {} protected: void paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const override; }; void RemoveItemFocusDelegate::paint(QPainter *painter, const QStyleOptionViewItem &option, const QModelIndex &index) const { QStyleOptionViewItem opt = option; opt.state &= ~QStyle::State_HasFocus; QStyledItemDelegate::paint(painter, opt, index); } WorkspaceDialog *WorkspaceView::castToWorkspaceDialog(QWidget *widget) { auto dialog = qobject_cast(widget); Q_ASSERT(dialog); return dialog; } WorkspaceView::WorkspaceView(QWidget *parent) : Utils::TreeView(parent) , m_manager(WorkspaceView::castToWorkspaceDialog(parent)->dockManager()) , m_workspaceModel(m_manager) { setItemDelegate(new RemoveItemFocusDelegate(this)); setSelectionBehavior(QAbstractItemView::SelectRows); setSelectionMode(QAbstractItemView::ExtendedSelection); setWordWrap(false); setRootIsDecorated(false); setSortingEnabled(true); setModel(&m_workspaceModel); sortByColumn(0, Qt::AscendingOrder); // Ensure that the full workspace name is visible. header()->setSectionResizeMode(0, QHeaderView::ResizeToContents); QItemSelection firstRow(m_workspaceModel.index(0, 0), m_workspaceModel.index(0, m_workspaceModel.columnCount() - 1)); selectionModel()->select(firstRow, QItemSelectionModel::QItemSelectionModel::SelectCurrent); connect(this, &Utils::TreeView::activated, [this](const QModelIndex &index) { emit activated(m_workspaceModel.workspaceAt(index.row())); }); connect(selectionModel(), &QItemSelectionModel::selectionChanged, [this] { emit selected(selectedWorkspaces()); }); connect(&m_workspaceModel, &WorkspaceModel::workspaceSwitched, this, &WorkspaceView::workspaceSwitched); connect(&m_workspaceModel, &WorkspaceModel::modelReset, this, &WorkspaceView::selectActiveWorkspace); connect(&m_workspaceModel, &WorkspaceModel::workspaceCreated, this, &WorkspaceView::selectWorkspace); } void WorkspaceView::createNewWorkspace() { m_workspaceModel.newWorkspace(this); } void WorkspaceView::deleteSelectedWorkspaces() { deleteWorkspaces(selectedWorkspaces()); } void WorkspaceView::deleteWorkspaces(const QStringList &workspaces) { m_workspaceModel.deleteWorkspaces(workspaces); } void WorkspaceView::cloneCurrentWorkspace() { m_workspaceModel.cloneWorkspace(this, currentWorkspace()); } void WorkspaceView::renameCurrentWorkspace() { m_workspaceModel.renameWorkspace(this, currentWorkspace()); } void WorkspaceView::switchToCurrentWorkspace() { m_workspaceModel.switchToWorkspace(currentWorkspace()); } QString WorkspaceView::currentWorkspace() { return m_workspaceModel.workspaceAt(selectionModel()->currentIndex().row()); } WorkspaceModel *WorkspaceView::workspaceModel() { return &m_workspaceModel; } void WorkspaceView::selectActiveWorkspace() { selectWorkspace(m_manager->activeWorkspace()); } void WorkspaceView::selectWorkspace(const QString &workspaceName) { int row = m_workspaceModel.indexOfWorkspace(workspaceName); selectionModel()->setCurrentIndex(model()->index(row, 0), QItemSelectionModel::ClearAndSelect | QItemSelectionModel::Rows); } void WorkspaceView::showEvent(QShowEvent *event) { Utils::TreeView::showEvent(event); selectActiveWorkspace(); setFocus(); } void WorkspaceView::keyPressEvent(QKeyEvent *event) { if (event->key() != Qt::Key_Delete) { TreeView::keyPressEvent(event); return; } const QStringList workspaces = selectedWorkspaces(); if (!workspaces.contains("default") && !Utils::anyOf(workspaces, [this](const QString &workspace) { return workspace == m_manager->activeWorkspace(); })) { deleteWorkspaces(workspaces); } } QStringList WorkspaceView::selectedWorkspaces() const { return Utils::transform(selectionModel()->selectedRows(), [this](const QModelIndex &index) { return m_workspaceModel.workspaceAt(index.row()); }); } } // namespace ADS