/*************************************************************************** * Copyright (C) 2004 by * * Jason Kivlighn (jkivlighn@gmail.com) * * 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 INGREDIENTLISTVIEW_H #define INGREDIENTLISTVIEW_H #include "dblistviewbase.h" #include "datablocks/element.h" class RecipeDB; class TDEPopupMenu; class IngredientCheckListView; /** @author Unai Garro */ class IngredientCheckListItem: public TQCheckListItem { public: IngredientCheckListItem( IngredientCheckListView* qlv, const Element &ing ); IngredientCheckListItem( IngredientCheckListView* qlv, TQListViewItem *after, const Element &ing ); ~IngredientCheckListItem( void ); int id( void ) const; TQString name( void ) const; Element ingredient() const; virtual TQString text( int column ) const; protected: virtual void stateChange( bool on ); private: Element *ingStored; IngredientCheckListView *m_listview; }; class IngredientListView : public DBListViewBase { TQ_OBJECT public: IngredientListView( TQWidget *parent, RecipeDB *db ); protected slots: virtual void createIngredient( const Element & ) = 0; virtual void removeIngredient( int ) = 0; virtual void load(int limit,int offset); protected: virtual void init(); private slots: virtual void checkCreateIngredient( const Element & ); }; class StdIngredientListView : public IngredientListView { TQ_OBJECT public: StdIngredientListView( TQWidget *parent, RecipeDB *db, bool editable = false ); protected: virtual void createIngredient( const Element & ); virtual void removeIngredient( int ); private slots: void showPopup( TDEListView *, TQListViewItem *, const TQPoint & ); void createNew(); void remove (); void rename(); void modIngredient( TQListViewItem* i ); void saveIngredient( TQListViewItem* i ); private: bool checkBounds( const TQString &name ); TDEPopupMenu *kpop; }; class IngredientCheckListView : public IngredientListView { public: IngredientCheckListView( TQWidget *parent, RecipeDB *db ); virtual void stateChange(IngredientCheckListItem *,bool); TQValueList selections() const{ return m_selections; } protected: virtual void createIngredient( const Element &ing ); virtual void removeIngredient( int ); virtual void load( int limit, int offset ); private: TQValueList m_selections; }; #endif //INGREDIENTLISTVIEW_H