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
931e099e
Commit
931e099e
authored
Sep 05, 2012
by
Claudio Valerio
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added toque on page thumbnail depending if the teacherguide is filled out or not
parent
5bb5444b
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
24 deletions
+38
-24
toque.png
resources/images/toque.png
+0
-0
sankore.qrc
resources/sankore.qrc
+1
-0
UBDocumentController.cpp
src/document/UBDocumentController.cpp
+8
-15
UBDocumentNavigator.cpp
src/gui/UBDocumentNavigator.cpp
+28
-6
UBTeacherGuideWidget.cpp
src/gui/UBTeacherGuideWidget.cpp
+1
-3
No files found.
resources/images/toque.png
0 → 100644
View file @
931e099e
3.34 KB
resources/sankore.qrc
View file @
931e099e
...
...
@@ -365,5 +365,6 @@
<file>images/teacherGuide/pencil.svg</file>
<file>images/duplicateDisabled.svg</file>
<file>images/teacherGuide/flash_24x24.svg</file>
<file>images/toque.png</file>
</qresource>
</RCC>
src/document/UBDocumentController.cpp
View file @
931e099e
...
...
@@ -363,25 +363,18 @@ void UBDocumentController::setupViews()
connect
(
mDocumentUI
->
thumbnailWidget
,
SIGNAL
(
sceneDropped
(
UBDocumentProxy
*
,
int
,
int
)),
this
,
SLOT
(
moveSceneToIndex
(
UBDocumentProxy
*
,
int
,
int
)));
connect
(
mDocumentUI
->
thumbnailWidget
,
SIGNAL
(
resized
()),
this
,
SLOT
(
thumbnailViewResized
()));
connect
(
mDocumentUI
->
thumbnailWidget
,
SIGNAL
(
mouseDoubleClick
(
QGraphicsItem
*
,
int
)),
this
,
SLOT
(
pageDoubleClicked
(
QGraphicsItem
*
,
int
)));
connect
(
mDocumentUI
->
thumbnailWidget
,
SIGNAL
(
mouseClick
(
QGraphicsItem
*
,
int
)),
this
,
SLOT
(
pageClicked
(
QGraphicsItem
*
,
int
)));
connect
(
mDocumentUI
->
thumbnailWidget
,
SIGNAL
(
mouseDoubleClick
(
QGraphicsItem
*
,
int
)),
this
,
SLOT
(
pageDoubleClicked
(
QGraphicsItem
*
,
int
)));
connect
(
mDocumentUI
->
thumbnailWidget
,
SIGNAL
(
mouseClick
(
QGraphicsItem
*
,
int
)),
this
,
SLOT
(
pageClicked
(
QGraphicsItem
*
,
int
)));
connect
(
mDocumentUI
->
thumbnailWidget
->
scene
(),
SIGNAL
(
selectionChanged
()),
this
,
SLOT
(
pageSelectionChanged
()));
connect
(
mDocumentUI
->
thumbnailWidget
->
scene
(),
SIGNAL
(
selectionChanged
()),
this
,
SLOT
(
pageSelectionChanged
()));
connect
(
UBPersistenceManager
::
persistenceManager
(),
SIGNAL
(
documentCreated
(
UBDocumentProxy
*
)),
this
,
SLOT
(
addDocumentInTree
(
UBDocumentProxy
*
)));
connect
(
UBPersistenceManager
::
persistenceManager
(),
SIGNAL
(
documentCreated
(
UBDocumentProxy
*
)),
this
,
SLOT
(
addDocumentInTree
(
UBDocumentProxy
*
)));
connect
(
UBPersistenceManager
::
persistenceManager
(),
SIGNAL
(
documentMetadataChanged
(
UBDocumentProxy
*
)),
this
,
SLOT
(
updateDocumentInTree
(
UBDocumentProxy
*
)));
connect
(
UBPersistenceManager
::
persistenceManager
(),
SIGNAL
(
documentMetadataChanged
(
UBDocumentProxy
*
)),
this
,
SLOT
(
updateDocumentInTree
(
UBDocumentProxy
*
)));
connect
(
UBPersistenceManager
::
persistenceManager
(),
SIGNAL
(
documentSceneCreated
(
UBDocumentProxy
*
,
int
)),
this
,
SLOT
(
documentSceneChanged
(
UBDocumentProxy
*
,
int
)));
connect
(
UBPersistenceManager
::
persistenceManager
(),
SIGNAL
(
documentSceneCreated
(
UBDocumentProxy
*
,
int
)),
this
,
SLOT
(
documentSceneChanged
(
UBDocumentProxy
*
,
int
)));
connect
(
UBPersistenceManager
::
persistenceManager
(),
SIGNAL
(
documentSceneWillBeDeleted
(
UBDocumentProxy
*
,
int
)),
this
,
SLOT
(
documentSceneChanged
(
UBDocumentProxy
*
,
int
)));
connect
(
UBPersistenceManager
::
persistenceManager
(),
SIGNAL
(
documentSceneWillBeDeleted
(
UBDocumentProxy
*
,
int
)),
this
,
SLOT
(
documentSceneChanged
(
UBDocumentProxy
*
,
int
)));
mDocumentUI
->
thumbnailWidget
->
setBackgroundBrush
(
UBSettings
::
documentViewLightColor
);
...
...
@@ -996,7 +989,7 @@ void UBDocumentController::addFolderOfImages()
if
(
importedImageNumber
==
0
)
{
showMessage
(
tr
(
"Folder does not contain any image files
!
"
));
showMessage
(
tr
(
"Folder does not contain any image files"
));
UBApplication
::
applicationController
->
showDocument
();
}
else
...
...
src/gui/UBDocumentNavigator.cpp
View file @
931e099e
...
...
@@ -69,6 +69,9 @@ UBDocumentNavigator::~UBDocumentNavigator()
}
}
#include "gui/UBDockTeacherGuideWidget.h"
#include "gui/UBTeacherGuideWidget.h"
/**
* \brief Generate the thumbnails
*/
...
...
@@ -84,10 +87,31 @@ void UBDocumentNavigator::generateThumbnails(UBDocumentContainer* source)
for
(
int
i
=
0
;
i
<
source
->
selectedDocument
()
->
pageCount
();
i
++
)
{
const
QPixmap
*
pix
=
source
->
pageAt
(
i
);
UBSceneThumbnailNavigPixmap
*
pixmapItem
=
new
UBSceneThumbnailNavigPixmap
(
*
pix
,
source
->
selectedDocument
(),
i
);
QPixmap
result
(
pix
->
width
(),
pix
->
height
()
);
int
pageIndex
=
UBDocumentContainer
::
pageFromSceneIndex
(
i
);
QString
label
=
pageIndex
==
0
?
tr
(
"Title page"
)
:
tr
(
"Page %0"
).
arg
(
pageIndex
);
QPainter
composePainter
;
composePainter
.
begin
(
&
result
);
composePainter
.
drawPixmap
(
QPoint
(
0
,
0
),
*
pix
);
if
(
pageIndex
==
UBApplication
::
boardController
->
currentPage
()
&&
((
pageIndex
==
0
&&
UBSettings
::
settings
()
->
teacherGuidePageZeroActivated
->
get
().
toBool
())
||
(
pageIndex
&&
UBSettings
::
settings
()
->
teacherGuideLessonPagesActivated
->
get
().
toBool
()))
)
{
if
(
UBApplication
::
boardController
->
paletteManager
()
->
teacherGuideDockWidget
()
->
teacherGuideWidget
()
->
isModified
()){
QPixmap
toque
(
":images/toque.png"
);
composePainter
.
setOpacity
(
0.6
);
composePainter
.
drawPixmap
(
QPoint
(
pix
->
width
()
-
toque
.
width
(),
0
),
toque
);
}
}
composePainter
.
end
();
UBSceneThumbnailNavigPixmap
*
pixmapItem
=
new
UBSceneThumbnailNavigPixmap
(
result
,
source
->
selectedDocument
(),
i
);
QString
label
=
pageIndex
==
0
?
tr
(
"Title page"
)
:
tr
(
"Page %0"
).
arg
(
pageIndex
);
UBThumbnailTextItem
*
labelItem
=
new
UBThumbnailTextItem
(
label
);
UBImgTextThumbnailElement
thumbWithText
(
pixmapItem
,
labelItem
);
...
...
@@ -104,7 +128,7 @@ void UBDocumentNavigator::generateThumbnails(UBDocumentContainer* source)
void
UBDocumentNavigator
::
onScrollToSelectedPage
(
int
index
)
{
qDebug
()
<<
"Selection in widet: "
<<
index
;
qDebug
()
<<
"Selection in wid
g
et: "
<<
index
;
int
c
=
0
;
foreach
(
UBImgTextThumbnailElement
el
,
mThumbsWithLabels
)
{
...
...
@@ -118,7 +142,6 @@ void UBDocumentNavigator::onScrollToSelectedPage(int index)
}
c
++
;
}
// centerOn(mThumbsWithLabels[index].getThumbnail());
}
/**
...
...
@@ -131,8 +154,7 @@ void UBDocumentNavigator::updateSpecificThumbnail(int iPage)
//UBGraphicsScene* pScene = UBApplication::boardController->activeScene();
const
QPixmap
*
pix
=
UBApplication
::
boardController
->
pageAt
(
iPage
);
UBSceneThumbnailNavigPixmap
*
newItem
=
new
UBSceneThumbnailNavigPixmap
(
*
pix
,
UBApplication
::
boardController
->
selectedDocument
(),
iPage
);
UBSceneThumbnailNavigPixmap
*
newItem
=
new
UBSceneThumbnailNavigPixmap
(
*
pix
,
UBApplication
::
boardController
->
selectedDocument
(),
iPage
);
// Get the old thumbnail
UBSceneThumbnailNavigPixmap
*
oldItem
=
mThumbsWithLabels
.
at
(
iPage
).
getThumbnail
();
...
...
src/gui/UBTeacherGuideWidget.cpp
View file @
931e099e
...
...
@@ -1152,9 +1152,7 @@ bool UBTeacherGuidePageZeroWidget::isModified()
void
UBTeacherGuidePageZeroWidget
::
resizeEvent
(
QResizeEvent
*
ev
)
{
emit
resized
();
/* mpScrollArea->resize(width(), height());
mpContainerWidget->resize(width(), height());
*/
QWidget
::
resizeEvent
(
ev
);
QWidget
::
resizeEvent
(
ev
);
}
/***************************************************************************
...
...
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