Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
frama-c
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pub
frama-c
Commits
c46d61a8
Commit
c46d61a8
authored
2 years ago
by
David Bühler
Browse files
Options
Downloads
Patches
Plain Diff
[Ivette] Shows a message in the status bar when multiple markers are selected.
parent
77661feb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
ivette/src/frama-c/states.ts
+9
-0
9 additions, 0 deletions
ivette/src/frama-c/states.ts
with
9 additions
and
0 deletions
ivette/src/frama-c/states.ts
+
9
−
0
View file @
c46d61a8
...
...
@@ -38,6 +38,7 @@ import { Client, useModel } from 'dome/table/models';
import
{
CompactModel
}
from
'
dome/table/arrays
'
;
import
*
as
Ast
from
'
frama-c/kernel/api/ast
'
;
import
*
as
Server
from
'
./server
'
;
import
*
as
Status
from
'
frama-c/kernel/Status
'
;
// --------------------------------------------------------------------------
// --- Pretty Printing (Browser Console)
...
...
@@ -789,6 +790,14 @@ export function useSelection(): [Selection, (a: SelectionActions) => void] {
const
[
current
,
setCurrent
]
=
useGlobalState
(
GlobalSelection
);
const
callback
=
React
.
useCallback
((
action
)
=>
{
setCurrent
(
reducer
(
current
,
action
));
if
(
isMultipleSelect
(
action
))
{
const
l
=
action
.
locations
.
length
;
const
markers
=
(
l
>
1
)
?
`
${
l
}
markers selected, listed in the 'Locations' panel`
:
(
l
===
1
)
?
`1 marker selected`
:
`no markers selected`
;
const
text
=
`
${
action
.
name
}
:
${
markers
}
`
;
Status
.
setMessage
({
text
,
title
:
action
.
title
,
kind
:
'
success
'
});
}
},
[
current
,
setCurrent
]);
return
[
current
,
callback
];
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment