]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/qt4/TocModel.cpp
On Linux show in crash message box the backtrace
[lyx.git] / src / frontends / qt4 / TocModel.cpp
index 37f8b704b28a19a66521b954066524cb6cd3c5d9..cd1189b49b473371c2e2b6ce53ee76147dfe8c18 100644 (file)
 #include "Cursor.h"
 #include "DocIterator.h"
 #include "FuncRequest.h"
-#include "LyXFunc.h"
+#include "LyX.h"
+#include "qt_helpers.h"
 #include "TocBackend.h"
 
-#include "support/convert.h"
 #include "support/debug.h"
 #include "support/lassert.h"
 
 #include <QSortFilterProxyModel>
+#include <QStandardItemModel>
+
 
 #include <climits>
 
@@ -34,32 +36,54 @@ using namespace std;
 namespace lyx {
 namespace frontend {
 
+/// A QStandardItemModel that gives access to the reset methods.
+/// This is needed in order to fix http://www.lyx.org/trac/ticket/3740
+class TocTypeModel : public QStandardItemModel
+{
+public:
+       ///
+       TocTypeModel(QObject * parent) : QStandardItemModel(parent)
+       {}
+       ///
+       void reset()
+       {
+#if (QT_VERSION < 0x050000)
+               QStandardItemModel::reset();
+#else
+               QStandardItemModel::endResetModel();
+#endif
+       }
+       ///
+       void beginResetModel()
+       { 
+       #if QT_VERSION >= 0x040600
+               QStandardItemModel::beginResetModel(); 
+       #endif
+       }
+       ///
+       void endResetModel()
+       { 
+       #if QT_VERSION >= 0x040600
+               QStandardItemModel::endResetModel(); 
+       #else
+               QStandardItemModel::reset();
+       #endif
+       }
+};
+
+
 ///////////////////////////////////////////////////////////////////////////////
 //
-// TocModels
+// TocModel
 //
 ///////////////////////////////////////////////////////////////////////////////
 
-TocTypeModel::TocTypeModel(QObject * parent)
-       : QStandardItemModel(parent)
-{
-}
-
-
-void TocTypeModel::reset()
-{
-       QStandardItemModel::reset();
-}
-
-
 TocModel::TocModel(QObject * parent)
        : model_(new TocTypeModel(parent)),
        sorted_model_(new QSortFilterProxyModel(parent)),
        is_sorted_(false), maxdepth_(0), mindepth_(0)
 {
-#if QT_VERSION >= 0x040300
        sorted_model_->setSortLocaleAware(true);
-#endif
        sorted_model_->setSourceModel(model_);
 }
 
@@ -95,6 +119,7 @@ void TocModel::sort(bool sort_it)
                sorted_model_->sort(0);
 }
 
+
 TocItem const & TocModel::tocItem(QModelIndex const & index) const
 {
        return (*toc_)[model()->data(index, Qt::UserRole).toUInt()];
@@ -123,6 +148,15 @@ void TocModel::reset()
 }
 
 
+void TocModel::updateItem(DocIterator const & dit)
+{
+       QModelIndex index = modelIndex(dit);
+       TocItem const & toc_item = tocItem(index);
+       model_->setData(index, toqstr(toc_item.str()), Qt::DisplayRole);
+       model_->setData(index, toqstr(toc_item.tooltip()), Qt::ToolTipRole);
+}
+
+
 void TocModel::reset(Toc const & toc)
 {
        toc_ = &toc;
@@ -134,6 +168,7 @@ void TocModel::reset(Toc const & toc)
        }
 
        model_->blockSignals(true);
+       model_->beginResetModel();
        model_->insertColumns(0, 1);
        maxdepth_ = 0;
        mindepth_ = INT_MAX;
@@ -148,6 +183,7 @@ void TocModel::reset(Toc const & toc)
                QModelIndex top_level_item = model_->index(current_row, 0);
                model_->setData(top_level_item, toqstr(item.str()), Qt::DisplayRole);
                model_->setData(top_level_item, index, Qt::UserRole);
+               model_->setData(top_level_item, toqstr(item.tooltip()), Qt::ToolTipRole);
 
                LYXERR(Debug::GUI, "Toc: at depth " << item.depth()
                        << ", added item " << item.str());
@@ -158,11 +194,11 @@ void TocModel::reset(Toc const & toc)
        }
 
        model_->setHeaderData(0, Qt::Horizontal, QVariant("title"), Qt::DisplayRole);
