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.
84 lines
2.6 KiB
84 lines
2.6 KiB
15 years ago
|
/***************************************************************************
|
||
|
* Copyright (C) 2004 by Alexander Dymo *
|
||
|
* adymo@mksat.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. *
|
||
|
* *
|
||
|
* 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., *
|
||
15 years ago
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
|
||
15 years ago
|
***************************************************************************/
|
||
11 years ago
|
#include "TDevDocumentationIface.h"
|
||
15 years ago
|
|
||
|
#include "documentation_part.h"
|
||
|
|
||
11 years ago
|
TDevDocumentationIface::TDevDocumentationIface(DocumentationPart *part)
|
||
|
:TQObject(part), DCOPObject("TDevDocumentation"), m_part(part)
|
||
15 years ago
|
{
|
||
|
}
|
||
|
|
||
11 years ago
|
TDevDocumentationIface::~TDevDocumentationIface()
|
||
15 years ago
|
{
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::lookupInIndex(TQString term)
|
||
15 years ago
|
{
|
||
|
m_part->lookInDocumentationIndex(term);
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::findInFinder(TQString term)
|
||
15 years ago
|
{
|
||
|
m_part->findInDocumentation(term);
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::searchInDocumentation(TQString term)
|
||
15 years ago
|
{
|
||
|
m_part->searchInDocumentation(term);
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::lookupInIndex()
|
||
15 years ago
|
{
|
||
|
m_part->lookInDocumentationIndex();
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::searchInDocumentation()
|
||
15 years ago
|
{
|
||
|
m_part->searchInDocumentation();
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::manPage(TQString term)
|
||
15 years ago
|
{
|
||
|
m_part->manPage(term);
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::infoPage(TQString term)
|
||
15 years ago
|
{
|
||
|
m_part->infoPage(term);
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::manPage()
|
||
15 years ago
|
{
|
||
|
m_part->manPage();
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::infoPage()
|
||
15 years ago
|
{
|
||
|
m_part->infoPage();
|
||
|
}
|
||
|
|
||
11 years ago
|
void TDevDocumentationIface::findInFinder( )
|
||
15 years ago
|
{
|
||
|
m_part->findInDocumentation();
|
||
|
}
|
||
|
|
||
11 years ago
|
#include "TDevDocumentationIface.moc"
|