summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-bartender/newdrinks.h
Unidiff
Diffstat (limited to 'noncore/apps/opie-bartender/newdrinks.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-bartender/newdrinks.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/noncore/apps/opie-bartender/newdrinks.h b/noncore/apps/opie-bartender/newdrinks.h
new file mode 100644
index 0000000..77dc24b
--- a/dev/null
+++ b/noncore/apps/opie-bartender/newdrinks.h
@@ -0,0 +1,45 @@
1/****************************************************************************
2** Created: Sat Jul 20 08:11:05 2002
3** by: L.J. Potter <ljp@llornkcor.com>
4** copyright : (C) 2002 by ljp
5 email : ljp@llornkcor.com
6 * This program is free software; you can redistribute it and/or modify *
7 * it under the terms of the GNU General Public License as published by *
8 * the Free Software Foundation; either version 2 of the License, or *
9 * (at your option) any later version. *
10 ***************************************************************************/
11#ifndef NEW_DRINK_H
12#define NEW_DRINK_H
13
14#include <qvariant.h>
15#include <qwidget.h>
16#include <qdialog.h>
17
18class QVBoxLayout;
19class QHBoxLayout;
20class QGridLayout;
21class QLabel;
22class QLineEdit;
23class QMultiLineEdit;
24
25class New_Drink : public QDialog
26{
27 Q_OBJECT
28
29public:
30 New_Drink( QWidget* parent = 0, const char* name = 0, bool modal=TRUE, WFlags fl = 0 );
31 ~New_Drink();
32
33 QLabel* TextLabel1;
34 QLineEdit* LineEdit1;
35 QLabel* TextLabel2;
36 QMultiLineEdit* MultiLineEdit1;
37
38protected:
39 QGridLayout* Layout5;
40 QHBoxLayout* Layout4;
41 QString drinkName;
42
43};
44
45#endif // NEW_DRINK_H