X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fpbd%2Fpbd%2Fcommand.h;h=a9b313f4fa5ed7dee4414d0c82212f70dc80e7b4;hb=8e2d1c7f2a099df5701a605ec884e786dcedae8b;hp=23bcf85b91cee4c6e46acd481b5b7f2115afc817;hpb=99904735e066804358f1d0bd138a84f1e9ecda91;p=ardour.git diff --git a/libs/pbd/pbd/command.h b/libs/pbd/pbd/command.h index 23bcf85b91..a9b313f4fa 100644 --- a/libs/pbd/pbd/command.h +++ b/libs/pbd/pbd/command.h @@ -1,5 +1,7 @@ -/* - Copyright (C) 2006 Hans Fugal & Paul Davis + +/* + Copyright (C) 2006 Paul Davis + Author: Hans Fugal This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -20,17 +22,38 @@ #ifndef __lib_pbd_command_h__ #define __lib_pbd_command_h__ -#include +#include + +#include "pbd/libpbd_visibility.h" +#include "pbd/signals.h" +#include "pbd/statefuldestructible.h" -class Command : public PBD::StatefulDestructible +/** Base class for Undo/Redo commands and changesets */ +class LIBPBD_API Command : public PBD::StatefulDestructible, public PBD::ScopedConnectionList { - public: - virtual ~Command() {} +public: + virtual ~Command() { /* NOTE: derived classes must call drop_references() */ } + virtual void operator() () = 0; - virtual void undo() = 0; - virtual void redo() { (*this)(); } - virtual XMLNode &get_state(); - virtual int set_state(const XMLNode&) { /* noop */ return 0; } + + void set_name (const std::string& str) { _name = str; } + const std::string& name() const { return _name; } + + virtual void undo() = 0; + virtual void redo() { (*this)(); } + + virtual XMLNode &get_state(); + virtual int set_state(const XMLNode&, int /*version*/) { /* noop */ return 0; } + + virtual bool empty () const { + return false; + } + +protected: + Command() {} + Command(const std::string& name) : _name(name) {} + + std::string _name; }; #endif // __lib_pbd_command_h_