- added author title etc page.
- added category combobox to author title page.
- added get/set methods for category to keduvocdocument
- added a new identifier name/locale page
The old pages are still there, but will be removed, when the new stuff is working.
Writing/reading of the category still missing.
svn path=/trunk/KDE/kdeedu/libkdeedu/; revision=708003
return d->m_comment;
}
+void KEduVocDocument::setCategory( const QString & category )
+{
+ d->m_category = category;
+}
+
+QString KEduVocDocument::category() const
+{
+ return d->m_category;
+ ///@todo make writer/reader use this
+}
void KEduVocDocument::queryIdentifier( QString &org, QString &trans ) const
{
/** @return the comment of the file */
QString documentComment() const;
+ /** set the category of the file
+ * @param category category to set */
+ void setCategory( const QString & category );
+
+ /** @return the category of the file */
+ QString category() const;
+
/**
* Sets the generator of the file
*/