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
68958a95
Commit
68958a95
authored
Jul 20, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:Sankore/Sankore-3.1
parents
e0a4dc32
75ddbf80
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
44 additions
and
6 deletions
+44
-6
release.win7.vc9.bat
release.win7.vc9.bat
+4
-0
UBBoardController.cpp
src/board/UBBoardController.cpp
+13
-0
UBGraphicsItemUndoCommand.cpp
src/domain/UBGraphicsItemUndoCommand.cpp
+18
-4
UBGraphicsPixmapItem.cpp
src/domain/UBGraphicsPixmapItem.cpp
+3
-2
UBGraphicsScene.cpp
src/domain/UBGraphicsScene.cpp
+5
-0
UBGraphicsScene.h
src/domain/UBGraphicsScene.h
+1
-0
No files found.
release.win7.vc9.bat
View file @
68958a95
...
@@ -59,6 +59,10 @@ REM echo %LAST_TAG_VERSION%
...
@@ -59,6 +59,10 @@ REM echo %LAST_TAG_VERSION%
nmake release-install
nmake release-install
set CUSTOMIZATIONS=build\win32\release\product\customizations
mkdir %CUSTOMIZATIONS%
xcopy /s resources\customizations %CUSTOMIZATIONS%
set I18n=build\win32\release\product\i18n
set I18n=build\win32\release\product\i18n
mkdir %I18n%
mkdir %I18n%
xcopy /s resources\i18n\*.qm %I18n%
xcopy /s resources\i18n\*.qm %I18n%
...
...
src/board/UBBoardController.cpp
View file @
68958a95
...
@@ -855,6 +855,10 @@ void UBBoardController::downloadURL(const QUrl& url, const QPointF& pPos, const
...
@@ -855,6 +855,10 @@ void UBBoardController::downloadURL(const QUrl& url, const QPointF& pPos, const
void
UBBoardController
::
downloadFinished
(
bool
pSuccess
,
QUrl
sourceUrl
,
QString
pContentTypeHeader
,
QByteArray
pData
,
QPointF
pPos
,
QSize
pSize
,
bool
isBackground
)
void
UBBoardController
::
downloadFinished
(
bool
pSuccess
,
QUrl
sourceUrl
,
QString
pContentTypeHeader
,
QByteArray
pData
,
QPointF
pPos
,
QSize
pSize
,
bool
isBackground
)
{
{
QGraphicsItem
*
oldBackgroundObject
=
NULL
;
if
(
isBackground
)
oldBackgroundObject
=
mActiveScene
->
backgroundObject
();
QString
mimeType
=
pContentTypeHeader
;
QString
mimeType
=
pContentTypeHeader
;
// In some cases "image/jpeg;charset=" is returned by the drag-n-drop. That is
// In some cases "image/jpeg;charset=" is returned by the drag-n-drop. That is
...
@@ -1193,6 +1197,15 @@ void UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QString
...
@@ -1193,6 +1197,15 @@ void UBBoardController::downloadFinished(bool pSuccess, QUrl sourceUrl, QString
UBApplication
::
showMessage
(
tr
(
"Unknown content type %1"
).
arg
(
pContentTypeHeader
));
UBApplication
::
showMessage
(
tr
(
"Unknown content type %1"
).
arg
(
pContentTypeHeader
));
qWarning
()
<<
"ignoring mime type"
<<
pContentTypeHeader
;
qWarning
()
<<
"ignoring mime type"
<<
pContentTypeHeader
;
}
}
if
(
isBackground
&&
oldBackgroundObject
!=
mActiveScene
->
backgroundObject
())
{
if
(
mActiveScene
->
isURStackIsEnabled
())
{
//should be deleted after scene own undo stack implemented
UBGraphicsItemUndoCommand
*
uc
=
new
UBGraphicsItemUndoCommand
(
mActiveScene
,
oldBackgroundObject
,
mActiveScene
->
backgroundObject
());
UBApplication
::
undoStack
->
push
(
uc
);
}
}
}
}
...
...
src/domain/UBGraphicsItemUndoCommand.cpp
View file @
68958a95
...
@@ -91,8 +91,15 @@ void UBGraphicsItemUndoCommand::undo()
...
@@ -91,8 +91,15 @@ void UBGraphicsItemUndoCommand::undo()
while
(
itRemoved
.
hasNext
())
while
(
itRemoved
.
hasNext
())
{
{
QGraphicsItem
*
item
=
itRemoved
.
next
();
QGraphicsItem
*
item
=
itRemoved
.
next
();
mScene
->
addItem
(
item
);
if
(
item
)
UBApplication
::
boardController
->
freezeW3CWidget
(
item
,
false
);
{
if
(
UBItemLayerType
::
FixedBackground
==
item
->
data
(
UBGraphicsItemData
::
ItemLayerType
))
mScene
->
setAsBackgroundObject
(
item
);
else
mScene
->
addItem
(
item
);
UBApplication
::
boardController
->
freezeW3CWidget
(
item
,
false
);
}
}
}
// force refresh, QT is a bit lazy and take a lot of time (nb item ^2 ?) to trigger repaint
// force refresh, QT is a bit lazy and take a lot of time (nb item ^2 ?) to trigger repaint
...
@@ -123,8 +130,15 @@ void UBGraphicsItemUndoCommand::redo()
...
@@ -123,8 +130,15 @@ void UBGraphicsItemUndoCommand::redo()
while
(
itAdded
.
hasNext
())
while
(
itAdded
.
hasNext
())
{
{
QGraphicsItem
*
item
=
itAdded
.
next
();
QGraphicsItem
*
item
=
itAdded
.
next
();
mScene
->
addItem
(
item
);
if
(
item
)
UBApplication
::
boardController
->
freezeW3CWidget
(
item
,
false
);
{
if
(
UBItemLayerType
::
FixedBackground
==
item
->
data
(
UBGraphicsItemData
::
ItemLayerType
))
mScene
->
setAsBackgroundObject
(
item
);
else
mScene
->
addItem
(
item
);
UBApplication
::
boardController
->
freezeW3CWidget
(
item
,
false
);
}
}
}
// force refresh, QT is a bit lazy and take a lot of time (nb item ^2) to trigger repaint
// force refresh, QT is a bit lazy and take a lot of time (nb item ^2) to trigger repaint
...
...
src/domain/UBGraphicsPixmapItem.cpp
View file @
68958a95
...
@@ -65,8 +65,9 @@ void UBGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
...
@@ -65,8 +65,9 @@ void UBGraphicsPixmapItem::mousePressEvent(QGraphicsSceneMouseEvent *event)
QMimeData
*
pMime
=
new
QMimeData
();
QMimeData
*
pMime
=
new
QMimeData
();
pMime
->
setImageData
(
pixmap
().
toImage
());
pMime
->
setImageData
(
pixmap
().
toImage
());
mDelegate
->
setMimeData
(
pMime
);
mDelegate
->
setMimeData
(
pMime
);
int
k
=
pixmap
().
width
()
/
100
;
qreal
k
=
(
qreal
)
pixmap
().
width
()
/
100.0
;
QSize
newSize
(
pixmap
().
width
()
/
k
,
pixmap
().
height
()
/
k
);
QSize
newSize
((
int
)(
pixmap
().
width
()
/
k
),
(
int
)(
pixmap
().
height
()
/
k
));
mDelegate
->
setDragPixmap
(
pixmap
().
scaled
(
newSize
,
Qt
::
IgnoreAspectRatio
,
Qt
::
SmoothTransformation
));
mDelegate
->
setDragPixmap
(
pixmap
().
scaled
(
newSize
,
Qt
::
IgnoreAspectRatio
,
Qt
::
SmoothTransformation
));
...
...
src/domain/UBGraphicsScene.cpp
View file @
68958a95
...
@@ -1292,6 +1292,11 @@ void UBGraphicsScene::clearBackground()
...
@@ -1292,6 +1292,11 @@ void UBGraphicsScene::clearBackground()
{
{
if
(
mBackgroundObject
){
if
(
mBackgroundObject
){
removeItem
(
mBackgroundObject
);
removeItem
(
mBackgroundObject
);
if
(
enableUndoRedoStack
)
{
//should be deleted after scene own undo stack implemented
UBGraphicsItemUndoCommand
*
uc
=
new
UBGraphicsItemUndoCommand
(
this
,
mBackgroundObject
,
NULL
);
UBApplication
::
undoStack
->
push
(
uc
);
}
mBackgroundObject
=
0
;
mBackgroundObject
=
0
;
}
}
update
(
sceneRect
());
update
(
sceneRect
());
...
...
src/domain/UBGraphicsScene.h
View file @
68958a95
...
@@ -102,6 +102,7 @@ class UBGraphicsScene: public UBCoreGraphicsScene, public UBItem
...
@@ -102,6 +102,7 @@ class UBGraphicsScene: public UBCoreGraphicsScene, public UBItem
// tmp stub for divide addings scene objects from undo mechanism implementation
// tmp stub for divide addings scene objects from undo mechanism implementation
void
setURStackEnable
(
bool
set
=
true
)
{
enableUndoRedoStack
=
set
;}
void
setURStackEnable
(
bool
set
=
true
)
{
enableUndoRedoStack
=
set
;}
bool
isURStackIsEnabled
(){
return
enableUndoRedoStack
;}
UBGraphicsScene
(
UBDocumentProxy
*
parent
);
UBGraphicsScene
(
UBDocumentProxy
*
parent
);
virtual
~
UBGraphicsScene
();
virtual
~
UBGraphicsScene
();
...
...
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