diff -r 6894bf2709c0 -r e6d1a78b6db9 Seafood/mainwindow.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/Seafood/mainwindow.h Wed Mar 24 14:05:38 2010 -0700 @@ -0,0 +1,40 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include + +class QTabWidget; +class QListWidget; + +namespace Ui { + class MainWindow; +} + +class MainWindow : public QMainWindow { + Q_OBJECT +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + + void createMenus(); + +public slots: + void displayVersion(); + void displayPath(); + +protected: + void changeEvent(QEvent *e); + +private: + Ui::MainWindow *ui; + QTabWidget *tabWidget; + QListWidget *bestList; + QListWidget *okList; + QListWidget *worstList; + + QAction *nuAction; + QAction *verAction; + QAction *exitAction; +}; + +#endif // MAINWINDOW_H