ITK 6.0.0
Insight Toolkit
 
Loading...
Searching...
No Matches
itkCommand.h
Go to the documentation of this file.
1/*=========================================================================
2 *
3 * Copyright NumFOCUS
4 *
5 * Licensed under the Apache License, Version 2.0 (the "License");
6 * you may not use this file except in compliance with the License.
7 * You may obtain a copy of the License at
8 *
9 * https://www.apache.org/licenses/LICENSE-2.0.txt
10 *
11 * Unless required by applicable law or agreed to in writing, software
12 * distributed under the License is distributed on an "AS IS" BASIS,
13 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 * See the License for the specific language governing permissions and
15 * limitations under the License.
16 *
17 *=========================================================================*/
18#ifndef itkCommand_h
19#define itkCommand_h
20
21#include "itkObject.h"
22#include "itkObjectFactory.h"
23#include <functional>
24
25namespace itk
26{
43
44// The superclass that all commands should be subclasses of
45class ITKCommon_EXPORT Command : public Object
46{
47public:
48 ITK_DISALLOW_COPY_AND_MOVE(Command);
49
51 using Self = Command;
55
57 itkOverrideGetNameOfClassMacro(Command);
58
60 virtual void
61 Execute(Object * caller, const EventObject & event) = 0;
62
66 virtual void
67 Execute(const Object * caller, const EventObject & event) = 0;
68
69protected:
71 ~Command() override;
72};
73
74// some implementations for several callback types
75
85template <typename T>
86class ITK_TEMPLATE_EXPORT MemberCommand : public Command
87{
88public:
89 ITK_DISALLOW_COPY_AND_MOVE(MemberCommand);
90
93 using TMemberFunctionPointer = void (T::*)(Object *, const EventObject &);
94 using TConstMemberFunctionPointer = void (T::*)(const Object *, const EventObject &);
99
101 itkNewMacro(Self);
102
104 itkOverrideGetNameOfClassMacro(MemberCommand);
105
108 void
109 SetCallbackFunction(T * object, TMemberFunctionPointer memberFunction)
110 {
111 m_This = object;
112 m_MemberFunction = memberFunction;
113 }
114
115 void
117 {
118 m_This = object;
119 m_ConstMemberFunction = memberFunction;
120 }
121
123 void
124 Execute(Object * caller, const EventObject & event) override
125 {
127 {
128 (m_This->*(m_MemberFunction))(caller, event);
129 }
130 }
131
133 void
134 Execute(const Object * caller, const EventObject & event) override
135 {
137 {
138 (m_This->*(m_ConstMemberFunction))(caller, event);
139 }
140 }
141
142protected:
143 T * m_This{ nullptr };
146
147 MemberCommand() = default;
148
149 ~MemberCommand() override = default;
150};
151
161template <typename T>
162class ITK_TEMPLATE_EXPORT ReceptorMemberCommand : public Command
163{
164public:
165 ITK_DISALLOW_COPY_AND_MOVE(ReceptorMemberCommand);
166
168 using TMemberFunctionPointer = void (T::*)(const EventObject &);
169
173
175 itkNewMacro(Self);
176
178 itkOverrideGetNameOfClassMacro(ReceptorMemberCommand);
179
182 void
183 SetCallbackFunction(T * object, TMemberFunctionPointer memberFunction)
184 {
185 m_This = object;
186 m_MemberFunction = memberFunction;
187 }
188
190 void
191 Execute(Object *, const EventObject & event) override
192 {
194 {
195 (m_This->*(m_MemberFunction))(event);
196 }
197 }
198
200 void
201 Execute(const Object *, const EventObject & event) override
202 {
204 {
205 (m_This->*(m_MemberFunction))(event);
206 }
207 }
208
209protected:
210 T * m_This{ nullptr };
212
214
215 ~ReceptorMemberCommand() override = default;
216};
217
227template <typename T>
228class ITK_TEMPLATE_EXPORT SimpleMemberCommand : public Command
229{
230public:
231 ITK_DISALLOW_COPY_AND_MOVE(SimpleMemberCommand);
232
234 using TMemberFunctionPointer = void (T::*)();
235
239
241 itkOverrideGetNameOfClassMacro(SimpleMemberCommand);
242
244 itkNewMacro(Self);
245
247 void
248 SetCallbackFunction(T * object, TMemberFunctionPointer memberFunction)
249 {
250 m_This = object;
251 m_MemberFunction = memberFunction;
252 }
253
255 void
256 Execute(Object *, const EventObject &) override
257 {
259 {
260 (m_This->*(m_MemberFunction))();
261 }
262 }
263
264 void
265 Execute(const Object *, const EventObject &) override
266 {
268 {
269 (m_This->*(m_MemberFunction))();
270 }
271 }
272
273protected:
274 T * m_This{ nullptr };
276
278
279 ~SimpleMemberCommand() override = default;
280};
281
291template <typename T>
292class ITK_TEMPLATE_EXPORT SimpleConstMemberCommand : public Command
293{
294public:
295 ITK_DISALLOW_COPY_AND_MOVE(SimpleConstMemberCommand);
296
298 using TMemberFunctionPointer = void (T::*)() const;
299
303
305 itkOverrideGetNameOfClassMacro(SimpleConstMemberCommand);
306
308 itkNewMacro(Self);
309
311 void
312 SetCallbackFunction(const T * object, TMemberFunctionPointer memberFunction)
313 {
314 m_This = object;
315 m_MemberFunction = memberFunction;
316 }
317
319 void
320 Execute(Object *, const EventObject &) override
321 {
323 {
324 (m_This->*(m_MemberFunction))();
325 }
326 }
327
328 void
329 Execute(const Object *, const EventObject &) override
330 {
332 {
333 (m_This->*(m_MemberFunction))();
334 }
335 }
336
337protected:
338 const T * m_This{ nullptr };
340
342
343 ~SimpleConstMemberCommand() override = default;
344};
345
357
358class ITKCommon_EXPORT CStyleCommand : public Command
359{
360public:
363 using FunctionPointer = void (*)(Object *, const EventObject &, void *);
364 using ConstFunctionPointer = void (*)(const Object *, const EventObject &, void *);
365 using DeleteDataFunctionPointer = void (*)(void *);
370
372 itkOverrideGetNameOfClassMacro(CStyleCommand);
373
375 itkNewMacro(Self);
376
379 void
380 SetClientData(void * cd);
381
384 void
386 void
390 void
392
394 void
395 Execute(Object * caller, const EventObject & event) override;
396
398 void
399 Execute(const Object * caller, const EventObject & event) override;
400
401protected:
403 ~CStyleCommand() override;
404
405 void * m_ClientData{ nullptr };
409};
410
411
420
421class ITKCommon_EXPORT FunctionCommand : public Command
422{
423public:
427
428 using FunctionObjectType = std::function<void(const EventObject &)>;
429
431 itkOverrideGetNameOfClassMacro(FunctionCommand);
432
434 itkNewMacro(Self);
435
437 void
439
441 void
442 Execute(Object *, const EventObject & event) override;
443
445 void
446 Execute(const Object *, const EventObject & event) override;
447
448protected:
451
452
454};
455
456} // end namespace itk
457
458#endif
void Execute(Object *caller, const EventObject &event) override
void(*)(void *) DeleteDataFunctionPointer
Definition itkCommand.h:365
ConstFunctionPointer m_ConstCallback
Definition itkCommand.h:407
~CStyleCommand() override
void Execute(const Object *caller, const EventObject &event) override
SmartPointer< Self > Pointer
Definition itkCommand.h:369
CStyleCommand Self
Definition itkCommand.h:368
FunctionPointer m_Callback
Definition itkCommand.h:406
DeleteDataFunctionPointer m_ClientDataDeleteCallback
Definition itkCommand.h:408
void(*)(Object *, const EventObject &, void *) FunctionPointer
Definition itkCommand.h:363
void SetCallback(FunctionPointer f)
void(*)(const Object *, const EventObject &, void *) ConstFunctionPointer
Definition itkCommand.h:364
void SetConstCallback(ConstFunctionPointer f)
void SetClientData(void *cd)
void SetClientDataDeleteCallback(DeleteDataFunctionPointer f)
~Command() override
Command Self
Definition itkCommand.h:51
SmartPointer< Self > Pointer
Definition itkCommand.h:53
Object Superclass
Definition itkCommand.h:52
virtual void Execute(Object *caller, const EventObject &event)=0
SmartPointer< const Self > ConstPointer
Definition itkCommand.h:54
virtual void Execute(const Object *caller, const EventObject &event)=0
Abstraction of the Events used to communicating among filters and with GUIs.
FunctionCommand Self
Definition itkCommand.h:425
std::function< void(const EventObject &)> FunctionObjectType
Definition itkCommand.h:428
~FunctionCommand() override
void Execute(Object *, const EventObject &event) override
FunctionObjectType m_FunctionObject
Definition itkCommand.h:453
SmartPointer< Self > Pointer
Definition itkCommand.h:426
void SetCallback(FunctionObjectType f)
void Execute(const Object *, const EventObject &event) override
MemberCommand()=default
void(T::*)(Object *, const EventObject &) TMemberFunctionPointer
Definition itkCommand.h:93
void Execute(const Object *caller, const EventObject &event) override
Definition itkCommand.h:134
void SetCallbackFunction(T *object, TMemberFunctionPointer memberFunction)
Definition itkCommand.h:109
void SetCallbackFunction(T *object, TConstMemberFunctionPointer memberFunction)
Definition itkCommand.h:116
void(T::*)(const Object *, const EventObject &) TConstMemberFunctionPointer
Definition itkCommand.h:94
SmartPointer< Self > Pointer
Definition itkCommand.h:98
void Execute(Object *caller, const EventObject &event) override
Definition itkCommand.h:124
MemberCommand Self
Definition itkCommand.h:97
~MemberCommand() override=default
TMemberFunctionPointer m_MemberFunction
Definition itkCommand.h:144
TConstMemberFunctionPointer m_ConstMemberFunction
Definition itkCommand.h:145
Base class for most ITK classes.
Definition itkObject.h:62
~ReceptorMemberCommand() override=default
void(T::*)(const EventObject &) TMemberFunctionPointer
Definition itkCommand.h:168
void Execute(Object *, const EventObject &event) override
Definition itkCommand.h:191
SmartPointer< Self > Pointer
Definition itkCommand.h:172
ReceptorMemberCommand Self
Definition itkCommand.h:171
void SetCallbackFunction(T *object, TMemberFunctionPointer memberFunction)
Definition itkCommand.h:183
void Execute(const Object *, const EventObject &event) override
Definition itkCommand.h:201
TMemberFunctionPointer m_MemberFunction
Definition itkCommand.h:211
SmartPointer< Self > Pointer
Definition itkCommand.h:302
~SimpleConstMemberCommand() override=default
void Execute(const Object *, const EventObject &) override
Definition itkCommand.h:329
void Execute(Object *, const EventObject &) override
Definition itkCommand.h:320
SimpleConstMemberCommand Self
Definition itkCommand.h:301
void(T::*)() const TMemberFunctionPointer
Definition itkCommand.h:298
void SetCallbackFunction(const T *object, TMemberFunctionPointer memberFunction)
Definition itkCommand.h:312
TMemberFunctionPointer m_MemberFunction
Definition itkCommand.h:339
~SimpleMemberCommand() override=default
SimpleMemberCommand Self
Definition itkCommand.h:237
void Execute(const Object *, const EventObject &) override
Definition itkCommand.h:265
void SetCallbackFunction(T *object, TMemberFunctionPointer memberFunction)
Definition itkCommand.h:248
SmartPointer< Self > Pointer
Definition itkCommand.h:238
void(T::*)() TMemberFunctionPointer
Definition itkCommand.h:234
void Execute(Object *, const EventObject &) override
Definition itkCommand.h:256
Implements transparent reference counting.
The "itk" namespace contains all Insight Segmentation and Registration Toolkit (ITK) classes....