/*************************************************************************** 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 CONJUGATIONWIDGET_H #define CONJUGATIONWIDGET_H #include "ui_conjugationwidget.h" #include class KEduVocExpression; class KEduVocDocument; class ConjugationWidget : public QWidget, public Ui::ConjugationWidget { Q_OBJECT public: explicit ConjugationWidget(QWidget *parent = 0); public slots: void setDocument(KEduVocDocument* doc); void setTranslation(KEduVocExpression* entry, int translation); signals: void sigModified(); private slots: void textChanged(const QString&); void slotTenseSelected(int); void slotNextTense(); void slotMakeVerb(); void tenseEditingFinished(); private: void showMakeVerbWidgets(); void showConjugationEditWidgets(); void updateVisiblePersons(); /** * Fill the line edits */ void updateEntries(); QString m_lastSelection; int m_identifier; KEduVocExpression* m_entry; KEduVocDocument* m_doc; /** * All line edits and labels, index corresponding to KEduVocWordFlag::indexOf */ QMap< KEduVocWordFlags, KLineEdit* > m_conjugationLineEdits; }; #endif