OSSIM - Open Source Software Image Map  Version 1.9.0 (20180803)
Public Member Functions | Protected Attributes | List of all members
ossimImageGeometryEvent Class Reference

#include <ossimImageGeometryEvent.h>

Inheritance diagram for ossimImageGeometryEvent:
ossimEvent ossimObject ossimReferenced

Public Member Functions

 ossimImageGeometryEvent (ossimObject *object=0, long id=OSSIM_EVENT_IMAGE_GEOMETRY_ID)
 
 ossimImageGeometryEvent (const ossimKeywordlist &geomKwl, ossimObject *object=NULL, long id=OSSIM_EVENT_IMAGE_GEOMETRY_ID)
 
 ossimImageGeometryEvent (const ossimImageGeometryEvent &rhs)
 
virtual ~ossimImageGeometryEvent ()
 
virtual ossimObjectdup () const
 
void setGeometry (const ossimKeywordlist &geomKwl)
 
void getGeometry (ossimKeywordlist &geomKwl) const
 
const ossimKeywordlistgetGeometry () const
 
bool isGeometrySet () const
 
void clearGeometry ()
 
- Public Member Functions inherited from ossimEvent
 ossimEvent (ossimObject *object=NULL, long id=OSSIM_EVENT_NULL_ID)
 
 ossimEvent (const ossimEvent &rhs)
 
long getId () const
 
void setId (long id)
 
bool isConsumed () const
 
void setConsumedFlag (bool flag=true)
 
void consume ()
 
const ossimObjectgetObject () const
 This is the originating object that originally produced the event. More...
 
ossimObjectgetObject ()
 
const ossimObjectgetCurrentObject () const
 
ossimObjectgetCurrentObject ()
 
void setObject (ossimObject *object)
 
void setCurrentObject (ossimObject *object)
 
void setPropagationType (PropagationType type)
 
bool isPropagatingToOutputs () const
 
bool isPropagatingToInputs () const
 
- Public Member Functions inherited from ossimObject
 ossimObject ()
 
virtual ~ossimObject ()
 
virtual ossimString getShortName () const
 
virtual ossimString getLongName () const
 
virtual ossimString getDescription () const
 
virtual ossimString getClassName () const
 
virtual RTTItypeid getType () const
 
virtual bool canCastTo (ossimObject *obj) const
 
virtual bool canCastTo (const RTTItypeid &id) const
 
virtual bool canCastTo (const ossimString &parentClassName) const
 
virtual bool saveState (ossimKeywordlist &kwl, const char *prefix=0) const
 
virtual bool loadState (const ossimKeywordlist &kwl, const char *prefix=0)
 
virtual std::ostream & print (std::ostream &out) const
 Generic print method. More...
 
virtual bool isEqualTo (const ossimObject &obj, ossimCompareType compareType=OSSIM_COMPARE_FULL) const
 
virtual void accept (ossimVisitor &visitor)
 
- Public Member Functions inherited from ossimReferenced
 ossimReferenced ()
 
 ossimReferenced (const ossimReferenced &)
 
ossimReferencedoperator= (const ossimReferenced &)
 
void ref () const
 increment the reference count by one, indicating that this object has another pointer which is referencing it. More...
 
void unref () const
 decrement the reference count by one, indicating that a pointer to this object is referencing it. More...
 
void unref_nodelete () const
 decrement the reference count by one, indicating that a pointer to this object is referencing it. More...
 
int referenceCount () const
 

Protected Attributes

ossimKeywordlist theGeomKwl
 
- Protected Attributes inherited from ossimEvent
ossimObjecttheObject
 
ossimObjecttheCurrentObject
 
long theId
 
bool theIsConsumedFlag
 
PropagationType thePropagationType
 

Additional Inherited Members

- Public Types inherited from ossimEvent
enum  PropagationType { PROPAGATION_NONE = 0, PROPAGATION_INPUT = 1, PROPAGATION_OUTPUT = 2 }
 
- Protected Member Functions inherited from ossimReferenced
virtual ~ossimReferenced ()
 

Detailed Description

Definition at line 16 of file ossimImageGeometryEvent.h.

