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
404ccb6d
Commit
404ccb6d
authored
Jul 24, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed issue 794
parent
24f8135d
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
22 additions
and
99 deletions
+22
-99
UBSvgSubsetAdaptor.cpp
src/adaptors/UBSvgSubsetAdaptor.cpp
+4
-1
UBThumbnailAdaptor.cpp
src/adaptors/UBThumbnailAdaptor.cpp
+15
-73
UBThumbnailAdaptor.h
src/adaptors/UBThumbnailAdaptor.h
+1
-0
UBBoardController.cpp
src/board/UBBoardController.cpp
+0
-13
UBBoardPaletteManager.cpp
src/board/UBBoardPaletteManager.cpp
+1
-1
UBPersistenceManager.cpp
src/core/UBPersistenceManager.cpp
+1
-1
UBDocumentController.cpp
src/document/UBDocumentController.cpp
+0
-7
UBDocumentController.h
src/document/UBDocumentController.h
+0
-3
No files found.
src/adaptors/UBSvgSubsetAdaptor.cpp
View file @
404ccb6d
...
@@ -1405,7 +1405,10 @@ bool UBSvgSubsetAdaptor::UBSvgSubsetWriter::persistScene(int pageIndex)
...
@@ -1405,7 +1405,10 @@ bool UBSvgSubsetAdaptor::UBSvgSubsetWriter::persistScene(int pageIndex)
}
}
QMap
<
QString
,
IDataStorage
*>
elements
=
getAdditionalElementToStore
();
QMap
<
QString
,
IDataStorage
*>
elements
=
getAdditionalElementToStore
();
QVector
<
tIDataStorage
*>
dataStorageItems
=
elements
.
value
(
"teacherGuide"
)
->
save
(
pageIndex
);
QVector
<
tIDataStorage
*>
dataStorageItems
;
if
(
elements
.
value
(
"teacherGuide"
))
dataStorageItems
=
elements
.
value
(
"teacherGuide"
)
->
save
(
pageIndex
);
foreach
(
tIDataStorage
*
eachItem
,
dataStorageItems
){
foreach
(
tIDataStorage
*
eachItem
,
dataStorageItems
){
if
(
eachItem
->
type
==
eElementType_START
){
if
(
eachItem
->
type
==
eElementType_START
){
mXmlWriter
.
writeStartElement
(
eachItem
->
name
);
mXmlWriter
.
writeStartElement
(
eachItem
->
name
);
...
...
src/adaptors/UBThumbnailAdaptor.cpp
View file @
404ccb6d
...
@@ -91,92 +91,34 @@ const QPixmap* UBThumbnailAdaptor::get(UBDocumentProxy* proxy, int pageIndex)
...
@@ -91,92 +91,34 @@ const QPixmap* UBThumbnailAdaptor::get(UBDocumentProxy* proxy, int pageIndex)
return
pix
;
return
pix
;
}
}
void
UBThumbnailAdaptor
::
load
(
UBDocumentProxy
*
proxy
,
QList
<
const
QPixmap
*>&
list
)
void
UBThumbnailAdaptor
::
updateDocumentToHandleZeroPage
(
UBDocumentProxy
*
proxy
)
{
generateMissingThumbnails
(
proxy
);
foreach
(
const
QPixmap
*
pm
,
list
)
delete
pm
;
list
.
clear
();
for
(
int
i
=
0
;
i
<
proxy
->
pageCount
();
i
++
)
list
.
append
(
get
(
proxy
,
i
));
}
/*
QList<QPixmap> UBThumbnailAdaptor::load(UBDocumentProxy* proxy)
{
{
QList<QPixmap> thumbnails;
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
()){
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.svg"
,
0
);
qDebug() << "Loadinf thumbnails for " << proxy->name();
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
bool moreToProcess = true;
int pageCount = UBApplication::boardController->sceneIndexFromPage(0);
while (moreToProcess) {
pageCount++;
QString fileName = proxy->persistencePath() + UBFileSystemUtils::digitFileFormat("/page%1.thumbnail.jpg", pageCount);
QFile
file
(
fileName
);
QFile
file
(
fileName
);
if (file.exists()) {
qDebug
()
<<
fileName
;
QPixmap pix;
if
(
!
file
.
exists
()){
//Warning. Works only with modified Qt
UBPersistenceManager
::
persistenceManager
()
->
persistDocumentScene
(
proxy
,
new
UBGraphicsScene
(
proxy
),
0
);
#ifdef Q_WS_X11
//pix.load(fileName, 0, Qt::AutoColor);
pix.load(fileName, 0);
#else
pix.load(fileName, 0, Qt::AutoColor, false);
#endif
thumbnails.append(pix);
} else {
moreToProcess = false;
}
}
}
}
return thumbnails;
}
}
QPixmap UBThumbnailAdaptor::load(UBDocumentProxy* proxy, int index
)
void
UBThumbnailAdaptor
::
load
(
UBDocumentProxy
*
proxy
,
QList
<
const
QPixmap
*>&
list
)
{
{
qDebug() << "Loadinf thumbnails for " << proxy->name();
updateDocumentToHandleZeroPage
(
proxy
);
int existingPageCount = proxy->pageCount();
if (!proxy || proxy->persistencePath().size() == 0 || index < 0 || index > existingPageCount)
return QPixmap();
//compatibility with older formats (<= 4.0.b.2.0) : generate missing thumbnails
generateMissingThumbnails
(
proxy
);
generateMissingThumbnails
(
proxy
);
//end compatibility with older format
foreach
(
const
QPixmap
*
pm
,
list
)
QString fileName = proxy->persistencePath() + UBFileSystemUtils::digitFileFormat("/page%1.thumbnail.jpg", index);
delete
pm
;
list
.
clear
();
QFile file(fileName);
for
(
int
i
=
0
;
i
<
proxy
->
pageCount
();
i
++
)
if (file.exists())
list
.
append
(
get
(
proxy
,
i
));
{
QPixmap pix;
//Warning. Works only with modified Qt
#ifdef Q_WS_X11
pix.load(fileName, 0, Qt::AutoColor);
#else
pix.load(fileName, 0, Qt::AutoColor, false);
#endif
return pix;
}
return QPixmap();
}
}
*/
void
UBThumbnailAdaptor
::
persistScene
(
UBDocumentProxy
*
proxy
,
UBGraphicsScene
*
pScene
,
int
pageIndex
,
bool
overrideModified
)
void
UBThumbnailAdaptor
::
persistScene
(
UBDocumentProxy
*
proxy
,
UBGraphicsScene
*
pScene
,
int
pageIndex
,
bool
overrideModified
)
{
{
qDebug
()
<<
"Persist
e
scene on path "
<<
proxy
->
persistencePath
()
<<
", index "
<<
pageIndex
;
qDebug
()
<<
"Persist scene on path "
<<
proxy
->
persistencePath
()
<<
", index "
<<
pageIndex
;
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
pageIndex
);
QString
fileName
=
proxy
->
persistencePath
()
+
UBFileSystemUtils
::
digitFileFormat
(
"/page%1.thumbnail.jpg"
,
pageIndex
);
...
...
src/adaptors/UBThumbnailAdaptor.h
View file @
404ccb6d
...
@@ -35,6 +35,7 @@ public:
...
@@ -35,6 +35,7 @@ public:
private
:
private
:
static
void
generateMissingThumbnails
(
UBDocumentProxy
*
proxy
);
static
void
generateMissingThumbnails
(
UBDocumentProxy
*
proxy
);
static
void
updateDocumentToHandleZeroPage
(
UBDocumentProxy
*
proxy
);
UBThumbnailAdaptor
()
{}
UBThumbnailAdaptor
()
{}
};
};
...
...
src/board/UBBoardController.cpp
View file @
404ccb6d
...
@@ -106,18 +106,6 @@ void UBBoardController::init()
...
@@ -106,18 +106,6 @@ void UBBoardController::init()
setupViews
();
setupViews
();
setupToolbar
();
setupToolbar
();
//connect(UBPersistenceManager::persistenceManager(), SIGNAL(documentWillBeDeleted(UBDocumentProxy*))
// , this, SLOT(documentWillBeDeleted(UBDocumentProxy*)));
//connect(UBPersistenceManager::persistenceManager(), SIGNAL(documentSceneCreated(UBDocumentProxy*, int))
// , this, SLOT(documentSceneChanged(UBDocumentProxy*, int)));
//connect(UBPersistenceManager::persistenceManager(), SIGNAL(documentSceneDeleted(UBDocumentProxy*, int))
// , this, SLOT(documentSceneChanged(UBDocumentProxy*, int)));
//connect(UBPersistenceManager::persistenceManager(), SIGNAL(documentSceneMoved(UBDocumentProxy*, int))
// , this, SLOT(documentSceneChanged(UBDocumentProxy*, int)));
connect
(
UBApplication
::
undoStack
,
SIGNAL
(
canUndoChanged
(
bool
))
connect
(
UBApplication
::
undoStack
,
SIGNAL
(
canUndoChanged
(
bool
))
,
this
,
SLOT
(
undoRedoStateChange
(
bool
)));
,
this
,
SLOT
(
undoRedoStateChange
(
bool
)));
...
@@ -468,7 +456,6 @@ void UBBoardController::addScene()
...
@@ -468,7 +456,6 @@ void UBBoardController::addScene()
QApplication
::
restoreOverrideCursor
();
QApplication
::
restoreOverrideCursor
();
}
}
void
UBBoardController
::
addScene
(
UBGraphicsScene
*
scene
,
bool
replaceActiveIfEmpty
)
void
UBBoardController
::
addScene
(
UBGraphicsScene
*
scene
,
bool
replaceActiveIfEmpty
)
{
{
if
(
scene
)
if
(
scene
)
...
...
src/board/UBBoardPaletteManager.cpp
View file @
404ccb6d
...
@@ -150,7 +150,7 @@ void UBBoardPaletteManager::setupDockPaletteWidgets()
...
@@ -150,7 +150,7 @@ void UBBoardPaletteManager::setupDockPaletteWidgets()
mLeftPalette
->
registerWidget
(
mpPageNavigWidget
);
mLeftPalette
->
registerWidget
(
mpPageNavigWidget
);
mLeftPalette
->
addTab
(
mpPageNavigWidget
);
mLeftPalette
->
addTab
(
mpPageNavigWidget
);
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
||
UBSettings
::
settings
()
->
teacherGuideLessonPagesActivated
){
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
()
||
UBSettings
::
settings
()
->
teacherGuideLessonPagesActivated
->
get
().
toBool
()
){
mpTeacherGuideWidget
=
new
UBDockTeacherGuideWidget
();
mpTeacherGuideWidget
=
new
UBDockTeacherGuideWidget
();
mLeftPalette
->
registerWidget
(
mpTeacherGuideWidget
);
mLeftPalette
->
registerWidget
(
mpTeacherGuideWidget
);
mLeftPalette
->
addTab
(
mpTeacherGuideWidget
);
mLeftPalette
->
addTab
(
mpTeacherGuideWidget
);
...
...
src/core/UBPersistenceManager.cpp
View file @
404ccb6d
...
@@ -676,7 +676,7 @@ int UBPersistenceManager::sceneCountInDir(const QString& pPath)
...
@@ -676,7 +676,7 @@ int UBPersistenceManager::sceneCountInDir(const QString& pPath)
}
}
else
else
{
{
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
&&
pageIndex
==
0
){
if
(
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
()
&&
pageIndex
==
0
){
// the document has no zero file but doesn't means that it hasn't any file
// the document has no zero file but doesn't means that it hasn't any file
// at all. Just importing a document without the first page using a configuartion
// at all. Just importing a document without the first page using a configuartion
// that enables zero page.
// that enables zero page.
...
...
src/document/UBDocumentController.cpp
View file @
404ccb6d
...
@@ -74,15 +74,9 @@ UBDocumentController::UBDocumentController(UBMainWindow* mainWindow)
...
@@ -74,15 +74,9 @@ UBDocumentController::UBDocumentController(UBMainWindow* mainWindow)
setupToolbar
();
setupToolbar
();
this
->
selectDocument
(
UBApplication
::
boardController
->
selectedDocument
());
this
->
selectDocument
(
UBApplication
::
boardController
->
selectedDocument
());
connect
(
this
,
SIGNAL
(
exportDone
()),
mMainWindow
,
SLOT
(
onExportDone
()));
connect
(
this
,
SIGNAL
(
exportDone
()),
mMainWindow
,
SLOT
(
onExportDone
()));
//connect(mMainWindow->actionNewPage, SIGNAL(triggered()), this, SLOT(reloadThumbs()));
connect
(
this
,
SIGNAL
(
documentThumbnailsUpdated
(
UBDocumentContainer
*
)),
this
,
SLOT
(
refreshDocumentThumbnailsView
(
UBDocumentContainer
*
)));
connect
(
this
,
SIGNAL
(
documentThumbnailsUpdated
(
UBDocumentContainer
*
)),
this
,
SLOT
(
refreshDocumentThumbnailsView
(
UBDocumentContainer
*
)));
}
}
//void UBDocumentController::reloadThumbs()
//{
// UBThumbnailAdaptor::load(selectedDocumentProxy(), mDocumentThumbs);
//}
UBDocumentController
::~
UBDocumentController
()
UBDocumentController
::~
UBDocumentController
()
{
{
if
(
mDocumentUI
)
if
(
mDocumentUI
)
...
@@ -1654,6 +1648,5 @@ void UBDocumentController::refreshDocumentThumbnailsView(UBDocumentContainer*)
...
@@ -1654,6 +1648,5 @@ void UBDocumentController::refreshDocumentThumbnailsView(UBDocumentContainer*)
connect
(
mDocumentUI
->
thumbnailWidget
->
scene
(),
SIGNAL
(
selectionChanged
()),
this
,
SLOT
(
pageSelectionChanged
()));
connect
(
mDocumentUI
->
thumbnailWidget
->
scene
(),
SIGNAL
(
selectionChanged
()),
this
,
SLOT
(
pageSelectionChanged
()));
}
}
//emit refreshThumbnails();
QApplication
::
restoreOverrideCursor
();
QApplication
::
restoreOverrideCursor
();
}
}
src/document/UBDocumentController.h
View file @
404ccb6d
...
@@ -57,9 +57,7 @@ class UBDocumentController : public UBDocumentContainer
...
@@ -57,9 +57,7 @@ class UBDocumentController : public UBDocumentContainer
bool
pageCanBeDeleted
(
int
page
);
bool
pageCanBeDeleted
(
int
page
);
signals
:
signals
:
//void refreshThumbnails();
void
exportDone
();
void
exportDone
();
//void movedToIndex(int index);
public
slots
:
public
slots
:
void
createNewDocument
();
void
createNewDocument
();
...
@@ -80,7 +78,6 @@ class UBDocumentController : public UBDocumentContainer
...
@@ -80,7 +78,6 @@ class UBDocumentController : public UBDocumentContainer
void
copy
();
void
copy
();
void
paste
();
void
paste
();
void
focusChanged
(
QWidget
*
old
,
QWidget
*
current
);
void
focusChanged
(
QWidget
*
old
,
QWidget
*
current
);
//void reloadThumbs();
protected
:
protected
:
virtual
void
setupViews
();
virtual
void
setupViews
();
...
...
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