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
68a1b88a
Commit
68a1b88a
authored
Aug 22, 2012
by
Ilia Ryabokon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Sankore-1027 fixed extended view behaviour
parent
370e5b37
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
5 deletions
+15
-5
UBBoardController.cpp
src/board/UBBoardController.cpp
+1
-1
UBBoardView.cpp
src/board/UBBoardView.cpp
+11
-2
UBBoardView.h
src/board/UBBoardView.h
+3
-2
No files found.
src/board/UBBoardController.cpp
View file @
68a1b88a
...
@@ -158,7 +158,7 @@ void UBBoardController::setupViews()
...
@@ -158,7 +158,7 @@ void UBBoardController::setupViews()
mControlLayout
=
new
QHBoxLayout
(
mControlContainer
);
mControlLayout
=
new
QHBoxLayout
(
mControlContainer
);
mControlLayout
->
setContentsMargins
(
0
,
0
,
0
,
0
);
mControlLayout
->
setContentsMargins
(
0
,
0
,
0
,
0
);
mControlView
=
new
UBBoardView
(
this
,
mControlContainer
);
mControlView
=
new
UBBoardView
(
this
,
mControlContainer
,
true
);
mControlView
->
setInteractive
(
true
);
mControlView
->
setInteractive
(
true
);
mControlView
->
setMouseTracking
(
true
);
mControlView
->
setMouseTracking
(
true
);
...
...
src/board/UBBoardView.cpp
View file @
68a1b88a
...
@@ -62,7 +62,7 @@
...
@@ -62,7 +62,7 @@
#include "core/memcheck.h"
#include "core/memcheck.h"
UBBoardView
::
UBBoardView
(
UBBoardController
*
pController
,
QWidget
*
pParent
)
UBBoardView
::
UBBoardView
(
UBBoardController
*
pController
,
QWidget
*
pParent
,
bool
pIsControl
)
:
QGraphicsView
(
pParent
)
:
QGraphicsView
(
pParent
)
,
mController
(
pController
)
,
mController
(
pController
)
,
mIsCreatingTextZone
(
false
)
,
mIsCreatingTextZone
(
false
)
...
@@ -72,6 +72,7 @@ UBBoardView::UBBoardView (UBBoardController* pController, QWidget* pParent)
...
@@ -72,6 +72,7 @@ UBBoardView::UBBoardView (UBBoardController* pController, QWidget* pParent)
,
mLongPressInterval
(
1000
)
,
mLongPressInterval
(
1000
)
,
mIsDragInProgress
(
false
)
,
mIsDragInProgress
(
false
)
,
mMultipleSelectionIsEnabled
(
false
)
,
mMultipleSelectionIsEnabled
(
false
)
,
isControl
(
pIsControl
)
{
{
init
();
init
();
...
@@ -81,13 +82,14 @@ UBBoardView::UBBoardView (UBBoardController* pController, QWidget* pParent)
...
@@ -81,13 +82,14 @@ UBBoardView::UBBoardView (UBBoardController* pController, QWidget* pParent)
mLongPressTimer
.
setSingleShot
(
true
);
mLongPressTimer
.
setSingleShot
(
true
);
}
}
UBBoardView
::
UBBoardView
(
UBBoardController
*
pController
,
int
pStartLayer
,
int
pEndLayer
,
QWidget
*
pParent
)
UBBoardView
::
UBBoardView
(
UBBoardController
*
pController
,
int
pStartLayer
,
int
pEndLayer
,
QWidget
*
pParent
,
bool
pIscontrol
)
:
QGraphicsView
(
pParent
)
:
QGraphicsView
(
pParent
)
,
mController
(
pController
)
,
mController
(
pController
)
,
suspendedMousePressEvent
(
NULL
)
,
suspendedMousePressEvent
(
NULL
)
,
mLongPressInterval
(
1000
)
,
mLongPressInterval
(
1000
)
,
mIsDragInProgress
(
false
)
,
mIsDragInProgress
(
false
)
,
mMultipleSelectionIsEnabled
(
false
)
,
mMultipleSelectionIsEnabled
(
false
)
,
isControl
(
pIscontrol
)
{
{
init
();
init
();
...
@@ -124,6 +126,8 @@ void UBBoardView::init ()
...
@@ -124,6 +126,8 @@ void UBBoardView::init ()
setHorizontalScrollBarPolicy
(
Qt
::
ScrollBarAlwaysOff
);
setHorizontalScrollBarPolicy
(
Qt
::
ScrollBarAlwaysOff
);
setAcceptDrops
(
true
);
setAcceptDrops
(
true
);
setOptimizationFlag
(
QGraphicsView
::
IndirectPainting
);
// enable UBBoardView::drawItems filter
mTabletStylusIsPressed
=
false
;
mTabletStylusIsPressed
=
false
;
mMouseButtonIsPressed
=
false
;
mMouseButtonIsPressed
=
false
;
mPendingStylusReleaseEvent
=
false
;
mPendingStylusReleaseEvent
=
false
;
...
@@ -729,6 +733,11 @@ void UBBoardView::longPressEvent()
...
@@ -729,6 +733,11 @@ void UBBoardView::longPressEvent()
void
UBBoardView
::
mousePressEvent
(
QMouseEvent
*
event
)
void
UBBoardView
::
mousePressEvent
(
QMouseEvent
*
event
)
{
{
if
(
!
isControl
)
{
event
->
ignore
();
return
;
}
mIsDragInProgress
=
false
;
mIsDragInProgress
=
false
;
if
(
isAbsurdPoint
(
event
->
pos
()))
if
(
isAbsurdPoint
(
event
->
pos
()))
...
...
src/board/UBBoardView.h
View file @
68a1b88a
...
@@ -31,8 +31,8 @@ class UBBoardView : public QGraphicsView
...
@@ -31,8 +31,8 @@ class UBBoardView : public QGraphicsView
public
:
public
:
UBBoardView
(
UBBoardController
*
pController
,
QWidget
*
pParent
=
0
);
UBBoardView
(
UBBoardController
*
pController
,
QWidget
*
pParent
=
0
,
bool
pIsControl
=
false
);
UBBoardView
(
UBBoardController
*
pController
,
int
pStartLayer
,
int
pEndLayer
,
QWidget
*
pParent
=
0
);
UBBoardView
(
UBBoardController
*
pController
,
int
pStartLayer
,
int
pEndLayer
,
QWidget
*
pParent
=
0
,
bool
pIscontrol
=
false
);
virtual
~
UBBoardView
();
virtual
~
UBBoardView
();
UBGraphicsScene
*
scene
();
UBGraphicsScene
*
scene
();
...
@@ -147,6 +147,7 @@ class UBBoardView : public QGraphicsView
...
@@ -147,6 +147,7 @@ class UBBoardView : public QGraphicsView
bool
mIsDragInProgress
;
bool
mIsDragInProgress
;
bool
mMultipleSelectionIsEnabled
;
bool
mMultipleSelectionIsEnabled
;
bool
isControl
;
private
slots
:
private
slots
:
...
...
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