You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
100 lines
4.1 KiB
100 lines
4.1 KiB
15 years ago
|
/***************************************************************************
|
||
|
* Copyright (C) 2004 by Pino Toscano *
|
||
|
* toscano.pino@tiscali.it *
|
||
|
* *
|
||
|
* 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; either version 2 of the License, or *
|
||
|
* (at your option) any later version. *
|
||
|
* *
|
||
|
* 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; if not, write to the *
|
||
|
* Free Software Foundation, Inc., *
|
||
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
||
|
***************************************************************************/
|
||
|
|
||
12 years ago
|
#include "tdefile_drgeo.h"
|
||
15 years ago
|
|
||
14 years ago
|
#include <tqdom.h>
|
||
|
#include <tqfile.h>
|
||
15 years ago
|
|
||
|
#include <kgenericfactory.h>
|
||
|
|
||
|
typedef KGenericFactory<DrgeoPlugin> drgeoFactory;
|
||
|
|
||
12 years ago
|
K_EXPORT_COMPONENT_FACTORY( tdefile_drgeo, drgeoFactory( "tdefile_drgeo" ) )
|
||
15 years ago
|
|
||
13 years ago
|
DrgeoPlugin::DrgeoPlugin( TQObject *parent, const char *name, const TQStringList &args )
|
||
|
: KFilePlugin( parent, name, args )
|
||
15 years ago
|
{
|
||
|
info = addMimeTypeInfo( "application/x-drgeo" );
|
||
|
|
||
|
KFileMimeTypeInfo::GroupInfo* group = addGroupInfo( info, "DrgeoInfo", i18n( "Summary" ) );
|
||
|
KFileMimeTypeInfo::ItemInfo* item;
|
||
14 years ago
|
item = addItemInfo( group, "NumOfFigures", i18n( "Figures" ), TQVariant::Int );
|
||
|
item = addItemInfo( group, "NumOfTexts", i18n( "Texts" ), TQVariant::Int );
|
||
|
item = addItemInfo( group, "NumOfMacros", i18n( "Macros" ), TQVariant::Int );
|
||
15 years ago
|
|
||
|
group_contents = addGroupInfo( info, "DrgeoContents", i18n( "Translators: what this drgeo "
|
||
13 years ago
|
"file contains", "Contents" ) );
|
||
15 years ago
|
}
|
||
|
|
||
|
bool DrgeoPlugin::readInfo( KFileMetaInfo& metainfo, uint /*what*/ )
|
||
|
{
|
||
|
KFileMetaInfoGroup metagroup = appendGroup( metainfo, "DrgeoContents");
|
||
|
|
||
|
KFileMimeTypeInfo::ItemInfo* item;
|
||
|
|
||
14 years ago
|
TQFile f( metainfo.path() );
|
||
|
TQDomDocument doc( "drgenius" );
|
||
15 years ago
|
if ( !doc.setContent( &f ) )
|
||
|
return false;
|
||
14 years ago
|
TQDomElement main = doc.documentElement();
|
||
15 years ago
|
int numfig = 0;
|
||
|
int numtext = 0;
|
||
|
int nummacro = 0;
|
||
14 years ago
|
TQString sectname;
|
||
15 years ago
|
// reading figures...
|
||
14 years ago
|
for ( TQDomNode n = main.firstChild(); ! n.isNull(); n = n.nextSibling() )
|
||
15 years ago
|
{
|
||
14 years ago
|
TQDomElement e = n.toElement();
|
||
15 years ago
|
if ( e.isNull() ) continue;
|
||
|
else if ( e.tagName() == "drgeo" )
|
||
|
{
|
||
|
numfig++;
|
||
14 years ago
|
sectname = TQString( "Figure" ) + TQString::number( numfig );
|
||
|
item = addItemInfo( group_contents, sectname, i18n( "Figure" ), TQVariant::String );
|
||
15 years ago
|
appendItem( metagroup, sectname, e.attribute( "name" ) );
|
||
|
}
|
||
|
else if ( e.tagName() == "text" )
|
||
|
{
|
||
|
numtext++;
|
||
14 years ago
|
sectname = TQString( "Text" ) + TQString::number( numtext );
|
||
|
item = addItemInfo( group_contents, sectname, i18n( "Text" ), TQVariant::String );
|
||
15 years ago
|
appendItem( metagroup, sectname, e.attribute( "name" ) );
|
||
|
}
|
||
|
else if ( e.tagName() == "macro" )
|
||
|
{
|
||
|
nummacro++;
|
||
14 years ago
|
sectname = TQString( "Macro" ) + TQString::number( nummacro );
|
||
|
item = addItemInfo( group_contents, sectname, i18n( "Macro" ), TQVariant::String );
|
||
15 years ago
|
appendItem( metagroup, sectname, e.attribute( "name" ) );
|
||
|
}
|
||
|
}
|
||
|
|
||
|
metagroup = appendGroup( metainfo, "DrgeoInfo");
|
||
|
appendItem( metagroup, "NumOfFigures", numfig );
|
||
|
appendItem( metagroup, "NumOfTexts", numtext );
|
||
|
appendItem( metagroup, "NumOfMacros", nummacro );
|
||
|
|
||
|
return true;
|
||
|
}
|
||
|
|
||
12 years ago
|
#include "tdefile_drgeo.moc"
|
||
15 years ago
|
|