edbee - Qt Editor Library v0.11.1
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
redocommand.h
Go to the documentation of this file.
1// edbee - Copyright (c) 2012-2025 by Rick Blommers and contributors
2// SPDX-License-Identifier: MIT
3
4#pragma once
5
6#include "edbee/exports.h"
7
8#include <QString>
10
11namespace edbee {
12
14{
15public:
16 RedoCommand(bool soft=false);
17
19 virtual int commandId() { return CoalesceId_None; }
20
21 virtual void execute(TextEditorController* controller) override;
22 virtual QString toString() override;
23 virtual bool readonly() override;
24
25private:
26 bool soft_;
27};
28
29} // edbee
RedoCommand(bool soft=false)
Definition redocommand.cpp:12
virtual int commandId()
This method should return the command identifier.
Definition redocommand.h:19
TextEditorCommand()
The default constructor.
Definition texteditorcommand.cpp:12
The texteditor works via the controller. The controller is the central point/mediator which maps/cont...
Definition texteditorcontroller.h:39
#define EDBEE_EXPORT
Definition exports.h:15
QT Acessibility has an issue with reporting blank lines between elements lines. defining 'WINDOWS_EMP...
Definition commentcommand.cpp:20
@ CoalesceId_None
NO coalescing.
Definition texteditorcommand.h:22