BuildLogViewer/mainwindow.h
changeset 0 bbe0af256f1b
child 1 8e9c5760ce6f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/BuildLogViewer/mainwindow.h	Fri Aug 28 15:16:29 2009 -0700
@@ -0,0 +1,41 @@
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include <QSignalMapper>
+
+#include <QtGui/QMainWindow>
+#include <QtGui/QWorkspace>
+
+#include "Document.h"
+
+namespace Ui
+{
+    class MainWindow;
+}
+
+class MainWindow : public QMainWindow
+{
+    Q_OBJECT
+
+public:
+    MainWindow(QWidget *parent = 0);
+    ~MainWindow();
+
+public slots:
+    void notYetImplemented();
+    void openLog();
+    void enableActions();
+    void closeEvent(QCloseEvent *event);
+
+private:
+    Document *activeDocument();
+    void createActions();
+    void updateWindowList();
+
+
+    Ui::MainWindow *ui;
+    QWorkspace *workspace;
+    QSignalMapper *mapper;
+};
+
+#endif // MAINWINDOW_H