1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/*
SPDX-FileCopyrightText: 2007 David Nolden <david.nolden.kdevelop@art-master.de>
SPDX-FileCopyrightText: 2008 Niko Sams <niko.sams@gmail.com>
SPDX-License-Identifier: LGPL-2.0-only
*/
#include "navigationwidget.h"
#include "declarationnavigationcontext.h"
#include "includenavigationcontext.h"
#include "magicconstantnavigationcontext.h"
namespace Php
{
using namespace KDevelop;
NavigationWidget::NavigationWidget(KDevelop::DeclarationPointer declaration, KDevelop::TopDUContextPointer topContext,
KDevelop::AbstractNavigationWidget::DisplayHints hints)
: AbstractNavigationWidget()
{
setDisplayHints(hints);
initBrowser(400);
//The first context is registered so it is kept alive by the shared-pointer mechanism
auto context = NavigationContextPointer(new DeclarationNavigationContext(declaration, topContext));
setContext(context);
}
NavigationWidget::NavigationWidget(const IncludeItem& includeItem, KDevelop::TopDUContextPointer topContext,
KDevelop::AbstractNavigationWidget::DisplayHints hints)
: AbstractNavigationWidget()
{
setDisplayHints(hints);
initBrowser(200);
//The first context is registered so it is kept alive by the shared-pointer mechanism
auto context = NavigationContextPointer(new IncludeNavigationContext(includeItem, topContext));
setContext(context);
}
NavigationWidget::NavigationWidget(TopDUContextPointer topContext, KTextEditor::Cursor position, const QString& constant,
KDevelop::AbstractNavigationWidget::DisplayHints hints)
: AbstractNavigationWidget()
{
setDisplayHints(hints);
initBrowser(200);
//The first context is registered so it is kept alive by the shared-pointer mechanism
auto context = NavigationContextPointer(new MagicConstantNavigationContext(topContext, position, constant));
setContext(context);
}
QString NavigationWidget::shortDescription(KDevelop::Declaration* declaration)
{
NavigationContextPointer ctx(new DeclarationNavigationContext(DeclarationPointer(declaration), TopDUContextPointer())); ///@todo give correct top-context
return ctx->html(true);
}
QString NavigationWidget::shortDescription(const IncludeItem& includeItem) {
NavigationContextPointer ctx(new IncludeNavigationContext(includeItem, TopDUContextPointer())); ///@todo give correct top-context
return ctx->html(true);
}
}
#include "moc_navigationwidget.cpp"
|