This commit is contained in:
Herwig Birke
2018-04-24 11:58:47 +02:00
parent 970984264e
commit 41e0ac94cf
20 changed files with 465 additions and 203 deletions
+7 -5
View File
@@ -18,9 +18,6 @@
#include <QThread>
//rechercheCharacter
//rechercheObject
//recherchePlace
//sceneCharacter
//sceneObject
//scenePlace
@@ -354,7 +351,7 @@ bool cStoryBook::loadChapterList()
bool cStoryBook::loadSceneList()
{
return(m_sceneList.load(&m_chapterList));
return(m_sceneList.load(&m_chapterList, &m_characterList, &m_objectList, &m_placeList));
}
bool cStoryBook::loadCharacterList()
@@ -374,7 +371,7 @@ bool cStoryBook::loadObjectList()
bool cStoryBook::loadRechercheList()
{
return(m_rechercheList.load(&m_imageList));
return(m_rechercheList.load(&m_imageList, &m_characterList, &m_objectList, &m_placeList));
}
bool cStoryBook::loadImageList()
@@ -398,6 +395,11 @@ QString cStoryBook::author()
return(m_book.author());
}
cChapterList* cStoryBook::chapterList()
{
return(&m_chapterList);
}
bool cStoryBook::fillOutlineList(QTreeView* lpView)
{
QMap<qint32, QStandardItem*> part;