/*************************************************************************** * Copyright (C) 2003 by * * Unai Garro (ugarro@users.sourceforge.net) * * * * 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 DIETVIEWDIALOG_H #define DIETVIEWDIALOG_H #include #include #include #include #include #include #include #include "datablocks/recipelist.h" class DietViewDialog: public KDialogBase { Q_OBJECT public: DietViewDialog( TQWidget *parent, const RecipeList &recipeList, int dayNumber, int mealNumber, const TQValueList &dishNumbers ); ~DietViewDialog(); private: // Widgets TDEHTMLPart *dietView; // Private methods void showDiet( const RecipeList &recipeList, int dayNumber, int mealNumber, const TQValueList &dishNumbers ); private slots: void print( void ); void slotOk( void ); signals: void signalOk( void ); }; #endif