ignore generate files, put the binary in the top level dir, in !mac have the binary...
[ambit.git] / src / history.h
blob674359a68ea6c4f49dc8b3692a83f40e74352861
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 QAction *backAction() const;
41 QAction *forwardAction() const;
43 public slots:
44 void goBack();
45 void goForward();
46 void currentChanged(const QModelIndex &index);
48 private:
49 QAction *goBackAction;
50 QAction *goForwardAction;
52 QList<QPersistentModelIndex> history;
53 int currentLocation;
56 #endif // MAINWINDOW_H