-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariablecontroller.h
More file actions
76 lines (63 loc) · 2.78 KB
/
Copy pathvariablecontroller.h
File metadata and controls
76 lines (63 loc) · 2.78 KB
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
/*
This file is part of kdev-python, the python language plugin for KDevelop
Copyright (C) 2012 Sven Brauch <svenbrauch@googlemail.com>
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, see <http://www.gnu.org/licenses/>.
*/
#ifndef VARIABLECONTROLLER_H
#define VARIABLECONTROLLER_H
#include <debugger/interfaces/ivariablecontroller.h>
#include <debugger/interfaces/idebugsession.h>
#include "variable.h"
using namespace KDevelop;
namespace Python {
class VariableController : public KDevelop::IVariableController
{
Q_OBJECT
public:
VariableController(IDebugSession* parent);
virtual void addWatch(KDevelop::Variable* variable);
virtual void addWatchpoint(KDevelop::Variable* variable);
/**
* @brief This just calls the Variable constructor and returns a new, empty \a Variable object.
**/
virtual KDevelop::Variable* createVariable(KDevelop::TreeModel* model, KDevelop::TreeItem* parent, const QString& expression, const QString& display = "");
/**
* @brief Mini-parser which gives the expression under the cursor.
* Example: _I_ = cursor
* self.fo_I_obar(something) # should return "self.foobar"
* self.foobar(some_I_thing) # should return "something"
* The expressions returned by this are "print"ed by the debugger, and then displayed in the tooltip.
* @param doc The document to operate on
* @param cursor the cursor position
* @return The expression to print. Should be an (at least syntactically) valid python expression
**/
virtual QString expressionUnderCursor(KTextEditor::Document* doc, const KTextEditor::Cursor& cursor);
/**
* @brief Update locals and/or watches, as indicated by autoUpdate().
**/
virtual void update();
protected:
/**
* @brief Overriden to handle frame change events (when the user clicks the frame list).
* This then enqueues many "up" or "down" commands to react to the frame change.
**/
virtual void handleEvent(IDebugSession::event_t event);
private:
QList<Variable*> m_watchVariables;
private slots:
/**
* @brief Parse the debugger output, and perform an update of the local variables.
**/
void localsUpdateReady(QByteArray rawData);
};
}
#endif // VARIABLECONTROLLER_H