• Skip to content
  • Skip to link menu
Trinity API Reference
  • Trinity API Reference
  • KDevelop Extension Interfaces Library
 

KDevelop Extension Interfaces Library

  • lib
  • interfaces
  • extensions
  • dcop
KDevAppFrontendIface.cpp
1 
2 
3 /* This file is part of the KDE project
4  Copyright (C) 2001 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
5  Copyright (C) 2002 Roberto Raggi <roberto@kdevelop.org>
6  Copyright (C) 2002 Bernd Gehrmann <bernd@kdevelop.org>
7  Copyright (C) 2003 Amilcar do Carmo Lucas <amilcar@ida.ing.tu-bs.de>
8 
9  This library is free software; you can redistribute it and/or
10  modify it under the terms of the GNU Library General Public
11  License as published by the Free Software Foundation; either
12  version 2 of the License, or (at your option) any later version.
13 
14  This library is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  Library General Public License for more details.
18 
19  You should have received a copy of the GNU Library General Public License
20  along with this library; see the file COPYING.LIB. If not, write to
21  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
22  Boston, MA 02110-1301, USA.
23 */
24 #include "KDevAppFrontendIface.h"
25 #include "kdevappfrontend.h"
26 
27 
28 KDevAppFrontendIface::KDevAppFrontendIface(KDevAppFrontend *appFrontend)
29  : DCOPObject("KDevAppFrontend"), m_appFrontend(appFrontend)
30 {
31 }
32 
33 
34 KDevAppFrontendIface::~KDevAppFrontendIface()
35 {}
36 
37 
38 void KDevAppFrontendIface::startAppCommand(const TQString &directory, const TQString &command, bool inTerminal)
39 {
40  m_appFrontend->startAppCommand(directory, command, inTerminal);
41 }
42 
43 void KDevAppFrontendIface::stopApplication( )
44 {
45  m_appFrontend->stopApplication();
46 }
47 
48 bool KDevAppFrontendIface::isRunning( )
49 {
50  return m_appFrontend->isRunning();
51 }
52 
53 void KDevAppFrontendIface::clearView( )
54 {
55  m_appFrontend->clearView();
56 }
57 
58 void KDevAppFrontendIface::insertStderrLine( const TQCString & line )
59 {
60  m_appFrontend->insertStderrLine(line);
61 }
62 
63 void KDevAppFrontendIface::insertStdoutLine( const TQCString & line )
64 {
65  m_appFrontend->insertStdoutLine(line);
66 }
67 
68 void KDevAppFrontendIface::addPartialStderrLine( const TQCString& line )
69 {
70  m_appFrontend->addPartialStderrLine(line);
71 }
72 
73 void KDevAppFrontendIface::addPartialStdoutLine( const TQCString& line )
74 {
75  m_appFrontend->addPartialStdoutLine(line);
76 }
KDevAppFrontend
Application frontend interface.
Definition: kdevappfrontend.h:57
kdevappfrontend.h
Application frontend interface.

KDevelop Extension Interfaces Library

Skip menu "KDevelop Extension Interfaces Library"
  • Main Page
  • Alphabetical List
  • Class List
  • File List
  • Class Members

KDevelop Extension Interfaces Library

Skip menu "KDevelop Extension Interfaces Library"
  • buildtools
  •   lib
  •     base
  •     parsers
  •       autotools
  •       qmake
  •     widgets
  •   api
  • languages
  •   lib
  •     debugger
  •     designer_integration
  •     interfaces
  • lib
  •   catalog
  •   interfaces
  •     extensions
  •     external
  •     extras
  •   util
  •   widgets
  •     propeditor
  • parts
  •   documentation
  •     interfaces
  • src
  •   profileengine
  •     lib
Generated for KDevelop Extension Interfaces Library by doxygen 1.8.13
This website is maintained by Timothy Pearson.