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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: obj_clipboard.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 19:55:37  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_OBJUTILS___CLIPBOARD__HPP
  10. #define GUI_OBJUTILS___CLIPBOARD__HPP
  11. /*  $Id: obj_clipboard.hpp,v 1000.0 2004/06/01 19:55:37 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Mike DiCuccio
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbiobj.hpp>
  42. #include <objmgr/scope.hpp>
  43. #include <gui/gui.hpp>
  44. #include <gui/utils/clipboard.hpp>
  45. #include <gui/objutils/objects.hpp>
  46. /** @addtogroup GUI_OBJUTILS
  47.  *
  48.  * @{
  49.  */
  50. BEGIN_NCBI_SCOPE
  51. class NCBI_GUIOBJUTILS_EXPORT CObjClipboard : public CClipboard
  52. {
  53. public:
  54.     // modes for text copy
  55.     enum ECopyMode {
  56.         eCopy_Label,
  57.         eCopy_ASN,
  58.         eCopy_XML
  59.     };
  60.     // clear the contents of the current clipboard
  61.     static void Clear(void);
  62.     // Copy an object to the clipboard.  This version will use a best-fit
  63.     // to try and find the text to be copied.
  64.     static void Add(objects::CScope& scope, const CObject& object);
  65.     // Copy an object to the clipboard.  This version will use a supplied
  66.     // text parameter for its copied text; the text parameter overrides
  67.     // the current text copy mode.
  68.     static void Add(objects::CScope& scope, const CObject& object,
  69.                     const string& text);
  70.     // Copy just a piece of text to the clipboard.
  71.     static void Add(const string& text);
  72.     // force the copy to be made
  73.     static void Copy();
  74.     // Retrieve the current objects from the clipboard.  Only non-NULL
  75.     // parameters are retrieved.
  76.     static void Paste(TConstScopedObjects* objs, string* text);
  77. private:
  78.     // our current objects
  79.     static TConstScopedObjects sm_Objects;
  80.     // the current text
  81.     static string sm_Text;
  82.     // the mode of text copy
  83.     static ECopyMode sm_Mode;
  84.     // append an appropriate piece of text onto the passed string
  85.     static void x_GetText(objects::CScope& scope,
  86.                           const CObject& object,
  87.                           string* text);
  88.     // forbidden
  89.     CObjClipboard();
  90.     CObjClipboard(const CClipboard&);
  91.     CObjClipboard& operator=(const CClipboard&);
  92. };
  93. END_NCBI_SCOPE
  94. /* @} */
  95. /*
  96.  * ===========================================================================
  97.  * $Log: obj_clipboard.hpp,v $
  98.  * Revision 1000.0  2004/06/01 19:55:37  gouriano
  99.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  100.  *
  101.  * Revision 1.1  2004/05/07 15:45:38  dicuccio
  102.  * Renamed class as CObjClipboard
  103.  *
  104.  * Revision 1.3  2004/05/03 13:34:54  dicuccio
  105.  * FIxed include guards, doxygen groups
  106.  *
  107.  * Revision 1.2  2004/05/03 12:41:35  dicuccio
  108.  * Fixed #includes and export specifiers
  109.  *
  110.  * Revision 1.1  2004/04/30 11:52:52  dicuccio
  111.  * Split out from gui/utils
  112.  *
  113.  * Revision 1.3  2004/04/16 14:27:17  dicuccio
  114.  * Added doxygen module tag
  115.  *
  116.  * Revision 1.2  2004/04/07 12:38:45  dicuccio
  117.  * Rewored to use structs and defines in objects.hpp
  118.  *
  119.  * Revision 1.1  2004/01/30 17:12:11  dicuccio
  120.  * Initial revision
  121.  *
  122.  * ===========================================================================
  123.  */
  124. #endif  // GUI_OBJUTILS___CLIPBOARD__HPP