VAPOR3 3.9.4
AnimationTab.h
Go to the documentation of this file.
1#pragma once
2
3#include "EventRouter.h"
4
5class PGroup;
6class PIntegerInput;
7namespace VAPoR {
8class ControlExec;
9}
10
11
12class AnimationTab : public QWidget, public EventRouter {
13 Q_OBJECT
14
15 PGroup * _g;
16 PIntegerInput *_startTS;
17 PIntegerInput *_stopTS;
18
19public:
20 AnimationTab(QWidget *parent, VAPoR::ControlExec *ce);
22 static string GetClassType() { return ("Animation"); }
23 string GetType() const { return GetClassType(); }
24
25protected:
26 virtual void _updateTab();
27};
AnimationTab(QWidget *parent, VAPoR::ControlExec *ce)
static string GetClassType()
Definition: AnimationTab.h:22
virtual void _updateTab()
string GetType() const
Definition: AnimationTab.h:23
A pure virtual class specifying the common properties of all the parameter tabs in the VAPOR GUI.
Definition: EventRouter.h:107
Definition: PGroup.h:14
Provides API for VAPOR visualizer User Interfaces (UIs)