/*************************************************************************** * Copyright (C) 2003 by * * Unai Garro (ugarro@users.sourceforge.net) * * Cyril Bosselut (bosselut@b1project.com) * * Jason Kivlighn (jkivlighn@gmail.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 SELECTAUTHORSDIALOG_H #define SELECTAUTHORSDIALOG_H #include #include #include #include #include #include #include "datablocks/elementlist.h" class RecipeDB; /** @author Unai Garro */ class SelectAuthorsDialog: public KDialogBase { TQ_OBJECT public: SelectAuthorsDialog( TQWidget *parent, const ElementList ¤tAuthors, RecipeDB *db ); ~SelectAuthorsDialog(); void getSelectedAuthors( ElementList *newAuthors ); private: //Widgets KComboBox *authorsCombo; TDEListView *authorListView; TQPushButton *okButton; TQPushButton *cancelButton; TQPushButton *addAuthorButton; TQPushButton *removeAuthorButton; TDEIconLoader *il; //Variables ElementList authorList; RecipeDB *database; //Private methods void loadAuthors( const ElementList &authorList ); void createNewAuthorIfNecessary( void ); void reloadAuthorsCombo( void ); private slots: void addAuthor( void ); void removeAuthor( void ); }; #endif