Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
why3
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
120
Issues
120
List
Boards
Labels
Service Desk
Milestones
Merge Requests
17
Merge Requests
17
Operations
Operations
Incidents
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Why3
why3
Commits
b6d57935
Commit
b6d57935
authored
Jun 21, 2018
by
Guillaume Melquiond
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Synchronize menu tooltips and add mnemonics.
parent
d022141c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
src/ide/why3ide.ml
src/ide/why3ide.ml
+9
-9
No files found.
src/ide/why3ide.ml
View file @
b6d57935
...
...
@@ -2186,42 +2186,42 @@ let paste_item =
let
complete_context_menu
()
=
let
(
_
:
GMenu
.
menu_item
)
=
context_tools_factory
#
add_separator
()
in
let
context_edit_menu_item
=
create_menu_item
context_tools_factory
"Edit"
"View or edit proof script (shortcut: e)
"
in
create_menu_item
context_tools_factory
"
_
Edit"
"View or edit proof script
"
in
connect_menu_item
context_edit_menu_item
~
callback
:
(
on_selected_rows
~
multiple
:
false
~
notif_kind
:
"Edit error"
~
action
:
"edit"
(
fun
id
->
Command_req
(
id
,
"edit"
)));
let
replay_context_menu_item
=
create_menu_item
context_tools_factory
"Replay valid obsolete proofs"
"Replay valid obsolete proofs below the current node (shortcut: r)
"
in
create_menu_item
context_tools_factory
"
_
Replay valid obsolete proofs"
"Replay valid obsolete proofs under the current node
"
in
connect_menu_item
replay_context_menu_item
~
callback
:
(
on_selected_rows
~
multiple
:
false
~
notif_kind
:
"Replay error"
~
action
:
"replay"
(
fun
id
->
Command_req
(
id
,
"replay"
)));
let
replay_all_context_menu_item
=
create_menu_item
context_tools_factory
"Replay all obsolete proofs"
"Replay all obsolete proofs below
the current node"
in
"Replay all obsolete proofs under
the current node"
in
connect_menu_item
replay_all_context_menu_item
~
callback
:
(
on_selected_rows
~
multiple
:
false
~
notif_kind
:
"Replay error"
~
action
:
"replay all"
(
fun
id
->
Command_req
(
id
,
"replay all"
)));
let
context_remove_item
=
create_menu_item
context_tools_factory
"Remove"
"Remove the selected proof attempts or transformations (shortcut: del)
"
in
"Remove the selected proof attempts or transformations
"
in
connect_menu_item
context_remove_item
~
callback
:
(
on_selected_rows
~
multiple
:
true
~
notif_kind
:
"Remove_subtree error"
~
action
:
"remove"
(
fun
id
->
Remove_subtree
id
));
let
context_clean_menu_item
=
create_menu_item
context_tools_factory
"
Clean"
"Remove unsuccessful proofs or transformations that are below a proved goal (shortcut: c)
"
in
create_menu_item
context_tools_factory
"_
Clean"
"Remove unsuccessful proofs or transformations that are under a proved goal
"
in
connect_menu_item
context_clean_menu_item
~
callback
:
(
on_selected_rows
~
multiple
:
false
~
notif_kind
:
"Clean error"
~
action
:
"clean"
(
fun
id
->
Command_req
(
id
,
"clean"
)));
let
context_interrupt_item
=
create_menu_item
context_tools_factory
"Interrupt"
create_menu_item
context_tools_factory
"
_
Interrupt"
"Stop all running proof attempts"
in
connect_menu_item
context_interrupt_item
...
...
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