Constructor & Destructor Documentation

◆ ossimImageGeometryEvent() [1/3]

ossimImageGeometryEvent::ossimImageGeometryEvent ( ossimObject object = 0,
long  id = OSSIM_EVENT_IMAGE_GEOMETRY_ID 
)
inline

Definition at line 19 of file ossimImageGeometryEvent.h.

Referenced by dup().

21  :ossimEvent(object, id)
22  {
23  }
ossimEvent(ossimObject *object=NULL, long id=OSSIM_EVENT_NULL_ID)
Definition: ossimEvent.cpp:16

◆ ossimImageGeometryEvent() [2/3]

ossimImageGeometryEvent::ossimImageGeometryEvent ( const ossimKeywordlist geomKwl,
ossimObject object = NULL,
long  id = OSSIM_EVENT_IMAGE_GEOMETRY_ID 
)
inline

Definition at line 25 of file ossimImageGeometryEvent.h.

28  :ossimEvent(object, id),
29  theGeomKwl(geomKwl)
30  {
31  }
ossimEvent(ossimObject *object=NULL, long id=OSSIM_EVENT_NULL_ID)
Definition: ossimEvent.cpp:16

◆ ossimImageGeometryEvent() [3/3]

ossimImageGeometryEvent::ossimImageGeometryEvent ( const ossimImageGeometryEvent rhs)
inline

Definition at line 32 of file ossimImageGeometryEvent.h.

33  :ossimEvent(rhs),
35  {
36  }
ossimEvent(ossimObject *object=NULL, long id=OSSIM_EVENT_NULL_ID)
Definition: ossimEvent.cpp:16

◆ ~ossimImageGeometryEvent()

virtual ossimImageGeometryEvent::~ossimImageGeometryEvent ( )
inlinevirtual

Definition at line 37 of file ossimImageGeometryEvent.h.

37 {}

Member Function Documentation

◆ clearGeometry()

void ossimImageGeometryEvent::clearGeometry ( )
inline

Definition at line 58 of file ossimImageGeometryEvent.h.

References ossimKeywordlist::clear(), and theGeomKwl.

59  {
60  theGeomKwl.clear();
61  }

◆ dup()

virtual ossimObject* ossimImageGeometryEvent::dup ( ) const
inlinevirtual

Reimplemented from ossimObject.

Definition at line 38 of file ossimImageGeometryEvent.h.

References ossimImageGeometryEvent().

39  {
40  return new ossimImageGeometryEvent(*this);
41  }
ossimImageGeometryEvent(ossimObject *object=0, long id=OSSIM_EVENT_IMAGE_GEOMETRY_ID)

◆ getGeometry() [1/2]

void ossimImageGeometryEvent::getGeometry ( ossimKeywordlist geomKwl) const
inline

Definition at line 46 of file ossimImageGeometryEvent.h.

References theGeomKwl.

47  {
48  geomKwl = theGeomKwl;
49  }

◆ getGeometry() [2/2]

const ossimKeywordlist& ossimImageGeometryEvent::getGeometry ( ) const
inline

Definition at line 50 of file ossimImageGeometryEvent.h.

References theGeomKwl.

51  {
52  return theGeomKwl;
53  }

◆ isGeometrySet()

bool ossimImageGeometryEvent::isGeometrySet ( ) const
inline

Definition at line 54 of file ossimImageGeometryEvent.h.

References ossimKeywordlist::getSize(), and theGeomKwl.

55  {
56  return (theGeomKwl.getSize() != 0);
57  }
ossim_uint32 getSize() const

◆ setGeometry()

void ossimImageGeometryEvent::setGeometry ( const ossimKeywordlist geomKwl)
inline

Definition at line 42 of file ossimImageGeometryEvent.h.

References theGeomKwl.

43  {
44  theGeomKwl = geomKwl;
45  }

Member Data Documentation

◆ theGeomKwl

ossimKeywordlist ossimImageGeometryEvent::theGeomKwl
protected

Definition at line 63 of file ossimImageGeometryEvent.h.

Referenced by clearGeometry(), getGeometry(), isGeometrySet(), and setGeometry().


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