| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- /****************************************************************************
- **
- ** 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 <utils/algorithm.h>
- #include <QHeaderView>
- #include <QItemSelection>
- #include <QStringList>
- #include <QStyledItemDelegate>
- 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<WorkspaceDialog *>(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
|