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.
96 lines
2.7 KiB
96 lines
2.7 KiB
15 years ago
|
/* This file is part of the KDE project
|
||
|
Copyright (C) 2002 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
|
||
|
|
||
|
This library is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU Library General Public
|
||
|
License as published by the Free Software Foundation; either
|
||
|
version 2 of the License, or (at your option) any later version.
|
||
|
|
||
|
This library 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
|
||
|
Library General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU Library General Public License
|
||
|
along with this library; see the file COPYING.LIB. If not, write to
|
||
15 years ago
|
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||
|
Boston, MA 02110-1301, USA.
|
||
15 years ago
|
*/
|
||
|
#include <kdebug.h>
|
||
|
#include <dcopclient.h>
|
||
|
#include <kurl.h>
|
||
|
|
||
|
|
||
11 years ago
|
#include "TDevPartControllerIface.h"
|
||
|
#include "tdevpartcontroller.h"
|
||
15 years ago
|
|
||
|
|
||
11 years ago
|
TDevPartControllerIface::TDevPartControllerIface(TDevPartController *pc)
|
||
|
: TQObject(pc), DCOPObject("TDevPartController"), m_controller(pc)
|
||
15 years ago
|
{
|
||
15 years ago
|
connect(pc, TQT_SIGNAL(loadedFile(const KURL &)), this, TQT_SLOT(forwardLoadedFile(const KURL &)));
|
||
|
connect(pc, TQT_SIGNAL(savedFile(const KURL &)), this, TQT_SLOT(forwardSavedFile(const KURL &)));
|
||
|
connect(pc, TQT_SIGNAL(closedFile(const KURL &)), this, TQT_SLOT(forwardClosedFile(const KURL &)));
|
||
15 years ago
|
}
|
||
|
|
||
|
|
||
11 years ago
|
TDevPartControllerIface::~TDevPartControllerIface()
|
||
15 years ago
|
{
|
||
|
}
|
||
|
|
||
|
|
||
11 years ago
|
void TDevPartControllerIface::editDocument(const TQString &url, int lineNum)
|
||
15 years ago
|
{
|
||
|
m_controller->editDocument(KURL(url), lineNum);
|
||
|
}
|
||
|
|
||
|
|
||
11 years ago
|
void TDevPartControllerIface::showDocument(const TQString &url, bool newWin)
|
||
15 years ago
|
{
|
||
|
m_controller->showDocument(KURL(url), newWin);
|
||
|
}
|
||
|
|
||
|
|
||
11 years ago
|
void TDevPartControllerIface::saveAllFiles()
|
||
15 years ago
|
{
|
||
|
m_controller->saveAllFiles();
|
||
|
}
|
||
|
|
||
|
|
||
11 years ago
|
void TDevPartControllerIface::revertAllFiles()
|
||
15 years ago
|
{
|
||
|
m_controller->revertAllFiles();
|
||
|
}
|
||
|
|
||
|
|
||
11 years ago
|
void TDevPartControllerIface::forwardLoadedFile(const KURL &fileName)
|
||
15 years ago
|
{
|
||
|
kdDebug(9000) << "dcop emitting loadedFile " << fileName << endl;
|
||
15 years ago
|
emitDCOPSignal("projectOpened()", TQByteArray());
|
||
15 years ago
|
}
|
||
|
|
||
|
|
||
11 years ago
|
void TDevPartControllerIface::forwardSavedFile(const KURL &fileName)
|
||
15 years ago
|
{
|
||
|
kdDebug(9000) << "dcop emitting savedFile " << fileName << endl;
|
||
15 years ago
|
emitDCOPSignal("projectClosed()", TQByteArray());
|
||
15 years ago
|
}
|
||
|
|
||
11 years ago
|
void TDevPartControllerIface::forwardClosedFile(const KURL &fileName)
|
||
15 years ago
|
{
|
||
|
kdDebug(9000) << "dcop emitting closedFile " << fileName << endl;
|
||
15 years ago
|
emitDCOPSignal("projectClosed()", TQByteArray());
|
||
15 years ago
|
}
|
||
|
|
||
11 years ago
|
bool TDevPartControllerIface::closeAllFiles( )
|
||
15 years ago
|
{
|
||
|
return m_controller->closeAllFiles();
|
||
|
}
|
||
|
|
||
11 years ago
|
uint TDevPartControllerIface::documentState( const KURL & url )
|
||
15 years ago
|
{
|
||
|
return (uint) m_controller->documentState(url);
|
||
|
}
|
||
|
|
||
11 years ago
|
#include "TDevPartControllerIface.moc"
|