00001 #ifndef MAINWINDOW_H 00002 #define MAINWINDOW_H 00003 00004 #include <QMainWindow> 00005 #include "CentralWidget.h" 00006 00010 class MainWindow : public QMainWindow 00011 { 00012 Q_OBJECT 00013 00014 public: 00015 MainWindow(); 00016 ~MainWindow(); 00017 00018 signals: 00019 void quitApp(); 00020 00021 private slots: 00022 void setOpenFileName(); 00023 void showAboutBox(); 00024 00025 private: 00026 CentralWidget* centralWidget; 00027 QString title; 00028 }; 00029 00030 #endif