mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-05-23 11:06:34 +08:00
Merge remote-tracking branch 'origin/GP-6417_d-millar_move_buttons'
(Closes #8937)
This commit is contained in:
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -30,7 +30,7 @@ interface DisconnectAction extends ControlAction {
|
||||
String DESCRIPTION = "Close the connection to the debugging agent";
|
||||
Icon ICON = DebuggerResources.ICON_DISCONNECT;
|
||||
String HELP_ANCHOR = "target_disconnect";
|
||||
int SUB_GROUP = 3;
|
||||
int SUB_GROUP = 11;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_K,
|
||||
KeyEvent.CTRL_DOWN_MASK | KeyEvent.ALT_DOWN_MASK);
|
||||
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -31,7 +31,7 @@ interface EmulateSkipOverAction extends ControlAction {
|
||||
"Skip the integrated emulator a single instruction, ignoring its effects";
|
||||
Icon ICON = DebuggerResources.ICON_SKIP_OVER;
|
||||
String HELP_ANCHOR = "emu_skip_over";
|
||||
int SUB_GROUP = 7;
|
||||
int SUB_GROUP = 5;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_F10, KeyEvent.CTRL_DOWN_MASK);
|
||||
|
||||
static ActionBuilder builder(Plugin owner) {
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -30,7 +30,7 @@ interface EmulateStepBackAction extends ControlAction {
|
||||
String DESCRIPTION = "Step the integrated emulator a single instruction backward";
|
||||
Icon ICON = DebuggerResources.ICON_STEP_BACK;
|
||||
String HELP_ANCHOR = "emu_step_back";
|
||||
int SUB_GROUP = 4;
|
||||
int SUB_GROUP = 2;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_F7, 0);
|
||||
|
||||
static ActionBuilder builder(Plugin owner) {
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -24,6 +24,6 @@ import ghidra.app.plugin.core.debug.gui.DebuggerResources;
|
||||
|
||||
interface StepIntoAction extends ControlAction {
|
||||
Icon ICON = DebuggerResources.ICON_STEP_INTO;
|
||||
int SUB_GROUP = 5;
|
||||
int SUB_GROUP = 3;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_F8, 0);
|
||||
}
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -29,7 +29,7 @@ interface TargetKillAction extends ControlAction {
|
||||
String DESCRIPTION = "Kill the target";
|
||||
Icon ICON = DebuggerResources.ICON_KILL;
|
||||
String HELP_ANCHOR = "target_kill";
|
||||
int SUB_GROUP = 2;
|
||||
int SUB_GROUP = 10;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_K,
|
||||
KeyEvent.CTRL_DOWN_MASK | KeyEvent.SHIFT_DOWN_MASK);
|
||||
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -27,7 +27,7 @@ import ghidra.util.HelpLocation;
|
||||
interface TargetStepExtAction extends ControlAction {
|
||||
Icon ICON = DebuggerResources.ICON_STEP_LAST;
|
||||
String HELP_ANCHOR = "target_step_ext";
|
||||
int SUB_GROUP = 9;
|
||||
int SUB_GROUP = 7;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_F8, KeyEvent.CTRL_DOWN_MASK);
|
||||
|
||||
static ActionBuilder builder(String name, DebuggerControlPlugin owner) {
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -29,7 +29,7 @@ interface TargetStepOutAction extends ControlAction {
|
||||
String DESCRIPTION = "Step the target out";
|
||||
Icon ICON = DebuggerResources.ICON_STEP_FINISH;
|
||||
String HELP_ANCHOR = "target_step_out";
|
||||
int SUB_GROUP = 8;
|
||||
int SUB_GROUP = 6;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_F12, 0);
|
||||
|
||||
static TargetActionBuilder builder(DebuggerControlPlugin owner) {
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -29,7 +29,7 @@ interface TargetStepOverAction extends ControlAction {
|
||||
String DESCRIPTION = "Step the target over";
|
||||
Icon ICON = DebuggerResources.ICON_STEP_OVER;
|
||||
String HELP_ANCHOR = "target_step_over";
|
||||
int SUB_GROUP = 6;
|
||||
int SUB_GROUP = 4;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_F10, 0);
|
||||
|
||||
static TargetActionBuilder builder(DebuggerControlPlugin owner) {
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -30,7 +30,7 @@ interface TraceSnapBackwardAction extends ControlAction {
|
||||
String DESCRIPTION = "Navigate the trace recording backward one snapshot";
|
||||
Icon ICON = DebuggerResources.ICON_SNAP_BACKWARD;
|
||||
String HELP_ANCHOR = "trace_snap_backward";
|
||||
int SUB_GROUP = 10;
|
||||
int SUB_GROUP = 8;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_F7, 0);
|
||||
|
||||
static ActionBuilder builder(Plugin owner) {
|
||||
|
||||
+3
-3
@@ -4,9 +4,9 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
@@ -30,7 +30,7 @@ interface TraceSnapForwardAction extends ControlAction {
|
||||
String DESCRIPTION = "Navigate the trace recording forward one snapshot";
|
||||
Icon ICON = DebuggerResources.ICON_SNAP_FORWARD;
|
||||
String HELP_ANCHOR = "trace_snap_backward";
|
||||
int SUB_GROUP = 11;
|
||||
int SUB_GROUP = 9;
|
||||
KeyStroke KEY_BINDING = KeyStroke.getKeyStroke(KeyEvent.VK_F8, 0);
|
||||
|
||||
static ActionBuilder builder(Plugin owner) {
|
||||
|
||||
Reference in New Issue
Block a user