120void TQCommand::Init(
const char *clname,
void *obj,
const char *redo,
const char *undo)
137 if (!obj && !redo && !undo) {
171 Init(clname, obj, redo, undo);
203 else Init(0, 0, redo, undo);
221 for (
int i = 0; i<
fNRargs; i++) {
227 for (
int i = 0; i <
fNUargs; i++) {
297 TString ostr = lnk->GetOption();
299 TObject *obj = lnk->GetObject();
300 lnk->SetObject(
nullptr);
339 TIter next(collection);
344 "Cannot merge - an object which doesn't inherit from TQCommand found in the list");
369 if (
c->CanCompress(o) || (
c->IsEqual(o) && ostr.
Contains(
"compress"))) {
404 for (
int i = 0; i <
fNRargs; i++) {
427 return ((cname ==
c->GetRedo()->GetClassName()) &&
428 (rname ==
c->GetRedo()->GetName()));
445 if (!redo || !undo || (redo != undo))
return kFALSE;
490 for (i = 0; i <
fNRargs; i++) {
493 for (i = 0; i <
fNUargs; i++) {
527 for (
int i = 0; i <
fNRargs; i++) {
561 for (
int i = 0; i <
fNUargs; i++) {
616 if (done)
Emit(
"Redo()");
637 TString opt = lnk->GetOption();
638 auto sav = lnk->PrevSP();
642 delete lnk->GetObject();
659 if (done)
Emit(
"Undo()");
672 const Int_t maxname = 100;
966 TString ostr = onredo ?
"1radd" :
"0radd";
967 if (opt) ostr += opt;
992 if (
c->CanCompress(o) ||
c->CanMerge(o) ||
995 c->Add(o, ostr.
Data());
1015 Emit(
"CurrentChanged(TQCommand*)", (
long)
c);
1090 if (
c->CanRedo())
return kTRUE;
1093 return (
c &&
c->CanRedo());
1104 if (
c->CanUndo())
return kTRUE;
1107 return (
c &&
c->CanUndo());
static TQCommand * gActiveCommand
#define R__WRITE_LOCKGUARD(mutex)
Collection abstract base class.
virtual Int_t GetEntries() const
virtual Bool_t IsEmpty() const
virtual void Add(TObject *obj)
virtual TObject * Remove(TObject *obj)
Remove object from the list.
TObjLinkPtr_t fLast
pointer to first entry in linked list
virtual TObject * Last() const
Return the last object in the list. Returns 0 when list is empty.
virtual void Delete(Option_t *option="")
Remove all objects from the list AND delete all heap based objects.
virtual void AddLast(TObject *obj)
Add object at the end of the list.
Wrapper around a TObject so it can be stored in a TList.
TObject * GetObject() const
Mother of all ROOT objects.
virtual const char * GetName() const
Returns name of object.
virtual const char * ClassName() const
Returns name of class to which the object belongs.
virtual Bool_t InheritsFrom(const char *classname) const
Returns kTRUE if object inherits from class "classname".
virtual void Error(const char *method, const char *msgfmt,...) const
Issue error message.
virtual void ls(Option_t *option="") const
The ls function lists the contents of a class on stdout.
The Command design pattern is based on the idea, that all editing in an application is done by creati...
Bool_t IsRedoing() const
Redo action is in progress.
virtual void SetArgs(Int_t nargs,...)
Set do/redo and undo parameters.
virtual void Undo(Option_t *option="")
Un-execute all merged commands and the command.
virtual Bool_t CanCompress(TQCommand *c) const
By default, commands can be compressed if they are:
virtual Bool_t CanMerge(TQCommand *c) const
Two commands can be merged if they can be composed into a single command (Macro command).
virtual void SetRedoArgs(Int_t nargs,...)
Set redo parameters.
Int_t GetNUargs() const
Returns a number of undo arguments.
Long_t * GetRedoArgs() const
Returns a pointer to array of redo arguments.
virtual Bool_t CanRedo() const
Returns kTRUE if Redo action is possible, kFALSE if it's not.
virtual Bool_t CanUndo() const
Returns kTRUE if Undo action is possible, kFALSE if it's not.
const char * GetUndoName() const
Returns the name of undo command.
virtual const char * GetTitle() const
Returns command description.
virtual Bool_t IsSetter() const
Returns kTRUE is command if Redo is the same as Undo function and is the setter action.
const char * GetRedoName() const
Returns the name of redo command.
virtual void Compress(TQCommand *c)
Compress command.
virtual void SetUndoArgs(Int_t nargs,...)
Set undo parameters.
virtual void Add(TObject *obj, Option_t *opt)
Add command to the list of merged commands.
virtual void Delete(Option_t *option="")
If "opt" is not zero delete every merged command which option string is equal to "opt".
virtual void SetName(const char *name)
Sets name of the command.
Bool_t IsUndoing() const
Undo action is in progress.
virtual void Merge(TQCommand *c)
Add command to the list of merged commands.
void * GetObject() const
Returns an object for which undo redo actions are applied.
virtual ~TQCommand()
dtor.
virtual void Init(const char *cl, void *object, const char *redo, const char *undo)
Common protected method used in several constructors.
Bool_t IsExecuting() const
Returns kTRUE if command execution is in progress.
virtual const char * GetName() const
Returns the command name.
virtual Bool_t IsEqual(const TObject *obj) const
Equal comparison.
Int_t GetStatus() const
Returns a number of sequential undo or redo operations.
virtual void Redo(Option_t *option="")
Execute command and then merge commands.
virtual void ls(Option_t *option="") const
ls this command and merged commands
Bool_t IsMacro() const
Returns kTRUE if neither redo nor undo action specified.
Long_t * GetUndoArgs() const
Returns a pointer to array of undo arguments.
static TQCommand * GetCommand()
Return a command which is doing redo/undo action.
Int_t GetNRargs() const
Returns a number of redo arguments.
virtual void PrintCollectionHeader(Option_t *option) const
Print collection header.
virtual void SetTitle(const char *title)
Sets description of the command.
TQCommand(const char *cl=0, void *object=0, const char *redo=0, const char *undo=0)
Constructor.
TQConnection class is an internal class, used in the object communication mechanism.
const char * GetClassName() const
const char * GetName() const override
Returns name of connection (aka name of slot)
void ExecuteMethod(Int_t nargs, va_list va)=delete
This is the ROOT implementation of the Qt object communication mechanism (see also http://www....
static TString CompressName(const char *method_name)
Removes "const" words and blanks from full (with prototype) method name and resolve any typedefs in t...
void Emit(const char *signal, const T &arg)
Activate signal with single parameter.
Recorder of operations for undo and redo.
virtual void Undo(Option_t *option="")
Performs undo action. Move cursor position backward in history stack.
virtual ~TQUndoManager()
Destructor.
virtual void Redo(Option_t *option="")
Performs redo action. Move cursor position forward in history stack.
TQUndoManager()
Constructor.
UInt_t GetLimit() const
Returns a maximum number of commands which could be located in stack.
virtual Bool_t CanUndo() const
Returns kTRUE if undo action is possible.
virtual void Add(TObject *obj, Option_t *opt)
Add command to the stack of commands.
virtual void ls(Option_t *option="") const
Lists all commands in stack.
Bool_t IsLogging() const
Returns kTRUE if logging is ON.
TQCommand * GetCursor() const
Returns a command correspondent to the current cursor position in stack.
TQCommand * GetCurrent() const
Returns the last executed command.
virtual void SetLogging(Bool_t on=kTRUE)
Start logging.
virtual void PrintCollectionEntry(TObject *entry, Option_t *option, Int_t recurse) const
Print collection entry.
virtual void CurrentChanged(TQCommand *c)
emit signal
virtual void SetLimit(UInt_t limit)
Returns a maximum number of commands which could be located in stack.
virtual Bool_t CanRedo() const
Returns kTRUE if redo action is possible.
static void IndentLevel()
Functions used by ls() to indent an object hierarchy.
const char * Data() const
Bool_t BeginsWith(const char *s, ECaseCompare cmp=kExact) const
Bool_t Contains(const char *pat, ECaseCompare cmp=kExact) const
R__EXTERN TVirtualRWMutex * gCoreMutex