ITK  5.0.0
Insight Segmentation and Registration Toolkit
Public Types | Public Member Functions | Static Public Member Functions | Protected Member Functions | Protected Attributes | List of all members
itk::CStyleCommand Class Reference

#include <itkCommand.h>

+ Inheritance diagram for itk::CStyleCommand:
+ Collaboration diagram for itk::CStyleCommand:

Detailed Description

A Command subclass that calls a pointer to a C function.

CStyleCommand calls a pointer to a C function with the following arguments void func(Object *,void *clientdata) The clientdata is data that the command wants passed to itself each time.

Definition at line 366 of file itkCommand.h.

Public Types

using Pointer = SmartPointer< Self >
 
using Self = CStyleCommand
 
using FunctionPointer = void(*)(Object *, const EventObject &, void *)
 
using ConstFunctionPointer = void(*)(const Object *, const EventObject &, void *)
 
using DeleteDataFunctionPointer = void(*)(void *)
 
- Public Types inherited from itk::Command
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = Command
 
using Superclass = Object
 
- Public Types inherited from itk::Object
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = Object
 
using Superclass = LightObject
 
- Public Types inherited from itk::LightObject
using ConstPointer = SmartPointer< const Self >
 
using Pointer = SmartPointer< Self >
 
using Self = LightObject
 

Public Member Functions

virtual ::itk::LightObject::Pointer CreateAnother () const
 
void Execute (Object *caller, const EventObject &event) override
 
void Execute (const Object *caller, const EventObject &event) override
 
virtual const char * GetNameOfClass () const
 
void SetClientData (void *cd)
 
void SetClientDataDeleteCallback (DeleteDataFunctionPointer f)
 
void SetCallback (FunctionPointer f)
 
void SetConstCallback (ConstFunctionPointer f)
 
- Public Member Functions inherited from itk::Object
unsigned long AddObserver (const EventObject &event, Command *)
 
unsigned long AddObserver (const EventObject &event, Command *) const
 
LightObject::Pointer CreateAnother () const override
 
virtual void DebugOff () const
 
virtual void DebugOn () const
 
CommandGetCommand (unsigned long tag)
 
bool GetDebug () const
 
MetaDataDictionaryGetMetaDataDictionary ()
 
const MetaDataDictionaryGetMetaDataDictionary () const
 
virtual ModifiedTimeType GetMTime () const
 
virtual const TimeStampGetTimeStamp () const
 
bool HasObserver (const EventObject &event) const
 
void InvokeEvent (const EventObject &)
 
void InvokeEvent (const EventObject &) const
 
virtual void Modified () const
 
void Register () const override
 
void RemoveAllObservers ()
 
void RemoveObserver (unsigned long tag)
 
void SetDebug (bool debugFlag) const
 
void SetReferenceCount (int) override
 
void UnRegister () const noexceptoverride
 
void SetMetaDataDictionary (const MetaDataDictionary &rhs)
 
void SetMetaDataDictionary (MetaDataDictionary &&rrhs)
 
virtual void SetObjectName (std::string _arg)
 
virtual const std::string & GetObjectName () const
 
- Public Member Functions inherited from itk::LightObject
virtual void Delete ()
 
virtual int GetReferenceCount () const
 
 itkCloneMacro (Self)
 
void Print (std::ostream &os, Indent indent=0) const
 

Static Public Member Functions

static Pointer New ()
 
- Static Public Member Functions inherited from itk::Object
static bool GetGlobalWarningDisplay ()
 
static void GlobalWarningDisplayOff ()
 
static void GlobalWarningDisplayOn ()
 
static Pointer New ()
 
static void SetGlobalWarningDisplay (bool flag)
 
- Static Public Member Functions inherited from itk::LightObject
static void BreakOnError ()
 
static Pointer New ()
 

Protected Member Functions

 CStyleCommand ()
 
 ~CStyleCommand () override
 
