class QString;
class KFileItem;
class QLabel;
+class QScrollArea;
class PhononWidget;
class PixmapViewer;
class MetaDataWidget;
/** @see QWidget::resizeEvent() */
virtual void resizeEvent(QResizeEvent* event);
+ /** @see QObject::eventFilter() */
+ virtual bool eventFilter(QObject* obj, QEvent* event);
+
private slots:
/**
* Shows the information for the item of the URL which has been provided by
*/
void showMetaInfo();
- /**
- * Converts the meta key \a key to a readable format into \a text.
- * Returns true, if the string \a key represents a meta information
- * that should be shown. If false is returned, \a text is not modified.
- */
- bool convertMetaInfo(const QString& key, QString& text) const;
-
/**
* Returns the item for file where the preview and meta information
* should be received, if InformationPanel::showMultipleSelectionInfo()
PixmapViewer* m_preview;
PhononWidget* m_phononWidget;
MetaDataWidget* m_metaDataWidget;
+
+ QScrollArea* m_metaTextArea;
MetaTextLabel* m_metaTextLabel;
};