summaryrefslogtreecommitdiff
path: root/noncore/apps/opie-bartender/bartender.h
authorllornkcor <llornkcor>2004-12-27 23:41:09 (UTC)
committer llornkcor <llornkcor>2004-12-27 23:41:09 (UTC)
commit02395040e422485ceb2fa435a3fb30879d5f3df2 (patch) (side-by-side diff)
tree0052da61e1a209bddf2da6f130210d569610de9f /noncore/apps/opie-bartender/bartender.h
parentb2b6055b9180214150cdbbff72b79b35db379fb2 (diff)
downloadopie-02395040e422485ceb2fa435a3fb30879d5f3df2.zip
opie-02395040e422485ceb2fa435a3fb30879d5f3df2.tar.gz
opie-02395040e422485ceb2fa435a3fb30879d5f3df2.tar.bz2
new code from Paul Eggleton
Diffstat (limited to 'noncore/apps/opie-bartender/bartender.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/apps/opie-bartender/bartender.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/noncore/apps/opie-bartender/bartender.h b/noncore/apps/opie-bartender/bartender.h
index 27362df..9970ef1 100644
--- a/noncore/apps/opie-bartender/bartender.h
+++ b/noncore/apps/opie-bartender/bartender.h
@@ -2,24 +2,25 @@
** Created: Sat Jul 20 08:10:31 2002
** by: L.J. Potter <ljp@llornkcor.com>
** copyright : (C) 2002 by ljp
email : ljp@llornkcor.com
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef BARTENDER_H
#define BARTENDER_H
#include "newdrinks.h"
+#include "drinkdata.h"
#include <qvariant.h>
#include <qwidget.h>
#include <qmainwindow.h>
#include <qfile.h>
class QVBoxLayout;
class QHBoxLayout;
class QGridLayout;
class QListView;
class QListViewItem;
class QToolBar;
@@ -27,39 +28,39 @@ class QToolBar;
class Bartender : public QMainWindow
{
Q_OBJECT
public:
Bartender( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
~Bartender();
static QString appName() { return QString::fromLatin1("bartender"); }
QToolBar* ToolBar1;
QListView* DrinkView;
- QFile dbFile;
+ DrinkData drinkDB;
public slots:
void doEdit();
protected:
protected slots:
void fileMenuActivated(int);
void editMenuActivated(int);
void cleanUp();
void fileNew();
void showDrink( QListViewItem *);
void showDrink(int, QListViewItem *, const QPoint&, int);
void initDrinkDb();
void doSearchByName();
- void doSearchByDrink();
+ void doSearchByIngredient();
void showSearchResult(QStringList &);
void doBac();
void openCurrentDrink();
void askSearch();
private:
void clearList();
void fillList();
};
#endif // BARTENDER_H