summaryrefslogtreecommitdiffstats
path: root/tools/kfile-plugins/gnumeric
diff options
context:
space:
mode:
authorTimothy Pearson <[email protected]>2013-01-27 00:54:22 -0600
committerTimothy Pearson <[email protected]>2013-01-27 00:54:22 -0600
commit038b18b2df1da40baab30d62171766048a948095 (patch)
treeba99d50e3e7b3f2eccb63ba71aea4f6163ede37a /tools/kfile-plugins/gnumeric
parentd0baf2961c379b31587c6542625018c6177474d0 (diff)
downloadkoffice-038b18b2df1da40baab30d62171766048a948095.tar.gz
koffice-038b18b2df1da40baab30d62171766048a948095.zip
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tools/kfile-plugins/gnumeric')
-rw-r--r--tools/kfile-plugins/gnumeric/Makefile.am22
-rw-r--r--tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp123
-rw-r--r--tools/kfile-plugins/gnumeric/kfile_gnumeric.desktop49
-rw-r--r--tools/kfile-plugins/gnumeric/kfile_gnumeric.h43
4 files changed, 0 insertions, 237 deletions
diff --git a/tools/kfile-plugins/gnumeric/Makefile.am b/tools/kfile-plugins/gnumeric/Makefile.am
deleted file mode 100644
index 85ca467b..00000000
--- a/tools/kfile-plugins/gnumeric/Makefile.am
+++ /dev/null
@@ -1,22 +0,0 @@
-## 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 = kfile_gnumeric.h
-
-kde_module_LTLIBRARIES = kfile_gnumeric.la
-
-kfile_gnumeric_la_SOURCES = kfile_gnumeric.cpp
-kfile_gnumeric_la_LDFLAGS = $(all_libraries) -module $(KDE_PLUGIN) -ltdecore -ltdeui $(LIB_QT) -lkjs -ltdefx -lkio -ltdeparts
-kfile_gnumeric_la_LIBADD = $(KOFFICE_LIBS)
-
-# let automoc handle all of the meta source files (moc)
-METASOURCES = AUTO
-
-services_DATA = kfile_gnumeric.desktop
-servicesdir = $(kde_servicesdir)
-
-messages:
- $(XGETTEXT) *.cpp -o $(podir)/kfile_gnumeric.pot
diff --git a/tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp b/tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp
deleted file mode 100644
index 145f318b..00000000
--- a/tools/kfile-plugins/gnumeric/kfile_gnumeric.cpp
+++ /dev/null
@@ -1,123 +0,0 @@
-/* This file is part of the KDE project
- * Copyright (C) 2005 Laurent Montel <[email protected]>
- *
- * 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 "kfile_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(kfile_gnumeric, GnumericFactory( "kfile_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 "kfile_gnumeric.moc"
diff --git a/tools/kfile-plugins/gnumeric/kfile_gnumeric.desktop b/tools/kfile-plugins/gnumeric/kfile_gnumeric.desktop
deleted file mode 100644
index a1372f31..00000000
--- a/tools/kfile-plugins/gnumeric/kfile_gnumeric.desktop
+++ /dev/null
@@ -1,49 +0,0 @@
-[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=kfile_gnumeric
-MimeType=application/x-gnumeric
-PreferredGroups=DocumentInfo
-PreferredItems=Author,Title,Abstract
diff --git a/tools/kfile-plugins/gnumeric/kfile_gnumeric.h b/tools/kfile-plugins/gnumeric/kfile_gnumeric.h
deleted file mode 100644
index 996e49a8..00000000
--- a/tools/kfile-plugins/gnumeric/kfile_gnumeric.h
+++ /dev/null
@@ -1,43 +0,0 @@
-/* This file is part of the KDE project
- * Copyright (C) 2005 Laurent Montel [email protected]
- *
- * 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 <kfilemetainfo.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