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

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.