Improve traces. Simplify folder management.
[dorian] / widgets / listwindow.h
1 #ifndef LISTWINDOW_H
2 #define LISTWINDOW_H
3
4 #include <QMainWindow>
5 #include <QDialogButtonBox>
6 #include <QList>
7
8 class QListView;
9 class QString;
10 class QBoxLayout;
11 class QPushButton;
12 class QModelIndex;
13 class QItemSelection;
14 class QEvent;
15 class ListView;
16
17 /** A window with a list and menu actions (Maemo) or buttons (non-Maemo). */
18 class ListWindow: public QMainWindow
19 {
20     Q_OBJECT
21
22 public:
23     explicit ListWindow(QWidget *parent = 0);
24
25     /** Add a list view to the window. */
26     void addList(ListView *list);
27
28     /**
29      * Add an action to the window: either a button, or, on Maemo, a top
30      * level menu item.
31      * Activating the action invokes the slot with no parameters.
32      */
33     void addAction(const QString &title, QObject *receiver, const char *slot,
34         QDialogButtonBox::ButtonRole role = QDialogButtonBox::ActionRole);
35
36     /**
37      * Add an action to the selected item in the list: either a button which is
38      * enabled when a list item is selected, or, on Maemo, a pop-up menu item
39      * which is displayed when a list item is long-pressed.
40      * Activating the action invokes the slot with no parameters.
41      */
42     void addItemAction(const QString &title, QObject *receiver,
43                        const char *slot);
44
45 protected slots:
46     void onSelectionChanged(const QItemSelection &selected,
47                             const QItemSelection &deselected);
48 #ifdef Q_WS_MAEMO_5
49     void onModelChanged();
50 #else
51     void activateItemButtons();
52 #endif
53
54 protected:
55 #ifdef Q_WS_MAEMO_5
56     bool eventFilter(QObject *obj, QEvent *event);
57     void closeEvent(QCloseEvent *event);
58     QMenu *popup;
59 #else
60     QDialogButtonBox *buttonBox;
61     QList<QPushButton *> itemButtons;
62 #endif // Q_WS_MAEMO_5
63     QBoxLayout *contentLayout;
64     ListView *list;
65 };
66
67 #endif // LISTWINDOW_H