lib_LTLIBRARIES = libkdeeducore.la
-libkdeeducore_la_SOURCES = keduvocdata.cpp keduvocdocument.cpp \
- keduvocexpression.cpp keduvocgrammar.cpp keduvockvtmlreader.cpp keduvockvtmlwriter.cpp \
- keduvocmultiplechoice.cpp keduvowqlreader.cpp keduvowqlwriter.cpp leitnerbox.cpp \
- leitnersystem.cpp leitnersystemview.cpp prefleitner.cpp prefleitnerbase.ui
+libkdeeducore_la_SOURCES = keduvocdocument.cpp keduvocexpression.cpp \
+ keduvocgrammar.cpp keduvockvtmlreader.cpp keduvockvtmlwriter.cpp keduvocmultiplechoice.cpp \
+ keduvowqlreader.cpp keduvowqlwriter.cpp leitnerbox.cpp leitnersystem.cpp \
+ leitnersystemview.cpp prefleitner.cpp prefleitnerbase.ui
libkdeeducore_la_LDFLAGS = -no-undefined $(all_libraries) -version-info 3:0:2
libkdeeducore_includedir = $(includedir)/libkdeedu
-libkdeeducore_include_HEADERS = keduvocdata.h keduvocdocument.h \
- keduvocexpression.h keduvocgrammar.h keduvockvtmlreader.h keduvockvtmlwriter.h \
- keduvocmultiplechoice.h keduvowqlreader.h keduvowqlwriter.h leitnerbox.h leitnersystem.h \
- leitnersystemview.h prefleitner.h
+libkdeeducore_include_HEADERS = keduvocdocument.h keduvocexpression.h \
+ keduvocgrammar.h keduvockvtmlreader.h keduvockvtmlwriter.h keduvocmultiplechoice.h \
+ keduvowqlreader.h keduvowqlwriter.h leitnerbox.h leitnersystem.h leitnersystemview.h \
+ prefleitner.h
libkdeeducore_la_LIBADD = $(LIB_KDECORE) $(LIB_KFILE)
+++ /dev/null
-/* This file is part of the KDE Edu Library
- Copyright (C) 2002 Scott Wheeler <wheeler@kde.org>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#include <QFile>
-
-#include <kdebug.h>
-
-#include "keduvocdata.h"
-
-////////////////////////////////////////////////////////////////////////////////
-// class KEduVocDataItem
-////////////////////////////////////////////////////////////////////////////////
-
-// public methods
-
-KEduVocDataItem::KEduVocDataItem()
-{
-
-}
-
-KEduVocDataItem::KEduVocDataItem(QDomElement &entry)
-{
- domElement = entry;
-}
-
-KEduVocDataItem::~KEduVocDataItem()
-{
-
-}
-
-QString KEduVocDataItem::originalText() const
-{
- return getText("o");
-}
-
-QString KEduVocDataItem::translatedText() const
-{
- return getText("t");
-}
-
-// protected methods
-
-QString KEduVocDataItem::getText(const QString &tagName) const
-{
- if(!domElement.isNull()) {
-
- QDomNodeList list = domElement.elementsByTagName(tagName);
-
- if(list.count() > 0) {
-
- QDomElement element = list.item(0).toElement();
-
- if(!element.isNull()) {
- return element.text();
- }
- else
- return QString();
- }
- else
- return QString();
- }
- else
- return QString();
-}
-
-////////////////////////////////////////////////////////////////////////////////
-// class KEduVocData
-////////////////////////////////////////////////////////////////////////////////
-
-// public static methods
-
-KEduVocDataItemList KEduVocData::parse(const QString &fileName)
-{
- KEduVocDataItemList list;
-
- QDomDocument document;
- QFile file(fileName);
- document.setContent(&file);
-
- QDomNodeList entries = document.elementsByTagName("e");
-
- // loop through the "e" (entry) tags looking for data
- for(int i = 0 ; i < entries.count() ; i++) {
-
- // get an entry to operate on
- QDomElement entry = entries.item(i).toElement();
-
- // if the "node" is in fact an element -- i.e. not null
- if(!entry.isNull()) {
- KEduVocDataItem item(entry);
- list.append(item);
- }
- }
-
- return list;
-}
+++ /dev/null
-/* This file is part of the KDE Edu Library
- Copyright (C) 2002 Scott Wheeler <wheeler@kde.org>
-
- This library is free software; you can redistribute it and/or
- modify it under the terms of the GNU Library General Public
- License version 2 as published by the Free Software Foundation.
-
- This library is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- Library General Public License for more details.
-
- You should have received a copy of the GNU Library General Public License
- along with this library; see the file COPYING.LIB. If not, write to
- the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
- Boston, MA 02110-1301, USA.
-*/
-
-#ifndef KEDUVOCDATA_H
-#define KEDUVOCDATA_H
-
-#include <QtXml>
-#include <QList>
-
-#include <kdemacros.h>
-
-class KDE_EXPORT KEduVocDataItem
-{
-public:
- KEduVocDataItem();
- KEduVocDataItem(QDomElement &entry);
- virtual ~KEduVocDataItem();
-
- QString originalText() const;
- QString translatedText() const;
-
-protected:
- QString getText(const QString &tagName) const;
-
-private:
- QDomElement domElement;
-};
-
-typedef QList<KEduVocDataItem> KEduVocDataItemList;
-
-class KDE_EXPORT KEduVocData
-{
-public:
- static KEduVocDataItemList parse(const QString &fileName);
-};
-
-#endif // KEDUVOCDATA_H