Another failed attempt to make kinetic scrolling work. Simplified
[dorian] / chaptersdialog.cpp
1 #include <QStringListModel>
2
3 #include "chaptersdialog.h"
4 #include "book.h"
5 #include "listview.h"
6
7 ChaptersDialog::ChaptersDialog(Book *book, QWidget *parent): ListWindow(parent)
8 {
9     setWindowTitle(tr("Chapters"));
10
11     if (book) {
12         foreach (QString id, book->chapters) {
13             QString contentTitle = book->content[id].name;
14             data.append(contentTitle);
15         }
16     }
17     QStringListModel *model = new QStringListModel(data, this);
18     list = new ListView;
19     list->setSelectionMode(QAbstractItemView::SingleSelection);
20     list->setModel(model);
21     addList(list);
22     connect(list, SIGNAL(activated(const QModelIndex &)),
23             this, SLOT(onItemActivated(const QModelIndex &)));
24 }
25
26 void ChaptersDialog::onItemActivated(const QModelIndex &index)
27 {
28     emit goToChapter(index.row());
29     close();
30 }