Cpp include hierarchy: Add drag & drop onto editor splits

Change-Id: If6d7acb362433814dd73819ec224249f05ab9dcd
Reviewed-by: Daniel Teske <daniel.teske@digia.com>
This commit is contained in:
Eike Ziller
2014-10-15 17:15:30 +02:00
parent 4bcf60dc64
commit 80390a679d
5 changed files with 48 additions and 34 deletions

View File

@@ -45,7 +45,11 @@ class QLabel;
QT_END_NAMESPACE
namespace Core { class IEditor; }
namespace TextEditor { class BaseTextEditor; }
namespace TextEditor {
class BaseTextEditor;
class TextEditorLinkLabel;
}
namespace Utils {
class AnnotatedItemDelegate;
@@ -58,7 +62,6 @@ namespace Internal {
class CppEditor;
class CppEditorWidget;
class CppInclude;
class CppIncludeLabel;
class CppIncludeHierarchyModel;
class CppIncludeHierarchyTreeView;
@@ -84,7 +87,7 @@ private:
CppIncludeHierarchyTreeView *m_treeView;
CppIncludeHierarchyModel *m_model;
Utils::AnnotatedItemDelegate *m_delegate;
CppIncludeLabel *m_inspectedFile;
TextEditor::TextEditorLinkLabel *m_inspectedFile;
QLabel *m_includeHierarchyInfoLabel;
TextEditor::BaseTextEditor *m_editor;
};