summaryrefslogtreecommitdiffstats
path: root/tools/tdefile-plugins/gnumeric
diff options
context:
space:
mode:
Diffstat (limited to 'tools/tdefile-plugins/gnumeric')
-rw-r--r--tools/tdefile-plugins/gnumeric/Makefile.am22
-rw-r--r--tools/tdefile-plugins/gnumeric/tdefile_gnumeric.cpp123
-rw-r--r--tools/tdefile-plugins/gnumeric/tdefile_gnumeric.desktop49
-rw-r--r--tools/tdefile-plugins/gnumeric/tdefile_gnumeric.h43
4 files changed, 237 insertions, 0 deletions
diff --git a/tools/tdefile-plugins/gnumeric/Makefile.am b/tools/tdefile-plugins/gnumeric/Makefile.am
new file mode 100644
index 00000000..407a15f4
--- /dev/null
+++ b/tools/tdefile-plugins/gnumeric/Makefile.am
@@ -0,0 +1,22 @@
+## Makefile.am for gnumeric file meta info plugin
+
+# set the include path for X, qt and KDE
+INCLUDES = $(KOFFICE_INCLUDES) $(all_includes)
+
+# these are the headers for your project
+noinst_HEADERS = tdefile_gnumeric.h
+
+kde_module_LTLIBRARIES = tdefile_gnumeric.la
+
+tdefile_gnumeric_la_SOURCES = tdefile_gnumeric.cpp
+tdefile_gnumeric_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx -lkio -ltdeparts
+tdefile_gnumeric_la_LIBADD = $(KOFFICE_LIBS)
+
+# let automoc handle all of the meta source files (moc)
+METASOURCES = AUTO
+
+services_DATA = tdefile_gnumeric.desktop
+servicesdir = $(kde_servicesdir)
+
+messages:
+ $(XGETTEXT) *.cpp -o $(podir)/tdefile_gnumeric.pot
diff --git a/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.cpp b/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.cpp
new file mode 100644
index 00000000..29686663
--- /dev/null
+++ b/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.cpp
@@ -0,0 +1,123 @@
+/* This file is part of the KDE project
+ * Copyright (C) 2005 Laurent Montel <montel@kde.org>
+ *
+ * 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 version 2.
+ *
+ * This program 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ */
+
+#include <config.h>
+#include "tdefile_gnumeric.h"
+
+#include <klocale.h>
+#include <kgenericfactory.h>
+#include <kfilterdev.h>
+
+#include <tqdom.h>
+#include <tqfile.h>
+#include <tqdatetime.h>
+#include <kdebug.h>
+
+typedef KGenericFactory<GnumericPlugin> GnumericFactory;
+
+K_EXPORT_COMPONENT_FACTORY(tdefile_gnumeric, GnumericFactory( "tdefile_gnumeric" ))
+
+GnumericPlugin::GnumericPlugin(TQObject *parent, const char *name,
+ const TQStringList &args)
+
+ : KFilePlugin(parent, name, args)
+{
+ init();
+}
+
+void GnumericPlugin::init()
+{
+ KFileMimeTypeInfo* info = addMimeTypeInfo( "application/x-gnumeric" );
+
+ KFileMimeTypeInfo::GroupInfo* group = 0L;
+
+ group = addGroupInfo(info, "DocumentInfo", i18n("Document Information"));
+
+ KFileMimeTypeInfo::ItemInfo* item;
+
+ item = addItemInfo(group, "Author", i18n("Author"), TQVariant::String);
+ setHint(item, KFileMimeTypeInfo::Author);
+ item = addItemInfo(group, "Title", i18n("Title"), TQVariant::String);
+ setHint(item, KFileMimeTypeInfo::Name);
+ item = addItemInfo(group, "Abstract", i18n("Abstract"), TQVariant::String);
+ setHint(item, KFileMimeTypeInfo::Description);
+}
+
+bool GnumericPlugin::readInfo( KFileMetaInfo& info, uint what)
+{
+ if ( info.path().isEmpty() ) // remote file
+ return false;
+
+ KFileMetaInfoGroup group = appendGroup(info, "DocumentInfo");
+ TQIODevice* in = KFilterDev::deviceForFile(info.path(),"application/x-gzip");
+ if ( !in )
+ {
+ kdError() << "Cannot create device for uncompressing! Aborting!" << endl;
+ return false;
+ }
+
+ if (!in->open(IO_ReadOnly))
+ {
+ kdError() << "Cannot open file for uncompressing! Aborting!" << endl;
+ delete in;
+ return false;
+ }
+ TQDomDocument doc;
+ doc.setContent( in );
+ in->close();
+ TQDomElement docElem = doc.documentElement();
+ TQDomNode summary = docElem.namedItem("gmr:Summary");
+ TQDomNode gmr_item = summary.namedItem("gmr:Item");
+ TQString author;
+ TQString title;
+ TQString abstract;
+
+ while( !gmr_item.isNull() )
+ {
+ TQDomNode gmr_name = gmr_item.namedItem("gmr:name");
+ TQDomNode gmr_value = gmr_item.namedItem("gmr:val-string");
+ if (gmr_name.toElement().text() == "title")
+ {
+ title=gmr_value.toElement().text();
+ }
+ else if (gmr_name.toElement().text() == "author")
+ {
+ author=gmr_value.toElement().text();
+ }
+ else if (gmr_name.toElement().text() == "comments")
+ {
+ abstract=gmr_value.toElement().text();
+ }
+ gmr_item = gmr_item.nextSibling();
+ }
+ appendItem(group, "Author", stringItem( author ));
+ appendItem(group, "Title", stringItem( title ));
+ appendItem(group, "Abstract", stringItem( abstract ));
+
+ delete in;
+ return true;
+}
+
+TQString GnumericPlugin::stringItem( const TQString &name )
+{
+ return name.isEmpty() ? i18n("*Unknown*") : name;
+}
+
+
+#include "tdefile_gnumeric.moc"
diff --git a/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.desktop b/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.desktop
new file mode 100644
index 00000000..d4e83866
--- /dev/null
+++ b/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.desktop
@@ -0,0 +1,49 @@
+[Desktop Entry]
+Type=Service
+Name=Gnumeric Info
+Name[bg]=Информация за Gnumeric
+Name[br]=Titouroù Gnumeric
+Name[ca]=Informació GNUmeric
+Name[cy]=Gwybodaeth Gnumeric
+Name[da]=Gnumeric info
+Name[el]=Πληροφορίες Gnumeric
+Name[eo]=Gnumeric-informo
+Name[es]=Información de Gnumeric
+Name[et]=Gnumeric'i info
+Name[fa]=اطلاعات Gnumeric
+Name[fi]=Gnumeric-tiedot
+Name[fr]=Informations sur Gnumeric
+Name[fy]=Gnumeric ynfo
+Name[ga]=Ginearálta
+Name[gl]=Información de Gnumeric
+Name[he]=מידע של Gnumeric
+Name[hu]=Gnumeric-információ
+Name[is]=Gnumeric upplýsingar
+Name[it]=Informazioni su Gnumeric
+Name[ja]=Gnumeric 情報
+Name[km]=ព័ត៌មាន Gnumeric
+Name[lt]=Gnumeric informacija
+Name[lv]=Gnumeric informācija
+Name[nb]=Gnumeric-info
+Name[nds]=Gnumeric-Info
+Name[ne]=जीन्यूमेरिक सूचना
+Name[nl]=Gnumeric-info
+Name[pl]=Informacje o Gnumeric
+Name[pt]=Informação do Gnumeric
+Name[pt_BR]=Informação do Gnumeric
+Name[ru]=Информация Gnumeric
+Name[se]=Gnumeric-dieđut
+Name[sl]=Informacije o Gnumeric
+Name[sr]=Информације Gnumeric-а
+Name[sr@Latn]=Informacije Gnumeric-a
+Name[sv]=Gnumeric-information
+Name[uk]=Інформація Gnumeric
+Name[uz]=Gnumeric hujjati haqida maʼlumot
+Name[uz@cyrillic]=Gnumeric ҳужжати ҳақида маълумот
+Name[zh_CN]=Gnumeric 信息
+Name[zh_TW]=Gnumeric 資訊
+ServiceTypes=KFilePlugin
+X-TDE-Library=tdefile_gnumeric
+MimeType=application/x-gnumeric
+PreferredGroups=DocumentInfo
+PreferredItems=Author,Title,Abstract
diff --git a/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.h b/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.h
new file mode 100644
index 00000000..c48c08ab
--- /dev/null
+++ b/tools/tdefile-plugins/gnumeric/tdefile_gnumeric.h
@@ -0,0 +1,43 @@
+/* This file is part of the KDE project
+ * Copyright (C) 2005 Laurent Montel montel@kde.org
+ *
+ * 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 version 2.
+ *
+ * This program 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
+ * General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; see the file COPYING. If not, write to
+ * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
+ * Boston, MA 02110-1301, USA.
+ *
+ */
+
+#ifndef __KFILE_GNUMERIC_H__
+#define __KFILE_GNUMERIC_H__
+
+#include <tdefilemetainfo.h>
+
+class TQStringList;
+class TQDomNode;
+
+class GnumericPlugin: public KFilePlugin
+{
+ Q_OBJECT
+
+
+public:
+ GnumericPlugin( TQObject *parent, const char *name, const TQStringList& args );
+
+ virtual bool readInfo( KFileMetaInfo& info, uint what);
+
+private:
+ void init();
+ TQString stringItem( const TQString &name );
+};
+
+#endif