Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Initial support of the arc beam sequence #215

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
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
Prev Previous commit
Next Next commit
ENH: Initial beam arc sequence
Mikhail Polkovnikov committed Jul 2, 2024
commit e9b6e98594d6b64818aed774758219c78e2733e8
7 changes: 3 additions & 4 deletions Beams/qSlicerBeamsModule.cxx
Original file line number Diff line number Diff line change
@@ -82,10 +82,9 @@ QStringList qSlicerBeamsModule::dependencies()const
//-----------------------------------------------------------------------------
QString qSlicerBeamsModule::helpText()const
{
QString help =
"This module displays and handles beam geometry models created from the loaded isocenter and source fiducials. "
"For more information see <a href=\"%1/Documentation/%2.%3/Modules/Beams\">%1/Documentation/%2.%3/Modules/Beams</a><br>";
return help.arg(this->slicerWikiUrl()).arg(Slicer_VERSION_MAJOR).arg(Slicer_VERSION_MINOR);
return QString("This module displays and handles beam geometry models created from the loaded isocenter and source fiducials. "
"For more information see <a href=\"%1/Documentation/%2.%3/Modules/Beams\">%1/Documentation/%2.%3/Modules/Beams</a><br>").arg(
this->slicerWikiUrl()).arg(qSlicerCoreApplication::application()->majorVersion()).arg(qSlicerCoreApplication::application()->minorVersion());
}

//-----------------------------------------------------------------------------
7 changes: 3 additions & 4 deletions Isodose/qSlicerIsodoseModule.cxx
Original file line number Diff line number Diff line change
@@ -82,10 +82,9 @@ qSlicerIsodoseModule::~qSlicerIsodoseModule() = default;
//-----------------------------------------------------------------------------
QString qSlicerIsodoseModule::helpText()const
{
QString help =
"This module generates iso dose surface models using user defined dose levels. "
"For more information see <a href=\"%1/Documentation/%2.%3/Modules/Isodose\">%1/Documentation/%2.%3/Modules/Isodose</a><br>";
return help.arg(this->slicerWikiUrl()).arg(Slicer_VERSION_MAJOR).arg(Slicer_VERSION_MINOR);
return QString("This module generates iso dose surface models using user defined dose levels. "
"For more information see <a href=\"%1/Documentation/%2.%3/Modules/Isodose\">%1/Documentation/%2.%3/Modules/Isodose</a><br>").arg(
this->slicerWikiUrl()).arg(qSlicerCoreApplication::application()->majorVersion()).arg(qSlicerCoreApplication::application()->minorVersion());
}

//-----------------------------------------------------------------------------
7 changes: 3 additions & 4 deletions PlanarImage/qSlicerPlanarImageModule.cxx
Original file line number Diff line number Diff line change
@@ -71,10 +71,9 @@ qSlicerPlanarImageModule::~qSlicerPlanarImageModule() = default;
//-----------------------------------------------------------------------------
QString qSlicerPlanarImageModule::helpText()const
{
QString help =
"This module displays and handles planar images (single-slice volumes) as textured models. "
"For more information see <a href=\"%1/Documentation/%2.%3/Modules/PlanarImage\">%1/Documentation/%2.%3/Modules/PlanarImage</a><br>";
return help.arg(this->slicerWikiUrl()).arg(Slicer_VERSION_MAJOR).arg(Slicer_VERSION_MINOR);
return QString("This module displays and handles planar images (single-slice volumes) as textured models. "
"For more information see <a href=\"%1/Documentation/%2.%3/Modules/PlanarImage\">%1/Documentation/%2.%3/Modules/PlanarImage</a><br>").arg(
this->slicerWikiUrl()).arg(qSlicerCoreApplication::application()->majorVersion()).arg(qSlicerCoreApplication::application()->minorVersion());
}

//-----------------------------------------------------------------------------