zjf
2023-03-06 4c74f8a9fb913d0c3db432c65afc4bff7f779522
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/////////////////////////////////////////////////////////////////////////////// 
// Copyright (C) 2002-2016, Open Design Alliance (the "Alliance"). 
// All rights reserved. 
// 
// This software and its documentation and related materials are owned by 
// the Alliance. The software may only be incorporated into application 
// programs owned by members of the Alliance, subject to a signed 
// Membership Agreement and Supplemental Software License Agreement with the
// Alliance. The structure and organization of this software are the valuable  
// trade secrets of the Alliance and its suppliers. The software is also 
// protected by copyright law and international treaty provisions. Application  
// programs incorporating this software must include the following statement 
// with their copyright notices:
//   
//   This application incorporates Teigha(R) software pursuant to a license 
//   agreement with Open Design Alliance.
//   Teigha(R) Copyright (C) 2002-2016 by Open Design Alliance. 
//   All rights reserved.
//
// By use of this software, its documentation or related materials, you 
// acknowledge and accept the above terms.
///////////////////////////////////////////////////////////////////////////////
 
#ifndef _OLEITEMDATAHEADER_INCLUDED_
#define _OLEITEMDATAHEADER_INCLUDED_
 
#include "TD_PackPush.h"
#include "OleItemHandler.h"
#include "UInt8Array.h"
#include "DbRootExport.h"
 
 
/** \details
    This class is intended to be used in implementing custom OLE handlers.
 
    \remarks
    This class represents header of OdDbOle2Frame binary data.
    
    The header is an MFC COleClientItem object's fields serialized
    through MFC CArchive object. See MFC source code for details.
 
    <group Other_Classes>
*/
class DBROOT_EXPORT OdOleItemHandlerBase : public OdOleItemHandler
{
protected:
  /* FROM MFC SOURCE:
  enum OLE_OBJTYPE
  {
    OT_UNKNOWN  = 0,
 
    // These are OLE 1.0 types and OLE 2.0 types as returned from GetType().
    OT_LINK     = 1,
    OT_EMBEDDED = 2,
    OT_STATIC   = 3,
    
    // All OLE2 objects are written with this tag when serialized.  This
    //  differentiates them from OLE 1.0 objects written with MFC 2.0.
    //  This value will never be returned from GetType().
    OT_OLE2     = 256,
  };
  */
  
  //OdUInt32  m_nOleVer;    // (enum OLE_OBJTYPE) must be always OT_OLE2
  //OdUInt32  m_nItemId;    // id in COleDocument
  //DvAspect  m_adviseType; // view advise type (DVASPECT)
  //OdUInt16  m_bMoniker;   // flag indicating whether to create moniker upon load
  //DvAspect  m_drawAspect; // current default display aspect
 
  OdUInt32    m_nOleVer;  
  OdUInt32    m_nItemId;   
  DvAspect    m_adviseType; 
  OdUInt16    m_bMoniker;   
  DvAspect    m_drawAspect; 
  PlotQuality m_quality;
 
 
  OdOleItemHandlerBase();
public:
  ODRX_DECLARE_MEMBERS(OdOleItemHandlerBase);
 
  /** \details
    Reads the header of the OdDbOle2Frame object.
    \param streamBuf [in]  StreamBuf object from which the data are to be read.
  */
  void load(OdStreamBuf& streamBuf);
 
  /** \details
    Writes the header of the OdDbOle2Frame object.
    \param streamBuf [in]  StreamBuf object to which which the data are to be written.
  */
  void save(OdStreamBuf& streamBuf) const;
 
  /** \note
    The default implementation of this function does nothing.
  */
  void draw(const OdGiCommonDraw& drawObj, void* hdc, const OdGsDCRect& screenRect) const;
 
  /** \note
      The default implementation of this function returns kUnknown.
  */
  Type type() const;
 
  /** \note
      The default implementation of this function returns an empty string.
  */
  OdString linkName() const;
 
  /** \note
      The default implementation of this function returns an empty string.
  */
  OdString linkPath() const;
 
  /** \note
      The default implementation of this function returns an empty string.
  */
  OdString userType() const;
 
  DvAspect drawAspect() const;
  void setDrawAspect(DvAspect drawAspect);
 
  OdUInt32 itemId() const;
  void setItemId(OdUInt32 nId);
 
  DvAspect adviseType() const;
  void setAdviseType(DvAspect at);
 
  bool monikerAssigned() const;
  void setMonikerAssigned(bool assigned);
 
  OdUInt32 oleVersion() const;
  void setOleVersion(OdUInt32 oleVer);
 
  PlotQuality outputQuality() const;
  void setOutputQuality(PlotQuality quality);
 
  virtual COleClientItem* getOleClientItem(void) const;
 
  virtual bool embedRaster(OdSmartPtr<OdGiRasterImage> pImage,
                           OdRxObject* pRxDb = NULL);
};
 
/** \details
    This class provides an interface to OLE compound documents.
    <group Other_Classes>
*/
class DBROOT_EXPORT OdOleItemSimplestHandler : public OdOleItemHandlerBase
{
  OdUInt8Array  m_compDocData;
public:
  OdUInt32 getCompoundDocumentDataSize() const;
 
  void getCompoundDocument(OdStreamBuf& streamBuf) const;
 
  void setCompoundDocument(OdUInt32 numBytes, OdStreamBuf& streamBuf);
};
 
 
#include "TD_PackPop.h"
 
#endif // #ifndef _OLEITEMDATAHEADER_INCLUDED_