/*************************************************************************** dcopiface_part_ro.cpp - description ------------------- begin : Tue Oct 23 2001 copyright : (C) 2001, 2002, 2003 by The KXMLEditor Team email : lvanek@users.sourceforge.net ***************************************************************************/ /*************************************************************************** * * * 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. * * * ***************************************************************************/ #include "dcopiface_part_ro.h" #include "kxmleditorpart.h" //--------------------------------------------------------------------------- // KXMLEditorPartIfaceReadOnly //--------------------------------------------------------------------------- TQString KXMLEditorPartIfaceReadOnly::saveAsFile(const TQString & ) { return "Not implemented."; } TQString KXMLEditorPartIfaceReadOnly::selectNode(const TQString & szPathToNode) { m_pKXEPart->slotPathSelected(szPathToNode); if ( m_pKXEPart->getSelectedPath() == szPathToNode ) return "Selecting node failed."; return TQString(); } TQString KXMLEditorPartIfaceReadOnly::currentNode() const { return m_pKXEPart->getSelectedPath(); } //--------------------------------------------------------------------------- // KXMLEditorPartIface //--------------------------------------------------------------------------- TQString KXMLEditorPartIfaceReadWrite::openURL(const TQString & szURL) { KURL url(szURL); if (! url.isValid () ) return "URL is not valid."; if ( m_pKXEPart->openURL(url) ) return TQString(); else return "Opening URL failed."; } TQString KXMLEditorPartIfaceReadWrite::close() { return "Not implemented."; }