Isis 3 Programmer Reference
GuiComboBoxParameter.h
1 #ifndef Isis_GuiComboBoxParameter_h
2 #define Isis_GuiComboBoxParameter_h
3 
4 #include <QComboBox>
5 
6 #include "GuiParameter.h"
7 
8 
9 namespace Isis {
21 
22  Q_OBJECT
23 
24  public:
25 
26  GuiComboBoxParameter(QGridLayout *grid, UserInterface &ui,
27  int group, int param);
29 
30  QString Value();
31 
32  void Set(QString newValue);
33 
34  virtual std::vector<QString> Exclusions();
35 
36  private:
37  QComboBox *p_combo;
38 
39  private slots:
40  void setOption(int option);
41  };
42 };
43 
44 
45 
46 #endif
47 
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Command Line and Xml loader, validation, and access.
virtual std::vector< QString > Exclusions()
Return list of current exclusions.