/**************************************************************************** ** ** 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 "searchresulttreeview.h" #include "searchresulttreeitemroles.h" #include "searchresulttreemodel.h" #include "searchresulttreeitemdelegate.h" #include #include namespace Core { namespace Internal { SearchResultTreeView::SearchResultTreeView(QWidget *parent) : Utils::TreeView(parent) , m_model(new SearchResultTreeModel(this)) , m_autoExpandResults(false) { setModel(m_model); setItemDelegate(new SearchResultTreeItemDelegate(8, this)); setIndentation(14); setUniformRowHeights(true); setExpandsOnDoubleClick(true); header()->hide(); connect(this, &SearchResultTreeView::activated, this, &SearchResultTreeView::emitJumpToSearchResult); } void SearchResultTreeView::setAutoExpandResults(bool expand) { m_autoExpandResults = expand; } void SearchResultTreeView::setTextEditorFont(const QFont &font, const SearchResultColor &color) { m_model->setTextEditorFont(font, color); QPalette p; p.setColor(QPalette::Base, color.textBackground); setPalette(p); } void SearchResultTreeView::clear() { m_model->clear(); } void SearchResultTreeView::addResults(const QList &items, SearchResult::AddMode mode) { QList addedParents = m_model->addResults(items, mode); if (m_autoExpandResults && !addedParents.isEmpty()) { foreach (const QModelIndex &index, addedParents) setExpanded(index, true); } } void SearchResultTreeView::emitJumpToSearchResult(const QModelIndex &index) { if (model()->data(index, ItemDataRoles::IsGeneratedRole).toBool()) return; SearchResultItem item = model()->data(index, ItemDataRoles::ResultItemRole).value(); emit jumpToSearchResult(item); } void SearchResultTreeView::setTabWidth(int tabWidth) { SearchResultTreeItemDelegate *delegate = static_cast(itemDelegate()); delegate->setTabWidth(tabWidth); doItemsLayout(); } SearchResultTreeModel *SearchResultTreeView::model() const { return m_model; } } // namespace Internal } // namespace Core