X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=bookmarksdialog.cpp;h=3f4bb8c41f11ee852069ed7e6c689229a7636363;hb=4d3999dc36d1f07fd1a1b25ac932b2326d29de3d;hp=fdfed5bfa883ff188a7845b98b921eb898bfd315;hpb=6337ac23cc03c51054b8f208abf9eb832d65a39e;p=dorian diff --git a/bookmarksdialog.cpp b/bookmarksdialog.cpp index fdfed5b..3f4bb8c 100644 --- a/bookmarksdialog.cpp +++ b/bookmarksdialog.cpp @@ -3,50 +3,47 @@ #include "bookmarksdialog.h" #include "book.h" #include "bookmarkinfodialog.h" -#include "listview.h" +#include "trace.h" BookmarksDialog::BookmarksDialog(Book *book_, QWidget *parent): - ListWindow(parent), book(book_) + ListWindow(tr("(No bookmarks)\n"), parent), book(book_) { setWindowTitle(tr("Bookmarks")); if (!book) { return; } - addAction(tr("Add bookmark"), this, SLOT(onAdd()), ":/icons/add.png"); -#ifndef Q_WS_MAEMO_5 - addItemAction(tr("Go to"), this, SLOT(onGo())); - addItemAction(tr("Delete"), this, SLOT(onDelete())); -#endif // ! Q_WS_MAEMO_5 - - // Build bookmark list + // Build and set bookmark model // FIXME: Localize me foreach (Book::Bookmark bookmark, book_->bookmarks()) { QString label("At "); label += QString::number((int)(100 * book_-> getProgress(bookmark.part, bookmark.pos))) + "%"; + if (!bookmark.note.isEmpty()) { + label += ": " + bookmark.note; + } + label += "\n"; int chapterIndex = book_->chapterFromPart(bookmark.part); if (chapterIndex != -1) { QString chapterId = book_->chapters[chapterIndex]; - label += "\nIn \"" + book_->content[chapterId].name + "\""; + label += "In \"" + book_->content[chapterId].name + "\""; } data.append(label); } - - // Create bookmark list view QStringListModel *model = new QStringListModel(data, this); - list = new ListView; - list->setSelectionMode(QAbstractItemView::SingleSelection); - list->setModel(model); - addList(list); - connect(list, SIGNAL(activated(const QModelIndex &)), + setModel(model); + + addButton(tr("Add bookmark"), this, SLOT(onAdd()), "add"); + addItemButton(tr("Delete bookmark"), this, SLOT(onDelete()), "remove"); + + connect(this, SIGNAL(activated(const QModelIndex &)), this, SLOT(onItemActivated(const QModelIndex &))); - addList(list); } void BookmarksDialog::onGo() { - QModelIndex current = list->currentIndex(); + TRACE; + QModelIndex current = currentItem(); if (current.isValid()) { emit goToBookmark(current.row()); close(); @@ -69,13 +66,18 @@ void BookmarksDialog::onItemActivated(const QModelIndex &index) void BookmarksDialog::onAdd() { - emit addBookmark(); - close(); + bool ok; + QString text = QInputDialog::getText(this, tr("Add bookmark"), + tr("Note (optional):"), QLineEdit::Normal, QString(), &ok); + if (ok) { + emit addBookmark(text); + close(); + } } void BookmarksDialog::onDelete(bool really) { - QModelIndex current = list->currentIndex(); + QModelIndex current = currentItem(); if (!current.isValid()) { return; } @@ -87,6 +89,6 @@ void BookmarksDialog::onDelete(bool really) } } int row = current.row(); - list->model()->removeRow(row); + model()->removeRow(row); book->deleteBookmark(row); }