Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 17 additions & 5 deletions src/ScatterplotPlugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -255,11 +255,6 @@ ScatterplotPlugin::ScatterplotPlugin(const PluginFactory* factory) :

//getSamplerAction().setViewingMode(ViewPluginSamplerAction::ViewingMode::Tooltip);
getSamplerAction().getEnabledAction().setChecked(false);

getLearningCenterAction().setPluginTitle("Scatterplot view");

getLearningCenterAction().setShortDescription("Scatterplot view plugin");
getLearningCenterAction().setLongDescription("<p>High-performance scatterplot for the <b>ManiVault</b> framework, capable of handling millions of data points.</p>");

getLearningCenterAction().addVideos(QStringList({ "Practitioner", "Developer" }));
}
Expand Down Expand Up @@ -806,6 +801,23 @@ void ScatterplotPlugin::setYDimension(const std::int32_t& dimensionIndex)
updateData();
}

ScatterplotPluginFactory::ScatterplotPluginFactory()
{
getPluginMetadata().setDescription("Scatterplot view");
getPluginMetadata().setSummary("High-performance scatterplot plugin for ManiVault Studio, capable of handling millions of data points.");
getPluginMetadata().setCopyrightHolder({ "BioVault (Biomedical Visual Analytics Unit LUMC - TU Delft)" });
getPluginMetadata().setAuthors({
{ "J. Thijssen", { "Software architect" }, { "LUMC", "TU Delft" } },
{ "T. Kroes", { "Lead software architect" }, { "LUMC" } },
{ "A. Vieth", { "Plugin developer", "Maintainer" }, { "LUMC", "TU Delft" } }
});
getPluginMetadata().setOrganizations({
{ "LUMC", "Leiden University Medical Center", "https://www.lumc.nl/en/" },
{ "TU Delft", "Delft university of technology", "https://www.tudelft.nl/" }
});
getPluginMetadata().setLicenseText("This plugin is distributed under the [LGPL v3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html) license.");
}

QIcon ScatterplotPluginFactory::getIcon(const QColor& color /*= Qt::black*/) const
{
return Application::getIconFont("FontAwesome").getIcon("braille", color);
Expand Down
3 changes: 1 addition & 2 deletions src/ScatterplotPlugin.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,7 @@ class ScatterplotPluginFactory : public ViewPluginFactory
FILE "ScatterplotPlugin.json")

public:
ScatterplotPluginFactory(void) {}
~ScatterplotPluginFactory(void) override {}
ScatterplotPluginFactory();

/**
* Get plugin icon
Expand Down
Loading