VAPOR3 3.9.4
DatasetInspector.h
Go to the documentation of this file.
1#pragma once
2
3#include "VSection.h"
4
5namespace VAPoR {
6class ControlExec;
7}
9class VLabel;
10class QTreeWidget;
11class VMetadataTree;
12
13class DatasetInspector : public QTabWidget {
14 Q_OBJECT
15
17 QWidget *_dataTab, *_metaTab;
19 VLabel *_name, *_type, *_path;
20 VMetadataTree *_metaAttrs, *_metaDims, *_metaVars, *_metaCoords;
21
22public:
24 void Update();
25
26 static std::string DatasetTypeDescriptiveName(std::string type);
27};
static std::string DatasetTypeDescriptiveName(std::string type)
DatasetInspector(VAPoR::ControlExec *ce)
Provides API for VAPOR visualizer User Interfaces (UIs)
Definition: VLabel.h:8