-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnavigationwidget.h
More file actions
20 lines (16 loc) · 861 Bytes
/
Copy pathnavigationwidget.h
File metadata and controls
20 lines (16 loc) · 861 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef NAVIGATIONWIDGET_H
#define NAVIGATIONWIDGET_H
#include <language/duchain/navigation/abstractnavigationwidget.h>
#include "pythonduchainexport.h"
#include <language/util/includeitem.h>
class KDEVPYTHONDUCHAIN_EXPORT NavigationWidget : public KDevelop::AbstractNavigationWidget
{
Q_OBJECT
public:
NavigationWidget();
NavigationWidget(KDevelop::DeclarationPointer declaration, KDevelop::TopDUContextPointer topContext, const QString& htmlPrefix = QString(), const QString& htmlSuffix = QString());
NavigationWidget(const KDevelop::IncludeItem& includeItem, KDevelop::TopDUContextPointer topContext);
static QString shortDescription(KDevelop::Declaration* declaration) { return "<b>Test</b>"; };
static QString shortDescription(const KDevelop::IncludeItem& includeItem) { return "<b>Test</b>"; };
};
#endif // NAVIGATIONWIDGET_H