Isis 3 Programmer Reference
GuiFilenameParameter.h
Go to the documentation of this file.
1 #ifndef Isis_GuiFileNameParameter_h
2 #define Isis_GuiFileNameParameter_h
3 
27 #include "GuiParameter.h" // parent
28 
29 namespace Isis {
30 
49 
50  Q_OBJECT
51 
52  public:
53 
54  GuiFileNameParameter(QGridLayout *grid, UserInterface &ui,
55  int group, int param);
57 
58  QString Value();
59 
60  void Set(QString newValue);
61 
62  protected slots:
63  virtual void SelectFile();
64  };
65 };
66 
67 
68 
69 #endif
70 
virtual void SelectFile()
Gets an input/output file from a GUI filechooser or typed in filename.
QString Value()
Gets the value found in the line edit text box.
void Set(QString newValue)
Sets the line edit text box to value passed in by this method.
GuiFileNameParameter(QGridLayout *grid, UserInterface &ui, int group, int param)
Construct a GuiFileNameParameter object.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Command Line and Xml loader, validation, and access.
~GuiFileNameParameter()
Destructor of GuiFileNameParameter object.