/*************************************************************************** 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 IMAGECHOOSERWIDGET_H #define IMAGECHOOSERWIDGET_H #include "ui_imagechooserwidget.h" class KEduVocExpression; class ImageChooserWidget : public QWidget, public Ui::ImageChooserWidget { Q_OBJECT public: explicit ImageChooserWidget(QWidget* parent = 0); public slots: /** * Update the word * @param entry * @param translation */ void setTranslation(KEduVocExpression* entry, int translation); // signals: // /** // * Important to let other widgets know that a certain word type is edited (might make conjugations/comparison/declension appear) // * @param // */ // void imageChanged(const QString&); private slots: void slotImageChanged(const QString & url); protected: bool eventFilter(QObject *obj, QEvent *event); private: /// Column in the document - corresponds to the language (-KV_COL_TRANS) int m_currentTranslation; /// Selection in the doc - if more than one row is selected behavior is different KEduVocExpression* m_entry; }; #endif