1234567891011121314151617181920212223242526272829303132 |
- /*
- * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
- #pragma once
- #include <AK/String.h>
- namespace GUI {
- class Command {
- public:
- virtual ~Command();
- virtual void undo() { }
- virtual void redo() { }
- String action_text() const { return m_action_text; }
- virtual bool merge_with(Command const&) { return false; }
- protected:
- Command() { }
- void set_action_text(const String& text) { m_action_text = text; }
- private:
- String m_action_text;
- };
- }
|