aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/debugger/console/consoleedit.h
blob: 0ff811786bebd4e1cedeaba315e4a7e9caa80f9f (plain)
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
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0+ OR GPL-3.0 WITH Qt-GPL-exception-1.0

#pragma once

#include <QModelIndex>
#include <QString>
#include <QTextEdit>

namespace Debugger::Internal {

class ConsoleEdit : public QTextEdit
{
    Q_OBJECT

public:
    ConsoleEdit(const QModelIndex &index, QWidget *parent);
    QString getCurrentScript() const;

protected:
    void keyPressEvent(QKeyEvent *e) override;
    void focusOutEvent(QFocusEvent *e) override;

signals:
    void editingFinished();

protected:
    void handleUpKey();
    void handleDownKey();
    void replaceCurrentScript(const QString &script);

private:
    QModelIndex m_historyIndex;
    QString m_cachedScript;
};

} // Debugger::Internal