Warning, file /kdevelop/kdev-python/duchain/navigation/navigationwidget.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     SPDX-FileCopyrightText: 2012-2014 Sven Brauch <svenbrauch@googlemail.com>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #ifndef PYTHON_NAVIGATIONWIDGET_H
0008 #define PYTHON_NAVIGATIONWIDGET_H
0009 
0010 #include <language/duchain/navigation/abstractnavigationwidget.h>
0011 #include <language/util/includeitem.h>
0012 #include "pythonduchainexport.h"
0013 
0014 namespace Python {
0015 
0016 class KDEVPYTHONDUCHAIN_EXPORT NavigationWidget : public KDevelop::AbstractNavigationWidget
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     NavigationWidget(KDevelop::DeclarationPointer declaration, KDevelop::TopDUContextPointer topContext,
0022                      KDevelop::AbstractNavigationWidget::DisplayHints hints = KDevelop::AbstractNavigationWidget::NoHints);
0023     NavigationWidget(const KDevelop::IncludeItem& includeItem, KDevelop::TopDUContextPointer topContext,
0024                      KDevelop::AbstractNavigationWidget::DisplayHints hints = KDevelop::AbstractNavigationWidget::NoHints);
0025 
0026     static QString shortDescription(const KDevelop::IncludeItem&) { return QString(); };
0027 };
0028 
0029 }
0030 
0031 #endif // NAVIGATIONWIDGET_H