summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGUI/Command.h
blob: 0e4e02575705ca45ae2d7e7596a173dbf9dc7dcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
/*
 * 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 is_insert_text() const { return false; }
    virtual bool is_remove_text() const { return false; }

protected:
    Command() { }
    void set_action_text(const String& text) { m_action_text = text; }

private:
    String m_action_text;
};

}