debugger: add a line edit to the log input pane

That should make the possibility to use it as input more obvious.
This commit is contained in:
hjk
2011-02-16 12:12:09 +01:00
parent 467c13e11c
commit e360083427
2 changed files with 39 additions and 7 deletions

View File

@@ -38,6 +38,7 @@
QT_BEGIN_NAMESPACE
class QCursor;
class QLabel;
class QLineEdit;
class QPlainTextEdit;
QT_END_NAMESPACE
@@ -63,6 +64,7 @@ public:
public slots:
void clearContents();
void sendCommand();
void showOutput(int channel, const QString &output);
void showInput(int channel, const QString &input);
@@ -74,6 +76,7 @@ private:
QPlainTextEdit *m_combinedText; // combined input/output
QPlainTextEdit *m_inputText; // scriptable input alone
QLineEdit *m_commandEdit;
QLabel *m_commandLabel;
};