Isis 3 Programmer Reference
BrowseDialog.h
1 #ifndef BrowseDialog_h
2 #define BrowseDialog_h
3 
4 #include "FileDialog.h"
5 
6 namespace Isis {
28  class BrowseDialog : public FileDialog {
29  Q_OBJECT
30  public:
31  BrowseDialog(QString title, QStringList &filterList, QDir &dir, QWidget *parent = 0);
32 
33  public slots:
34  void displayCube();
35  void done(int r);
36 
37  private:
38  QDir &p_dir;
39 
40  };
41 };
42 
43 #endif
Class for browsing cubes.
Definition: FileDialog.h:32
QDir & p_dir
The directory to open the dialog with.
Definition: BrowseDialog.h:38
void done()
Called when the user presses OK.
Definition: FileDialog.cpp:122
void displayCube()
This method is called after the user has selected a file either by double clicking on the file name o...
BrowseDialog(QString title, QStringList &filterList, QDir &dir, QWidget *parent=0)
BrowseDialog constructor.
Class for browsing cubes.
Definition: BrowseDialog.h:28
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31