/*************************************************************************** Copyright 2008 Frederik Gladhorn ***************************************************************************/ /*************************************************************************** * * * 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 LEITNERVIEW_H #define LEITNERVIEW_H #include "leitnermodel.h" #include class Editor; class KEduVocLeitnerBox; /** * View for the lesson list. * @author Frederik Gladhorn */ class LeitnerView : public QListView { Q_OBJECT public: LeitnerView(Editor *parent); /** Set the model for the view. * @param model the model */ void setModel(LeitnerModel *model); public slots: /** Append a lesson to the model and automatically set an edit up so the user can change "New lesson" into something meaningfull.*/ void slotCreateLeitnerBox(); /** Remove a lesson. Ask if it's not empty. */ void slotDeleteLeitnerBox(); signals: void selectedLeitnerBoxChanged(KEduVocLeitnerBox*); void signalShowContainer(KEduVocContainer*); protected slots: void selectionChanged ( const QItemSelection & selected, const QItemSelection & deselected ); void currentChanged( const QModelIndex & current, const QModelIndex & previous ); private: LeitnerModel *m_model; }; #endif