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
40 lines
1.4 KiB
C++
40 lines
1.4 KiB
C++
/* This file is part of the KDE project
|
|
Copyright (C) 2000, 2010 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 KBOOKMARKMODEL_COMMANDS_P_H
|
|
#define KBOOKMARKMODEL_COMMANDS_P_H
|
|
|
|
// Used internally by the "sort" command
|
|
class MoveCommand : public QUndoCommand, public IKEBCommand
|
|
{
|
|
public:
|
|
MoveCommand(KBookmarkModel* model, const QString &from, const QString &to, const QString &name = QString(), QUndoCommand* parent = 0);
|
|
QString finalAddress() const;
|
|
virtual ~MoveCommand() {}
|
|
virtual void redo();
|
|
virtual void undo();
|
|
virtual QString affectedBookmarks() const;
|
|
private:
|
|
KBookmarkModel* m_model;
|
|
QString m_from;
|
|
QString m_to;
|
|
CreateCommand * m_cc;
|
|
DeleteCommand * m_dc;
|
|
};
|
|
|
|
#endif /* KBOOKMARKMODEL_COMMANDS_P_H */
|