00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef SEARCH_RESULTS_H
00012 #define SEARCH_RESULTS_H
00013
00014 #include <qvariant.h>
00015 #include <qwidget.h>
00016 #include <qdialog.h>
00017
00018 class QVBoxLayout;
00019 class QHBoxLayout;
00020 class QGridLayout;
00021 class QLabel;
00022 class QLineEdit;
00023 class QListBox;
00024 class QString;
00025 class QListBoxItem;
00026
00027 class Search_Results : public QDialog
00028 {
00029 Q_OBJECT
00030
00031 public:
00032 Search_Results( QWidget* parent = 0, const char* name = 0, bool modal=TRUE, WFlags fl = 0 );
00033 ~Search_Results();
00034
00035 QListBox* ListBox1;
00036
00037 protected:
00038 QGridLayout* Layout5;
00039 QString drinkName;
00040 protected slots:
00041 void listSelected( QListBoxItem *);
00042 };
00043
00044 #endif // SHOW_DRINK_H