File: BeaverDebugger.h

package info (click to toggle)
monkeystudio 1.9.0.4%2Bgit20161218-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 41,500 kB
  • ctags: 22,118
  • sloc: cpp: 144,671; ansic: 33,969; python: 2,922; makefile: 127; sh: 122; php: 73; cs: 69
file content (87 lines) | stat: -rw-r--r-- 2,704 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/****************************************************************************
    Copyright (C) 2005 - 2011  Filipe AZEVEDO & The Monkey Studio Team
    http://monkeystudio.org licensing under the GNU GPL.

    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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
****************************************************************************/
/*!
    \file BeaverDebugger.h
    \date 2008-01-14T00:40:08
    \author Filipe AZEVEDO, Andrei KOPATS
    \brief Header file for BeaverDebugger plugin
*/
#ifndef BEAVER_DEBUGGER
#define BEAVER_DEBUGGER

#include <pluginsmanager/DebuggerPlugin.h>

#include <QPointer>
#include <QProcess>
#include <QLabel>

class XUPProjectItem;

/*!
    Main class of BeaverDebugger plugin
    
    Plugin allows to use Beaver Debugger with MkS
*/
class BeaverDebugger : public QObject, public DebuggerPlugin
{
    Q_OBJECT
#if QT_VERSION >= 0x050000
    Q_PLUGIN_METADATA( IID "org.monkeystudio.MonkeyStudio.DebuggerPlugin/1.0" /*FILE PLUGIN_JSON*/ )
#endif
    Q_INTERFACES( BasePlugin DebuggerPlugin )
    
    enum TryFindResult
    {
        OK,
        NOT_FINISHED,
        FAILED_TO_START,
        CRASHED,
        UNKNOWN_ERROR,
        NOT_BEAVER,
    };
    
protected:  
    virtual void fillPluginInfos();
    virtual bool install(); // FIXME make protected for all plugins
    virtual bool uninstall();
public:
    virtual QWidget* settingsWidget() const;
    
    // plugin <-> settings API
    QString beaverPath(); //FIXME make const
    void setBeaverPath(const QString& path);
    
protected slots:
    void explainWhyCannot();
    void runBeaver();
    void beaverStateChanged(QProcess::ProcessState);
    // action can have text "run" and "stop" and be enabled and disabled
    void updateRunAction();
    
protected:
    QString mBeaverPath;
    QPointer<QAction> mWhyCannot;
    QPointer<QAction> mRunBeaver;
    QPointer<QProcess> mBeaverProcess;
    QPointer<QLabel> mStatusLabel;
    // Returns QString::null if found, or error, if not
    TryFindResult tryFindBeaver() const;
};

#endif