- Protected Member Functions inherited from itk::Command
 Command ()
 
 ~Command () override
 
- Protected Member Functions inherited from itk::Object
 Object ()
 
bool PrintObservers (std::ostream &os, Indent indent) const
 
void PrintSelf (std::ostream &os, Indent indent) const override
 
virtual void SetTimeStamp (const TimeStamp &time)
 
 ~Object () override
 
- Protected Member Functions inherited from itk::LightObject
virtual LightObject::Pointer InternalClone () const
 
 LightObject ()
 
virtual void PrintHeader (std::ostream &os, Indent indent) const
 
virtual void PrintTrailer (std::ostream &os, Indent indent) const
 
virtual ~LightObject ()
 

Protected Attributes

FunctionPointer m_Callback { nullptr }
 
void * m_ClientData { nullptr }
 
DeleteDataFunctionPointer m_ClientDataDeleteCallback { nullptr }
 
ConstFunctionPointer m_ConstCallback { nullptr }
 
- Protected Attributes inherited from itk::LightObject
std::atomic< int > m_ReferenceCount
 

Member Typedef Documentation

using itk::CStyleCommand::ConstFunctionPointer = void (*)(const Object *, const EventObject &, void *)

Typedefs for C-style callbacks.

Definition at line 371 of file itkCommand.h.

Typedefs for C-style callbacks.

Definition at line 372 of file itkCommand.h.

using itk::CStyleCommand::FunctionPointer = void (*)(Object *, const EventObject &, void *)

Typedefs for C-style callbacks.

Definition at line 370 of file itkCommand.h.

Definition at line 377 of file itkCommand.h.

Standard class type aliases.

Definition at line 376 of file itkCommand.h.

Constructor & Destructor Documentation

itk::CStyleCommand::CStyleCommand ( )
protected
itk::CStyleCommand::~CStyleCommand ( )
overrideprotected

Member Function Documentation

virtual::itk::LightObject::Pointer itk::CStyleCommand::CreateAnother ( ) const
virtual

Create an object from an instance, potentially deferring to a factory. This method allows you to create an instance of an object that is exactly the same type as the referring object. This is useful in cases where an object has been cast back to a base class.

Reimplemented from itk::LightObject.

void itk::CStyleCommand::Execute ( Object caller,
const EventObject event 
)
overridevirtual

Execute the callback function.

Implements itk::Command.

void itk::CStyleCommand::Execute ( const Object caller,
const EventObject event 
)
overridevirtual

Execute the callback function with a const Object

Implements itk::Command.

virtual const char* itk::CStyleCommand::GetNameOfClass ( ) const
virtual

Run-time type information (and related methods).

Reimplemented from itk::Command.

static Pointer itk::CStyleCommand::New ( )
static

Method for creation through the object factory.

void itk::CStyleCommand::SetCallback ( FunctionPointer  f)

Set the C callback function pointer to be called at Execute time.

void itk::CStyleCommand::SetClientData ( void *  cd)

Set the client data that will be passed into the C function when it is called.

void itk::CStyleCommand::SetClientDataDeleteCallback ( DeleteDataFunctionPointer  f)

Set the callback to delete the client data.

void itk::CStyleCommand::SetConstCallback ( ConstFunctionPointer  f)

Set the C callback function pointer to be called at Execute time.

Member Data Documentation

FunctionPointer itk::CStyleCommand::m_Callback { nullptr }
protected

Definition at line 408 of file itkCommand.h.

void* itk::CStyleCommand::m_ClientData { nullptr }
protected

Definition at line 407 of file itkCommand.h.

DeleteDataFunctionPointer itk::CStyleCommand::m_ClientDataDeleteCallback { nullptr }
protected

Definition at line 410 of file itkCommand.h.

ConstFunctionPointer itk::CStyleCommand::m_ConstCallback { nullptr }
protected

Definition at line 409 of file itkCommand.h.


The documentation for this class was generated from the following file: