edbee - Qt Editor Library
duplicatecommand.h
Go to the documentation of this file.
1 
6 #pragma once
7 
9 
10 
11 namespace edbee {
12 
17 {
18 public:
19  virtual void execute( TextEditorController* controller );
20  virtual QString toString();
21 };
22 
23 } // edbee
virtual void execute(TextEditorController *controller)
Executes the duplication command.
Definition: duplicatecommand.cpp:21
virtual QString toString()
Returns the textual representation of this command.
Definition: duplicatecommand.cpp:68
This is the abstract base class for a textcommand.
Definition: texteditorcommand.h:49
The Duplicate command. Duplicates the selected line or text.
Definition: duplicatecommand.h:16
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