00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011 #ifndef NEW_DRINK_H
00012 #define NEW_DRINK_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 QMultiLineEdit;
00024
00025 class New_Drink : public QDialog
00026 {
00027 Q_OBJECT
00028
00029 public:
00030 New_Drink( QWidget* parent = 0, const char* name = 0, bool modal=TRUE, WFlags fl = 0 );
00031 ~New_Drink();
00032
00033 QLabel* TextLabel1;
00034 QLineEdit* LineEdit1;
00035 QLabel* TextLabel2;
00036 QMultiLineEdit* MultiLineEdit1;
00037
00038 protected:
00039 QGridLayout* Layout5;
00040 QHBoxLayout* Layout4;
00041 QString drinkName;
00042
00043 };
00044
00045 #endif // NEW_DRINK_H