mirror of
https://invent.kde.org/system/dolphin
synced 2024-11-05 18:47:12 +00:00
f55ff68840
(e.g. bookmark toolbar and bookmark sidebar). Not sure if it should end up in libkonq or libkio... CCMAIL: hein@kde.org svn path=/trunk/KDE/kdebase/apps/; revision=1118280
64 lines
1.7 KiB
C++
64 lines
1.7 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2000, 2009 David Faure <faure@kde.org>
|
|
Copyright (C) 2002-2003 Alexander Kellett <lypanov@kde.org>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) version 3.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
*/
|
|
|
|
#ifndef COMMANDHISTORY_H
|
|
#define COMMANDHISTORY_H
|
|
|
|
#include "kbookmarkmodel_export.h"
|
|
#include <QObject>
|
|
class KBookmarkGroup;
|
|
class KBookmarkManager;
|
|
class QUndoCommand;
|
|
class KActionCollection;
|
|
|
|
// TODO namespacing
|
|
class KBOOKMARKMODEL_EXPORT CommandHistory : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
CommandHistory(QObject* parent = 0);
|
|
virtual ~CommandHistory();
|
|
|
|
// Call this before putting any commands into the history!
|
|
void setBookmarkManager(KBookmarkManager* manager);
|
|
KBookmarkManager* bookmarkManager();
|
|
|
|
void createActions(KActionCollection *collection);
|
|
|
|
void notifyDocSaved();
|
|
|
|
void clearHistory();
|
|
void addCommand(QUndoCommand *);
|
|
|
|
Q_SIGNALS:
|
|
void notifyCommandExecuted(const KBookmarkGroup&);
|
|
|
|
public Q_SLOTS:
|
|
void undo();
|
|
void redo();
|
|
|
|
private:
|
|
void commandExecuted(const QUndoCommand *k);
|
|
|
|
private:
|
|
class Private;
|
|
Private * const d;
|
|
};
|
|
|
|
#endif /* COMMANDHISTORY_H */
|
|
|