.Simulation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Pages
GasCombo.h
1 // GasCombo.h - Gas combo class declaration.
2 // Written by Jesse Z. Zhong
3 #ifndef __Gas_Combo_H__
4 #define __Gas_Combo_H__
5 #pragma region Includes
6 #include <QComboBox>
7 #include <QDoubleSpinBox>
8 using namespace std;
9 #pragma endregion
10 namespace SchedulerGUI {
11 
17  class GasCombo {
18  public:
22  GasCombo();
23 
27  void Init();
28 
29  // Widgets
30  QComboBox* ComboBox_;
31  QDoubleSpinBox* SpinBox_;
32  };
33 }
34 #endif // !__Gas_Combo_H__
QDoubleSpinBox * SpinBox_
Spinbox that allows users to pick the percentage of a gas.
Definition: GasCombo.h:31
QComboBox * ComboBox_
Combobox that allows users to pick from a list of gases.
Definition: GasCombo.h:30
Object used for grouping together a spin box and a combo box that are used for picking gases that wil...
Definition: GasCombo.h:17