+       sorted_model_->setSourceModel(model_);
        if (is_sorted_)
                sorted_model_->sort(0);
        model_->blockSignals(false);
-       reset();
-//     emit headerDataChanged();
+       model_->endResetModel();
 }
 
 
@@ -189,6 +225,7 @@ void TocModel::populate(unsigned int & index, QModelIndex const & parent)
                child_item = model_->index(current_row, 0, parent);
                model_->setData(child_item, toqstr(item.str()), Qt::DisplayRole);
                model_->setData(child_item, index, Qt::UserRole);
+               model_->setData(child_item, toqstr(item.tooltip()), Qt::ToolTipRole);
                populate(index, child_item);
                if (index >= end)
                        break;
@@ -199,7 +236,7 @@ void TocModel::populate(unsigned int & index, QModelIndex const & parent)
 int TocModel::modelDepth() const
 {
        int const d = maxdepth_ - mindepth_;
-       LASSERT(d >= 0 && d <= 100, /* */);
+       LASSERT(d >= 0 && d <= 100, return 0);
        return d;
 }
 
@@ -214,16 +251,14 @@ TocModels::TocModels()
        : bv_(0)
 {
        names_ = new TocTypeModel(this);
-       names_sorted_ = new QSortFilterProxyModel(this);
+       names_sorted_ = new TocModelSortProxyModel(this);
        names_sorted_->setSourceModel(names_);
-#if QT_VERSION >= 0x040300
        names_sorted_->setSortLocaleAware(true);
-#endif
        names_sorted_->sort(0);
 }
 
 
-void TocModels::clear()        
+void TocModels::clear()
 {
        names_->blockSignals(true);
        names_->clear();
@@ -284,10 +319,23 @@ void TocModels::goTo(QString const & type, QModelIndex const & index) const
 }
 
 
-void TocModels::updateBackend() const
+TocItem const TocModels::currentItem(QString const & type,
+       QModelIndex const & index) const
+{
+       const_iterator it = models_.find(type);
+       if (it == models_.end() || !index.isValid()) {
+               LYXERR(Debug::GUI, "TocModels::currentItem(): QModelIndex is invalid!");
+               return TocItem();
+       }
+       LASSERT(index.model() == it.value()->model(), return TocItem());
+       
+       return it.value()->tocItem(index);
+}
+
+void TocModels::updateItem(QString const & type, DocIterator const & dit)
 {
-       bv_->buffer().masterBuffer()->tocBackend().update();
-       bv_->buffer().structureChanged();
+       models_[type]->updateItem(dit);
 }
 
 
@@ -304,6 +352,7 @@ void TocModels::reset(BufferView const * bv)
        }
 
        names_->blockSignals(true);
+       names_->beginResetModel();
        names_->insertColumns(0, 1);
        TocList const & tocs = bv_->buffer().masterBuffer()->tocBackend().tocs();
        TocList::const_iterator it = tocs.begin();
@@ -326,7 +375,7 @@ void TocModels::reset(BufferView const * bv)
                names_->setData(index, type, Qt::UserRole);
        }
        names_->blockSignals(false);
-       names_->reset();
+       names_->endResetModel();
 }
 
 
@@ -353,4 +402,4 @@ void TocModels::sort(QString const & type, bool sort_it)
 } // namespace frontend
 } // namespace lyx
 
-#include "TocModel_moc.cpp"
+#include "moc_TocModel.cpp"