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
8f06cfd8
Commit
8f06cfd8
authored
Aug 28, 2012
by
Anatoly Mihalchenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SANKORE-1026 Navigation palette: thumbnails isn't refeshed after application added to the page
Improvement of scene update flag setting
parent
d9be3652
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
21 additions
and
24 deletions
+21
-24
UBGraphicsScene.cpp
src/domain/UBGraphicsScene.cpp
+4
-12
UBGraphicsScene.h
src/domain/UBGraphicsScene.h
+0
-12
UBCoreGraphicsScene.cpp
src/frameworks/UBCoreGraphicsScene.cpp
+4
-0
UBCoreGraphicsScene.h
src/frameworks/UBCoreGraphicsScene.h
+13
-0
No files found.
src/domain/UBGraphicsScene.cpp
View file @
8f06cfd8
...
...
@@ -263,7 +263,6 @@ UBGraphicsScene::UBGraphicsScene(UBDocumentProxy* parent)
,
mCrossedBackground
(
false
)
,
mIsDesktopMode
(
false
)
,
mZoomFactor
(
1
)
,
mIsModified
(
true
)
,
mBackgroundObject
(
0
)
,
mPreviousWidth
(
0
)
,
mInputDeviceIsPressed
(
false
)
...
...
@@ -1564,7 +1563,6 @@ UBGraphicsTextItem *UBGraphicsScene::addTextHtml(const QString &pString, const Q
void
UBGraphicsScene
::
addItem
(
QGraphicsItem
*
item
)
{
setModified
(
true
);
UBCoreGraphicsScene
::
addItem
(
item
);
UBGraphicsItem
::
assignZValue
(
item
,
mZLayerController
->
generateZLevel
(
item
));
...
...
@@ -1577,8 +1575,6 @@ void UBGraphicsScene::addItem(QGraphicsItem* item)
void
UBGraphicsScene
::
addItems
(
const
QSet
<
QGraphicsItem
*>&
items
)
{
setModified
(
true
);
foreach
(
QGraphicsItem
*
item
,
items
)
{
UBCoreGraphicsScene
::
addItem
(
item
);
UBGraphicsItem
::
assignZValue
(
item
,
mZLayerController
->
generateZLevel
(
item
));
...
...
@@ -1591,7 +1587,6 @@ void UBGraphicsScene::addItems(const QSet<QGraphicsItem*>& items)
void
UBGraphicsScene
::
removeItem
(
QGraphicsItem
*
item
)
{
setModified
(
true
);
UBCoreGraphicsScene
::
removeItem
(
item
);
UBApplication
::
boardController
->
freezeW3CWidget
(
item
,
true
);
...
...
@@ -1603,8 +1598,6 @@ void UBGraphicsScene::removeItem(QGraphicsItem* item)
void
UBGraphicsScene
::
removeItems
(
const
QSet
<
QGraphicsItem
*>&
items
)
{
setModified
(
true
);
foreach
(
QGraphicsItem
*
item
,
items
)
UBCoreGraphicsScene
::
removeItem
(
item
);
...
...
@@ -1762,7 +1755,6 @@ void UBGraphicsScene::addRuler(QPointF center)
addItem
(
ruler
);
ruler
->
setVisible
(
true
);
setModified
(
true
);
}
void
UBGraphicsScene
::
addProtractor
(
QPointF
center
)
...
...
@@ -1780,7 +1772,6 @@ void UBGraphicsScene::addProtractor(QPointF center)
protractor
->
moveBy
(
center
.
x
()
-
itemSceneCenter
.
x
(),
center
.
y
()
-
itemSceneCenter
.
y
());
protractor
->
setVisible
(
true
);
setModified
(
true
);
}
void
UBGraphicsScene
::
addTriangle
(
QPointF
center
)
...
...
@@ -1798,7 +1789,6 @@ void UBGraphicsScene::addTriangle(QPointF center)
triangle
->
moveBy
(
center
.
x
()
-
itemSceneCenter
.
x
(),
center
.
y
()
-
itemSceneCenter
.
y
());
triangle
->
setVisible
(
true
);
setModified
(
true
);
}
void
UBGraphicsScene
::
addMagnifier
(
UBMagnifierParams
params
)
...
...
@@ -1857,6 +1847,7 @@ void UBGraphicsScene::moveMagnifier()
{
QPoint
magnifierPos
=
QPoint
(
magniferControlViewWidget
->
pos
().
x
()
+
magniferControlViewWidget
->
size
().
width
()
/
2
,
magniferControlViewWidget
->
pos
().
y
()
+
magniferControlViewWidget
->
size
().
height
()
/
2
);
moveMagnifier
(
magnifierPos
,
true
);
setModified
(
true
);
}
}
...
...
@@ -1889,6 +1880,7 @@ void UBGraphicsScene::moveMagnifier(QPoint newPos, bool forceGrab)
void
UBGraphicsScene
::
closeMagnifier
()
{
DisposeMagnifierQWidgets
();
setModified
(
true
);
}
void
UBGraphicsScene
::
zoomInMagnifier
()
...
...
@@ -1906,6 +1898,7 @@ void UBGraphicsScene::zoomOutMagnifier()
{
magniferControlViewWidget
->
setZoom
(
magniferControlViewWidget
->
params
.
zoom
-
0.5
);
magniferDisplayViewWidget
->
setZoom
(
magniferDisplayViewWidget
->
params
.
zoom
-
0.5
);
setModified
(
true
);
}
}
...
...
@@ -1917,6 +1910,7 @@ void UBGraphicsScene::resizedMagnifier(qreal newPercent)
magniferControlViewWidget
->
grabPoint
();
magniferDisplayViewWidget
->
setSize
(
newPercent
);
magniferDisplayViewWidget
->
grabPoint
();
setModified
(
true
);
}
}
...
...
@@ -1932,7 +1926,6 @@ void UBGraphicsScene::addCompass(QPointF center)
compass
->
setData
(
UBGraphicsItemData
::
ItemLayerType
,
QVariant
(
UBItemLayerType
::
Tool
));
compass
->
setVisible
(
true
);
setModified
(
true
);
}
void
UBGraphicsScene
::
addCache
()
...
...
@@ -1962,7 +1955,6 @@ void UBGraphicsScene::addMask(const QPointF ¢er)
curtain
->
setRect
(
rect
);
curtain
->
setVisible
(
true
);
curtain
->
setSelected
(
true
);
setModified
(
true
);
}
void
UBGraphicsScene
::
setRenderingQuality
(
UBItem
::
RenderingQuality
pRenderingQuality
)
...
...
src/domain/UBGraphicsScene.h
View file @
8f06cfd8
...
...
@@ -179,16 +179,6 @@ class UBGraphicsScene: public UBCoreGraphicsScene, public UBItem
bool
isEmpty
()
const
;
bool
isModified
()
const
{
return
mIsModified
;
}
void
setModified
(
bool
pModified
)
{
mIsModified
=
pModified
;
}
void
setDocument
(
UBDocumentProxy
*
pDocument
);
UBDocumentProxy
*
document
()
const
...
...
@@ -380,8 +370,6 @@ public slots:
bool
mIsDesktopMode
;
qreal
mZoomFactor
;
bool
mIsModified
;
QGraphicsItem
*
mBackgroundObject
;
QPointF
mPreviousPoint
;
...
...
src/frameworks/UBCoreGraphicsScene.cpp
View file @
8f06cfd8
...
...
@@ -23,6 +23,7 @@
UBCoreGraphicsScene
::
UBCoreGraphicsScene
(
QObject
*
parent
)
:
QGraphicsScene
(
parent
)
,
mIsModified
(
true
)
{
//NOOP
}
...
...
@@ -51,6 +52,8 @@ void UBCoreGraphicsScene::addItem(QGraphicsItem* item)
if
(
item
->
scene
()
!=
this
)
QGraphicsScene
::
addItem
(
item
);
setModified
(
true
);
}
...
...
@@ -63,6 +66,7 @@ void UBCoreGraphicsScene::removeItem(QGraphicsItem* item, bool forceDelete)
delete
item
;
item
=
0
;
}
setModified
(
true
);
}
bool
UBCoreGraphicsScene
::
deleteItem
(
QGraphicsItem
*
item
)
...
...
src/frameworks/UBCoreGraphicsScene.h
View file @
8f06cfd8
...
...
@@ -33,8 +33,21 @@ class UBCoreGraphicsScene : public QGraphicsScene
void
removeItemFromDeletion
(
QGraphicsItem
*
item
);
void
addItemToDeletion
(
QGraphicsItem
*
item
);
bool
isModified
()
const
{
return
mIsModified
;
}
void
setModified
(
bool
pModified
)
{
mIsModified
=
pModified
;
}
private
:
QSet
<
QGraphicsItem
*>
mItemsToDelete
;
bool
mIsModified
;
};
#endif
/* UBCOREGRAPHICSSCENE_H_ */
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