Isis 3 Programmer Reference
ViewSubWindow.h
Go to the documentation of this file.
1 #ifndef ViewSubWindow_h
2 #define ViewSubWindow_h
3 
25 #include <QMainWindow>
26 
27 namespace Isis {
28 
42  class ViewSubWindow : public QMainWindow {
43  Q_OBJECT
44 
45  signals:
46  void closeWindow();
47 
48  public:
49  ViewSubWindow(QWidget *parent, Qt::WindowFlags flags = 0);
50  virtual ~ViewSubWindow();
51 
52  protected:
53  virtual void closeEvent(QCloseEvent *event);
54  };
55 };
56 
57 #endif
void closeWindow()
Signal called when the window receives a close event.
This class exists to contain detached views from ipce.
Definition: ViewSubWindow.h:42
ViewSubWindow(QWidget *parent, Qt::WindowFlags flags=0)
Constructs a ViewSubWindow object.
virtual ~ViewSubWindow()
Destructor.
virtual void closeEvent(QCloseEvent *event)
This emits a signal on close so that we can handle removing the window from the.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31