KDevDocumentationIface.cpp
Go to the documentation of this file.00001 /*************************************************************************** 00002 * Copyright (C) 2004 by Alexander Dymo * 00003 * adymo@mksat.net * 00004 * * 00005 * This program is free software; you can redistribute it and/or modify * 00006 * it under the terms of the GNU General Public License as published by * 00007 * the Free Software Foundation; either version 2 of the License, or * 00008 * (at your option) any later version. * 00009 * * 00010 * This program is distributed in the hope that it will be useful, * 00011 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00013 * GNU General Public License for more details. * 00014 * * 00015 * You should have received a copy of the GNU General Public License * 00016 * along with this program; if not, write to the * 00017 * Free Software Foundation, Inc., * 00018 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * 00019 ***************************************************************************/ 00020 #include "KDevDocumentationIface.h" 00021 00022 #include "documentation_part.h" 00023 00024 KDevDocumentationIface::KDevDocumentationIface(DocumentationPart *part) 00025 :QObject(part), DCOPObject("KDevDocumentation"), m_part(part) 00026 { 00027 } 00028 00029 KDevDocumentationIface::~KDevDocumentationIface() 00030 { 00031 } 00032 00033 void KDevDocumentationIface::lookupInIndex(QString term) 00034 { 00035 m_part->lookInDocumentationIndex(term); 00036 } 00037 00038 void KDevDocumentationIface::findInFinder(QString term) 00039 { 00040 m_part->findInDocumentation(term); 00041 } 00042 00043 void KDevDocumentationIface::searchInDocumentation(QString term) 00044 { 00045 m_part->searchInDocumentation(term); 00046 } 00047 00048 void KDevDocumentationIface::lookupInIndex() 00049 { 00050 m_part->lookInDocumentationIndex(); 00051 } 00052 00053 void KDevDocumentationIface::searchInDocumentation() 00054 { 00055 m_part->searchInDocumentation(); 00056 } 00057 00058 void KDevDocumentationIface::manPage(QString term) 00059 { 00060 m_part->manPage(term); 00061 } 00062 00063 void KDevDocumentationIface::infoPage(QString term) 00064 { 00065 m_part->infoPage(term); 00066 } 00067 00068 void KDevDocumentationIface::manPage() 00069 { 00070 m_part->manPage(); 00071 } 00072 00073 void KDevDocumentationIface::infoPage() 00074 { 00075 m_part->infoPage(); 00076 } 00077 00078 void KDevDocumentationIface::findInFinder( ) 00079 { 00080 m_part->findInDocumentation(); 00081 } 00082 00083 #include "KDevDocumentationIface.moc"