]> git.sur5r.net Git - fstl/blobdiff - src/window.cpp
Prettier about box
[fstl] / src / window.cpp
index eb4d9dc862ca5c452065cbb3afe887f393653284..280dad5fb70747fd498b98936c45a17d81e37f73 100644 (file)
@@ -1,4 +1,5 @@
 #include <QMenuBar>
+#include <QMessageBox>
 #include <QFileDialog>
 
 #include "window.h"
@@ -10,6 +11,10 @@ Window::Window(QWidget *parent) :
 {
     setWindowTitle("fstl");
 
+    QFile styleFile( ":/style.qss" );
+    styleFile.open( QFile::ReadOnly );
+    setStyleSheet(styleFile.readAll());
+
     QGLFormat format;
     format.setVersion(2, 1);
     format.setSampleBuffers(true);
@@ -17,12 +22,26 @@ Window::Window(QWidget *parent) :
     canvas = new Canvas(format, this);
     setCentralWidget(canvas);
 
-    QAction* open_action = new QAction("Open", this);
+    open_action = new QAction("Open", this);
     open_action->setShortcut(QKeySequence::Open);
     QObject::connect(open_action, SIGNAL(triggered()),
                      this, SLOT(on_open()));
+
+    quit_action = new QAction("Quit", this);
+    quit_action->setShortcut(QKeySequence::Quit);
+    QObject::connect(quit_action, SIGNAL(triggered()),
+                     this, SLOT(close()));
+
+    about_action = new QAction("About", this);
+    QObject::connect(about_action, SIGNAL(triggered()),
+                     this, SLOT(on_about()));
+
     auto file_menu = menuBar()->addMenu("File");
     file_menu->addAction(open_action);
+    file_menu->addAction(quit_action);
+
+    auto help_menu = menuBar()->addMenu("Help");
+    help_menu->addAction(about_action);
 
     resize(600, 400);
 }
@@ -37,12 +56,40 @@ void Window::on_open()
     }
 }
 
+void Window::on_about()
+{
+    QMessageBox::about(this, "", "<p align=\"center\"><b>fstl</b></p>"
+                       "<p>A fast viewer for <code>.stl</code> files.<br>"
+                       "<a href=\"https://github.com/mkeeter/fstl\">https://github.com/mkeeter/fstl</a></p>"
+                       "<p>© 2014 Matthew Keeter<br>"
+                       "<a href=\"mailto:matt.j.keeter@gmail.com\">matt.j.keeter@gmail.com</a></p>");
+}
+
+
+void Window::enable_open_action()
+{
+    open_action->setEnabled(true);
+}
+
+
+void Window::disable_open_action()
+{
+    open_action->setEnabled(false);
+}
+
+
 void Window::load_stl(const QString &filename)
 {
     Loader* loader = new Loader(this, filename);
+    connect(loader, SIGNAL(started()),
+            this, SLOT(disable_open_action()));
     connect(loader, SIGNAL(got_mesh(Mesh*)),
             canvas, SLOT(load_mesh(Mesh*)));
     connect(loader, SIGNAL(finished()),
             loader, SLOT(deleteLater()));
+    connect(loader, SIGNAL(finished()),
+            this, SLOT(enable_open_action()));
+    connect(loader, SIGNAL(loaded_file(QString)),
+            this, SLOT(setWindowTitle(QString)));
     loader->start();
 }