Fix forward navigation control on Linux.
[dorian] / bookmarkinfodialog.h
1 #ifndef BOOKMARKINFODIALOG_H
2 #define BOOKMARKINFODIALOG_H
3
4 #include "dyalog.h"
5
6 class Book;
7
8 /** Show bookmark info. */
9 class BookmarkInfoDialog: public Dyalog
10 {
11     Q_OBJECT
12
13 public:
14     enum {GoTo = 1, Delete};
15     explicit BookmarkInfoDialog(Book *b, int i, QWidget *parent);
16
17 public slots:
18     void onRead();
19     void onRemove();
20
21 protected:
22     Book *book;
23     int index;
24 };
25
26
27 #endif // BOOKMARKINFODIALOG_H