Todo: Support find in pane

Change-Id: I9788a81395d55b54e1e25c9315a07965fffd37ee
Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
This commit is contained in:
Orgad Shaneh
2016-02-07 12:01:02 +02:00
committed by Orgad Shaneh
parent babb93a682
commit 8754cab9aa

View File

@@ -29,6 +29,9 @@
#include "todoitemsmodel.h"
#include "todooutputtreeview.h"
#include <aggregation/aggregate.h>
#include <coreplugin/find/itemviewfind.h>
#include <QIcon>
#include <QHeaderView>
#include <QToolButton>
@@ -185,6 +188,9 @@ void TodoOutputPane::createTreeView()
{
m_todoTreeView = new TodoOutputTreeView();
m_todoTreeView->setModel(m_todoItemsModel);
Aggregation::Aggregate *agg = new Aggregation::Aggregate;
agg->add(m_todoTreeView);
agg->add(new Core::ItemViewFind(m_todoTreeView));
connect(m_todoTreeView, &TodoOutputTreeView::activated, this, &TodoOutputPane::todoTreeViewClicked);
}