build: search headers in all source directories
* removed paths in include directives * changed cmake to provide necessary header search paths * changed name of version.h to productVersion.h due to name conflict
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
#include "qt/graphics/QtCountCircleItem.h"
|
||||
#include "QtCountCircleItem.h"
|
||||
|
||||
#include <QFont>
|
||||
#include <QFontMetrics>
|
||||
#include <QPen>
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "GraphViewStyle.h"
|
||||
|
||||
QtCountCircleItem::QtCountCircleItem(QGraphicsItem* parent)
|
||||
: QtRoundedRectItem(parent)
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#ifndef QT_COUNT_CIRCLE_ITEM_H
|
||||
#define QT_COUNT_CIRCLE_ITEM_H
|
||||
|
||||
#include "utility/math/Vector2.h"
|
||||
#include "Vector2.h"
|
||||
|
||||
#include "qt/graphics/QtRoundedRectItem.h"
|
||||
#include "QtRoundedRectItem.h"
|
||||
|
||||
class QtCountCircleItem
|
||||
: public QtRoundedRectItem
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/graphics/QtGraphicsView.h"
|
||||
#include "QtGraphicsView.h"
|
||||
|
||||
#include <QDir>
|
||||
#include <QMouseEvent>
|
||||
@@ -11,23 +11,23 @@
|
||||
#include <QParallelAnimationGroup>
|
||||
#include <QSvgGenerator>
|
||||
|
||||
#include "qt/element/QtIconButton.h"
|
||||
#include "qt/view/graphElements/QtGraphEdge.h"
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeBundle.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeData.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeExpandToggle.h"
|
||||
#include "qt/utility/QtContextMenu.h"
|
||||
#include "qt/utility/QtFileDialog.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "settings/ApplicationSettings.h"
|
||||
#include "utility/messaging/type/activation/MessageActivateLegend.h"
|
||||
#include "utility/messaging/type/code/MessageCodeShowDefinition.h"
|
||||
#include "utility/messaging/type/MessageDisplayBookmarkCreator.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeExpand.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeHide.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "utility/utilityApp.h"
|
||||
#include "QtIconButton.h"
|
||||
#include "QtGraphEdge.h"
|
||||
#include "QtGraphNode.h"
|
||||
#include "QtGraphNodeBundle.h"
|
||||
#include "QtGraphNodeData.h"
|
||||
#include "QtGraphNodeExpandToggle.h"
|
||||
#include "QtContextMenu.h"
|
||||
#include "QtFileDialog.h"
|
||||
#include "utilityQt.h"
|
||||
#include "ApplicationSettings.h"
|
||||
#include "MessageActivateLegend.h"
|
||||
#include "MessageCodeShowDefinition.h"
|
||||
#include "MessageDisplayBookmarkCreator.h"
|
||||
#include "MessageGraphNodeExpand.h"
|
||||
#include "MessageGraphNodeHide.h"
|
||||
#include "ResourcePaths.h"
|
||||
#include "utilityApp.h"
|
||||
|
||||
QtGraphicsView::QtGraphicsView(QWidget* parent)
|
||||
: QGraphicsView(parent)
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
#include <QGraphicsView>
|
||||
|
||||
#include "utility/types.h"
|
||||
#include "types.h"
|
||||
|
||||
class QPushButton;
|
||||
class QTimer;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/graphics/QtLineItemAngled.h"
|
||||
#include "QtLineItemAngled.h"
|
||||
|
||||
#include <cmath>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef QT_LINE_ITEM_ANGLED_H
|
||||
#define QT_LINE_ITEM_ANGLED_H
|
||||
|
||||
#include "qt/graphics/QtLineItemBase.h"
|
||||
#include "QtLineItemBase.h"
|
||||
|
||||
class QtLineItemAngled
|
||||
: public QtLineItemBase
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/graphics/QtLineItemBase.h"
|
||||
#include "QtLineItemBase.h"
|
||||
|
||||
#include <QBrush>
|
||||
#include <QPen>
|
||||
|
||||
@@ -3,9 +3,9 @@
|
||||
|
||||
#include <QGraphicsItem>
|
||||
|
||||
#include "utility/math/Vector4.h"
|
||||
#include "Vector4.h"
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "GraphViewStyle.h"
|
||||
|
||||
class QtLineItemBase
|
||||
: public QGraphicsLineItem
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/graphics/QtLineItemBezier.h"
|
||||
#include "QtLineItemBezier.h"
|
||||
|
||||
#include <QPainter>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef QT_LINE_ITEM_BEZIER_H
|
||||
#define QT_LINE_ITEM_BEZIER_H
|
||||
|
||||
#include "qt/graphics/QtLineItemBase.h"
|
||||
#include "QtLineItemBase.h"
|
||||
|
||||
class QtLineItemBezier
|
||||
: public QtLineItemBase
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/graphics/QtLineItemStraight.h"
|
||||
#include "QtLineItemStraight.h"
|
||||
|
||||
#include <QBrush>
|
||||
#include <QPen>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <QGraphicsItem>
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "GraphViewStyle.h"
|
||||
|
||||
class QtLineItemStraight
|
||||
: public QGraphicsLineItem
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/graphics/QtRoundedRectItem.h"
|
||||
#include "QtRoundedRectItem.h"
|
||||
|
||||
#include <QGraphicsDropShadowEffect>
|
||||
#include <QPainter>
|
||||
|
||||
Reference in New Issue
Block a user