Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
80951bd0
Commit
80951bd0
authored
Jul 21, 2016
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6966 from theg4sh:linux-window-mouse-wheel-support
parents
134154ec
ecfabd7a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
77 additions
and
58 deletions
+77
-58
window_QT.cpp
modules/highgui/src/window_QT.cpp
+69
-51
window_QT.h
modules/highgui/src/window_QT.h
+4
-2
window_gtk.cpp
modules/highgui/src/window_gtk.cpp
+4
-5
No files found.
modules/highgui/src/window_QT.cpp
View file @
80951bd0
...
...
@@ -2630,17 +2630,17 @@ void DefaultViewPort::resizeEvent(QResizeEvent* evnt)
void
DefaultViewPort
::
wheelEvent
(
QWheelEvent
*
evnt
)
{
int
delta
=
evnt
->
delta
();
int
cv_event
=
-
1
;
int
flags
=
(
(
delta
&
0xffff
)
<<
16
)
|
((
evnt
->
orientation
()
==
Qt
::
Vertical
)
?
CV_EVENT_MOUSEWHEEL
:
CV_EVENT_MOUSEHWHEEL
)
;
int
cv_event
=
((
evnt
->
orientation
()
==
Qt
::
Vertical
)
?
CV_EVENT_MOUSEWHEEL
:
CV_EVENT_MOUSEHWHEEL
)
;
int
flags
=
(
delta
&
0xffff
)
<<
16
;
QPoint
pt
=
evnt
->
pos
();
icvmouseHandler
(
evnt
,
mouse_wheel
,
cv_event
,
flags
);
icvmouseProcessing
(
QPoin
g
F
(
pt
),
cv_event
,
flags
);
icvmouseHandler
(
(
QMouseEvent
*
)
evnt
,
mouse_wheel
,
cv_event
,
flags
);
icvmouseProcessing
(
QPoin
t
F
(
pt
),
cv_event
,
flags
);
scaleView
(
delta
/
240.0
,
pt
);
viewport
()
->
update
();
QWidget
::
mouseWheel
(
evnt
);
QWidget
::
wheelEvent
(
evnt
);
}
...
...
@@ -2857,7 +2857,9 @@ void DefaultViewPort::icvmouseHandler(QMouseEvent *evnt, type_mouse_event catego
Qt
::
KeyboardModifiers
modifiers
=
evnt
->
modifiers
();
Qt
::
MouseButtons
buttons
=
evnt
->
buttons
();
flags
=
0
;
// This line gives excess flags flushing, with it you cannot predefine flags value.
// icvmouseHandler called with flags == 0 where it really need.
//flags = 0;
if
(
modifiers
&
Qt
::
ShiftModifier
)
flags
|=
CV_EVENT_FLAG_SHIFTKEY
;
if
(
modifiers
&
Qt
::
ControlModifier
)
...
...
@@ -2872,23 +2874,24 @@ void DefaultViewPort::icvmouseHandler(QMouseEvent *evnt, type_mouse_event catego
if
(
buttons
&
Qt
::
MidButton
)
flags
|=
CV_EVENT_FLAG_MBUTTON
;
cv_event
=
CV_EVENT_MOUSEMOVE
;
switch
(
evnt
->
button
())
{
case
Qt
:
:
LeftButton
:
cv_event
=
tableMouseButtons
[
category
][
0
];
flags
|=
CV_EVENT_FLAG_LBUTTON
;
break
;
case
Qt
:
:
RightButton
:
cv_event
=
tableMouseButtons
[
category
][
1
];
flags
|=
CV_EVENT_FLAG_RBUTTON
;
break
;
case
Qt
:
:
MidButton
:
cv_event
=
tableMouseButtons
[
category
][
2
];
flags
|=
CV_EVENT_FLAG_MBUTTON
;
break
;
default
:
;
}
if
(
cv_event
==
-
1
)
switch
(
evnt
->
button
())
{
case
Qt
:
:
LeftButton
:
cv_event
=
tableMouseButtons
[
category
][
0
];
flags
|=
CV_EVENT_FLAG_LBUTTON
;
break
;
case
Qt
:
:
RightButton
:
cv_event
=
tableMouseButtons
[
category
][
1
];
flags
|=
CV_EVENT_FLAG_RBUTTON
;
break
;
case
Qt
:
:
MidButton
:
cv_event
=
tableMouseButtons
[
category
][
2
];
flags
|=
CV_EVENT_FLAG_MBUTTON
;
break
;
default
:
cv_event
=
CV_EVENT_MOUSEMOVE
;
}
}
...
...
@@ -3191,6 +3194,22 @@ void OpenGlViewPort::paintGL()
glDrawCallback
(
glDrawData
);
}
void
OpenGlViewPort
::
wheelEvent
(
QWheelEvent
*
evnt
)
{
int
delta
=
evnt
->
delta
();
int
cv_event
=
((
evnt
->
orientation
()
==
Qt
::
Vertical
)
?
CV_EVENT_MOUSEWHEEL
:
CV_EVENT_MOUSEHWHEEL
);
int
flags
=
(
delta
&
0xffff
)
<<
16
;
QPoint
pt
=
evnt
->
pos
();
icvmouseHandler
((
QMouseEvent
*
)
evnt
,
mouse_wheel
,
cv_event
,
flags
);
icvmouseProcessing
(
QPointF
(
pt
),
cv_event
,
flags
);
scaleView
(
delta
/
240.0
,
pt
);
viewport
()
->
update
();
QWidget
::
wheelEvent
(
evnt
);
}
void
OpenGlViewPort
::
mousePressEvent
(
QMouseEvent
*
evnt
)
{
int
cv_event
=
-
1
,
flags
=
0
;
...
...
@@ -3244,42 +3263,41 @@ void OpenGlViewPort::icvmouseHandler(QMouseEvent* evnt, type_mouse_event categor
Qt
::
KeyboardModifiers
modifiers
=
evnt
->
modifiers
();
Qt
::
MouseButtons
buttons
=
evnt
->
buttons
();
flags
=
0
;
if
(
modifiers
&
Qt
::
ShiftModifier
)
// This line gives excess flags flushing, with it you cannot predefine flags value.
// icvmouseHandler called with flags == 0 where it really need.
//flags = 0;
if
(
modifiers
&
Qt
::
ShiftModifier
)
flags
|=
CV_EVENT_FLAG_SHIFTKEY
;
if
(
modifiers
&
Qt
::
ControlModifier
)
if
(
modifiers
&
Qt
::
ControlModifier
)
flags
|=
CV_EVENT_FLAG_CTRLKEY
;
if
(
modifiers
&
Qt
::
AltModifier
)
if
(
modifiers
&
Qt
::
AltModifier
)
flags
|=
CV_EVENT_FLAG_ALTKEY
;
if
(
buttons
&
Qt
::
LeftButton
)
flags
|=
CV_EVENT_FLAG_LBUTTON
;
if
(
buttons
&
Qt
::
RightButton
)
flags
|=
CV_EVENT_FLAG_RBUTTON
;
if
(
buttons
&
Qt
::
MidButton
)
flags
|=
CV_EVENT_FLAG_MBUTTON
;
cv_event
=
CV_EVENT_MOUSEMOVE
;
switch
(
evnt
->
button
())
{
case
Qt
:
:
LeftButton
:
cv_event
=
tableMouseButtons
[
category
][
0
];
if
(
buttons
&
Qt
::
LeftButton
)
flags
|=
CV_EVENT_FLAG_LBUTTON
;
break
;
case
Qt
:
:
RightButton
:
cv_event
=
tableMouseButtons
[
category
][
1
];
if
(
buttons
&
Qt
::
RightButton
)
flags
|=
CV_EVENT_FLAG_RBUTTON
;
break
;
case
Qt
:
:
MidButton
:
cv_event
=
tableMouseButtons
[
category
][
2
];
if
(
buttons
&
Qt
::
MidButton
)
flags
|=
CV_EVENT_FLAG_MBUTTON
;
break
;
default
:
;
}
if
(
cv_event
==
-
1
)
switch
(
evnt
->
button
())
{
case
Qt
:
:
LeftButton
:
cv_event
=
tableMouseButtons
[
category
][
0
];
flags
|=
CV_EVENT_FLAG_LBUTTON
;
break
;
case
Qt
:
:
RightButton
:
cv_event
=
tableMouseButtons
[
category
][
1
];
flags
|=
CV_EVENT_FLAG_RBUTTON
;
break
;
case
Qt
:
:
MidButton
:
cv_event
=
tableMouseButtons
[
category
][
2
];
flags
|=
CV_EVENT_FLAG_MBUTTON
;
break
;
default
:
cv_event
=
CV_EVENT_MOUSEMOVE
;
}
}
...
...
modules/highgui/src/window_QT.h
View file @
80951bd0
...
...
@@ -366,12 +366,13 @@ private slots:
};
enum
type_mouse_event
{
mouse_up
=
0
,
mouse_down
=
1
,
mouse_dbclick
=
2
,
mouse_move
=
3
};
enum
type_mouse_event
{
mouse_up
=
0
,
mouse_down
=
1
,
mouse_dbclick
=
2
,
mouse_move
=
3
,
mouse_wheel
=
4
};
static
const
int
tableMouseButtons
[][
3
]
=
{
{
CV_EVENT_LBUTTONUP
,
CV_EVENT_RBUTTONUP
,
CV_EVENT_MBUTTONUP
},
//mouse_up
{
CV_EVENT_LBUTTONDOWN
,
CV_EVENT_RBUTTONDOWN
,
CV_EVENT_MBUTTONDOWN
},
//mouse_down
{
CV_EVENT_LBUTTONDBLCLK
,
CV_EVENT_RBUTTONDBLCLK
,
CV_EVENT_MBUTTONDBLCLK
},
//mouse_dbclick
{
CV_EVENT_MOUSEMOVE
,
CV_EVENT_MOUSEMOVE
,
CV_EVENT_MOUSEMOVE
}
//mouse_move
{
CV_EVENT_MOUSEMOVE
,
CV_EVENT_MOUSEMOVE
,
CV_EVENT_MOUSEMOVE
},
//mouse_move
{
0
,
0
,
0
}
//mouse_wheel, to prevent exceptions in code
};
...
...
@@ -436,6 +437,7 @@ protected:
void
resizeGL
(
int
w
,
int
h
);
void
paintGL
();
void
wheelEvent
(
QWheelEvent
*
event
);
void
mouseMoveEvent
(
QMouseEvent
*
event
);
void
mousePressEvent
(
QMouseEvent
*
event
);
void
mouseReleaseEvent
(
QMouseEvent
*
event
);
...
...
modules/highgui/src/window_gtk.cpp
View file @
80951bd0
...
...
@@ -1970,9 +1970,9 @@ static gboolean icvOnMouse( GtkWidget *widget, GdkEvent *event, gpointer user_da
#if defined(GTK_VERSION3_4)
// NOTE: in current implementation doesn't possible to put into callback function delta_x and delta_y separetely
double
delta
=
(
event
->
scroll
.
delta_x
+
event
->
scroll
.
delta_y
);
int
ori
ent
=
(
event
->
scroll
.
delta_y
!=
0
)
?
CV_EVENT_MOUSEHWHEEL
:
CV_EVENT_MOUSEWHEEL
;
cv_ev
ent
=
(
event
->
scroll
.
delta_y
!=
0
)
?
CV_EVENT_MOUSEHWHEEL
:
CV_EVENT_MOUSEWHEEL
;
#else
int
ori
ent
=
CV_EVENT_MOUSEWHEEL
;
cv_ev
ent
=
CV_EVENT_MOUSEWHEEL
;
#endif //GTK_VERSION3_4
state
=
event
->
scroll
.
state
;
...
...
@@ -1982,15 +1982,14 @@ static gboolean icvOnMouse( GtkWidget *widget, GdkEvent *event, gpointer user_da
case
GDK_SCROLL_SMOOTH
:
flags
|=
(((
int
)
delta
<<
16
));
break
;
#endif //GTK_VERSION3_4
case
GDK_SCROLL_LEFT
:
ori
ent
=
CV_EVENT_MOUSEHWHEEL
;
case
GDK_SCROLL_LEFT
:
cv_ev
ent
=
CV_EVENT_MOUSEHWHEEL
;
case
GDK_SCROLL_UP
:
flags
|=
((
-
(
int
)
1
<<
16
));
break
;
case
GDK_SCROLL_RIGHT
:
ori
ent
=
CV_EVENT_MOUSEHWHEEL
;
case
GDK_SCROLL_RIGHT
:
cv_ev
ent
=
CV_EVENT_MOUSEHWHEEL
;
case
GDK_SCROLL_DOWN
:
flags
|=
(((
int
)
1
<<
16
));
break
;
default
:
;
};
cv_event
=
orient
;
}
if
(
cv_event
>=
0
)
...
...
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