diff options
Diffstat (limited to 'src/dialogs/usdadatadialog.h')
-rw-r--r-- | src/dialogs/usdadatadialog.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/src/dialogs/usdadatadialog.h b/src/dialogs/usdadatadialog.h new file mode 100644 index 0000000..b96d9de --- /dev/null +++ b/src/dialogs/usdadatadialog.h @@ -0,0 +1,47 @@ +/*************************************************************************** +* Copyright (C) 2003 by * +* Jason Kivlighn ([email protected]) * +* * +* 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 USDADATADIALOG_H +#define USDADATADIALOG_H + +#include <kdialogbase.h> + +#include <tqstringlist.h> +#include <tqvaluelist.h> + +#include "datablocks/element.h" + +class RecipeDB; + +class TDEListView; + +class USDADataDialog : public KDialogBase +{ + TQ_OBJECT + +public: + USDADataDialog( const Element &, RecipeDB *database, TQWidget *parent = 0 ); + ~USDADataDialog(); + +private: + void loadDataFromFile(); + + TDEListView *listView; + + Element ingredient; + RecipeDB *database; + + TQValueList<TQStringList> loaded_data; + +private slots: + void slotOk(); +}; + +#endif //USDADATADIALOG_H |