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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: message_box.hpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/04/16 16:53:58  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_DIALOGS_GENERAL___MESSAGE_BOX__HPP
  10. #define GUI_DIALOGS_GENERAL___MESSAGE_BOX__HPP
  11. /*  $Id: message_box.hpp,v 1000.3 2004/04/16 16:53:58 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/ncbistd.hpp>
  42. #include <gui/gui.hpp>
  43. /** @addtogroup GUI_UTILS
  44.  *
  45.  * @{
  46.  */
  47. BEGIN_NCBI_SCOPE
  48. // standard dialog functions - replaces fl_ask, fl_alert, etc.
  49. NCBI_GUIUTILS_EXPORT
  50. EDialogReturnValue NcbiMessageBox(const string& message,
  51.                                   TDialogType type = eDialog_Ok,
  52.                                   EDialogIcon icon = eIcon_Exclamation,
  53.                                   const string& title = "Error",
  54.                                   EDialogTextMode text_mode = eRaw);
  55. END_NCBI_SCOPE
  56. /* @} */
  57. /*
  58.  * ===========================================================================
  59.  * $Log: message_box.hpp,v $
  60.  * Revision 1000.3  2004/04/16 16:53:58  gouriano
  61.  * PRODUCTION: UPGRADED [CATCHUP_003] Dev-tree R1.7
  62.  *
  63.  * Revision 1.7  2004/04/16 14:27:17  dicuccio
  64.  * Added doxygen module tag
  65.  *
  66.  * Revision 1.6  2004/03/11 17:20:43  dicuccio
  67.  * Use gui/gui instead of gui/types
  68.  *
  69.  * Revision 1.5  2003/11/07 17:16:44  jcherry
  70.  * Added optional line-wrapping and html display
  71.  *
  72.  * Revision 1.4  2003/10/20 15:14:33  johnson
  73.  * tweaked EDialogType such that one can specify modality as well as button
  74.  * style.
  75.  *
  76.  * Revision 1.3  2003/09/29 15:20:08  dicuccio
  77.  * Deprecated gui/scope.hpp.  Merged gui/core/types.hpp into gui/types.hpp
  78.  *
  79.  * Revision 1.2  2003/05/30 14:15:41  dicuccio
  80.  * Renamed MessageBox to NcbiMessageBox because brain-dead MSVC thinks this is
  81.  * ::MessageBox and rewrites the symbol as MessageBoxA, which results in an
  82.  * unresolved external and conflict with the Win32 API :(.
  83.  *
  84.  * Revision 1.1  2003/05/30 12:49:36  dicuccio
  85.  * MOved from gui/dialogs/general
  86.  *
  87.  * Revision 1.2  2003/05/19 17:30:55  dicuccio
  88.  * Added export specifier
  89.  *
  90.  * Revision 1.1  2003/05/19 13:52:19  dicuccio
  91.  * Initial revision
  92.  *
  93.  * ===========================================================================
  94.  */
  95. #endif  // GUI_DIALOGS_GENERAL___MESSAGE_BOX__HPP