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,18 +1,18 @@
|
||||
#include "qt/view/QtBookmarkView.h"
|
||||
#include "QtBookmarkView.h"
|
||||
|
||||
#include <QFrame>
|
||||
#include <QHBoxLayout>
|
||||
#include <QMessageBox>
|
||||
#include <QPushButton>
|
||||
|
||||
#include "qt/element/QtSearchBarButton.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtMainView.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "qt/window/QtBookmarkBrowser.h"
|
||||
#include "qt/window/QtBookmarkCreator.h"
|
||||
#include "qt/window/QtMainWindow.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "QtSearchBarButton.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtMainView.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "QtBookmarkBrowser.h"
|
||||
#include "QtBookmarkCreator.h"
|
||||
#include "QtMainWindow.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
QtBookmarkView::QtBookmarkView(ViewLayout* viewLayout)
|
||||
: BookmarkView(viewLayout)
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
#ifndef QT_BOOKMARK_VIEW_H
|
||||
#define QT_BOOKMARK_VIEW_H
|
||||
|
||||
#include "component/controller/BookmarkController.h"
|
||||
#include "component/controller/helper/ControllerProxy.h"
|
||||
#include "component/view/BookmarkView.h"
|
||||
#include "BookmarkController.h"
|
||||
#include "ControllerProxy.h"
|
||||
#include "BookmarkView.h"
|
||||
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QFrame;
|
||||
class QtBookmarkBrowser;
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
#include "qt/view/QtCodeView.h"
|
||||
#include "QtCodeView.h"
|
||||
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "utility/tracing.h"
|
||||
#include "ResourcePaths.h"
|
||||
#include "tracing.h"
|
||||
|
||||
#include "qt/element/QtCodeArea.h"
|
||||
#include "qt/element/QtCodeNavigator.h"
|
||||
#include "qt/utility/QtHighlighter.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "settings/ColorScheme.h"
|
||||
#include "QtCodeArea.h"
|
||||
#include "QtCodeNavigator.h"
|
||||
#include "QtHighlighter.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "ColorScheme.h"
|
||||
|
||||
QtCodeView::QtCodeView(ViewLayout* viewLayout)
|
||||
: CodeView(viewLayout)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#ifndef QT_CODE_VIEW_H
|
||||
#define QT_CODE_VIEW_H
|
||||
|
||||
#include "component/view/CodeView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "CodeView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QtCodeNavigator;
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
#include "qt/view/QtCompositeView.h"
|
||||
#include "QtCompositeView.h"
|
||||
|
||||
#include <QBoxLayout>
|
||||
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "settings/ColorScheme.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "ColorScheme.h"
|
||||
|
||||
QtCompositeView::QtCompositeView(ViewLayout* viewLayout, CompositeDirection direction, const std::string& name)
|
||||
: CompositeView(viewLayout, direction, name)
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "component/view/CompositeView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "CompositeView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QtCompositeView
|
||||
: public CompositeView
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/QtDialogView.h"
|
||||
#include "QtDialogView.h"
|
||||
|
||||
#include <chrono>
|
||||
#include <sstream>
|
||||
@@ -7,15 +7,15 @@
|
||||
#include <QMessageBox>
|
||||
#include <QTimer>
|
||||
|
||||
#include "data/access/StorageAccess.h"
|
||||
#include "qt/window/QtIndexingDialog.h"
|
||||
#include "qt/window/QtMainWindow.h"
|
||||
#include "qt/window/QtWindow.h"
|
||||
#include "utility/messaging/type/indexing/MessageIndexingStatus.h"
|
||||
#include "utility/messaging/type/MessageStatus.h"
|
||||
#include "utility/scheduling/TaskLambda.h"
|
||||
#include "utility/utility.h"
|
||||
#include "project/Project.h"
|
||||
#include "StorageAccess.h"
|
||||
#include "QtIndexingDialog.h"
|
||||
#include "QtMainWindow.h"
|
||||
#include "QtWindow.h"
|
||||
#include "MessageIndexingStatus.h"
|
||||
#include "MessageStatus.h"
|
||||
#include "TaskLambda.h"
|
||||
#include "utility.h"
|
||||
#include "Project.h"
|
||||
|
||||
QtDialogView::QtDialogView(QtMainWindow* mainWindow, UseCase useCase, StorageAccess* storageAccess)
|
||||
: DialogView(useCase, storageAccess)
|
||||
|
||||
@@ -1,16 +1,16 @@
|
||||
#ifndef QT_DIALOG_VIEW_H
|
||||
#define QT_DIALOG_VIEW_H
|
||||
|
||||
#include "component/view/DialogView.h"
|
||||
#include "DialogView.h"
|
||||
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "qt/window/QtWindowStack.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
#include "QtWindowStack.h"
|
||||
|
||||
#include "utility/messaging/MessageListener.h"
|
||||
#include "utility/messaging/type/error/MessageErrorCountUpdate.h"
|
||||
#include "utility/messaging/type/indexing/MessageIndexingShowDialog.h"
|
||||
#include "utility/messaging/type/MessageInterruptTasks.h"
|
||||
#include "utility/messaging/type/MessageWindowClosed.h"
|
||||
#include "MessageListener.h"
|
||||
#include "MessageErrorCountUpdate.h"
|
||||
#include "MessageIndexingShowDialog.h"
|
||||
#include "MessageInterruptTasks.h"
|
||||
#include "MessageWindowClosed.h"
|
||||
|
||||
class QtIndexingDialog;
|
||||
class QtMainWindow;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/QtErrorView.h"
|
||||
#include "QtErrorView.h"
|
||||
|
||||
#include <QBoxLayout>
|
||||
#include <QCheckBox>
|
||||
@@ -13,14 +13,14 @@
|
||||
#include <QStandardItem>
|
||||
#include <QStyledItemDelegate>
|
||||
|
||||
#include "qt/element/QtHelpButton.h"
|
||||
#include "qt/element/QtIconButton.h"
|
||||
#include "qt/element/QtTable.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "settings/ColorScheme.h"
|
||||
#include "utility/messaging/type/MessageProjectEdit.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "QtHelpButton.h"
|
||||
#include "QtIconButton.h"
|
||||
#include "QtTable.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "ColorScheme.h"
|
||||
#include "MessageProjectEdit.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
QIcon QtErrorView::s_errorIcon;
|
||||
|
||||
|
||||
@@ -3,11 +3,11 @@
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "component/controller/ErrorController.h"
|
||||
#include "component/controller/helper/ControllerProxy.h"
|
||||
#include "component/view/ErrorView.h"
|
||||
#include "data/ErrorFilter.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "ErrorController.h"
|
||||
#include "ControllerProxy.h"
|
||||
#include "ErrorView.h"
|
||||
#include "ErrorFilter.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QBoxLayout;
|
||||
class QCheckBox;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/QtGraphView.h"
|
||||
#include "QtGraphView.h"
|
||||
|
||||
#include <QBoxLayout>
|
||||
#include <QFrame>
|
||||
@@ -13,31 +13,31 @@
|
||||
#include <QSlider>
|
||||
#include <QStackedLayout>
|
||||
|
||||
#include "utility/messaging/type/MessageActivateTrail.h"
|
||||
#include "utility/messaging/type/MessageDeactivateEdge.h"
|
||||
#include "utility/messaging/type/MessageRefresh.h"
|
||||
#include "utility/messaging/type/MessageScrollGraph.h"
|
||||
#include "utility/messaging/type/MessageStatus.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "MessageActivateTrail.h"
|
||||
#include "MessageDeactivateEdge.h"
|
||||
#include "MessageRefresh.h"
|
||||
#include "MessageScrollGraph.h"
|
||||
#include "MessageStatus.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
#include "component/controller/helper/DummyEdge.h"
|
||||
#include "component/controller/helper/DummyNode.h"
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "qt/element/QtIconButton.h"
|
||||
#include "qt/graphics/QtGraphicsView.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "qt/view/graphElements/nodeComponents/QtGraphNodeComponentClickable.h"
|
||||
#include "qt/view/graphElements/nodeComponents/QtGraphNodeComponentMoveable.h"
|
||||
#include "qt/view/graphElements/QtGraphEdge.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeAccess.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeBundle.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeData.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeExpandToggle.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeGroup.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeQualifier.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeText.h"
|
||||
#include "settings/ApplicationSettings.h"
|
||||
#include "DummyEdge.h"
|
||||
#include "DummyNode.h"
|
||||
#include "GraphViewStyle.h"
|
||||
#include "QtIconButton.h"
|
||||
#include "QtGraphicsView.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "QtGraphNodeComponentClickable.h"
|
||||
#include "QtGraphNodeComponentMoveable.h"
|
||||
#include "QtGraphEdge.h"
|
||||
#include "QtGraphNodeAccess.h"
|
||||
#include "QtGraphNodeBundle.h"
|
||||
#include "QtGraphNodeData.h"
|
||||
#include "QtGraphNodeExpandToggle.h"
|
||||
#include "QtGraphNodeGroup.h"
|
||||
#include "QtGraphNodeQualifier.h"
|
||||
#include "QtGraphNodeText.h"
|
||||
#include "ApplicationSettings.h"
|
||||
|
||||
QtGraphView::QtGraphView(ViewLayout* viewLayout)
|
||||
: GraphView(viewLayout)
|
||||
|
||||
@@ -6,11 +6,11 @@
|
||||
#include <QGraphicsView>
|
||||
#include <QPointF>
|
||||
|
||||
#include "component/view/GraphView.h"
|
||||
#include "data/graph/Graph.h"
|
||||
#include "qt/utility/QtScrollSpeedChangeListener.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "utility/types.h"
|
||||
#include "GraphView.h"
|
||||
#include "Graph.h"
|
||||
#include "QtScrollSpeedChangeListener.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
#include "types.h"
|
||||
|
||||
struct DummyEdge;
|
||||
struct DummyNode;
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
#include "qt/view/QtGraphViewStyleImpl.h"
|
||||
#include "QtGraphViewStyleImpl.h"
|
||||
|
||||
#include <QFont>
|
||||
#include <QFontMetrics>
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "utility/utilityApp.h"
|
||||
#include "GraphViewStyle.h"
|
||||
#include "utilityApp.h"
|
||||
|
||||
float QtGraphViewStyleImpl::getCharWidth(const std::string& fontName, size_t fontSize)
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef QT_GRAPH_VIEW_STYLE_IMPL_H
|
||||
#define QT_GRAPH_VIEW_STYLE_IMPL_H
|
||||
|
||||
#include "component/view/GraphViewStyleImpl.h"
|
||||
#include "GraphViewStyleImpl.h"
|
||||
|
||||
class QFont;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "qt/view/QtMainView.h"
|
||||
#include "QtMainView.h"
|
||||
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "qt/window/QtMainWindow.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "QtMainWindow.h"
|
||||
|
||||
QtMainView::QtMainView()
|
||||
{
|
||||
|
||||
@@ -6,13 +6,13 @@
|
||||
|
||||
#include <QStatusBar>
|
||||
|
||||
#include "component/view/MainView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "MainView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
#include "utility/messaging/MessageListener.h"
|
||||
#include "utility/messaging/type/MessageForceEnterLicense.h"
|
||||
#include "utility/messaging/type/MessageProjectEdit.h"
|
||||
#include "utility/messaging/type/MessageProjectNew.h"
|
||||
#include "MessageListener.h"
|
||||
#include "MessageForceEnterLicense.h"
|
||||
#include "MessageProjectEdit.h"
|
||||
#include "MessageProjectNew.h"
|
||||
|
||||
class QtMainWindow;
|
||||
class View;
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
#include "qt/view/QtRefreshView.h"
|
||||
#include "QtRefreshView.h"
|
||||
|
||||
#include <QHBoxLayout>
|
||||
#include <QFrame>
|
||||
|
||||
#include "utility/messaging/type/MessageRefresh.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "MessageRefresh.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
#include "qt/element/QtSearchBarButton.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "QtSearchBarButton.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
|
||||
QtRefreshView::QtRefreshView(ViewLayout* viewLayout)
|
||||
: RefreshView(viewLayout)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#ifndef QT_REFRESH_VIEW_H
|
||||
#define QT_REFRESH_VIEW_H
|
||||
|
||||
#include "component/view/RefreshView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "RefreshView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QFrame;
|
||||
|
||||
|
||||
@@ -1,13 +1,13 @@
|
||||
#include "qt/view/QtScreenSearchView.h"
|
||||
#include "QtScreenSearchView.h"
|
||||
|
||||
#include <QToolBar>
|
||||
|
||||
#include "qt/element/QtScreenSearchBox.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtMainView.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "qt/window/QtMainWindow.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "QtScreenSearchBox.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtMainView.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "QtMainWindow.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
QtScreenSearchView::QtScreenSearchView(ViewLayout* viewLayout)
|
||||
: ScreenSearchView(viewLayout)
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
#ifndef QT_SCREEN_SEARCH_VIEW_H
|
||||
#define QT_SCREEN_SEARCH_VIEW_H
|
||||
|
||||
#include "component/controller/helper/ControllerProxy.h"
|
||||
#include "component/controller/ScreenSearchController.h"
|
||||
#include "component/view/ScreenSearchView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "ControllerProxy.h"
|
||||
#include "ScreenSearchController.h"
|
||||
#include "ScreenSearchView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QtScreenSearchBox;
|
||||
class QToolBar;
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
#include "qt/view/QtSearchView.h"
|
||||
#include "QtSearchView.h"
|
||||
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
#include "qt/element/QtSearchBar.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "QtSearchBar.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
|
||||
QtSearchView::QtSearchView(ViewLayout* viewLayout)
|
||||
: SearchView(viewLayout)
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "component/view/SearchView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "SearchView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QtSearchBar;
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#include "qt/view/QtStatusBarView.h"
|
||||
#include "QtStatusBarView.h"
|
||||
|
||||
#include <QStatusBar>
|
||||
|
||||
#include "qt/view/QtMainView.h"
|
||||
#include "QtMainView.h"
|
||||
|
||||
QtStatusBarView::QtStatusBarView(ViewLayout* viewLayout)
|
||||
: StatusBarView(viewLayout)
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
#include "component/view/StatusBarView.h"
|
||||
#include "data/ErrorCountInfo.h"
|
||||
#include "qt/element/QtStatusBar.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "StatusBarView.h"
|
||||
#include "ErrorCountInfo.h"
|
||||
#include "QtStatusBar.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QtStatusBarView
|
||||
: public StatusBarView
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/QtStatusView.h"
|
||||
#include "QtStatusView.h"
|
||||
|
||||
#include <QBoxLayout>
|
||||
#include <QFrame>
|
||||
@@ -6,13 +6,13 @@
|
||||
#include <QPushButton>
|
||||
#include <QStandardItemModel>
|
||||
|
||||
#include "qt/element/QtTable.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "settings/ApplicationSettings.h"
|
||||
#include "settings/ColorScheme.h"
|
||||
#include "utility/messaging/type/MessageClearStatusView.h"
|
||||
#include "utility/messaging/type/MessageStatusFilterChanged.h"
|
||||
#include "QtTable.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "ApplicationSettings.h"
|
||||
#include "ColorScheme.h"
|
||||
#include "MessageClearStatusView.h"
|
||||
#include "MessageStatusFilterChanged.h"
|
||||
|
||||
QtStatusView::QtStatusView(ViewLayout* viewLayout)
|
||||
: StatusView(viewLayout)
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "component/view/StatusView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "StatusView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QBoxLayout;
|
||||
class QCheckBox;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/QtTabbedView.h"
|
||||
#include "QtTabbedView.h"
|
||||
|
||||
#include <QEvent>
|
||||
#include <QFrame>
|
||||
@@ -6,11 +6,11 @@
|
||||
#include <QTabWidget>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
#include "qt/element/QtIconButton.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "settings/ColorScheme.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "QtIconButton.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "ColorScheme.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
QtTabbedView::QtTabbedView(ViewLayout* viewLayout, const std::string& name)
|
||||
: TabbedView(viewLayout, name)
|
||||
|
||||
@@ -3,8 +3,8 @@
|
||||
|
||||
#include <QObject>
|
||||
|
||||
#include "component/view/TabbedView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "TabbedView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QTabWidget;
|
||||
class QtSelfRefreshIconButton;
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
#include "qt/view/QtTooltipView.h"
|
||||
#include "QtTooltipView.h"
|
||||
|
||||
#include "qt/element/QtTooltip.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/QtMainView.h"
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "qt/window/QtMainWindow.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "QtTooltip.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtMainView.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
#include "QtMainWindow.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
QtTooltipView::QtTooltipView(ViewLayout* viewLayout)
|
||||
: TooltipView(viewLayout)
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#ifndef QT_TOOLTIP_VIEW
|
||||
#define QT_TOOLTIP_VIEW
|
||||
|
||||
#include "component/view/TooltipView.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "TooltipView.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QTimer;
|
||||
class QtTooltip;
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#include "qt/view/QtUndoRedoView.h"
|
||||
#include "QtUndoRedoView.h"
|
||||
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "ResourcePaths.h"
|
||||
#include "utilityQt.h"
|
||||
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
|
||||
QtUndoRedoView::QtUndoRedoView(ViewLayout* viewLayout)
|
||||
: UndoRedoView(viewLayout)
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
#include <memory>
|
||||
#include <string>
|
||||
|
||||
#include "component/view/UndoRedoView.h"
|
||||
#include "qt/element/QtUndoRedo.h"
|
||||
#include "qt/utility/QtThreadedFunctor.h"
|
||||
#include "UndoRedoView.h"
|
||||
#include "QtUndoRedo.h"
|
||||
#include "QtThreadedFunctor.h"
|
||||
|
||||
class QtUndoRedoView : public UndoRedoView
|
||||
{
|
||||
|
||||
@@ -1,22 +1,22 @@
|
||||
#include "qt/view/QtViewFactory.h"
|
||||
#include "QtViewFactory.h"
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "qt/view/QtBookmarkView.h"
|
||||
#include "qt/view/QtCodeView.h"
|
||||
#include "qt/view/QtCompositeView.h"
|
||||
#include "qt/view/QtDialogView.h"
|
||||
#include "qt/view/QtErrorView.h"
|
||||
#include "qt/view/QtGraphView.h"
|
||||
#include "qt/view/QtGraphViewStyleImpl.h"
|
||||
#include "qt/view/QtMainView.h"
|
||||
#include "qt/view/QtRefreshView.h"
|
||||
#include "qt/view/QtScreenSearchView.h"
|
||||
#include "qt/view/QtSearchView.h"
|
||||
#include "qt/view/QtStatusBarView.h"
|
||||
#include "qt/view/QtStatusView.h"
|
||||
#include "qt/view/QtTabbedView.h"
|
||||
#include "qt/view/QtTooltipView.h"
|
||||
#include "qt/view/QtUndoRedoView.h"
|
||||
#include "GraphViewStyle.h"
|
||||
#include "QtBookmarkView.h"
|
||||
#include "QtCodeView.h"
|
||||
#include "QtCompositeView.h"
|
||||
#include "QtDialogView.h"
|
||||
#include "QtErrorView.h"
|
||||
#include "QtGraphView.h"
|
||||
#include "QtGraphViewStyleImpl.h"
|
||||
#include "QtMainView.h"
|
||||
#include "QtRefreshView.h"
|
||||
#include "QtScreenSearchView.h"
|
||||
#include "QtSearchView.h"
|
||||
#include "QtStatusBarView.h"
|
||||
#include "QtStatusView.h"
|
||||
#include "QtTabbedView.h"
|
||||
#include "QtTooltipView.h"
|
||||
#include "QtUndoRedoView.h"
|
||||
|
||||
QtViewFactory::QtViewFactory()
|
||||
{
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef QT_VIEW_FACTORY_H
|
||||
#define QT_VIEW_FACTORY_H
|
||||
|
||||
#include "component/view/ViewFactory.h"
|
||||
#include "ViewFactory.h"
|
||||
|
||||
class QtViewFactory
|
||||
: public ViewFactory
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#include "qt/view/QtViewWidgetWrapper.h"
|
||||
#include "QtViewWidgetWrapper.h"
|
||||
|
||||
#include "component/view/View.h"
|
||||
#include "utility/logging/logging.h"
|
||||
#include "View.h"
|
||||
#include "logging.h"
|
||||
|
||||
QWidget* QtViewWidgetWrapper::getWidgetOfView(const View* view)
|
||||
{
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <QWidget>
|
||||
|
||||
#include "component/view/ViewWidgetWrapper.h"
|
||||
#include "ViewWidgetWrapper.h"
|
||||
|
||||
class View;
|
||||
|
||||
|
||||
@@ -1,25 +1,25 @@
|
||||
#include "qt/view/graphElements/QtGraphEdge.h"
|
||||
#include "QtGraphEdge.h"
|
||||
|
||||
#include <QGraphicsSceneEvent>
|
||||
#include <QGraphicsItemGroup>
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "data/graph/Edge.h"
|
||||
#include "data/graph/token_component/TokenComponentAggregation.h"
|
||||
#include "data/graph/token_component/TokenComponentInheritanceChain.h"
|
||||
#include "qt/graphics/QtLineItemAngled.h"
|
||||
#include "qt/graphics/QtLineItemBezier.h"
|
||||
#include "qt/graphics/QtLineItemStraight.h"
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "utility/messaging/type/MessageActivateEdge.h"
|
||||
#include "utility/messaging/type/MessageActivateTrailEdge.h"
|
||||
#include "utility/messaging/type/MessageFocusIn.h"
|
||||
#include "utility/messaging/type/MessageFocusOut.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeBundleSplit.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeHide.h"
|
||||
#include "utility/messaging/type/MessageTooltipShow.h"
|
||||
#include "utility/messaging/type/MessageTooltipHide.h"
|
||||
#include "utility/utility.h"
|
||||
#include "GraphViewStyle.h"
|
||||
#include "Edge.h"
|
||||
#include "TokenComponentAggregation.h"
|
||||
#include "TokenComponentInheritanceChain.h"
|
||||
#include "QtLineItemAngled.h"
|
||||
#include "QtLineItemBezier.h"
|
||||
#include "QtLineItemStraight.h"
|
||||
#include "QtGraphNode.h"
|
||||
#include "MessageActivateEdge.h"
|
||||
#include "MessageActivateTrailEdge.h"
|
||||
#include "MessageFocusIn.h"
|
||||
#include "MessageFocusOut.h"
|
||||
#include "MessageGraphNodeBundleSplit.h"
|
||||
#include "MessageGraphNodeHide.h"
|
||||
#include "MessageTooltipShow.h"
|
||||
#include "MessageTooltipHide.h"
|
||||
#include "utility.h"
|
||||
|
||||
QtGraphEdge* QtGraphEdge::s_focusedEdge = nullptr;
|
||||
QtGraphEdge* QtGraphEdge::s_focusedBezierEdge = nullptr;
|
||||
|
||||
@@ -5,10 +5,10 @@
|
||||
|
||||
#include <QGraphicsItem>
|
||||
|
||||
#include "utility/math/Vector2.h"
|
||||
#include "utility/math/Vector4.h"
|
||||
#include "Vector2.h"
|
||||
#include "Vector4.h"
|
||||
|
||||
#include "data/graph/token_component/TokenComponentAggregation.h"
|
||||
#include "TokenComponentAggregation.h"
|
||||
|
||||
class Edge;
|
||||
class QtGraphNode;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
#include <QBrush>
|
||||
#include <QFont>
|
||||
@@ -6,18 +6,18 @@
|
||||
#include <QGraphicsSceneEvent>
|
||||
#include <QPen>
|
||||
|
||||
#include "qt/graphics/QtRoundedRectItem.h"
|
||||
#include "qt/utility/QtDeviceScaledPixmap.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "qt/view/graphElements/nodeComponents/QtGraphNodeComponent.h"
|
||||
#include "qt/view/graphElements/QtGraphEdge.h"
|
||||
#include "qt/view/graphElements/QtGraphNodeExpandToggle.h"
|
||||
#include "utility/messaging/type/code/MessageCodeShowDefinition.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeExpand.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeHide.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeMove.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "utility/utilityString.h"
|
||||
#include "QtRoundedRectItem.h"
|
||||
#include "QtDeviceScaledPixmap.h"
|
||||
#include "utilityQt.h"
|
||||
#include "QtGraphNodeComponent.h"
|
||||
#include "QtGraphEdge.h"
|
||||
#include "QtGraphNodeExpandToggle.h"
|
||||
#include "MessageCodeShowDefinition.h"
|
||||
#include "MessageGraphNodeExpand.h"
|
||||
#include "MessageGraphNodeHide.h"
|
||||
#include "MessageGraphNodeMove.h"
|
||||
#include "ResourcePaths.h"
|
||||
#include "utilityString.h"
|
||||
|
||||
void QtGraphNode::blendIn()
|
||||
{
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
|
||||
#include <QGraphicsItem>
|
||||
|
||||
#include "utility/math/Vector4.h"
|
||||
#include "Vector4.h"
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "GraphViewStyle.h"
|
||||
|
||||
class QFont;
|
||||
class QtGraphEdge;
|
||||
|
||||
@@ -1,15 +1,15 @@
|
||||
#include "qt/view/graphElements/QtGraphNodeAccess.h"
|
||||
#include "QtGraphNodeAccess.h"
|
||||
|
||||
#include <QBrush>
|
||||
#include <QFontMetrics>
|
||||
#include <QPen>
|
||||
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "data/graph/token_component/TokenComponentAccess.h"
|
||||
#include "qt/utility/QtDeviceScaledPixmap.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "GraphViewStyle.h"
|
||||
#include "TokenComponentAccess.h"
|
||||
#include "QtDeviceScaledPixmap.h"
|
||||
#include "utilityQt.h"
|
||||
|
||||
QtGraphNodeAccess::QtGraphNodeAccess(AccessKind accessKind)
|
||||
: QtGraphNode()
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
#ifndef QT_GRAPH_NODE_ACCESS_H
|
||||
#define QT_GRAPH_NODE_ACCESS_H
|
||||
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
#include "data/parser/AccessKind.h"
|
||||
#include "AccessKind.h"
|
||||
|
||||
class QtGraphNodeAccess
|
||||
: public QtGraphNode
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
#include "qt/view/graphElements/QtGraphNodeBundle.h"
|
||||
#include "QtGraphNodeBundle.h"
|
||||
|
||||
#include <QBrush>
|
||||
#include <QPen>
|
||||
|
||||
#include "utility/messaging/type/MessageGraphNodeBundleSplit.h"
|
||||
#include "MessageGraphNodeBundleSplit.h"
|
||||
|
||||
#include "component/view/GraphViewStyle.h"
|
||||
#include "qt/graphics/QtCountCircleItem.h"
|
||||
#include "GraphViewStyle.h"
|
||||
#include "QtCountCircleItem.h"
|
||||
|
||||
QtGraphNodeBundle::QtGraphNodeBundle(Id tokenId, size_t nodeCount, NodeType type, std::wstring name)
|
||||
: QtGraphNode()
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#ifndef QT_GRAPH_NODE_BUNDLE_H
|
||||
#define QT_GRAPH_NODE_BUNDLE_H
|
||||
|
||||
#include "data/graph/Node.h"
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "Node.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
class QtCountCircleItem;
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
#include "qt/view/graphElements/QtGraphNodeData.h"
|
||||
#include "QtGraphNodeData.h"
|
||||
|
||||
#include "utility/file/FilePath.h"
|
||||
#include "utility/messaging/type/MessageActivateNodes.h"
|
||||
#include "utility/messaging/type/MessageDeactivateEdge.h"
|
||||
#include "utility/messaging/type/MessageFocusIn.h"
|
||||
#include "utility/messaging/type/MessageFocusOut.h"
|
||||
#include "utility/messaging/type/MessageTooltipShow.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "FilePath.h"
|
||||
#include "MessageActivateNodes.h"
|
||||
#include "MessageDeactivateEdge.h"
|
||||
#include "MessageFocusIn.h"
|
||||
#include "MessageFocusOut.h"
|
||||
#include "MessageTooltipShow.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
#include "data/graph/token_component/TokenComponentFilePath.h"
|
||||
#include "TokenComponentFilePath.h"
|
||||
|
||||
QtGraphNodeData::QtGraphNodeData(const Node* data, const std::wstring& name, bool childVisible, bool hasQualifier, bool isInteractive)
|
||||
: m_data(data)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef QT_GRAPH_NODE_DATA_H
|
||||
#define QT_GRAPH_NODE_DATA_H
|
||||
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
class FilePath;
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
#include "qt/view/graphElements/QtGraphNodeExpandToggle.h"
|
||||
#include "QtGraphNodeExpandToggle.h"
|
||||
|
||||
#include <QFontMetrics>
|
||||
|
||||
#include "qt/graphics/QtRoundedRectItem.h"
|
||||
#include "qt/utility/QtDeviceScaledPixmap.h"
|
||||
#include "qt/utility/utilityQt.h"
|
||||
#include "QtRoundedRectItem.h"
|
||||
#include "QtDeviceScaledPixmap.h"
|
||||
#include "utilityQt.h"
|
||||
|
||||
#include "utility/logging/logging.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeExpand.h"
|
||||
#include "utility/ResourcePaths.h"
|
||||
#include "logging.h"
|
||||
#include "MessageGraphNodeExpand.h"
|
||||
#include "ResourcePaths.h"
|
||||
|
||||
QtGraphNodeExpandToggle::QtGraphNodeExpandToggle(bool expanded, int invisibleSubNodeCount)
|
||||
: m_invisibleSubNodeCount(invisibleSubNodeCount)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include <QGraphicsItem>
|
||||
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
class QtGraphNodeExpandToggle
|
||||
: public QtGraphNode
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/graphElements/QtGraphNodeGroup.h"
|
||||
#include "QtGraphNodeGroup.h"
|
||||
|
||||
#include <QBrush>
|
||||
#include <QGraphicsPolygonItem>
|
||||
@@ -6,12 +6,12 @@
|
||||
#include <QPainterPath>
|
||||
#include <QPen>
|
||||
|
||||
#include "utility/messaging/type/MessageActivateNodes.h"
|
||||
#include "utility/messaging/type/MessageFocusIn.h"
|
||||
#include "utility/messaging/type/MessageFocusOut.h"
|
||||
#include "utility/messaging/type/MessageGraphNodeBundleSplit.h"
|
||||
#include "MessageActivateNodes.h"
|
||||
#include "MessageFocusIn.h"
|
||||
#include "MessageFocusOut.h"
|
||||
#include "MessageGraphNodeBundleSplit.h"
|
||||
|
||||
#include "qt/graphics/QtRoundedRectItem.h"
|
||||
#include "QtRoundedRectItem.h"
|
||||
|
||||
QtGraphNodeGroup::QtGraphNodeGroup(
|
||||
Id tokenId, const std::wstring& name, GroupType type, bool interactive
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
#ifndef QT_GRAPH_NODE_GROUP_H
|
||||
#define QT_GRAPH_NODE_GROUP_H
|
||||
|
||||
#include "data/GroupType.h"
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "GroupType.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
class QGraphicsPolygonItem;
|
||||
class QPainterPath;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/graphElements/QtGraphNodeQualifier.h"
|
||||
#include "QtGraphNodeQualifier.h"
|
||||
|
||||
#include <QFont>
|
||||
#include <QFontMetrics>
|
||||
@@ -6,9 +6,9 @@
|
||||
#include <QGraphicsView>
|
||||
#include <QPen>
|
||||
|
||||
#include "utility/messaging/type/MessageActivateNodes.h"
|
||||
#include "MessageActivateNodes.h"
|
||||
|
||||
#include "data/name/NameHierarchy.h"
|
||||
#include "NameHierarchy.h"
|
||||
|
||||
QtGraphNodeQualifier::QtGraphNodeQualifier(const NameHierarchy& name)
|
||||
: m_qualifierName(name)
|
||||
|
||||
@@ -4,7 +4,7 @@
|
||||
#include <QGraphicsPolygonItem>
|
||||
#include <QGraphicsRectItem>
|
||||
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
class QtGraphNodeQualifier
|
||||
: public QtGraphNode
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
#include "qt/view/graphElements/QtGraphNodeText.h"
|
||||
#include "QtGraphNodeText.h"
|
||||
|
||||
QtGraphNodeText::QtGraphNodeText(const std::wstring& name, int fontSizeDiff)
|
||||
: m_fontSizeDiff(fontSizeDiff)
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#ifndef QT_GRAPH_NODE_TEXT_H
|
||||
#define QT_GRAPH_NODE_TEXT_H
|
||||
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
class QtGraphNodeText
|
||||
: public QtGraphNode
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
#include <QGraphicsSceneEvent>
|
||||
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
QtGraphNodeComponentClickable::QtGraphNodeComponentClickable(QtGraphNode* graphNode)
|
||||
: QtGraphNodeComponent(graphNode)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include "QtGraphNodeComponent.h"
|
||||
|
||||
#include "utility/math/Vector2.h"
|
||||
#include "Vector2.h"
|
||||
|
||||
class QtGraphNodeComponentClickable
|
||||
: public QtGraphNodeComponent
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
|
||||
#include <QGraphicsSceneEvent>
|
||||
|
||||
#include "qt/view/graphElements/QtGraphNode.h"
|
||||
#include "QtGraphNode.h"
|
||||
|
||||
QtGraphNodeComponentMoveable::QtGraphNodeComponentMoveable(QtGraphNode* graphNode)
|
||||
: QtGraphNodeComponent(graphNode)
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
|
||||
#include "QtGraphNodeComponent.h"
|
||||
|
||||
#include "utility/math/Vector2.h"
|
||||
#include "Vector2.h"
|
||||
|
||||
class QtGraphNodeComponentMoveable
|
||||
: public QtGraphNodeComponent
|
||||
|
||||
Reference in New Issue
Block a user