aboutsummaryrefslogtreecommitdiffstats
path: root/ethereal/assets/debugger
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-05-27 22:23:53 +0800
committerobscuren <geffobscura@gmail.com>2014-05-27 22:23:53 +0800
commit969b4a4a36c2f465de3ab980d13ec513ec6db780 (patch)
tree746adb494e1a01b5222e4af75c0ea562f0404016 /ethereal/assets/debugger
parent118860abb2c0b4b1141a79c0af09b2eb0bbc4b05 (diff)
downloaddexon-969b4a4a36c2f465de3ab980d13ec513ec6db780.tar.gz
dexon-969b4a4a36c2f465de3ab980d13ec513ec6db780.tar.zst
dexon-969b4a4a36c2f465de3ab980d13ec513ec6db780.zip
Added some shortcuts
Diffstat (limited to 'ethereal/assets/debugger')
-rw-r--r--ethereal/assets/debugger/debugger.qml23
1 files changed, 22 insertions, 1 deletions
diff --git a/ethereal/assets/debugger/debugger.qml b/ethereal/assets/debugger/debugger.qml
index 9ea131d7d..7c3ffbceb 100644
--- a/ethereal/assets/debugger/debugger.qml
+++ b/ethereal/assets/debugger/debugger.qml
@@ -14,6 +14,23 @@ ApplicationWindow {
width: 1290
height: 900
+ MenuBar {
+ Menu {
+ title: "Debugger"
+ MenuItem {
+ text: "Run"
+ shortcut: "Ctrl+r"
+ onTriggered: debugCurrent()
+ }
+
+ MenuItem {
+ text: "Next"
+ shortcut: "Ctrl+n"
+ onTriggered: dbg.next()
+ }
+ }
+ }
+
SplitView {
anchors.fill: parent
property var asmModel: ListModel {
@@ -158,7 +175,7 @@ ApplicationWindow {
property var enabled: true
id: debugStart
onClicked: {
- dbg.debug(txValue.text, txGas.text, txGasPrice.text, codeEditor.text, rawDataField.text)
+ debugCurrent()
}
text: "Debug"
}
@@ -174,6 +191,10 @@ ApplicationWindow {
}
}
+ function debugCurrent() {
+ dbg.debug(txValue.text, txGas.text, txGasPrice.text, codeEditor.text, rawDataField.text)
+ }
+
function setAsm(asm) {
asmModel.append({asm: asm})
}
gnome/commit/lang/python27?id=be392a99446be20a88313f32d551750d0a3493e7'>Explicitly enable IPv6 support.tg2002-04-021-2/+8 * Fix sizeof(wchar_t) calculation.tg2002-01-211-0/+10 * Implement PyObject_DelItemString(), which was obviously forgotten fortg2002-01-162-0/+57 * Upgrade lang/python to 2.2. Adjust bsd.python.mk accordingly.tg2002-01-074-134/+346 * Re-add fpectl.so to the plist to fix packaging. Re-enable supporttg2001-11-202-2/+2 * Don't build mpz extension, it's moved to a separate port.tg2001-10-193-10/+3 * Depend on math/libgmp when running a recent -current.tg2001-09-251-0/+6 * Upgrade to 2.1.1.tg2001-07-253-2/+10 * Upgrade to 2.1.tg2001-05-0212-1169/+876 * Fix building on -current.tg2001-04-261-0/+38 * -pthread --> ${PTHREAD_LIBS}sobomax2001-03-301-2/+2 * Allow MAINTAINER to be redefined in a slave port.sobomax2001-03-291-1/+1 * MASTER_SITE changed.tg2000-12-071-1/+2 * Install Demo/ dir to $PREFIX/share/examples/python.tg2000-11-292-3/+325 * Fix compilation on FreeBSD-3.x.tg2000-11-13