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
|
/*
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"
#include <QTimer>
using namespace KDevelop;
namespace Python {
class VariableController : public KDevelop::IVariableController
{
Q_OBJECT
public:
VariableController(IDebugSession* parent);
void addWatch(KDevelop::Variable* variable) override;
void addWatchpoint(KDevelop::Variable* variable) override;
/**
* @brief This just calls the Variable constructor and returns a new, empty \a Variable object.
**/
KDevelop::Variable* createVariable(KDevelop::TreeModel* model, KDevelop::TreeItem* parent,
const QString& expression, const QString& display = "") override;
/**
* @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
**/
KTextEditor::Range expressionRangeUnderCursor(KTextEditor::Document* doc, const KTextEditor::Cursor& cursor) override;
/**
* @brief Update locals and/or watches, as indicated by autoUpdate().
**/
void update() override;
protected:
/**
* @brief Overridden 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.
**/
void handleEvent(IDebugSession::event_t event) override;
private:
QTimer m_updateTimer;
QList<Variable*> m_watchVariables;
private slots:
/**
* @brief Parse the debugger output, and perform an update of the local variables.
**/
void localsUpdateReady(QByteArray rawData);
void _update();
};
}
#endif // VARIABLECONTROLLER_H
|