Add implementation for uri subscription in data loader window

This commit is contained in:
Jonathan Grangien
2018-06-01 17:01:29 -04:00
committed by Matthias Berg
parent 174918c73e
commit 8749534539
2 changed files with 70 additions and 7 deletions

View File

@@ -35,16 +35,28 @@ namespace {
namespace {
static const openspace::properties::Property::PropertyInfo VolumesInfo = {
"VolumeItems",
"List of volumes stored internally and ready to load",
"Volumes",
"List of volume items stored internally and ready to load",
"This list contains names of volume data files converted from the CDF format"
};
static const openspace::properties::Property::PropertyInfo FieldlinesInfo = {
"Fieldlines",
"List of fieldline items stored internally and ready to load",
"This list contains names of fieldline data files converted from the CDF format"
};
static const openspace::properties::Property::PropertyInfo ReadVolumesTriggerInfo = {
"ReadVolumesTrigger",
"Trigger load volume data files",
"If this property is triggered it will call the function to load volume data"
};
static const openspace::properties::Property::PropertyInfo ReadVolumesTriggerInfo = {
"ReadFieldlinesTrigger",
"Trigger load fieldline data files",
"If this property is triggered it will call the function to load fieldline data"
};
}
namespace openspace::dataloader {