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
545e3160
Commit
545e3160
authored
Sep 25, 2012
by
Guillaume Burel
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'guillaume-dev' into develop
parents
36119103
ed67f1ba
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
35 additions
and
15 deletions
+35
-15
UBSvgSubsetAdaptor.cpp
src/adaptors/UBSvgSubsetAdaptor.cpp
+1
-1
UBGraphicsScene.cpp
src/domain/UBGraphicsScene.cpp
+12
-9
UBGraphicsCache.cpp
src/tools/UBGraphicsCache.cpp
+13
-2
UBGraphicsCache.h
src/tools/UBGraphicsCache.h
+9
-3
No files found.
src/adaptors/UBSvgSubsetAdaptor.cpp
View file @
545e3160
...
...
@@ -3090,7 +3090,7 @@ UBGraphicsTriangle* UBSvgSubsetAdaptor::UBSvgSubsetReader::triangleFromSvg()
UBGraphicsCache
*
UBSvgSubsetAdaptor
::
UBSvgSubsetReader
::
cacheFromSvg
()
{
UBGraphicsCache
*
pCache
=
new
UBGraphicsCache
(
);
UBGraphicsCache
*
pCache
=
UBGraphicsCache
::
instance
(
mScene
);
pCache
->
setData
(
UBGraphicsItemData
::
ItemLayerType
,
QVariant
(
UBItemLayerType
::
Tool
));
graphicsItemFromSvg
(
pCache
);
...
...
src/domain/UBGraphicsScene.cpp
View file @
545e3160
...
...
@@ -1603,6 +1603,9 @@ void UBGraphicsScene::removeItem(QGraphicsItem* item)
--
mItemCount
;
mFastAccessItems
.
removeAll
(
item
);
/* delete the item if it is cache to allow its reinstanciation, because Cache implements design pattern Singleton. */
if
(
dynamic_cast
<
UBGraphicsCache
*>
(
item
))
UBCoreGraphicsScene
::
deleteItem
(
item
);
}
void
UBGraphicsScene
::
removeItems
(
const
QSet
<
QGraphicsItem
*>&
items
)
...
...
@@ -1956,9 +1959,8 @@ void UBGraphicsScene::addAristo(QPointF center)
void
UBGraphicsScene
::
addCache
()
{
UBGraphicsCache
*
cache
=
new
UBGraphicsCache
();
mTools
<<
cache
;
UBGraphicsCache
*
cache
=
UBGraphicsCache
::
instance
(
this
);
if
(
!
items
().
contains
(
cache
))
{
addItem
(
cache
);
cache
->
setData
(
UBGraphicsItemData
::
ItemLayerType
,
QVariant
(
UBItemLayerType
::
Tool
));
...
...
@@ -1967,6 +1969,7 @@ void UBGraphicsScene::addCache()
cache
->
setSelected
(
true
);
UBApplication
::
boardController
->
notifyCache
(
true
);
UBApplication
::
boardController
->
notifyPageChanged
();
}
}
void
UBGraphicsScene
::
addMask
(
const
QPointF
&
center
)
...
...
src/tools/UBGraphicsCache.cpp
View file @
545e3160
...
...
@@ -24,11 +24,21 @@
#include "core/memcheck.h"
UBGraphicsCache
::
UBGraphicsCache
()
:
QGraphicsRectItem
()
QMap
<
UBGraphicsScene
*
,
UBGraphicsCache
*>
UBGraphicsCache
::
sInstances
;
UBGraphicsCache
*
UBGraphicsCache
::
instance
(
UBGraphicsScene
*
scene
)
{
if
(
!
sInstances
.
contains
(
scene
))
sInstances
.
insert
(
scene
,
new
UBGraphicsCache
(
scene
));
return
sInstances
[
scene
];
}
UBGraphicsCache
::
UBGraphicsCache
(
UBGraphicsScene
*
scene
)
:
QGraphicsRectItem
()
,
mMaskColor
(
Qt
::
black
)
,
mMaskShape
(
eMaskShape_Circle
)
,
mShapeWidth
(
100
)
,
mDrawMask
(
false
)
,
mScene
(
scene
)
{
// Get the board size and pass it to the shape
QRect
boardRect
=
UBApplication
::
boardController
->
displayView
()
->
rect
();
...
...
@@ -39,11 +49,12 @@ UBGraphicsCache::UBGraphicsCache():QGraphicsRectItem()
UBGraphicsCache
::~
UBGraphicsCache
()
{
sInstances
.
remove
(
mScene
);
}
UBItem
*
UBGraphicsCache
::
deepCopy
()
const
{
UBGraphicsCache
*
copy
=
new
UBGraphicsCache
();
UBGraphicsCache
*
copy
=
new
UBGraphicsCache
(
mScene
);
copyItemParameters
(
copy
);
...
...
src/tools/UBGraphicsCache.h
View file @
545e3160
...
...
@@ -30,7 +30,7 @@ typedef enum
class
UBGraphicsCache
:
public
QGraphicsRectItem
,
public
UBItem
{
public
:
UBGraphicsCache
(
);
static
UBGraphicsCache
*
instance
(
UBGraphicsScene
*
scene
);
~
UBGraphicsCache
();
enum
{
Type
=
UBGraphicsItemType
::
cacheItemType
};
...
...
@@ -55,8 +55,7 @@ protected:
void
mouseReleaseEvent
(
QGraphicsSceneMouseEvent
*
event
);
private
:
void
init
();
QRectF
updateRect
(
QPointF
currentPoint
);
static
QMap
<
UBGraphicsScene
*
,
UBGraphicsCache
*>
sInstances
;
QColor
mMaskColor
;
eMaskShape
mMaskShape
;
...
...
@@ -65,6 +64,13 @@ private:
QPointF
mShapePos
;
int
mOldShapeWidth
;
QPointF
mOldShapePos
;
UBGraphicsScene
*
mScene
;
UBGraphicsCache
(
UBGraphicsScene
*
scene
);
void
init
();
QRectF
updateRect
(
QPointF
currentPoint
);
};
#endif // UBGRAPHICSCACHE_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