Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
OpenBoard
Project
Project
Details
Activity
Releases
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
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lifo
Nicolas Ollinger
OpenBoard
Commits
f01bc840
Commit
f01bc840
authored
Oct 19, 2011
by
shibakaneki
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Sankore/Sankore-3.1
parents
191e21ee
5683ee7a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
30 additions
and
7 deletions
+30
-7
UBSvgSubsetAdaptor.cpp
src/adaptors/UBSvgSubsetAdaptor.cpp
+1
-0
UBBoardView.cpp
src/board/UBBoardView.cpp
+24
-5
UBGraphicsItemDelegate.cpp
src/domain/UBGraphicsItemDelegate.cpp
+2
-2
UBGraphicsProxyWidget.cpp
src/domain/UBGraphicsProxyWidget.cpp
+3
-0
No files found.
src/adaptors/UBSvgSubsetAdaptor.cpp
View file @
f01bc840
...
@@ -2415,6 +2415,7 @@ UBGraphicsCurtainItem* UBSvgSubsetAdaptor::UBSvgSubsetReader::curtainItemFromSvg
...
@@ -2415,6 +2415,7 @@ UBGraphicsCurtainItem* UBSvgSubsetAdaptor::UBSvgSubsetReader::curtainItemFromSvg
QRectF
rect
=
curtainItem
->
rect
();
QRectF
rect
=
curtainItem
->
rect
();
rect
.
setWidth
(
svgWidth
.
toString
().
toFloat
());
rect
.
setWidth
(
svgWidth
.
toString
().
toFloat
());
rect
.
setHeight
(
svgHeight
.
toString
().
toFloat
());
rect
.
setHeight
(
svgHeight
.
toString
().
toFloat
());
rect
.
translate
(
-
rect
.
center
());
curtainItem
->
setRect
(
rect
);
curtainItem
->
setRect
(
rect
);
...
...
src/board/UBBoardView.cpp
View file @
f01bc840
...
@@ -634,18 +634,38 @@ UBBoardView::mouseDoubleClickEvent (QMouseEvent *event)
...
@@ -634,18 +634,38 @@ UBBoardView::mouseDoubleClickEvent (QMouseEvent *event)
}
}
void
void
UBBoardView
::
wheelEvent
(
QWheelEvent
*
e
vent
)
UBBoardView
::
wheelEvent
(
QWheelEvent
*
wheelE
vent
)
{
{
if
(
isInteractive
()
&&
e
vent
->
orientation
()
==
Qt
::
Vertical
)
if
(
isInteractive
()
&&
wheelE
vent
->
orientation
()
==
Qt
::
Vertical
)
{
{
// Too many wheelEvent are sent, how should we handle them to "smoothly" zoom ?
// Too many wheelEvent are sent, how should we handle them to "smoothly" zoom ?
// something like zoom( pow(zoomFactor, event->delta() / 120) )
// something like zoom( pow(zoomFactor, event->delta() / 120) )
// use DateTime man, store last event time, and if if less than 300ms than this is one big scroll
// use DateTime man, store last event time, and if if less than 300ms than this is one big scroll
// and move scroll with one const speed.
// and move scroll with one const speed.
// so, you no will related with scroll event count
// so, you no will related with scroll event count
}
}
// event->accept ();
QGraphicsView
::
wheelEvent
(
event
);
QList
<
QGraphicsItem
*>
selItemsList
=
scene
()
->
selectedItems
();
// if NO have selected items, than no need process mouse wheel. just exist
if
(
selItemsList
.
count
()
>
0
)
{
// only one selected item possible, so we will work with first item only
QGraphicsItem
*
selItem
=
selItemsList
[
0
];
// get items list under mouse cursor
QPointF
scenePos
=
mapToScene
(
wheelEvent
->
pos
());
QList
<
QGraphicsItem
*>
itemsList
=
scene
()
->
items
(
scenePos
);
QBool
isSlectedAndMouseHower
=
itemsList
.
contains
(
selItem
);
if
(
isSlectedAndMouseHower
)
{
wheelEvent
->
accept
();
QGraphicsView
::
wheelEvent
(
wheelEvent
);
}
}
}
}
void
void
...
@@ -895,4 +915,3 @@ UBBoardView::setToolCursor (int tool)
...
@@ -895,4 +915,3 @@ UBBoardView::setToolCursor (int tool)
}
}
}
}
src/domain/UBGraphicsItemDelegate.cpp
View file @
f01bc840
...
@@ -195,12 +195,12 @@ bool UBGraphicsItemDelegate::weelEvent(QGraphicsSceneWheelEvent *event)
...
@@ -195,12 +195,12 @@ bool UBGraphicsItemDelegate::weelEvent(QGraphicsSceneWheelEvent *event)
{
{
if
(
mDelegated
->
isSelected
()
)
if
(
mDelegated
->
isSelected
()
)
{
{
event
->
accept
();
//
event->accept();
return
true
;
return
true
;
}
}
else
else
{
{
event
->
ignore
();
//
event->ignore();
return
false
;
return
false
;
}
}
}
}
...
...
src/domain/UBGraphicsProxyWidget.cpp
View file @
f01bc840
...
@@ -105,7 +105,10 @@ void UBGraphicsProxyWidget::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
...
@@ -105,7 +105,10 @@ void UBGraphicsProxyWidget::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
void
UBGraphicsProxyWidget
::
wheelEvent
(
QGraphicsSceneWheelEvent
*
event
)
void
UBGraphicsProxyWidget
::
wheelEvent
(
QGraphicsSceneWheelEvent
*
event
)
{
{
if
(
mDelegate
->
weelEvent
(
event
)
)
if
(
mDelegate
->
weelEvent
(
event
)
)
{
QGraphicsProxyWidget
::
wheelEvent
(
event
);
QGraphicsProxyWidget
::
wheelEvent
(
event
);
event
->
accept
();
}
}
}
...
...
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