only include Applications by default on OS X
[ambit.git] / src / history.h
blob004c2bbef2225865c6d481d4be275f1041d7f79a
1 /**
2 * Copyright (C) 2007 Benjamin C. Meyer
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version 2
7 * of the License, or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 #ifndef HISTORY_H
20 #define HISTORY_H
22 #include <qobject.h>
23 #include <qabstractitemmodel.h>
24 #include <qlist.h>
26 class QAction;
28 class History : public QObject
31 Q_OBJECT
33 signals:
34 void goToIndex(const QModelIndex &index);
36 public:
37 History(QObject *parent = 0);
38 ~History();
40 static QAction *backAction(QObject *parent);
41 static QAction *forwardAction(QObject *parent);
43 QAction *goForwardAction;
44 QAction *goBackAction;
46 public slots:
47 void goBack();
48 void goForward();
49 void currentChanged(const QModelIndex &index);
51 private:
52 QList<QPersistentModelIndex> history;
53 int currentLocation;
56 #endif // MAINWINDOW_H