edbee - Qt Editor Library
cutcommand.h
Go to the documentation of this file.
1 
6 #pragma once
7 
9 
10 namespace edbee {
11 
12 class TextEditorController;
13 
14 
20 {
21 public:
22  virtual void execute( TextEditorController* controller );
23  virtual QString toString();
24 };
25 
26 
27 } // edbee
Performs a cut command. The cut command removes the selected content and places onto the clipboard...
Definition: cutcommand.h:19
virtual void execute(TextEditorController *controller)
Performs the cut command.
Definition: cutcommand.cpp:28
This is the abstract base class for a textcommand.
Definition: texteditorcommand.h:49
Copyright 2011-2013 - Reliable Bits Software by Blommers IT.
Definition: commentcommand.cpp:22
The texteditor works via the controller. The controller is the central point/mediater which maps/cont...
Definition: texteditorcontroller.h:37
virtual QString toString()
Converts this command to a string.
Definition: cutcommand.cpp:76