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.
tdewebdev/quanta/dialogs/tagdialogs/tagattr.cpp

98 lines
2.9 KiB

/***************************************************************************
tagxml.cpp - description
-------------------
begin : <20><><EFBFBD><EFBFBD>25 14:34:07 EEST 2000
copyright : (C) 2000 by Dmitry Poplavsky & Alexander Yakovlev <pdima@users.sourceforge.net,yshurik@linuxfan.com>
(C) 2004 Andras Mantia <amantia@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; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
//kde includes
#include <dcopref.h>
#include <tdeapplication.h>
#include <kdebug.h>
#include <klineedit.h>
//qt includes
#include <tqdom.h>
#include <tqtextstream.h>
//app includes
#include "tagattr.h"
#include "node.h"
#include "colorcombo.h"
#include "qtag.h"
#include "quantacommon.h"
TQString Attr::attrName() const
{
return name;
}
Attr_list::Attr_list( TQDomElement const& el, TQWidget *w, TQTag *dtdTag )
: Attr(el, w, dtdTag)
{
combo = (TQComboBox *)w;
TQString source = el.attribute("source");
if (source == "dcop") //fill the list with a result of a DCOP call
{
TQString method = el.attribute("method");
TQString interface = el.attribute("interface", "QuantaIf");
TQString arguments = el.attribute("arguments");
arguments.replace("%tagname%", m_dtdTag->name());
DCOPReply reply = QuantaCommon::callDCOPMethod(interface, method, arguments);
if (reply.isValid())
{
TQStringList list = reply;
combo->insertStringList(list);
}
}
for ( TQDomElement n = el.firstChild().toElement(); !n.isNull(); n = n.nextSibling().toElement() ) {
if ( n.tagName() == "items" ) {
TQDomElement item = n.firstChild().toElement();
while ( !item.isNull() ) {
combo->insertItem( item.text() );
item = item.nextSibling().toElement();
}
}
}
setValue("");
}
void Attr_list::setValue(const TQString &value)
{
for ( int i=0; i<combo->count(); i++ )
if ( value == combo->text(i) ) {
combo->setCurrentItem(i);
return;
}
combo->insertItem(value);
combo->setCurrentItem( combo->count() - 1 );
}
TQDomNode findChild( TQDomNode &parent, const TQString &name )
{
for ( TQDomNode n = parent.firstChild(); !n.isNull(); n = n.nextSibling() )
if ( n.nodeName() == name )
return n;
return TQDomNode();
}