/**************************************************************************** ** ** 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 "navigationtreeview.h" #include #include /*! \class Utils::NavigationTreeView \brief The NavigationTreeView class implements a general TreeView for any sidebar widget. Common initialization etc, e.g. Mac specific behaviour. \sa Core::NavigationView, Core::INavigationWidgetFactory */ namespace Utils { NavigationTreeView::NavigationTreeView(QWidget *parent) : TreeView(parent) { setFrameStyle(QFrame::NoFrame); setIndentation(indentation() * 9/10); setUniformRowHeights(true); setTextElideMode(Qt::ElideNone); setAttribute(Qt::WA_MacShowFocusRect, false); setHeaderHidden(true); // We let the column adjust to contents, but note // the setting of a minimum size in resizeEvent() header()->setSectionResizeMode(QHeaderView::ResizeToContents); header()->setStretchLastSection(false); } // This is a workaround to stop Qt from redrawing the project tree every // time the user opens or closes a menu when it has focus. Would be nicer to // fix it in Qt. void NavigationTreeView::focusInEvent(QFocusEvent *event) { if (event->reason() != Qt::PopupFocusReason) TreeView::focusInEvent(event); } void NavigationTreeView::focusOutEvent(QFocusEvent *event) { if (event->reason() != Qt::PopupFocusReason) TreeView::focusOutEvent(event); } void NavigationTreeView::resizeEvent(QResizeEvent *event) { header()->setMinimumSectionSize(viewport()->width()); TreeView::resizeEvent(event); } } // namespace Utils