diff -r b56d7e268634 -r b9716e8867f1 ListElements/EasyStreet/mainwindow.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/ListElements/EasyStreet/mainwindow.h Fri Sep 03 10:38:13 2010 -0700 @@ -0,0 +1,30 @@ +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + +#include +#include +#include + +namespace Ui { + class MainWindow; +} + +class MainWindow : public QMainWindow +{ + Q_OBJECT + +public: + explicit MainWindow(QWidget *parent = 0); + ~MainWindow(); + + +public slots: + void displayBird( QListWidgetItem * item ); + // void on_birdList_itemClicked(QListWidgetItem * ); +private: + QStringList birds; + QListWidget *birdList; + Ui::MainWindow *ui; +}; + +#endif // MAINWINDOW_H