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
15cfae37
Commit
15cfae37
authored
Oct 10, 2011
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SANKORE-283 fix cursor switching
parent
0d12a175
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
134 additions
and
48 deletions
+134
-48
UBBoardView.cpp
src/board/UBBoardView.cpp
+3
-3
UBDrawingController.cpp
src/board/UBDrawingController.cpp
+0
-1
UBDesktopAnnotationController.cpp
src/desktop/UBDesktopAnnotationController.cpp
+125
-44
UBDesktopAnnotationController.h
src/desktop/UBDesktopAnnotationController.h
+6
-0
No files found.
src/board/UBBoardView.cpp
View file @
15cfae37
...
@@ -532,10 +532,10 @@ UBBoardView::mouseMoveEvent (QMouseEvent *event)
...
@@ -532,10 +532,10 @@ UBBoardView::mouseMoveEvent (QMouseEvent *event)
void
void
UBBoardView
::
mouseReleaseEvent
(
QMouseEvent
*
event
)
UBBoardView
::
mouseReleaseEvent
(
QMouseEvent
*
event
)
{
{
UBStylusTool
::
Enum
currentTool
=
(
UBStylusTool
::
Enum
)
UBDrawingController
::
drawingController
()
->
stylusTool
();
UBStylusTool
::
Enum
currentTool
=
(
UBStylusTool
::
Enum
)
UBDrawingController
::
drawingController
()
->
stylusTool
();
scene
()
->
setToolCursor
(
currentTool
);
scene
()
->
setToolCursor
(
currentTool
);
setToolCursor
(
currentTool
);
setToolCursor
(
currentTool
);
// first propagate device release to the scene
// first propagate device release to the scene
if
(
scene
())
if
(
scene
())
...
...
src/board/UBDrawingController.cpp
View file @
15cfae37
...
@@ -315,7 +315,6 @@ void UBDrawingController::penToolSelected(bool checked)
...
@@ -315,7 +315,6 @@ void UBDrawingController::penToolSelected(bool checked)
}
}
}
}
void
UBDrawingController
::
eraserToolSelected
(
bool
checked
)
void
UBDrawingController
::
eraserToolSelected
(
bool
checked
)
{
{
if
(
checked
)
if
(
checked
)
...
...
src/desktop/UBDesktopAnnotationController.cpp
View file @
15cfae37
...
@@ -42,6 +42,7 @@
...
@@ -42,6 +42,7 @@
#include "UBDesktopEraserPalette.h"
#include "UBDesktopEraserPalette.h"
#include "gui/UBKeyboardPalette.h"
#include "gui/UBKeyboardPalette.h"
#include "gui/UBResources.h"
#include "core/memcheck.h"
#include "core/memcheck.h"
...
@@ -583,24 +584,26 @@ void UBDesktopAnnotationController::penActionReleased()
...
@@ -583,24 +584,26 @@ void UBDesktopAnnotationController::penActionReleased()
mPendingPenButtonPressed
=
false
;
mPendingPenButtonPressed
=
false
;
}
}
UBApplication
::
mainWindow
->
actionPen
->
setChecked
(
true
);
UBApplication
::
mainWindow
->
actionPen
->
setChecked
(
true
);
switchCursor
(
UBStylusTool
::
Pen
);
}
}
/**
/**
* \brief Handles the
mark
er action pressed event
* \brief Handles the
eras
er action pressed event
*/
*/
void
UBDesktopAnnotationController
::
mark
erActionPressed
()
void
UBDesktopAnnotationController
::
eras
erActionPressed
()
{
{
mbArrowClicked
=
false
;
mbArrowClicked
=
false
;
mDesktopPenPalette
->
hide
();
mDesktopPenPalette
->
hide
();
mDesktop
Eras
erPalette
->
hide
();
mDesktop
Mark
erPalette
->
hide
();
UBDrawingController
::
drawingController
()
->
setStylusTool
(
UBStylusTool
::
Mark
er
);
UBDrawingController
::
drawingController
()
->
setStylusTool
(
UBStylusTool
::
Eras
er
);
m
Mark
erHoldTimer
=
QTime
::
currentTime
();
m
Eras
erHoldTimer
=
QTime
::
currentTime
();
mPending
Mark
erButtonPressed
=
true
;
mPending
Eras
erButtonPressed
=
true
;
// Check if the mouse cursor is on the little arrow
// Check if the mouse cursor is on the little arrow
QPoint
cursorPos
=
QCursor
::
pos
();
QPoint
cursorPos
=
QCursor
::
pos
();
QPoint
palettePos
=
mDesktopPalette
->
pos
();
QPoint
palettePos
=
mDesktopPalette
->
pos
();
QPoint
buttonPos
=
mDesktopPalette
->
buttonPos
(
UBApplication
::
mainWindow
->
action
Mark
er
);
QPoint
buttonPos
=
mDesktopPalette
->
buttonPos
(
UBApplication
::
mainWindow
->
action
Eras
er
);
int
iX
=
cursorPos
.
x
()
-
(
palettePos
.
x
()
+
buttonPos
.
x
());
// x position of the cursor in the palette
int
iX
=
cursorPos
.
x
()
-
(
palettePos
.
x
()
+
buttonPos
.
x
());
// x position of the cursor in the palette
int
iY
=
cursorPos
.
y
()
-
(
palettePos
.
y
()
+
buttonPos
.
y
());
// y position of the cursor in the palette
int
iY
=
cursorPos
.
y
()
-
(
palettePos
.
y
()
+
buttonPos
.
y
());
// y position of the cursor in the palette
...
@@ -608,52 +611,55 @@ void UBDesktopAnnotationController::markerActionPressed()
...
@@ -608,52 +611,55 @@ void UBDesktopAnnotationController::markerActionPressed()
if
(
iX
>=
37
&&
iX
<=
44
&&
iY
>=
37
&&
iY
<=
44
)
if
(
iX
>=
37
&&
iX
<=
44
&&
iY
>=
37
&&
iY
<=
44
)
{
{
mbArrowClicked
=
true
;
mbArrowClicked
=
true
;
mark
erActionReleased
();
eras
erActionReleased
();
}
}
else
else
{
{
mHoldTimer
Mark
er
.
start
(
PROPERTY_PALETTE_TIMER
);
mHoldTimer
Eras
er
.
start
(
PROPERTY_PALETTE_TIMER
);
}
}
}
}
/**
/**
* \brief Handles the
mark
er action released event
* \brief Handles the
eras
er action released event
*/
*/
void
UBDesktopAnnotationController
::
mark
erActionReleased
()
void
UBDesktopAnnotationController
::
eras
erActionReleased
()
{
{
qDebug
()
<<
"
mark
erActionReleased()"
;
qDebug
()
<<
"
eras
erActionReleased()"
;
mHoldTimer
Mark
er
.
stop
();
mHoldTimer
Eras
er
.
stop
();
if
(
mPending
Mark
erButtonPressed
)
if
(
mPending
Eras
erButtonPressed
)
{
{
if
(
mbArrowClicked
||
m
Mark
erHoldTimer
.
msecsTo
(
QTime
::
currentTime
())
>
PROPERTY_PALETTE_TIMER
-
100
)
if
(
mbArrowClicked
||
m
Eras
erHoldTimer
.
msecsTo
(
QTime
::
currentTime
())
>
PROPERTY_PALETTE_TIMER
-
100
)
{
{
togglePropertyPalette
(
mDesktop
Mark
erPalette
);
togglePropertyPalette
(
mDesktop
Eras
erPalette
);
}
}
else
else
{
{
UBApplication
::
mainWindow
->
action
Mark
er
->
trigger
();
UBApplication
::
mainWindow
->
action
Eras
er
->
trigger
();
}
}
mPending
Mark
erButtonPressed
=
false
;
mPending
Eras
erButtonPressed
=
false
;
}
}
UBApplication
::
mainWindow
->
actionMarker
->
setChecked
(
true
);
UBApplication
::
mainWindow
->
actionEraser
->
setChecked
(
true
);
switchCursor
(
UBStylusTool
::
Eraser
);
}
}
/**
/**
* \brief Handles the
eras
er action pressed event
* \brief Handles the
mark
er action pressed event
*/
*/
void
UBDesktopAnnotationController
::
eras
erActionPressed
()
void
UBDesktopAnnotationController
::
mark
erActionPressed
()
{
{
mbArrowClicked
=
false
;
mbArrowClicked
=
false
;
mDesktopPenPalette
->
hide
();
mDesktopPenPalette
->
hide
();
mDesktop
Mark
erPalette
->
hide
();
mDesktop
Eras
erPalette
->
hide
();
UBDrawingController
::
drawingController
()
->
setStylusTool
(
UBStylusTool
::
Eras
er
);
UBDrawingController
::
drawingController
()
->
setStylusTool
(
UBStylusTool
::
Mark
er
);
m
Eras
erHoldTimer
=
QTime
::
currentTime
();
m
Mark
erHoldTimer
=
QTime
::
currentTime
();
mPending
Eras
erButtonPressed
=
true
;
mPending
Mark
erButtonPressed
=
true
;
// Check if the mouse cursor is on the little arrow
// Check if the mouse cursor is on the little arrow
QPoint
cursorPos
=
QCursor
::
pos
();
QPoint
cursorPos
=
QCursor
::
pos
();
QPoint
palettePos
=
mDesktopPalette
->
pos
();
QPoint
palettePos
=
mDesktopPalette
->
pos
();
QPoint
buttonPos
=
mDesktopPalette
->
buttonPos
(
UBApplication
::
mainWindow
->
action
Eras
er
);
QPoint
buttonPos
=
mDesktopPalette
->
buttonPos
(
UBApplication
::
mainWindow
->
action
Mark
er
);
int
iX
=
cursorPos
.
x
()
-
(
palettePos
.
x
()
+
buttonPos
.
x
());
// x position of the cursor in the palette
int
iX
=
cursorPos
.
x
()
-
(
palettePos
.
x
()
+
buttonPos
.
x
());
// x position of the cursor in the palette
int
iY
=
cursorPos
.
y
()
-
(
palettePos
.
y
()
+
buttonPos
.
y
());
// y position of the cursor in the palette
int
iY
=
cursorPos
.
y
()
-
(
palettePos
.
y
()
+
buttonPos
.
y
());
// y position of the cursor in the palette
...
@@ -661,38 +667,63 @@ void UBDesktopAnnotationController::eraserActionPressed()
...
@@ -661,38 +667,63 @@ void UBDesktopAnnotationController::eraserActionPressed()
if
(
iX
>=
37
&&
iX
<=
44
&&
iY
>=
37
&&
iY
<=
44
)
if
(
iX
>=
37
&&
iX
<=
44
&&
iY
>=
37
&&
iY
<=
44
)
{
{
mbArrowClicked
=
true
;
mbArrowClicked
=
true
;
eras
erActionReleased
();
mark
erActionReleased
();
}
}
else
else
{
{
mHoldTimer
Eras
er
.
start
(
PROPERTY_PALETTE_TIMER
);
mHoldTimer
Mark
er
.
start
(
PROPERTY_PALETTE_TIMER
);
}
}
}
}
/**
/**
* \brief Handles the
eras
er action released event
* \brief Handles the
mark
er action released event
*/
*/
void
UBDesktopAnnotationController
::
eras
erActionReleased
()
void
UBDesktopAnnotationController
::
mark
erActionReleased
()
{
{
qDebug
()
<<
"
eras
erActionReleased()"
;
qDebug
()
<<
"
mark
erActionReleased()"
;
mHoldTimer
Eras
er
.
stop
();
mHoldTimer
Mark
er
.
stop
();
if
(
mPending
Eras
erButtonPressed
)
if
(
mPending
Mark
erButtonPressed
)
{
{
if
(
mbArrowClicked
||
m
Eras
erHoldTimer
.
msecsTo
(
QTime
::
currentTime
())
>
PROPERTY_PALETTE_TIMER
-
100
)
if
(
mbArrowClicked
||
m
Mark
erHoldTimer
.
msecsTo
(
QTime
::
currentTime
())
>
PROPERTY_PALETTE_TIMER
-
100
)
{
{
togglePropertyPalette
(
mDesktop
Eras
erPalette
);
togglePropertyPalette
(
mDesktop
Mark
erPalette
);
}
}
else
else
{
{
UBApplication
::
mainWindow
->
action
Eras
er
->
trigger
();
UBApplication
::
mainWindow
->
action
Mark
er
->
trigger
();
}
}
mPending
Eras
erButtonPressed
=
false
;
mPending
Mark
erButtonPressed
=
false
;
}
}
UBApplication
::
mainWindow
->
actionEraser
->
setChecked
(
true
);
UBApplication
::
mainWindow
->
actionMarker
->
setChecked
(
true
);
switchCursor
(
UBStylusTool
::
Marker
);
}
void
UBDesktopAnnotationController
::
selectorActionPressed
()
{
}
void
UBDesktopAnnotationController
::
selectorActionReleased
()
{
switchCursor
(
UBStylusTool
::
Selector
);
}
void
UBDesktopAnnotationController
::
pointerActionPressed
()
{
}
void
UBDesktopAnnotationController
::
pointerActionReleased
()
{
switchCursor
(
UBStylusTool
::
Pointer
);
}
}
/**
/**
* \brief Toggle the given palette visiblity
* \brief Toggle the given palette visib
i
lity
* @param palette as the given palette
* @param palette as the given palette
*/
*/
void
UBDesktopAnnotationController
::
togglePropertyPalette
(
UBActionPalette
*
palette
)
void
UBDesktopAnnotationController
::
togglePropertyPalette
(
UBActionPalette
*
palette
)
...
@@ -715,11 +746,34 @@ void UBDesktopAnnotationController::togglePropertyPalette(UBActionPalette *palet
...
@@ -715,11 +746,34 @@ void UBDesktopAnnotationController::togglePropertyPalette(UBActionPalette *palet
}
}
}
}
void
UBDesktopAnnotationController
::
switchCursor
(
const
int
tool
)
{
// enum Enum
// {
// Pen = 0,
// Eraser,
// Marker,
// Selector,
// Hand,
// ZoomIn,
// ZoomOut,
// Pointer,
// Line,
// Text,
// Capture
// };
mTransparentDrawingScene
->
setToolCursor
(
tool
);
mTransparentDrawingView
->
setToolCursor
(
tool
);
}
/**
/**
* \brief Reconnect the pressed & released signals of the property palettes
* \brief Reconnect the pressed & released signals of the property palettes
*/
*/
void
UBDesktopAnnotationController
::
onDesktopPaletteMaximized
()
void
UBDesktopAnnotationController
::
onDesktopPaletteMaximized
()
{
{
// Pen
// Pen
UBActionPaletteButton
*
pPenButton
=
mDesktopPalette
->
getButtonFromAction
(
UBApplication
::
mainWindow
->
actionPen
);
UBActionPaletteButton
*
pPenButton
=
mDesktopPalette
->
getButtonFromAction
(
UBApplication
::
mainWindow
->
actionPen
);
if
(
NULL
!=
pPenButton
)
if
(
NULL
!=
pPenButton
)
...
@@ -728,6 +782,14 @@ void UBDesktopAnnotationController::onDesktopPaletteMaximized()
...
@@ -728,6 +782,14 @@ void UBDesktopAnnotationController::onDesktopPaletteMaximized()
connect
(
pPenButton
,
SIGNAL
(
released
()),
this
,
SLOT
(
penActionReleased
()));
connect
(
pPenButton
,
SIGNAL
(
released
()),
this
,
SLOT
(
penActionReleased
()));
}
}
// Eraser
UBActionPaletteButton
*
pEraserButton
=
mDesktopPalette
->
getButtonFromAction
(
UBApplication
::
mainWindow
->
actionEraser
);
if
(
NULL
!=
pEraserButton
)
{
connect
(
pEraserButton
,
SIGNAL
(
pressed
()),
this
,
SLOT
(
eraserActionPressed
()));
connect
(
pEraserButton
,
SIGNAL
(
released
()),
this
,
SLOT
(
eraserActionReleased
()));
}
// Marker
// Marker
UBActionPaletteButton
*
pMarkerButton
=
mDesktopPalette
->
getButtonFromAction
(
UBApplication
::
mainWindow
->
actionMarker
);
UBActionPaletteButton
*
pMarkerButton
=
mDesktopPalette
->
getButtonFromAction
(
UBApplication
::
mainWindow
->
actionMarker
);
if
(
NULL
!=
pMarkerButton
)
if
(
NULL
!=
pMarkerButton
)
...
@@ -736,13 +798,32 @@ void UBDesktopAnnotationController::onDesktopPaletteMaximized()
...
@@ -736,13 +798,32 @@ void UBDesktopAnnotationController::onDesktopPaletteMaximized()
connect
(
pMarkerButton
,
SIGNAL
(
released
()),
this
,
SLOT
(
markerActionReleased
()));
connect
(
pMarkerButton
,
SIGNAL
(
released
()),
this
,
SLOT
(
markerActionReleased
()));
}
}
//
Eras
er
//
Point
er
UBActionPaletteButton
*
p
EraserButton
=
mDesktopPalette
->
getButtonFromAction
(
UBApplication
::
mainWindow
->
actionErase
r
);
UBActionPaletteButton
*
p
SelectorButton
=
mDesktopPalette
->
getButtonFromAction
(
UBApplication
::
mainWindow
->
actionSelecto
r
);
if
(
NULL
!=
p
Erase
rButton
)
if
(
NULL
!=
p
Selecto
rButton
)
{
{
connect
(
p
EraserButton
,
SIGNAL
(
pressed
()),
this
,
SLOT
(
erase
rActionPressed
()));
connect
(
p
SelectorButton
,
SIGNAL
(
pressed
()),
this
,
SLOT
(
selecto
rActionPressed
()));
connect
(
p
EraserButton
,
SIGNAL
(
released
()),
this
,
SLOT
(
erase
rActionReleased
()));
connect
(
p
SelectorButton
,
SIGNAL
(
released
()),
this
,
SLOT
(
selecto
rActionReleased
()));
}
}
// Pointer
UBActionPaletteButton
*
pPointerButton
=
mDesktopPalette
->
getButtonFromAction
(
UBApplication
::
mainWindow
->
actionPointer
);
if
(
NULL
!=
pPointerButton
)
{
connect
(
pPointerButton
,
SIGNAL
(
pressed
()),
this
,
SLOT
(
pointerActionPressed
()));
connect
(
pPointerButton
,
SIGNAL
(
released
()),
this
,
SLOT
(
pointerActionReleased
()));
}
// enum Enum
// {
// Hand,
// ZoomIn,
// ZoomOut,
// Line,
// Text,
// Capture
// };
}
}
/**
/**
...
...
src/desktop/UBDesktopAnnotationController.h
View file @
15cfae37
...
@@ -98,6 +98,12 @@ class UBDesktopAnnotationController : public QObject
...
@@ -98,6 +98,12 @@ class UBDesktopAnnotationController : public QObject
void
penActionReleased
();
void
penActionReleased
();
void
markerActionReleased
();
void
markerActionReleased
();
void
eraserActionReleased
();
void
eraserActionReleased
();
void
selectorActionPressed
();
void
selectorActionReleased
();
void
pointerActionPressed
();
void
pointerActionReleased
();
void
switchCursor
(
int
tool
);
void
onDesktopPaletteMaximized
();
void
onDesktopPaletteMaximized
();
void
onDesktopPaletteMinimize
();
void
onDesktopPaletteMinimize
();
void
onTransparentWidgetResized
();
void
onTransparentWidgetResized
();
...
...
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