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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: types.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 19:46:07  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.12
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI___TYPES__HPP
  10. #define GUI___TYPES__HPP
  11. /*  $Id: types.hpp,v 1000.3 2004/06/01 19:46:07 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:  Denis Vakatov
  37.  *
  38.  * File Description:
  39.  *   NCBI GUI types
  40.  *
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <util/range.hpp>
  44. BEGIN_NCBI_SCOPE
  45. // enumerated type for dialog boxes
  46. enum EDialogType
  47. {
  48.     eDialog_StyleMask = 0x00ff,
  49.     eDialog_Ok        = 0x0001,
  50.     eDialog_OkCancel  = 0x0002,
  51.     eDialog_YesNo     = 0x0003,
  52.     // flags that can modify the styles
  53.     eDialog_Modal           = 0x0100,
  54.     eDialog_Centered        = 0x0200,
  55.     eDialog_CenteredAtMouse = 0x0400
  56. };
  57. typedef unsigned int TDialogType;
  58. // enumerated type for dialog icon
  59. enum EDialogIcon
  60. {
  61.     eIcon_Info,
  62.     eIcon_Question,
  63.     eIcon_Exclamation,
  64.     eIcon_Stop
  65. };
  66. // enumerated return values for dialog boxes
  67. enum EDialogReturnValue {
  68.     eCancel = 0,
  69.     eNo     = 0,
  70.     eOK     = 1,
  71.     eYes    = 1
  72. };
  73. // enumerated return values for dialog boxes
  74. enum EDialogTextMode {
  75.     eRaw,
  76.     eWrap,
  77.     eHtml
  78. };
  79. //
  80. // Enumerated values for update states.
  81. // These are used by the framework to communicate between documents and views.
  82. //
  83. enum EUpdateFlags {
  84.     // Used to indicate internally in a view or among sibling views that the
  85.     // components selected by a view have changed.
  86.     fSelectionChanged    = 0x0001,
  87.     // Used to indicate to a set of views bound to a document that the data
  88.     // represented by the document has changed.  This can be used to segregate
  89.     // potentially expensive operations our from other events.
  90.     fDocumentChanged     = 0x0002,
  91.     // Used to indicate to all documents and views that a document has been
  92.     // destroyed.  For this event, documents and views could verify that all
  93.     // selections refer to active documents.
  94.     fDocumentReleased    = 0x0004,
  95.     // Used to indicate to all documents and views that a new document has been
  96.     // created.
  97.     fDocumentCreated     = 0x0008,
  98.     // Used to indicated among a set of sibling views that a view has changed
  99.     // its view focus.
  100.     fViewChanged         = 0x0010,
  101.     // Used to communicate that a view has been deleted
  102.     fViewReleased        = 0x0020,
  103.     // Used to indicate that a new view exists.
  104.     fViewCreated         = 0x0040,
  105.     // Used to indicate that a view's visible range has changed
  106.     fVisibleRangeChanged = 0x0080,
  107.     // Binary mask for all events
  108.     fAllEvents           = 0xffffffff
  109. };
  110. typedef unsigned int TUpdateFlags;    // bitwise OR of "EUpdateFlags"
  111. END_NCBI_SCOPE
  112. /*
  113.  * ===========================================================================
  114.  * $Log: types.hpp,v $
  115.  * Revision 1000.3  2004/06/01 19:46:07  gouriano
  116.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.12
  117.  *
  118.  * Revision 1.12  2004/05/03 12:38:28  dicuccio
  119.  * Deleted dead code
  120.  *
  121.  * Revision 1.11  2004/03/11 17:14:27  dicuccio
  122.  * FIxed previous comment - deprecated TPosition, TDimension, TIndex
  123.  *
  124.  * Revision 1.10  2004/03/11 17:13:11  dicuccio
  125.  * Deprecated typedefs: TPosition, TDimension, TIndex
  126.  *
  127.  * Revision 1.9  2003/11/07 17:16:43  jcherry
  128.  * Added optional line-wrapping and html display
  129.  *
  130.  * Revision 1.8  2003/10/20 15:14:34  johnson
  131.  * tweaked EDialogType such that one can specify modality as well as button
  132.  * style.
  133.  *
  134.  * Revision 1.7  2003/09/29 15:09:06  dicuccio
  135.  * Merged gui/core/types into gui/types
  136.  *
  137.  * Revision 1.6  2003/06/20 16:22:05  lebedev
  138.  * New type added
  139.  *
  140.  * Revision 1.5  2003/01/13 13:11:41  dicuccio
  141.  * Namespace clean-up.  Retired namespace gui -> converted to namespace ncbi.
  142.  * Moved all FLUID-generated code into namespace ncbi.
  143.  *
  144.  * Revision 1.4  2002/11/29 16:33:17  dicuccio
  145.  * Corrected some aberrant tab placements
  146.  *
  147.  * Revision 1.3  2002/11/19 17:42:56  lebedev
  148.  * TIndex type added
  149.  *
  150.  * Revision 1.2  2002/09/24 19:34:50  lebedev
  151.  * include path corrected
  152.  *
  153.  * Revision 1.1  2002/09/19 21:49:41  vakatov
  154.  * Initial revision
  155.  *
  156.  * ===========================================================================
  157.  */
  158. #endif  /* GUI___TYPES__HPP */