ViewWindowMetaData Struct Reference
 
 
 
ViewWindowMetaData Struct Reference

#include <maxapi.h>

Inheritance diagram for ViewWindowMetaData:
MaxHeapOperators

Class Description

Meta data of ViewWindow class; it contains the description of how the window is created.

Public Types

enum   CreationTypeEnum { SINGLETON, NOT_UNIQUE }

Public Member Functions

  ViewWindowMetaData (CreationTypeEnum type=NOT_UNIQUE)

Public Attributes

CreationTypeEnum  mCreationType

Member Enumeration Documentation

Enumerator:
SINGLETON 
NOT_UNIQUE 
        {
                SINGLETON,              // window is a singleton; only one instance of it can be created. The window only signalises that it is a singleton;
                                                // and the core application takes care of showing only one instance of it
                //NAME_UNIQUE,  // window is unique by name; only one instance os a particular name can exist; 
                                                // this type is not supported yet
                NOT_UNIQUE              // window can be created in many copies
        };

Constructor & Destructor Documentation

ViewWindowMetaData ( CreationTypeEnum  type = NOT_UNIQUE ) [inline]
                                                              : mCreationType(type)
        {}

Member Data Documentation