Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
969b4a4a
Commit
969b4a4a
authored
May 27, 2014
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some shortcuts
parent
118860ab
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
32 additions
and
1 deletion
+32
-1
debugger.qml
ethereal/assets/debugger/debugger.qml
+22
-1
wallet.qml
ethereal/assets/qml/wallet.qml
+10
-0
No files found.
ethereal/assets/debugger/debugger.qml
View file @
969b4a4a
...
...
@@ -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
:
{
d
bg
.
debug
(
txValue
.
text
,
txGas
.
text
,
txGasPrice
.
text
,
codeEditor
.
text
,
rawDataField
.
text
)
d
ebugCurrent
(
)
}
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
})
}
...
...
ethereal/assets/qml/wallet.qml
View file @
969b4a4a
...
...
@@ -24,11 +24,21 @@ ApplicationWindow {
shortcut
:
"Ctrl+o"
onTriggered
:
openAppDialog
.
open
()
}
}
Menu
{
title
:
"Tools"
MenuItem
{
text
:
"Muted"
shortcut
:
"Ctrl+e"
onTriggered
:
ui
.
muted
(
""
)
}
MenuItem
{
text
:
"Debugger"
shortcut
:
"Ctrl+d"
onTriggered
:
ui
.
startDebugger
()
}
}
Menu
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment