TriggerSet Struct Reference

Class to manage the UI and execution of stretch/extend properties. More...

#include <ngprop.h>

List of all members.

Public Member Functions

 TriggerSet (const StringBase &strSet)
 Constructs a TriggerSet record for a stretch/extend.
 TriggerSet (const TriggerSet &other)
 Copy constructor.
INT32 operator== (const StringBase &strName) const

Public Attributes

StringBase m_strSet


Detailed Description

Class to manage the UI and execution of stretch/extend properties.

Author:
Justin_Flude (Xara Group Ltd) <camelotdev@xara.com>
Date:
27/8/99
See also:
SGNameProp; NamedTickboxProp; SGNameItem; NameGallery

Definition at line 326 of file ngprop.h.


Constructor & Destructor Documentation

TriggerSet::TriggerSet const StringBase strSet  ) 
 

Constructs a TriggerSet record for a stretch/extend.

Author:
Justin_Flude (Xara Group Ltd) <camelotdev@xara.com>
Date:
27/8/99
Parameters:
strSet --- the name of the TriggerSet set to stretch/extend [INPUTS]
See also:
NamedStretchProp; StringBase::Alloc

Definition at line 1601 of file ngprop.cpp.

01602 {
01603     if (m_strSet.Alloc(strSet.Length() + 1)) m_strSet = strSet;
01604 }

TriggerSet::TriggerSet const TriggerSet other  ) 
 

Copy constructor.

Author:
Justin_Flude (Xara Group Ltd) <camelotdev@xara.com>
Date:
27/8/99
Parameters:
other --- NamedStretchProp::TriggerSet to copy [INPUTS]
See also:
NamedStretchProp; StringBase::Alloc

Definition at line 1618 of file ngprop.cpp.

01619 {
01620     if (m_strSet.Alloc(other.m_strSet.Length() + 1)) m_strSet = other.m_strSet;
01621 }


Member Function Documentation

INT32 TriggerSet::operator== const StringBase strName  )  const [inline]
 

Definition at line 333 of file ngprop.h.

00334         { return strName == m_strSet; }


Member Data Documentation

StringBase TriggerSet::m_strSet
 

Definition at line 337 of file ngprop.h.


The documentation for this struct was generated from the following files:
Generated on Sat Nov 10 04:02:28 2007 for Camelot by  doxygen 1.4.4