123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 2015 Autodesk, Inc. All rights reserved.
- //
- // Use of this software is subject to the terms of the Autodesk license
- // agreement provided at the time of installation or download, or which
- // otherwise accompanies this software in either electronic or hard copy form.
- //
- //////////////////////////////////////////////////////////////////////////////
- //
- #pragma once
- #include "dbmain.h"
- #include "dbintar.h"
- #pragma pack (push, 8)
- class ADESK_NO_VTABLE AcDbProxyObject : public AcDbObject
- {
- public:
- ACRX_DECLARE_MEMBERS(AcDbProxyObject);
-
- virtual ~AcDbProxyObject() {};
-
- virtual int proxyFlags() const = 0;
- virtual const ACHAR * originalClassName() const = 0;
- virtual const ACHAR * originalDxfName() const = 0;
- virtual const ACHAR * applicationDescription() const = 0;
- virtual Acad::ErrorStatus getReferences(AcDbObjectIdArray&,
- AcDbIntArray&) const = 0;
- virtual AcDb::DuplicateRecordCloning mergeStyle() const = 0;
- enum {kNoOperation = 0,
- kEraseAllowed = 0x01,
- kCloningAllowed = 0x80,
- kAllButCloningAllowed = 0x01,
- kAllAllowedBits = 0x81,
- kMergeIgnore = 0, // Keep existing (= default)
- kMergeReplace = 0x100, // Use clone
- kMergeMangleName = 0x200, // anonymous name
- kDisableProxyWarning = 0x400
- };
- };
- class ADESK_NO_VTABLE AcDbProxyEntity : public AcDbEntity
- {
- public:
- ACRX_DECLARE_MEMBERS(AcDbProxyEntity);
-
- virtual ~AcDbProxyEntity() {};
-
- virtual int proxyFlags() const = 0;
- virtual const ACHAR * originalClassName() const = 0;
- virtual const ACHAR * originalDxfName() const = 0;
- virtual const ACHAR * applicationDescription() const = 0;
- virtual Acad::ErrorStatus getReferences(AcDbObjectIdArray&,
- AcDbIntArray&) const = 0;
- enum GraphicsMetafileType {
- kNoMetafile = 0,
- kBoundingBox = 1,
- kFullGraphics = 2 };
- virtual AcDbProxyEntity::GraphicsMetafileType graphicsMetafileType()
- const = 0;
- enum {kNoOperation = 0,
- kEraseAllowed = 0x1,
- kTransformAllowed = 0x2,
- kColorChangeAllowed = 0x4,
- kLayerChangeAllowed = 0x8,
- kLinetypeChangeAllowed = 0x10,
- kLinetypeScaleChangeAllowed = 0x20,
- kVisibilityChangeAllowed = 0x40,
- kCloningAllowed = 0x80,
- kLineWeightChangeAllowed = 0x100,
- kPlotStyleNameChangeAllowed = 0x200,
- kAllButCloningAllowed = 0x37F,
- kAllAllowedBits = 0xBFF,
- kDisableProxyWarning = 0x400,
- kMaterialChangeAllowed = 0x800,
- };
- };
- #pragma pack (pop)
|