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
c67392ea
Commit
c67392ea
authored
Aug 27, 2012
by
Aleksei Kanash
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Multiple selection is disabled after application restore. (ctrl+h was enables multiple selection).
parent
afb25711
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
31 additions
and
13 deletions
+31
-13
UBBoardView.cpp
src/board/UBBoardView.cpp
+22
-13
UBBoardView.h
src/board/UBBoardView.h
+3
-0
UBApplication.cpp
src/core/UBApplication.cpp
+6
-0
No files found.
src/board/UBBoardView.cpp
View file @
c67392ea
...
...
@@ -214,7 +214,7 @@ UBBoardView::keyPressEvent (QKeyEvent *event)
case
Qt
:
:
Key_Control
:
case
Qt
:
:
Key_Shift
:
{
mMultipleSelectionIsEnabled
=
true
;
setMultiselection
(
true
)
;
}
break
;
}
...
...
@@ -274,6 +274,10 @@ UBBoardView::keyPressEvent (QKeyEvent *event)
}
}
}
// if ctrl of shift was pressed combined with other keys - we need to disable multiple selection.
if
(
event
->
isAccepted
())
setMultiselection
(
false
);
}
...
...
@@ -284,7 +288,7 @@ void UBBoardView::keyReleaseEvent(QKeyEvent *event)
if
(
Qt
::
Key_Shift
==
event
->
key
()
||
Qt
::
Key_Control
==
event
->
key
())
{
mMultipleSelectionIsEnabled
=
false
;
setMultiselection
(
false
)
;
}
}
...
...
@@ -459,7 +463,7 @@ void UBBoardView::handleItemsSelection(QGraphicsItem *item)
// if we need to uwe multiple selection - we shouldn't deselect other items.
if
(
!
mMultipleSelectionIsEnabled
)
if
(
!
isMultipleSelectionEnabled
()
)
{
// here we need to determine what item is pressed. We should work
// only with UB items.
...
...
@@ -627,8 +631,8 @@ QGraphicsItem* UBBoardView::determineItemToPress(QGraphicsItem *item)
{
UBStylusTool
::
Enum
currentTool
=
(
UBStylusTool
::
Enum
)
UBDrawingController
::
drawingController
()
->
stylusTool
();
// groups should should be moved instead of strokes groups
if
(
item
->
parentItem
()
&&
UBGraphicsStrokesGroup
::
Type
==
item
->
type
())
// groups should should be moved instead of strokes groups
if
(
item
->
parentItem
()
&&
UBGraphicsStrokesGroup
::
Type
==
item
->
type
())
return
item
->
parentItem
();
// if item is on group and froup is not selected - group should take press.
...
...
@@ -687,14 +691,14 @@ void UBBoardView::handleItemMousePress(QMouseEvent *event)
{
mLastPressedMousePos
=
mapToScene
(
event
->
pos
());
// Determining item who will take mouse press event
//all other items will be deselected and if all item will be deselected, then
// wrong item can catch mouse press. because selected items placed on the top
QGraphicsItem
*
pressedItem
=
determineItemToPress
(
movingItem
);
handleItemsSelection
(
movingItem
);
// Determining item who will take mouse press event
//all other items will be deselected and if all item will be deselected, then
// wrong item can catch mouse press. because selected items placed on the top
QGraphicsItem
*
pressedItem
=
determineItemToPress
(
movingItem
);
handleItemsSelection
(
movingItem
);
if
(
mMultipleSelectionIsEnabled
)
if
(
isMultipleSelectionEnabled
()
)
return
;
if
(
itemShouldReceiveMousePressEvent
(
movingItem
))
...
...
@@ -792,6 +796,11 @@ void UBBoardView::moveRubberedItems(QPointF movingVector)
scene
()
->
invalidate
(
invalidateRect
);
}
void
UBBoardView
::
setMultiselection
(
bool
enable
)
{
mMultipleSelectionIsEnabled
=
enable
;
}
void
UBBoardView
::
longPressEvent
()
{
UBDrawingController
*
drawingController
=
UBDrawingController
::
drawingController
();
...
...
@@ -1090,7 +1099,7 @@ UBBoardView::mouseReleaseEvent (QMouseEvent *event)
!
(
movingItem
->
parentItem
()
&&
UBGraphicsW3CWidgetItem
::
Type
==
movingItem
->
type
()
&&
UBGraphicsGroupContainerItem
::
Type
==
movingItem
->
parentItem
()
->
type
()))
{
bReleaseIsNeed
=
false
;
if
(
movingItem
->
isSelected
()
&&
mMultipleSelectionIsEnabled
)
if
(
movingItem
->
isSelected
()
&&
isMultipleSelectionEnabled
()
)
movingItem
->
setSelected
(
false
);
else
{
...
...
src/board/UBBoardView.h
View file @
c67392ea
...
...
@@ -44,6 +44,9 @@ class UBBoardView : public QGraphicsView
void
rubberItems
();
void
moveRubberedItems
(
QPointF
movingVector
);
void
setMultiselection
(
bool
enable
);
bool
isMultipleSelectionEnabled
()
{
return
mMultipleSelectionIsEnabled
;
}
signals
:
void
resized
(
QResizeEvent
*
event
);
...
...
src/core/UBApplication.cpp
View file @
c67392ea
...
...
@@ -582,6 +582,12 @@ bool UBApplication::eventFilter(QObject *obj, QEvent *event)
boardController
->
controlView
()
->
forcedTabletRelease
();
}
if
(
event
->
type
()
==
QEvent
::
ApplicationActivate
)
{
boardController
->
controlView
()
->
setMultiselection
(
false
);
}
#ifdef Q_WS_MAC
if
(
bIsMinimized
&&
event
->
type
()
==
QEvent
::
ApplicationActivate
){
if
(
mainWindow
->
isHidden
())
mainWindow
->
show
();
...
...
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