PluginObject.cpp
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:6k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: PluginObject.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 20:53:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: PluginObject.cpp,v 1000.2 2004/06/01 20:53:48 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's official duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  *
  34.  * Author:  .......
  35.  *
  36.  * File Description:
  37.  *   .......
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the data definition file
  42.  *   'plugin.asn'.
  43.  */
  44. // standard includes
  45. // generated includes
  46. #include <ncbi_pch.hpp>
  47. #include <gui/plugin/PluginObject.hpp>
  48. // generated classes
  49. BEGIN_NCBI_SCOPE
  50. BEGIN_objects_SCOPE // namespace ncbi::objects::
  51. // destructor
  52. CPluginObject::~CPluginObject(void)
  53. {
  54. }
  55. //
  56. //
  57. void CPluginObject::SetDocument(const IDocument* doc)
  58. {
  59.     m_Document.Reset(doc);
  60.     m_Object.Reset  (doc);
  61.     SetDocaddr(NStr::PtrToString(m_Document.GetPointer()));
  62.     SetObjaddr(NStr::PtrToString(m_Object.GetPointer()));
  63.     SetSubtype("Document");
  64. }
  65. void CPluginObject::SetObject(const IDocument* doc, const CObject* obj)
  66. {
  67.     m_Document.Reset(doc);
  68.     m_Object.Reset  (obj);
  69.     SetDocaddr(NStr::PtrToString(m_Document.GetPointer()));
  70.     SetObjaddr(NStr::PtrToString(m_Object.GetPointer()));
  71.     // subtype determination
  72.     SetSubtype("Object");
  73.     {{
  74.         const IDocument* ptr =
  75.             dynamic_cast<const IDocument*>(m_Object.GetPointer());
  76.         if (ptr) {
  77.             SetSubtype("Document");
  78.         }
  79.     }}
  80.     {{
  81.         const CSerialObject* ptr =
  82.             dynamic_cast<const CSerialObject*>(m_Object.GetPointer());
  83.         if (ptr) {
  84.             SetSubtype(ptr->GetThisTypeInfo()->GetName());
  85.         }
  86.     }}
  87. }
  88. void CPluginObject::SetObject(const CTypeInfo* info)
  89. {
  90.     if (info) {
  91.         SetObject(info->GetName());
  92.     } else {
  93.         SetObject("Object");
  94.     }
  95. }
  96. void CPluginObject::SetObject(const string& type)
  97. {
  98.     m_Document.Reset();
  99.     m_Object.Reset();
  100.     SetDocaddr(NStr::PtrToString(NULL));
  101.     SetObjaddr(NStr::PtrToString(NULL));
  102.     SetSubtype(type);
  103. }
  104. //
  105. // overloaded Assign() because we have some derived information to copy as well
  106. //
  107. void CPluginObject::UserOp_Assign(const CSerialUserOp& obj)
  108. {
  109.     const CPluginObject& o = dynamic_cast<const CPluginObject&> (obj);
  110.     // copy the address - this is the base class info
  111.     SetDocaddr(o.GetDocaddr());
  112.     SetObjaddr(o.GetObjaddr());
  113.     SetSubtype(o.GetSubtype());
  114.     // copy our derived info as well
  115.     m_Object = o.m_Object;
  116.     m_Document = o.m_Document;
  117. }
  118. bool CPluginObject::UserOp_Equals(const CSerialUserOp& obj) const
  119. {
  120.     const CPluginObject& o = dynamic_cast<const CPluginObject&> (obj);
  121.     return (GetDocaddr() == o.GetDocaddr()  &&
  122.             GetObjaddr() == o.GetObjaddr()  &&
  123.             GetSubtype() == o.GetSubtype()  &&
  124.             GetDocument() == o.GetDocument()  &&
  125.             GetObject() == o.GetObject());
  126. }
  127. // Reset()
  128. // this is overloaded from CPluginObject_Base and allows us to reset our derived
  129. // type information
  130. void CPluginObject::Reset(void)
  131. {
  132.     // call the base class
  133.     Tparent::Reset();
  134.     // reset our specific information
  135.     m_Object.Reset();
  136.     m_Document.Reset();
  137. }
  138. //
  139. // PostRead()
  140. // this function is responsible for parsing any state information from our
  141. // address string
  142. //
  143. void CPluginObject::PostRead()
  144. {
  145.     // store our pointers
  146.     m_Document.Reset
  147.         (static_cast<const IDocument*>(NStr::StringToPtr(GetDocaddr())));
  148.     m_Object.Reset
  149.         (static_cast<const CObject*>(NStr::StringToPtr(GetObjaddr())));
  150.     /**
  151.     //
  152.     // store our derived object type information
  153.     //
  154.     SetSubtype("Object");
  155.     // generic handling of CSerialObject-derived classes
  156.     {{
  157.         const CSerialObject* obj =
  158.             dynamic_cast<const CSerialObject*>(m_Object.GetPointer());
  159.         if (obj) {
  160.             SetSubtype(obj->GetThisTypeInfo()->GetName());
  161.         }
  162.     }}
  163.     // generic handling of IDocuments
  164.     {{
  165.         const IDocument* obj =
  166.             dynamic_cast<const IDocument*>(m_Object.GetPointer());
  167.         if (obj) {
  168.             SetSubtype("Document");
  169.         }
  170.     }}
  171.     **/
  172. }
  173. END_objects_SCOPE // namespace ncbi::objects::
  174. END_NCBI_SCOPE
  175. /*
  176. * ===========================================================================
  177. *
  178. * $Log: PluginObject.cpp,v $
  179. * Revision 1000.2  2004/06/01 20:53:48  gouriano
  180. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.3
  181. *
  182. * Revision 1.3  2004/05/21 22:27:46  gorelenk
  183. * Added PCH ncbi_pch.hpp
  184. *
  185. * Revision 1.2  2004/02/04 13:36:42  dicuccio
  186. * Implemented resetting of object-based arguments
  187. *
  188. * Revision 1.1  2003/10/27 17:44:33  dicuccio
  189. * Reworked CPluginValue to be a variant.  Removed ad hoc URL encoding
  190. *
  191. *
  192. * ===========================================================================
  193. */
  194. /* Original file checksum: lines: 64, chars: 1886, CRC32: f857b507 */