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

KDevelop Extension Interfaces Library

  • lib
  • interfaces
  • extensions
kdevmakefrontend.h
Go to the documentation of this file.
1 /* This file is part of the KDE project
2  Copyright (C) 2001 Matthias Hoelzer-Kluepfel <hoelzer@kde.org>
3  Copyright (C) 2001 Sandy Meier <smeier@kdevelop.org>
4  Copyright (C) 2001-2002 Bernd Gehrmann <bernd@kdevelop.org>
5  Copyright (C) 2002-2003 Roberto Raggi <roberto@kdevelop.org>
6  Copyright (C) 2002 Simon Hausmann <hausmann@kde.org>
7  Copyright (C) 2002 F@lk Brettschneider <falkbr@kdevelop.org>
8  Copyright (C) 2003 Amilcar do Carmo Lucas <amilcar@ida.ing.tu-bs.de>
9  Copyright (C) 2003 Hamish Rodda <rodda@kde.org>
10 
11  This library is free software; you can redistribute it and/or
12  modify it under the terms of the GNU Library General Public
13  License as published by the Free Software Foundation; either
14  version 2 of the License, or (at your option) any later version.
15 
16  This library is distributed in the hope that it will be useful,
17  but WITHOUT ANY WARRANTY; without even the implied warranty of
18  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19  Library General Public License for more details.
20 
21  You should have received a copy of the GNU Library General Public License
22  along with this library; see the file COPYING.LIB. If not, write to
23  the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
24  Boston, MA 02110-1301, USA.
25 */
26 #ifndef KDEVMAKEFRONTEND_H
27 #define KDEVMAKEFRONTEND_H
28 
29 #include <tqstringlist.h>
30 #include <kdevplugin.h>
31 
53 class KDevMakeFrontend : public KDevPlugin
54 {
55  Q_OBJECT
56 
57 
58 public:
59 
69  KDevMakeFrontend(const KDevPluginInfo *info, TQObject *parent=0, const char *name=0 )
70  :KDevPlugin(info, parent, name ? name : "KDevMakeFrontend") {}
71 
73  virtual TQWidget* widget() { return 0L; }
74 
87  virtual void queueCommand(const TQString &dir, const TQString &command) = 0;
88 
90  virtual bool isRunning() = 0;
91 
93  virtual void updateSettingsFromConfig() = 0;
94 
95 signals:
99  void commandFinished(const TQString &command);
100 
104  void commandFailed(const TQString &command);
105 };
106 
107 #endif
KDevMakeFrontend::commandFinished
void commandFinished(const TQString &command)
Only emitted if the command was succesfully finished.
KDevMakeFrontend::commandFailed
void commandFailed(const TQString &command)
Emitted if a command failed.
KDevMakeFrontend::KDevMakeFrontend
KDevMakeFrontend(const KDevPluginInfo *info, TQObject *parent=0, const char *name=0)
Constructor.
Definition: kdevmakefrontend.h:69
KDevMakeFrontend::widget
virtual TQWidget * widget()
Definition: kdevmakefrontend.h:73
KDevMakeFrontend::isRunning
virtual bool isRunning()=0
KDevMakeFrontend::updateSettingsFromConfig
virtual void updateSettingsFromConfig()=0
Advices to synchronize the settings from TDEConfig because they were changed externally.
KDevMakeFrontend
KDevelop make frontend interface.
Definition: kdevmakefrontend.h:53
KDevMakeFrontend::queueCommand
virtual void queueCommand(const TQString &dir, const TQString &command)=0
The component shall start to execute a make-like command.

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.