diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:05:15 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-27 01:05:15 -0600 |
commit | 64df902cf71a8ee258fb85f6be26248f399aa01f (patch) | |
tree | dba58f705042c22cea26b678d5b0e4e9a34bf202 /tdefile-plugins/palm-databases/tdefile_palm.cpp | |
parent | de53c98cab07e9c4b0f5e25dab82830fb6fc67ec (diff) | |
download | tdepim-64df902cf71a8ee258fb85f6be26248f399aa01f.tar.gz tdepim-64df902cf71a8ee258fb85f6be26248f399aa01f.zip |
Rename a number of libraries and executables to avoid conflicts with KDE4
Diffstat (limited to 'tdefile-plugins/palm-databases/tdefile_palm.cpp')
-rw-r--r-- | tdefile-plugins/palm-databases/tdefile_palm.cpp | 121 |
1 files changed, 121 insertions, 0 deletions
diff --git a/tdefile-plugins/palm-databases/tdefile_palm.cpp b/tdefile-plugins/palm-databases/tdefile_palm.cpp new file mode 100644 index 000000000..3d4e20e93 --- /dev/null +++ b/tdefile-plugins/palm-databases/tdefile_palm.cpp @@ -0,0 +1,121 @@ +/* This file is part of the KDE project + * Copyright (C) 2004 Reinhold Kainhofer <reinhold@kainhofer.com> + * Based on the vcf plugin: + * Copyright (C) 2002 Shane Wright <me@shanewright.co.uk> + * + * 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 "tdefile_palm.h" + +#include <klocale.h> +#include <kgenericfactory.h> + +#include <tqfile.h> +#include <tqdatetime.h> +#include <pi-file.h> + + +typedef KGenericFactory<KPalmPlugin> PalmFactory; + +K_EXPORT_COMPONENT_FACTORY(tdefile_palm, PalmFactory( "tdefile_palm" )) + +KPalmPlugin::KPalmPlugin(TQObject *parent, const char *name, + const TQStringList &args) + + : KFilePlugin(parent, name, args) +{ + KFileMimeTypeInfo* info = addMimeTypeInfo( "application/vnd.palm" ); + + KFileMimeTypeInfo::GroupInfo* group; + KFileMimeTypeInfo::ItemInfo* item; + + group = addGroupInfo(info, "General", i18n("General Information")); + item = addItemInfo(group, "Name", i18n("Name"), TQVariant::String); + item = addItemInfo(group, "DBType", i18n("DB Type"), TQVariant::String); + item = addItemInfo(group, "TypeID", i18n("Type ID"), TQVariant::String); + item = addItemInfo(group, "CreatorID", i18n("Creator ID"), TQVariant::String); + item = addItemInfo(group, "NrRecords", i18n("# of Records"), TQVariant::Int); + + group = addGroupInfo(info, "TimeStamps", i18n("Time Stamps")); + item = addItemInfo(group, "CreationDate", i18n("Creation Date"), TQVariant::DateTime); + item = addItemInfo(group, "ModificationDate", i18n("Modification Date"), TQVariant::DateTime); + item = addItemInfo(group, "BackupDate", i18n("Backup Date"), TQVariant::DateTime); + + group = addGroupInfo(info, "Flags", i18n("Flags")); + item = addItemInfo(group, "ReadOnly", i18n("Read-Only"), TQVariant::String); + item = addItemInfo(group, "MakeBackup", i18n("Make Backup"), TQVariant::String); + item = addItemInfo(group, "CopyProtected", i18n("Copy Protected"), TQVariant::String); + item = addItemInfo(group, "Reset", i18n("Reset Handheld After Installing"), TQVariant::String); + item = addItemInfo(group, "ExcludeFromSync", i18n("Exclude From Sync"), TQVariant::String); +} + + +bool KPalmPlugin::readInfo( KFileMetaInfo& info, uint /*what*/ ) +{ + int nrRec; + TQString tempName = info.path(); + TQCString fileName = TQFile::encodeName(tempName); + pi_file *dbFile = pi_file_open(const_cast < char *>((const char *) fileName)); + if (dbFile == 0L) return false; + + struct DBInfo dBInfo; + pi_file_get_info( dbFile, &dBInfo ); + pi_file_get_entries( dbFile, &nrRec ); + pi_file_close(dbFile); + + KFileMetaInfoGroup generalGroup = appendGroup(info, "General"); + appendItem(generalGroup, "Name", dBInfo.name ); + appendItem(generalGroup, "DBType", (dBInfo.flags & dlpDBFlagResource)?i18n("PalmOS Application"):i18n("PalmOS Record Database") ); + + char buff[5]; + set_long(buff, dBInfo.type); + buff[4]='\0'; + appendItem(generalGroup, "TypeID", buff ); + + set_long(buff, dBInfo.creator); + buff[4]='\0'; + appendItem(generalGroup, "CreatorID", buff ); + appendItem(generalGroup, "NrRecords", nrRec ); + + + KFileMetaInfoGroup timeGroup = appendGroup(info, "TimeStamps"); + TQDateTime tm; + tm.setTime_t( dBInfo.createDate ); + appendItem(timeGroup, "CreationDate", tm); + tm.setTime_t( dBInfo.modifyDate ); + appendItem(timeGroup, "ModificationDate", tm); + tm.setTime_t( dBInfo.backupDate ); + appendItem(timeGroup, "BackupDate", tm); + + KFileMetaInfoGroup flagGroup = appendGroup(info, "Flags"); + appendItem(flagGroup, "ReadOnly", (dBInfo.flags & dlpDBFlagReadOnly)?i18n("Yes"):i18n("No") ); + appendItem(flagGroup, "MakeBackup", (dBInfo.flags & dlpDBFlagBackup)?i18n("Yes"):i18n("No") ); + appendItem(flagGroup, "CopyProtected", (dBInfo.flags & dlpDBFlagCopyPrevention)?i18n("Yes"):i18n("No") ); + appendItem(flagGroup, "Reset", (dBInfo.flags & dlpDBFlagReset)?i18n("Yes"):i18n("No") ); + appendItem(flagGroup, "ExcludeFromSync", (dBInfo.miscFlags & dlpDBMiscFlagExcludeFromSync)?i18n("Yes"):i18n("No") ); + + return true; +} + +/*bool KPalmPlugin::writeInfo( const KFileMetaInfo& info ) const +{ +// int pi_file_set_info((struct pi_file * pf, struct DBInfo * infop)); +//info["tuteTextTechnical"].value("An integer").toInt() +// Do the stuff with low-level functions. See lines 1119-1142 of pi-file.cc for writing, 244-273 for reading. +}*/ + +#include "tdefile_palm.moc" |