Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
plugin-GUI
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
yehaojie
plugin-GUI
Commits
adb12a05
Commit
adb12a05
authored
9 years ago
by
jvoigts
Browse files
Options
Downloads
Patches
Plain Diff
fixed clippiing warning display bug
parent
fae727b8
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
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
+14
-5
14 additions, 5 deletions
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
with
14 additions
and
5 deletions
Source/Plugins/LfpDisplayNode/LfpDisplayCanvas.cpp
+
14
−
5
View file @
adb12a05
...
...
@@ -1948,9 +1948,18 @@ void LfpChannelDisplay::pxPaint()
Image
::
BitmapData
bdLfpChannelBitmap
(
display
->
lfpChannelBitmap
,
0
,
0
,
display
->
lfpChannelBitmap
.
getWidth
(),
display
->
lfpChannelBitmap
.
getHeight
());
int
center
=
getHeight
()
/
2
;
int
jfrom_wholechannel
=
(
int
)
(
getY
()
+
center
-
channelHeight
/
2
)
+
1
;
int
jto_wholechannel
=
(
int
)
getY
()
+
center
+
channelHeight
/
2
;
// max and min of channel in absolute px coords for event displays etc - actual data might be drawn outside of this range
int
jfrom_wholechannel
=
(
int
)
(
getY
()
+
center
-
channelHeight
/
2
)
+
1
+
0
;
int
jto_wholechannel
=
(
int
)
(
getY
()
+
center
+
channelHeight
/
2
)
-
0
;
// max and min of channel, this is the range where actual data is drawn
int
jfrom_wholechannel_clip
=
(
int
)
(
getY
()
+
center
-
(
channelHeight
)
*
canvas
->
channelOverlapFactor
)
+
1
;
int
jto_wholechannel_clip
=
(
int
)
(
getY
()
+
center
+
(
channelHeight
)
*
canvas
->
channelOverlapFactor
)
-
0
;
if
(
jfrom_wholechannel
<
0
)
{
jfrom_wholechannel
=
0
;};
if
(
jto_wholechannel
>=
display
->
lfpChannelBitmap
.
getHeight
())
{
jto_wholechannel
=
display
->
lfpChannelBitmap
.
getHeight
()
-
1
;};
...
...
@@ -2170,13 +2179,13 @@ void LfpChannelDisplay::pxPaint()
}
// now draw warnings, if needed
if
(
canvas
->
drawClipWarning
)
// draw warning
s
if display cuts off data
if
(
canvas
->
drawClipWarning
)
// draw
simple
warning if display cuts off data
{
if
(
clipWarningHi
)
{
for
(
int
j
=
0
;
j
<=
1
;
j
++
)
{
int
clipmarker
=
-
3
+
j
+
getY
()
-
(
getHeight
()
/
channelHeightFloat
)
+
getHeight
()
+
channelHeightFloat
/
2
;
int
clipmarker
=
jto_wholechannel_clip
;
if
(
clipmarker
>
0
&
clipmarker
<
display
->
lfpChannelBitmap
.
getHeight
()){
bdLfpChannelBitmap
.
setPixelColour
(
i
,
clipmarker
,
Colour
(
255
,
255
,
255
));
...
...
@@ -2187,7 +2196,7 @@ void LfpChannelDisplay::pxPaint()
if
(
clipWarningLo
)
{
for
(
int
j
=
0
;
j
<=
1
;
j
++
)
{
int
clipmarker
=
2
+
j
+
getY
()
+
(
getHeight
()
/
channelHeightFloat
)
-
channelHeightFloat
/
2
;
int
clipmarker
=
jfrom_wholechannel_clip
;
if
(
clipmarker
>
0
&
clipmarker
<
display
->
lfpChannelBitmap
.
getHeight
()){
bdLfpChannelBitmap
.
setPixelColour
(
i
,
clipmarker
,
Colour
(
255
,
255
,
255
));
...
...
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