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
947149ea
Commit
947149ea
authored
Sep 11, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bad workaround for issue 1125
parent
ed6f6c48
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
61 additions
and
55 deletions
+61
-55
UBSvgSubsetAdaptor.cpp
src/adaptors/UBSvgSubsetAdaptor.cpp
+1
-1
UBThumbnailAdaptor.cpp
src/adaptors/UBThumbnailAdaptor.cpp
+0
-1
UBApplication.cpp
src/core/UBApplication.cpp
+2
-4
UBDocumentManager.cpp
src/core/UBDocumentManager.cpp
+47
-47
UBPersistenceManager.cpp
src/core/UBPersistenceManager.cpp
+9
-0
main.cpp
src/core/main.cpp
+2
-2
No files found.
src/adaptors/UBSvgSubsetAdaptor.cpp
View file @
947149ea
...
...
@@ -238,7 +238,7 @@ QString UBSvgSubsetAdaptor::uniboardDocumentNamespaceUriFromVersion(int mFileVer
UBGraphicsScene
*
UBSvgSubsetAdaptor
::
loadScene
(
UBDocumentProxy
*
proxy
,
const
int
pageIndex
)
{
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.svg"
,
pageIndex
);
qDebug
()
<<
fileName
;
QFile
file
(
fileName
);
if
(
file
.
exists
())
...
...
src/adaptors/UBThumbnailAdaptor.cpp
View file @
947149ea
...
...
@@ -96,7 +96,6 @@ void UBThumbnailAdaptor::updateDocumentToHandleZeroPage(UBDocumentProxy* proxy)
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
()){
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.svg"
,
0
);
QFile
file
(
fileName
);
qDebug
()
<<
fileName
;
if
(
!
file
.
exists
()){
UBPersistenceManager
::
persistenceManager
()
->
persistDocumentScene
(
proxy
,
new
UBGraphicsScene
(
proxy
),
0
);
}
...
...
src/core/UBApplication.cpp
View file @
947149ea
...
...
@@ -224,8 +224,7 @@ void UBApplication::setupTranslators(QStringList args)
if
(
!
setLanguage
.
isEmpty
())
forcedLanguage
=
setLanguage
;
}
QStringList
availablesTranslations
=
UBPlatformUtils
::
availableTranslations
();
QString
language
(
""
);
if
(
!
forcedLanguage
.
isEmpty
())
...
...
@@ -362,14 +361,13 @@ int UBApplication::exec(const QString& pFileToImport)
boardController
->
setupLayout
();
if
(
pFileToImport
.
length
()
>
0
)
{
UBApplication
::
applicationController
->
importFile
(
pFileToImport
);
}
#if defined(Q_WS_MAC)
static
AEEventHandlerUPP
ub_proc_ae_handlerUPP
=
AEEventHandlerUPP
(
ub_appleEventProcessor
);
AEInstallEventHandler
(
kCoreEventClass
,
kAEReopenApplication
,
ub_proc_ae_handlerUPP
,
SRefCon
(
UBApplication
::
applicationController
),
true
);
#endif
if
(
UBSettings
::
settings
()
->
appStartMode
->
get
()
==
"Desktop"
)
applicationController
->
showDesktop
();
else
...
...
src/core/UBDocumentManager.cpp
View file @
947149ea
...
...
@@ -149,32 +149,32 @@ UBDocumentProxy* UBDocumentManager::importFile(const QFile& pFile, const QString
UBPageBasedImportAdaptor
*
importAdaptor
=
(
UBPageBasedImportAdaptor
*
)
adaptor
;
// Document import procedure.....
QString
documentName
=
QFileInfo
(
pFile
.
fileName
()).
completeBaseName
();
document
=
UBPersistenceManager
::
persistenceManager
()
->
createDocument
(
pGroup
,
documentName
);
QUuid
uuid
=
QUuid
::
createUuid
();
QString
filepath
=
pFile
.
fileName
();
if
(
importAdaptor
->
folderToCopy
()
!=
""
)
{
bool
b
=
UBPersistenceManager
::
persistenceManager
()
->
addFileToDocument
(
document
,
pFile
.
fileName
(),
importAdaptor
->
folderToCopy
()
,
uuid
,
filepath
);
if
(
!
b
)
{
UBPersistenceManager
::
persistenceManager
()
->
deleteDocument
(
document
);
UBApplication
::
setDisabled
(
false
);
return
NULL
;
}
}
QList
<
UBGraphicsItem
*>
pages
=
importAdaptor
->
import
(
uuid
,
filepath
);
int
nPage
=
0
;
foreach
(
UBGraphicsItem
*
page
,
pages
)
{
UBApplication
::
showMessage
(
tr
(
"Inserting page %1 of %2"
).
arg
(
++
nPage
).
arg
(
pages
.
size
()),
true
);
int
pageIndex
=
document
->
pageCount
();
UBGraphicsScene
*
scene
=
UBPersistenceManager
::
persistenceManager
()
->
createDocumentSceneAt
(
document
,
pageIndex
);
importAdaptor
->
placeImportedItemToScene
(
scene
,
page
);
UBPersistenceManager
::
persistenceManager
()
->
persistDocumentScene
(
document
,
scene
,
pageIndex
);
}
QString
documentName
=
QFileInfo
(
pFile
.
fileName
()).
completeBaseName
();
document
=
UBPersistenceManager
::
persistenceManager
()
->
createDocument
(
pGroup
,
documentName
);
QUuid
uuid
=
QUuid
::
createUuid
();
QString
filepath
=
pFile
.
fileName
();
if
(
importAdaptor
->
folderToCopy
()
!=
""
)
{
bool
b
=
UBPersistenceManager
::
persistenceManager
()
->
addFileToDocument
(
document
,
pFile
.
fileName
(),
importAdaptor
->
folderToCopy
()
,
uuid
,
filepath
);
if
(
!
b
)
{
UBPersistenceManager
::
persistenceManager
()
->
deleteDocument
(
document
);
UBApplication
::
setDisabled
(
false
);
return
NULL
;
}
}
QList
<
UBGraphicsItem
*>
pages
=
importAdaptor
->
import
(
uuid
,
filepath
);
int
nPage
=
0
;
foreach
(
UBGraphicsItem
*
page
,
pages
)
{
UBApplication
::
showMessage
(
tr
(
"Inserting page %1 of %2"
).
arg
(
++
nPage
).
arg
(
pages
.
size
()),
true
);
int
pageIndex
=
document
->
pageCount
();
UBGraphicsScene
*
scene
=
UBPersistenceManager
::
persistenceManager
()
->
createDocumentSceneAt
(
document
,
pageIndex
);
importAdaptor
->
placeImportedItemToScene
(
scene
,
page
);
UBPersistenceManager
::
persistenceManager
()
->
persistDocumentScene
(
document
,
scene
,
pageIndex
);
}
UBPersistenceManager
::
persistenceManager
()
->
persistDocumentMetadata
(
document
);
UBApplication
::
showMessage
(
tr
(
"Import successful."
));
...
...
@@ -216,28 +216,28 @@ int UBDocumentManager::addFilesToDocument(UBDocumentProxy* document, QStringList
{
UBPageBasedImportAdaptor
*
importAdaptor
=
(
UBPageBasedImportAdaptor
*
)
adaptor
;
QUuid
uuid
=
QUuid
::
createUuid
();
QString
filepath
=
file
.
fileName
();
if
(
importAdaptor
->
folderToCopy
()
!=
""
)
{
bool
b
=
UBPersistenceManager
::
persistenceManager
()
->
addFileToDocument
(
document
,
file
.
fileName
(),
importAdaptor
->
folderToCopy
()
,
uuid
,
filepath
);
if
(
!
b
)
{
continue
;
}
}
QList
<
UBGraphicsItem
*>
pages
=
importAdaptor
->
import
(
uuid
,
filepath
);
int
nPage
=
0
;
foreach
(
UBGraphicsItem
*
page
,
pages
)
{
UBApplication
::
showMessage
(
tr
(
"Inserting page %1 of %2"
).
arg
(
++
nPage
).
arg
(
pages
.
size
()),
true
);
int
pageIndex
=
document
->
pageCount
();
UBGraphicsScene
*
scene
=
UBPersistenceManager
::
persistenceManager
()
->
createDocumentSceneAt
(
document
,
pageIndex
);
importAdaptor
->
placeImportedItemToScene
(
scene
,
page
);
QUuid
uuid
=
QUuid
::
createUuid
();
QString
filepath
=
file
.
fileName
();
if
(
importAdaptor
->
folderToCopy
()
!=
""
)
{
bool
b
=
UBPersistenceManager
::
persistenceManager
()
->
addFileToDocument
(
document
,
file
.
fileName
(),
importAdaptor
->
folderToCopy
()
,
uuid
,
filepath
);
if
(
!
b
)
{
continue
;
}
}
QList
<
UBGraphicsItem
*>
pages
=
importAdaptor
->
import
(
uuid
,
filepath
);
int
nPage
=
0
;
foreach
(
UBGraphicsItem
*
page
,
pages
)
{
UBApplication
::
showMessage
(
tr
(
"Inserting page %1 of %2"
).
arg
(
++
nPage
).
arg
(
pages
.
size
()),
true
);
int
pageIndex
=
document
->
pageCount
();
UBGraphicsScene
*
scene
=
UBPersistenceManager
::
persistenceManager
()
->
createDocumentSceneAt
(
document
,
pageIndex
);
importAdaptor
->
placeImportedItemToScene
(
scene
,
page
);
UBPersistenceManager
::
persistenceManager
()
->
persistDocumentScene
(
document
,
scene
,
pageIndex
);
UBApplication
::
boardController
->
addEmptyThumbPage
();
}
UBApplication
::
boardController
->
addEmptyThumbPage
();
}
UBPersistenceManager
::
persistenceManager
()
->
persistDocumentMetadata
(
document
);
UBApplication
::
showMessage
(
tr
(
"Import of file %1 successful."
).
arg
(
file
.
fileName
()));
...
...
src/core/UBPersistenceManager.cpp
View file @
947149ea
...
...
@@ -587,6 +587,15 @@ UBGraphicsScene* UBPersistenceManager::loadDocumentScene(UBDocumentProxy* proxy,
return
mSceneCache
.
value
(
proxy
,
sceneIndex
);
else
{
UBGraphicsScene
*
scene
=
UBSvgSubsetAdaptor
::
loadScene
(
proxy
,
sceneIndex
);
// claudio: this is not a good fix but this code has to be reworked
if
(
!
scene
&&
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
()){
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.svg"
,
0
);
QFile
file
(
fileName
);
if
(
!
file
.
exists
()){
UBPersistenceManager
::
persistenceManager
()
->
persistDocumentScene
(
proxy
,
new
UBGraphicsScene
(
proxy
),
0
);
}
scene
=
UBSvgSubsetAdaptor
::
loadScene
(
proxy
,
0
);
}
if
(
scene
)
mSceneCache
.
insert
(
proxy
,
sceneIndex
,
scene
);
...
...
src/core/main.cpp
View file @
947149ea
...
...
@@ -127,9 +127,9 @@ int main(int argc, char *argv[])
app
.
initialize
(
false
);
QObject
::
connect
(
&
app
,
SIGNAL
(
messageReceived
(
const
QString
&
)),
&
app
,
SLOT
(
handleOpenMessage
(
const
QString
&
)));
QObject
::
connect
(
&
app
,
SIGNAL
(
messageReceived
(
const
QString
&
)),
&
app
,
SLOT
(
handleOpenMessage
(
const
QString
&
)));
qDebug
()
<<
fileToOpen
;
int
result
=
app
.
exec
(
fileToOpen
);
app
.
cleanup
();
...
...
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