diff --git a/ExampleAnalysis/src/ExampleAnalysisPlugin.cpp b/ExampleAnalysis/src/ExampleAnalysisPlugin.cpp index b2be2d0..46aa420 100644 --- a/ExampleAnalysis/src/ExampleAnalysisPlugin.cpp +++ b/ExampleAnalysis/src/ExampleAnalysisPlugin.cpp @@ -160,6 +160,19 @@ void ExampleAnalysisPlugin::init() _eventListener.addSupportedEventType(static_cast(EventType::DatasetDataSelectionChanged)); _eventListener.registerDataEventByType(PointType, std::bind(&ExampleAnalysisPlugin::onDataEvent, this, std::placeholders::_1)); + + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } void ExampleAnalysisPlugin::onDataEvent(mv::DatasetEvent* dataEvent) diff --git a/ExampleData/src/ExampleDataPlugin.cpp b/ExampleData/src/ExampleDataPlugin.cpp index 6163262..145d014 100644 --- a/ExampleData/src/ExampleDataPlugin.cpp +++ b/ExampleData/src/ExampleDataPlugin.cpp @@ -17,6 +17,18 @@ ExampleDataPlugin::~ExampleDataPlugin(void) void ExampleDataPlugin::init() { + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } /** diff --git a/ExampleDependencies/src/ExampleDependenciesPlugin.cpp b/ExampleDependencies/src/ExampleDependenciesPlugin.cpp index 234a38c..9f869fc 100644 --- a/ExampleDependencies/src/ExampleDependenciesPlugin.cpp +++ b/ExampleDependencies/src/ExampleDependenciesPlugin.cpp @@ -50,6 +50,19 @@ void ExampleDependenciesPlugin::init() // Start the analysis when the user clicks the start analysis push button connect(&_settingsAction.getStartAnalysisAction(), &mv::gui::TriggerAction::triggered, this, &ExampleDependenciesPlugin::compute); + + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } void ExampleDependenciesPlugin::compute() diff --git a/ExampleLoader/src/ExampleLoaderPlugin.cpp b/ExampleLoader/src/ExampleLoaderPlugin.cpp index 795f593..1370867 100644 --- a/ExampleLoader/src/ExampleLoaderPlugin.cpp +++ b/ExampleLoader/src/ExampleLoaderPlugin.cpp @@ -35,7 +35,18 @@ ExampleLoaderPlugin::~ExampleLoaderPlugin(void) */ void ExampleLoaderPlugin::init() { - + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } /** diff --git a/ExampleTransformation/src/ExampleTransformationPlugin.cpp b/ExampleTransformation/src/ExampleTransformationPlugin.cpp index ce76d30..db800b1 100644 --- a/ExampleTransformation/src/ExampleTransformationPlugin.cpp +++ b/ExampleTransformation/src/ExampleTransformationPlugin.cpp @@ -22,6 +22,18 @@ ExampleTransformationPlugin::ExampleTransformationPlugin(const PluginFactory* fa TransformationPlugin(factory), _type(Type::Abs) { + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } void ExampleTransformationPlugin::transform() diff --git a/ExampleView/src/ExampleViewPlugin.cpp b/ExampleView/src/ExampleViewPlugin.cpp index 4e22ea1..c7946a0 100644 --- a/ExampleView/src/ExampleViewPlugin.cpp +++ b/ExampleView/src/ExampleViewPlugin.cpp @@ -114,6 +114,19 @@ void ExampleViewPlugin::init() _eventListener.addSupportedEventType(static_cast(EventType::DatasetRemoved)); _eventListener.addSupportedEventType(static_cast(EventType::DatasetDataSelectionChanged)); _eventListener.registerDataEventByType(PointType, std::bind(&ExampleViewPlugin::onDataEvent, this, std::placeholders::_1)); + + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } void ExampleViewPlugin::onDataEvent(mv::DatasetEvent* dataEvent) diff --git a/ExampleViewJS/src/ExampleViewJSPlugin.cpp b/ExampleViewJS/src/ExampleViewJSPlugin.cpp index fe51627..7279ab6 100644 --- a/ExampleViewJS/src/ExampleViewJSPlugin.cpp +++ b/ExampleViewJS/src/ExampleViewJSPlugin.cpp @@ -100,6 +100,19 @@ void ExampleViewJSPlugin::init() // Create data so that we do not need to load any in this example createData(); + + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } void ExampleViewJSPlugin::loadData(const mv::Datasets& datasets) diff --git a/ExampleViewOpenGL/src/ExampleViewGLPlugin.cpp b/ExampleViewOpenGL/src/ExampleViewGLPlugin.cpp index e8351dc..4b1b557 100644 --- a/ExampleViewOpenGL/src/ExampleViewGLPlugin.cpp +++ b/ExampleViewOpenGL/src/ExampleViewGLPlugin.cpp @@ -132,6 +132,18 @@ void ExampleViewGLPlugin::init() // Update the data when the scatter plot widget is initialized connect(_exampleGLWidget, &ExampleGLWidget::initialized, this, []() { qDebug() << "ExampleGLWidget is initialized."; } ); + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } void ExampleViewGLPlugin::updatePlot() diff --git a/ExampleWriter/src/ExampleWriterPlugin.cpp b/ExampleWriter/src/ExampleWriterPlugin.cpp index 528797d..da18a6a 100644 --- a/ExampleWriter/src/ExampleWriterPlugin.cpp +++ b/ExampleWriter/src/ExampleWriterPlugin.cpp @@ -33,7 +33,18 @@ ExampleWriterPlugin::~ExampleWriterPlugin(void) */ void ExampleWriterPlugin::init() { - + addNotification("ManiVault Studio features a notification system that can be triggered from:
" + "" + "" + "" + "" + "" + "" + "" + "" + "" + "
Within a plugin: addNotification(...)
The help manager: mv::help().addNotification(...)
" + ); } /**