/*************************************************************************** Copyright 2007 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 CONTAINERVIEW_H #define CONTAINERVIEW_H #include class ContainerModel; class KEduVocContainer; class KEduVocExpression; /** * View for containers (KEduVocContainer). * @author Frederik Gladhorn */ class ContainerView : public QTreeView { Q_OBJECT public: /** Set up the lesson list widget. * Also creates the menu to manipulate the lessons. * @param parent parent widget */ ContainerView(QWidget *parent = 0); /** Set the model for the view. * @param model the model */ virtual void setModel(ContainerModel *model); public slots: void setTranslation(KEduVocExpression*, int); /** Create an editor to let the user type a new name for the lesson.*/ void slotRename(); signals: /** Emitted when a new container is selected. Indicates the selected container. */ void signalShowContainer(KEduVocContainer* selected); /** Emitted when any of the checkboxes for the query change. */ void lessonsInPracticeChanged(); protected: /** The KVTContainerModel for this view. */ ContainerModel *m_model; }; #endif