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
46e6b57e
Commit
46e6b57e
authored
May 21, 2012
by
Ivan Ilyin
Browse files
Options
Browse Files
Download
Plain Diff
group fixes conflict merged
parents
408811c5
70db4955
Changes
13
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
105 additions
and
163 deletions
+105
-163
release.win7.vc9.bat
release.win7.vc9.bat
+2
-1
UBSvgSubsetAdaptor.cpp
src/adaptors/UBSvgSubsetAdaptor.cpp
+2
-2
UBThumbnailAdaptor.cpp
src/adaptors/UBThumbnailAdaptor.cpp
+38
-72
UBThumbnailAdaptor.h
src/adaptors/UBThumbnailAdaptor.h
+1
-0
UBDrawingController.cpp
src/board/UBDrawingController.cpp
+2
-2
UBPersistenceManager.cpp
src/core/UBPersistenceManager.cpp
+7
-2
UBGraphicsAudioItem.cpp
src/domain/UBGraphicsAudioItem.cpp
+2
-0
UBGraphicsScene.cpp
src/domain/UBGraphicsScene.cpp
+27
-78
UBGraphicsVideoItem.cpp
src/domain/UBGraphicsVideoItem.cpp
+2
-0
UBW3CWidget.cpp
src/domain/UBW3CWidget.cpp
+5
-2
UBTeacherGuideWidget.cpp
src/gui/UBTeacherGuideWidget.cpp
+7
-1
UBTeacherGuideWidgetsTools.cpp
src/gui/UBTeacherGuideWidgetsTools.cpp
+9
-2
UBThumbnailWidget.cpp
src/gui/UBThumbnailWidget.cpp
+1
-1
No files found.
release.win7.vc9.bat
View file @
46e6b57e
...
...
@@ -62,7 +62,8 @@ nmake release-install
copy %BASE_QT_TRANSLATIONS_DIRECTORY%\qt_*.qm build\win32\release\product\i18n\
copy resources\customizations build\win32\release\product\
mkdir build\win32\release\product\customizations
xcopy /s resources\customizations\* build\win32\release\product\customizations
del build\win32\release\product\i18n\qt_help*
...
...
src/adaptors/UBSvgSubsetAdaptor.cpp
View file @
46e6b57e
...
...
@@ -1961,7 +1961,7 @@ void UBSvgSubsetAdaptor::UBSvgSubsetWriter::audioItemToLinkedAudio(UBGraphicsAud
mXmlWriter
.
writeAttribute
(
UBSettings
::
uniboardDocumentNamespaceUri
,
"position"
,
QString
(
"%1"
).
arg
(
pos
));
}
QString
audioFileHref
=
audioItem
->
mediaFileUrl
().
to
String
();
QString
audioFileHref
=
audioItem
->
mediaFileUrl
().
to
LocalFile
();
mXmlWriter
.
writeAttribute
(
nsXLink
,
"href"
,
audioFileHref
);
mXmlWriter
.
writeEndElement
();
}
...
...
@@ -1986,7 +1986,7 @@ void UBSvgSubsetAdaptor::UBSvgSubsetWriter::videoItemToLinkedVideo(UBGraphicsVid
mXmlWriter
.
writeAttribute
(
UBSettings
::
uniboardDocumentNamespaceUri
,
"position"
,
QString
(
"%1"
).
arg
(
pos
));
}
QString
videoFileHref
=
videoItem
->
mediaFileUrl
().
to
String
();
QString
videoFileHref
=
videoItem
->
mediaFileUrl
().
to
LocalFile
();
mXmlWriter
.
writeAttribute
(
nsXLink
,
"href"
,
videoFileHref
);
mXmlWriter
.
writeEndElement
();
}
...
...
src/adaptors/UBThumbnailAdaptor.cpp
View file @
46e6b57e
...
...
@@ -33,29 +33,23 @@
#include "core/memcheck.h"
QList
<
QPixmap
>
UBThumbnailAdaptor
::
load
(
UBDocumentProxy
*
proxy
)
void
UBThumbnailAdaptor
::
generateMissingThumbnails
(
UBDocumentProxy
*
proxy
)
{
QList
<
QPixmap
>
thumbnails
;
if
(
!
proxy
||
proxy
->
persistencePath
().
isEmpty
())
return
thumbnails
;
//compatibility with older formats (<= 4.0.b.2.0) : generate missing thumbnails
int
existingPageCount
=
proxy
->
pageCount
();
QString
thumbFileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
existingPageCount
);
QFile
thumbFile
(
thumbFileName
);
if
(
!
thumbFile
.
exists
())
for
(
int
iPageNo
=
0
;
iPageNo
<
existingPageCount
;
++
iPageNo
)
{
bool
displayMessage
=
(
existingPageCount
>
5
);
QString
thumbFileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
iPageNo
);
int
thumbCount
=
0
;
QFile
thumbFile
(
thumbFileName
)
;
for
(
int
i
=
0
;
i
<
existingPageCount
;
i
++
)
if
(
!
thumbFile
.
exists
()
)
{
UBGraphicsScene
*
scene
=
UBSvgSubsetAdaptor
::
loadScene
(
proxy
,
i
);
bool
displayMessage
=
(
existingPageCount
>
5
);
int
thumbCount
=
0
;
UBGraphicsScene
*
scene
=
UBSvgSubsetAdaptor
::
loadScene
(
proxy
,
iPageNo
);
if
(
scene
)
{
...
...
@@ -64,24 +58,25 @@ QList<QPixmap> UBThumbnailAdaptor::load(UBDocumentProxy* proxy)
if
(
displayMessage
&&
thumbCount
==
1
)
UBApplication
::
showMessage
(
tr
(
"Generating preview thumbnails ..."
));
persistScene
(
proxy
->
persistencePath
(),
scene
,
i
);
persistScene
(
proxy
->
persistencePath
(),
scene
,
i
PageNo
);
}
else
{
if
(
i
==
0
){
// we are working a document without zero page but on a system that enable it
// we have to create an empty zero scene
scene
=
new
UBGraphicsScene
(
proxy
);
UBSvgSubsetAdaptor
::
persistScene
(
proxy
,
scene
,
0
);
persistScene
(
proxy
->
persistencePath
(),
scene
,
i
);
thumbCount
++
;
}
}
}
if
(
displayMessage
&&
thumbCount
>
0
)
UBApplication
::
showMessage
(
tr
(
"%1 thumbnails generated ..."
).
arg
(
thumbCount
));
if
(
displayMessage
&&
thumbCount
>
0
)
UBApplication
::
showMessage
(
tr
(
"%1 thumbnails generated ..."
).
arg
(
thumbCount
));
}
}
}
QList
<
QPixmap
>
UBThumbnailAdaptor
::
load
(
UBDocumentProxy
*
proxy
)
{
QList
<
QPixmap
>
thumbnails
;
if
(
!
proxy
||
proxy
->
persistencePath
().
isEmpty
())
return
thumbnails
;
//compatibility with older formats (<= 4.0.b.2.0) : generate missing thumbnails
generateMissingThumbnails
(
proxy
);
//end compatibility with older format
...
...
@@ -113,56 +108,27 @@ QPixmap UBThumbnailAdaptor::load(UBDocumentProxy* proxy, int index)
{
int
existingPageCount
=
proxy
->
pageCount
();
if
(
!
proxy
||
proxy
->
persistencePath
().
size
()
==
0
||
index
<
0
||
index
>
=
existingPageCount
)
if
(
!
proxy
||
proxy
->
persistencePath
().
size
()
==
0
||
index
<
0
||
index
>
existingPageCount
)
return
QPixmap
();
//compatibility with older formats (<= 4.0.b.2.0) : generate missing thumbnails
QString
thumbFileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
existingPageCount
);
QFile
thumbFile
(
thumbFileName
);
if
(
!
thumbFile
.
exists
())
{
bool
displayMessage
=
(
existingPageCount
>
5
);
int
thumbCount
=
0
;
for
(
int
i
=
0
;
i
<
existingPageCount
;
i
++
)
{
UBGraphicsScene
*
scene
=
UBSvgSubsetAdaptor
::
loadScene
(
proxy
,
i
);
if
(
scene
)
{
thumbCount
++
;
if
(
displayMessage
&&
thumbCount
==
1
)
UBApplication
::
showMessage
(
tr
(
"Generating preview thumbnails ..."
));
persistScene
(
proxy
->
persistencePath
(),
scene
,
i
);
}
}
if
(
displayMessage
&&
thumbCount
>
0
)
UBApplication
::
showMessage
(
tr
(
"%1 thumbnails generated ..."
).
arg
(
thumbCount
));
}
generateMissingThumbnails
(
proxy
);
//end compatibility with older format
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
index
);
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
index
);
QFile
file
(
fileName
);
if
(
file
.
exists
())
{
QPixmap
pix
;
//Warning. Works only with modified Qt
QFile
file
(
fileName
);
if
(
file
.
exists
())
{
QPixmap
pix
;
//Warning. Works only with modified Qt
#ifdef Q_WS_X11
pix
.
load
(
fileName
,
0
,
Qt
::
AutoColor
);
pix
.
load
(
fileName
,
0
,
Qt
::
AutoColor
);
#else
pix
.
load
(
fileName
,
0
,
Qt
::
AutoColor
,
false
);
pix
.
load
(
fileName
,
0
,
Qt
::
AutoColor
,
false
);
#endif
return
pix
;
}
return
QPixmap
();
return
pix
;
}
return
QPixmap
();
}
void
UBThumbnailAdaptor
::
persistScene
(
const
QString
&
pDocPath
,
UBGraphicsScene
*
pScene
,
int
pageIndex
,
bool
overrideModified
)
...
...
src/adaptors/UBThumbnailAdaptor.h
View file @
46e6b57e
...
...
@@ -29,6 +29,7 @@ private: UBThumbnailAdaptor() {}
public
:
static
void
persistScene
(
const
QString
&
pDocPath
,
UBGraphicsScene
*
pScene
,
int
pageIndex
,
bool
overrideModified
=
false
);
static
void
generateMissingThumbnails
(
UBDocumentProxy
*
proxy
);
static
QList
<
QPixmap
>
load
(
UBDocumentProxy
*
proxy
);
static
QPixmap
load
(
UBDocumentProxy
*
proxy
,
int
index
);
...
...
src/board/UBDrawingController.cpp
View file @
46e6b57e
...
...
@@ -45,7 +45,7 @@ UBDrawingController::UBDrawingController(QObject * parent)
,
mActiveRuler
(
NULL
)
,
mStylusTool
((
UBStylusTool
::
Enum
)
-
1
)
,
mLatestDrawingTool
((
UBStylusTool
::
Enum
)
-
1
)
,
mDrawingMode
(
/*DRAWING_MODE*/
eDrawingMode_Vector
)
,
mDrawingMode
(
DRAWING_MODE
)
{
connect
(
UBSettings
::
settings
(),
SIGNAL
(
colorContextChanged
()),
this
,
SIGNAL
(
colorPaletteChanged
()));
...
...
@@ -114,7 +114,7 @@ void UBDrawingController::setStylusTool(int tool)
UBApplication
::
mainWindow
->
actionPen
->
setChecked
(
true
);
else
if
(
mStylusTool
==
UBStylusTool
::
Eraser
){
UBApplication
::
mainWindow
->
actionEraser
->
setChecked
(
true
);
//
mDrawingMode = eDrawingMode_Artistic;
mDrawingMode
=
eDrawingMode_Artistic
;
}
else
if
(
mStylusTool
==
UBStylusTool
::
Marker
)
UBApplication
::
mainWindow
->
actionMarker
->
setChecked
(
true
);
...
...
src/core/UBPersistenceManager.cpp
View file @
46e6b57e
...
...
@@ -848,7 +848,12 @@ QString UBPersistenceManager::teacherGuideAbsoluteObjectPath(UBDocumentProxy* pD
QString
UBPersistenceManager
::
addObjectToTeacherGuideDirectory
(
UBDocumentProxy
*
pDocumentProxy
,
QString
pPath
)
{
QFileInfo
fi
(
pPath
.
replace
(
"file://"
,
""
));
QString
path
=
pPath
;
//windows
path
.
replace
(
"file:///"
,
""
);
//others
path
.
replace
(
"file://"
,
""
);
QFileInfo
fi
(
path
);
QString
uuid
=
QUuid
::
createUuid
();
if
(
!
fi
.
exists
()
||
!
pDocumentProxy
)
...
...
@@ -862,7 +867,7 @@ QString UBPersistenceManager::addObjectToTeacherGuideDirectory(UBDocumentProxy*
QDir
dir
;
dir
.
mkdir
(
pDocumentProxy
->
persistencePath
()
+
"/"
+
UBPersistenceManager
::
teacherGuideDirectory
);
QFile
source
(
p
P
ath
);
QFile
source
(
path
);
source
.
copy
(
destPath
);
}
...
...
src/domain/UBGraphicsAudioItem.cpp
View file @
46e6b57e
...
...
@@ -96,6 +96,8 @@ UBItem* UBGraphicsAudioItem::deepCopy() const
UBGraphicsAudioItem
*
copy
=
new
UBGraphicsAudioItem
(
audioUrl
,
parentItem
());
connect
(
UBApplication
::
boardController
,
SIGNAL
(
activeSceneChanged
()),
copy
,
SLOT
(
activeSceneChanged
()));
copy
->
setPos
(
this
->
pos
());
copy
->
setTransform
(
this
->
transform
());
copy
->
setFlag
(
QGraphicsItem
::
ItemIsMovable
,
true
);
...
...
src/domain/UBGraphicsScene.cpp
View file @
46e6b57e
This diff is collapsed.
Click to expand it.
src/domain/UBGraphicsVideoItem.cpp
View file @
46e6b57e
...
...
@@ -69,6 +69,8 @@ UBItem* UBGraphicsVideoItem::deepCopy() const
UBGraphicsVideoItem
*
copy
=
new
UBGraphicsVideoItem
(
videoUrl
,
parentItem
());
connect
(
UBApplication
::
boardController
,
SIGNAL
(
activeSceneChanged
()),
copy
,
SLOT
(
activeSceneChanged
()));
copy
->
setPos
(
this
->
pos
());
copy
->
setTransform
(
this
->
transform
());
copy
->
setFlag
(
QGraphicsItem
::
ItemIsMovable
,
true
);
...
...
src/domain/UBW3CWidget.cpp
View file @
46e6b57e
...
...
@@ -247,7 +247,9 @@ QString UBW3CWidget::createNPAPIWrapperInDir(const QString& pUrl, const QDir& pD
{
QString
url
=
pUrl
;
// if the file name start with file:// it has be removed because QFileInfo doesn't support this form
url
=
url
.
replace
(
"file://"
,
""
);
//
url
=
url
.
replace
(
"file:///"
,
""
);
url
=
url
.
replace
(
"file://"
,
""
);
QString
name
=
pName
;
QFileInfo
fi
(
url
);
...
...
@@ -304,7 +306,8 @@ QString UBW3CWidget::createNPAPIWrapperInDir(const QString& pUrl, const QDir& pD
if
(
fi
.
exists
()){
QString
target
=
widgetLibraryPath
+
"/"
+
fi
.
fileName
();
QString
source
=
pUrl
;
source
.
replace
(
"file://"
,
""
);
source
.
replace
(
"file:///"
,
""
);
source
.
replace
(
"file://"
,
""
);
QFile
::
copy
(
source
,
target
);
}
...
...
src/gui/UBTeacherGuideWidget.cpp
View file @
46e6b57e
...
...
@@ -533,7 +533,13 @@ void UBTeacherGuidePresentationWidget::showData(QVector<tUBGEElementNode*> data)
newWidgetItem
->
setText
(
0
,
element
->
attributes
.
value
(
"title"
));
newWidgetItem
->
setData
(
0
,
tUBTGTreeWidgetItemRole_HasAnAction
,
tUBTGActionAssociateOnClickItem_MEDIA
);
newWidgetItem
->
setData
(
0
,
Qt
::
FontRole
,
QVariant
(
QFont
(
QApplication
::
font
().
family
(),
11
)));
newWidgetItem
->
setData
(
0
,
TG_USER_ROLE_MIME_TYPE
,
UBApplication
::
boardController
->
activeDocument
()
->
persistencePath
()
+
"/"
+
element
->
attributes
.
value
(
"relativePath"
));
QString
mimeTypeString
;
#ifdef Q_WS_WIN
mimeTypeString
=
QUrl
::
fromLocalFile
(
UBApplication
::
boardController
->
activeDocument
()
->
persistencePath
()
+
"/"
+
element
->
attributes
.
value
(
"relativePath"
)).
toString
();
#else
mimeTypeString
=
UBApplication
::
boardController
->
activeDocument
()
->
persistencePath
()
+
"/"
+
element
->
attributes
.
value
(
"relativePath"
);
#endif
newWidgetItem
->
setData
(
0
,
TG_USER_ROLE_MIME_TYPE
,
mimeTypeString
);
newWidgetItem
->
setFlags
(
Qt
::
ItemIsDragEnabled
|
Qt
::
ItemIsEnabled
|
Qt
::
ItemIsSelectable
);
mpRootWidgetItem
->
addChild
(
newWidgetItem
);
...
...
src/gui/UBTeacherGuideWidgetsTools.cpp
View file @
46e6b57e
...
...
@@ -230,11 +230,14 @@ void UBTGAdaptableText::bottomMargin(int newValue)
* class UBTGDraggableWeb *
***************************************************************************/
UBDraggableWeb
::
UBDraggableWeb
(
QString
&
relativePath
,
QWidget
*
parent
)
:
QWebView
(
parent
)
,
mRelativePath
(
relativePath
)
,
mDragStartPosition
(
QPoint
(
-
1
,
-
1
))
,
mDragStarted
(
false
)
{
if
(
!
relativePath
.
startsWith
(
"file://"
))
mRelativePath
=
QUrl
::
fromLocalFile
(
relativePath
).
toString
();
else
mRelativePath
=
relativePath
;
//NOOP
}
...
...
@@ -372,7 +375,7 @@ tUBGEElementNode* UBTGMediaWidget::saveData()
tUBGEElementNode
*
result
=
new
tUBGEElementNode
();
QString
relativePath
=
mMediaPath
;
relativePath
=
relativePath
.
replace
(
UBApplication
::
boardController
->
activeDocument
()
->
persistencePath
()
+
"/"
,
""
);
result
->
name
=
"media"
;
result
->
name
=
"media"
;
result
->
attributes
.
insert
(
"title"
,
mpTitle
->
text
());
result
->
attributes
.
insert
(
"relativePath"
,
relativePath
);
result
->
attributes
.
insert
(
"mediaType"
,
mMediaType
);
...
...
@@ -499,7 +502,11 @@ void UBTGMediaWidget::mousePressEvent(QMouseEvent *event)
QDrag
*
drag
=
new
QDrag
(
this
);
QMimeData
*
mimeData
=
new
QMimeData
();
QList
<
QUrl
>
urlList
;
#ifdef Q_WS_WIN
urlList
<<
QUrl
::
fromLocalFile
(
mMediaPath
);
#else
urlList
<<
QUrl
(
mMediaPath
);
#endif
mimeData
->
setUrls
(
urlList
);
drag
->
setMimeData
(
mimeData
);
...
...
src/gui/UBThumbnailWidget.cpp
View file @
46e6b57e
...
...
@@ -842,7 +842,7 @@ void UBSceneThumbnailNavigPixmap::updateButtonsState()
}
}
}
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
and
sceneIndex
()
<=
1
)
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
&&
sceneIndex
()
<=
1
)
bCanMoveUp
=
false
;
if
(
bCanDelete
||
bCanMoveUp
||
bCanMoveDown
)
...
...
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