2013-08-13 22:58:38 +02:00
|
|
|
/****************************************************************************
|
|
|
|
|
**
|
2014-01-07 13:27:11 +01:00
|
|
|
** Copyright (C) 2014 Przemyslaw Gorszkowski <pgorszkowski@gmail.com>
|
2013-08-13 22:58:38 +02:00
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
|
**
|
|
|
|
|
** This file is part of Qt Creator.
|
|
|
|
|
**
|
|
|
|
|
** Commercial License Usage
|
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
2014-10-01 13:21:18 +02:00
|
|
|
** conditions see http://www.qt.io/licensing. For further information
|
|
|
|
|
** use the contact form at http://www.qt.io/contact-us.
|
2013-08-13 22:58:38 +02:00
|
|
|
**
|
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
2014-10-01 13:21:18 +02:00
|
|
|
** General Public License version 2.1 or version 3 as published by the Free
|
|
|
|
|
** Software Foundation and appearing in the file LICENSE.LGPLv21 and
|
|
|
|
|
** LICENSE.LGPLv3 included in the packaging of this file. Please review the
|
|
|
|
|
** following information to ensure the GNU Lesser General Public License
|
|
|
|
|
** requirements will be met: https://www.gnu.org/licenses/lgpl.html and
|
|
|
|
|
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
2013-08-13 22:58:38 +02:00
|
|
|
**
|
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
|
**
|
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
|
|
#ifndef CPPINCLUDEHIERARCHY_H
|
|
|
|
|
#define CPPINCLUDEHIERARCHY_H
|
|
|
|
|
|
|
|
|
|
#include <coreplugin/inavigationwidgetfactory.h>
|
|
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
|
#include <QStackedWidget>
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
|
|
|
|
|
QT_BEGIN_NAMESPACE
|
|
|
|
|
class QStandardItemModel;
|
|
|
|
|
class QStandardItem;
|
|
|
|
|
class QModelIndex;
|
|
|
|
|
class QLabel;
|
|
|
|
|
QT_END_NAMESPACE
|
|
|
|
|
|
2014-02-11 21:55:42 +02:00
|
|
|
namespace Core { class IEditor; }
|
2014-05-22 11:04:57 -04:00
|
|
|
namespace TextEditor { class BaseTextEditor; }
|
2013-08-13 22:58:38 +02:00
|
|
|
|
|
|
|
|
namespace Utils {
|
|
|
|
|
class AnnotatedItemDelegate;
|
|
|
|
|
class FileName;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace CppEditor {
|
|
|
|
|
namespace Internal {
|
|
|
|
|
|
2014-08-27 10:01:27 +02:00
|
|
|
class CppEditor;
|
2014-07-30 16:30:31 +02:00
|
|
|
class CppEditorWidget;
|
2013-08-13 22:58:38 +02:00
|
|
|
class CppInclude;
|
|
|
|
|
class CppIncludeLabel;
|
|
|
|
|
class CppIncludeHierarchyModel;
|
|
|
|
|
class CppIncludeHierarchyTreeView;
|
|
|
|
|
|
|
|
|
|
class CppIncludeHierarchyWidget : public QWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
CppIncludeHierarchyWidget();
|
|
|
|
|
virtual ~CppIncludeHierarchyWidget();
|
|
|
|
|
|
|
|
|
|
public slots:
|
|
|
|
|
void perform();
|
|
|
|
|
|
|
|
|
|
private slots:
|
2014-04-09 17:01:37 +02:00
|
|
|
void onItemActivated(const QModelIndex &index);
|
2013-11-05 14:02:13 +01:00
|
|
|
void editorsClosed(QList<Core::IEditor *> editors);
|
2013-08-13 22:58:38 +02:00
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void showNoIncludeHierarchyLabel();
|
|
|
|
|
void showIncludeHierarchy();
|
|
|
|
|
|
2014-07-30 16:30:31 +02:00
|
|
|
CppEditorWidget *m_cppEditor;
|
2013-08-13 22:58:38 +02:00
|
|
|
CppIncludeHierarchyTreeView *m_treeView;
|
|
|
|
|
CppIncludeHierarchyModel *m_model;
|
|
|
|
|
Utils::AnnotatedItemDelegate *m_delegate;
|
|
|
|
|
CppIncludeLabel *m_inspectedFile;
|
|
|
|
|
QLabel *m_includeHierarchyInfoLabel;
|
2014-05-22 11:04:57 -04:00
|
|
|
TextEditor::BaseTextEditor *m_editor;
|
2013-08-13 22:58:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// @todo: Pretty much the same design as the OutlineWidgetStack. Maybe we can generalize the
|
|
|
|
|
// outline factory so that it works for different widgets that support the same editor.
|
|
|
|
|
class CppIncludeHierarchyStackedWidget : public QStackedWidget
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
CppIncludeHierarchyStackedWidget(QWidget *parent = 0);
|
|
|
|
|
virtual ~CppIncludeHierarchyStackedWidget();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
CppIncludeHierarchyWidget *m_typeHiearchyWidgetInstance;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class CppIncludeHierarchyFactory : public Core::INavigationWidgetFactory
|
|
|
|
|
{
|
|
|
|
|
Q_OBJECT
|
|
|
|
|
public:
|
|
|
|
|
CppIncludeHierarchyFactory();
|
|
|
|
|
|
|
|
|
|
Core::NavigationView createWidget();
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace Internal
|
|
|
|
|
} // namespace CppEditor
|
|
|
|
|
|
|
|
|
|
#endif // CPPINCLUDEHIERARCHY_H
|