Bug 358060 - Inline note cannot be resized
Summary: Inline note cannot be resized
Status: RESOLVED FIXED
Alias: None
Product: okular
Classification: Applications
Component: general (show other bugs)
Version: 0.24.0
Platform: Other Linux
: NOR normal
Target Milestone: ---
Assignee: Okular developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2016-01-16 09:44 UTC by Simone Gaiarin
Modified: 2017-03-19 22:18 UTC (History)
1 user (show)

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Simone Gaiarin 2016-01-16 09:44:04 UTC
Would be useful to be able to resize an inline note.

Sometimes we need to position the inline note among other parts of text in the document. If the choice we first decide is not correct and cover other text, currently the only solution is to remove the note and recreate it while would be enough to resize it.

Will provide a workaround to the problems created by these other bugs:
https://bugs.kde.org/show_bug.cgi?id=354539
https://bugs.kde.org/show_bug.cgi?id=358059

Reproducible: Always
Comment 1 sdk 2016-09-20 18:20:54 UTC
+1
It'll help resolve that bug https://bugs.kde.org/show_bug.cgi?id=325119
Comment 2 Albert Astals Cid 2017-03-19 22:18:36 UTC
Git commit 0957abc39ad0597140b068b6f083371df84acf16 by Albert Astals Cid, on behalf of Tobias Deiminger.
Committed on 19/03/2017 at 22:18.
Pushed by aacid into branch 'master'.

Add annotation resize functionality

Usage:
If you left-click an annotation, it gets selected. Resize handles appear on the selection rectangle. When cursor is moved over one of the 8 resize handles on the corners/edges, the cursor shape changes to indicate resize mode. Everywhere else on the annotation means "move", just as it was before resize feature was added. Pressing ESC or clicking an area outside the annotation cancels a selection. Pressing Del deletes a selected annotation.

Feature is only applicable for annotation types AText, AStamp and AGeom.

Implementation:
It works by eventually changing AnnotationPrivate::m_boundary and notifying generator (i.e. poppler) about that change. Annotation state handling is shifted out of PageView into a new class MouseAnnotation (ui/pageviewmouseannotation.cpp). Some functionality not related to resizing but to annotation interaction in general is also shifted to class MouseAnnotation, to build a single place of responsiblity.

Other changes:
Add method Document::adjustPageAnnotation, backed by a QUndoCommand.
class Okular::AdjustAnnotationCommand.
Add Annotation::adjust and Annotation::canBeResized methods.
Draw resize handles in PagePainter::paintCroppedPageOnPainter.

Resize and move work
-for types AText, AStamp and AGeom
-on all pages of document
-when viewport position changes
-when zoom level changes
-for all page rotations (0°, 90°, 180°, 270°)

Selection is canceled
-when currently selected annotation is deleted
-on mouse click outside of currently selected annotation
-ESC is pressed

Viewport is shifted when mouse cursor during move/resize comes close to viewport border.
Resize to negative is prevented.
Tiny annotations are still selectable.
If mouse is moved over an annotation type that we can focus, and the annotation is not yet focused, mouse cursor shape changes to arrow.
If mouse cursor rests over an annotation A, while annotation B is focused, a tooltip for annotation A is shown.
Selected Annotation is deleted when Del is pressed.

Test for regressions:
-Annotation interaction (focus, move, resize, start playback, ...) are only done in mode EnumMouseMode::Browse.
-If mouse is moved over an annotation type where we can start an action, mouse cursor shape changes to pointing hand.
-If mouse is moved over an annotation type that we can't interact with, mouse cursor shape stays a open hand.
-If mouse cursor rests over an annotation of any type, a tooltip for that annotation is shown.
-Grab/move scroll area (on left click + mouse move) is prevented, if mouse is over focused annotation, or over AMovie/AScreen/AFileAttachment annotation.
-A double click on a annotation starts the "annotator".

REVIEW: 127366
Related: bug 177778, bug 314843

M  +1    -0    CMakeLists.txt
M  +58   -2    core/annotations.cpp
M  +16   -1    core/annotations.h
M  +2    -0    core/annotations_p.h
M  +13   -6    core/document.cpp
M  +14   -1    core/document.h
M  +2    -2    core/document_p.h
M  +65   -0    core/documentcommands.cpp
M  +26   -0    core/documentcommands_p.h
M  +1    -1    generators/poppler/annots.cpp
M  +5    -2    ui/pagepainter.cpp
M  +76   -189  ui/pageview.cpp
A  +714  -0    ui/pageviewmouseannotation.cpp     [License: GPL (v2+)]
A  +164  -0    ui/pageviewmouseannotation.h     [License: GPL (v2+)]

https://commits.kde.org/okular/0957abc39ad0597140b068b6f083371df84acf16