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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dialog.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 21:04:48  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: dialog.cpp,v 1000.3 2004/06/01 21:04: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.  * Authors:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/utils/dialog.hpp>
  41. #include <gui/utils/fltk_utils.hpp>
  42. #include <FL/Fl_Window.H>
  43. #include <FL/Fl_Widget.H>
  44. #include <FL/Fl.H>
  45. BEGIN_NCBI_SCOPE
  46. CDialog::CDialog()
  47.     : m_RetValue(eCancel)
  48. {
  49. }
  50. CDialog::~CDialog()
  51. {
  52. }
  53. void CDialog::SetTitle(const string& title)
  54. {
  55.     m_TitleStr = title;
  56.     m_Window->label(m_TitleStr.c_str());
  57. }
  58. // non-modal operations
  59. void CDialog::Show()
  60. {
  61.     if (m_Window.get()) {
  62.         //CFltkGuard GUARD(m_Window.get());
  63.         m_Window->show();
  64.     }
  65. }
  66. void CDialog::Hide()
  67. {
  68.     if (m_Window.get()) {
  69.         //CFltkGuard GUARD(m_Window.get());
  70.         m_Window->hide();
  71.     }
  72. }
  73. // modal operations
  74. int CDialog::Show(int argc, char** argv)
  75. {
  76.     //
  77.     // This version is specifically designed for the case in which this dialog
  78.     // is the main window that will appear.  As such, we can assume that we can
  79.     // perform some basic initialization.
  80.     //
  81.     CFltkUtils::Lock();
  82.     Fl::visual(FL_DOUBLE | FL_RGB8);
  83.     if ( !m_Window.get() ) {
  84.         return -1;
  85.     }
  86.     CFltkGuard GUARD(m_Window.get());
  87.     m_Window->show(argc, argv);
  88.     return Fl::run();
  89. }
  90. EDialogReturnValue CDialog::ShowModal()
  91. {
  92.     if ( !m_Window.get() ) {
  93.         return eCancel;
  94.     }
  95.     //CFltkGuard GUARD(m_Window.get());
  96.     m_RetValue = eCancel;
  97.     Show();
  98.     while (m_Window->visible()) {
  99.         Fl::wait(0.05f);
  100.     }
  101.     return m_RetValue;
  102. }
  103. bool CDialog::IsShown(void) const
  104. {
  105.     return m_Window->shown() ? true : false;
  106. }
  107. void CDialog::Center(void)
  108. {
  109.     Center(0, 0, Fl::w(), Fl::h());
  110. }
  111. void CDialog::CenterOnActive()
  112. {
  113.     Fl_Widget* w = NULL;
  114.     Fl_Window* win = NULL;
  115.     w = Fl::focus();
  116.     if (w) {
  117.         win = w->window();
  118.     }
  119.     if (win) {
  120.         Center(win);
  121.     } else {
  122.         Center();
  123.     }
  124. }
  125. void CDialog::Center(int x, int y)
  126. {
  127.     if (m_Window.get()) {
  128.         m_Window->position(x - m_Window->w() / 2, y - m_Window->h() / 2);
  129.     }
  130. }
  131. void CDialog::Center(int x, int y, int w, int h)
  132. {
  133.     Center(x + w/2, y + h/2);
  134. }
  135. void CDialog::Center(const Fl_Widget* w)
  136. {
  137.     if (w) {
  138.         Center(w->x(), w->y(), w->w(), w->h());
  139.     }
  140. }
  141. void CDialog::x_OnOK()
  142. {
  143.     m_RetValue = eOK;
  144.     Hide();
  145. }
  146. void CDialog::x_OnCancel()
  147. {
  148.     m_RetValue = eCancel;
  149.     Hide();
  150. }
  151. END_NCBI_SCOPE
  152. /*
  153.  * ===========================================================================
  154.  * $Log: dialog.cpp,v $
  155.  * Revision 1000.3  2004/06/01 21:04:48  gouriano
  156.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  157.  *
  158.  * Revision 1.8  2004/05/21 22:27:50  gorelenk
  159.  * Added PCH ncbi_pch.hpp
  160.  *
  161.  * Revision 1.7  2004/04/07 13:06:01  dicuccio
  162.  * Commented use of CFltkGuard
  163.  *
  164.  * Revision 1.6  2004/01/20 18:18:57  dicuccio
  165.  * Added standard initialization to Show() where Show() is assumed to be a main
  166.  * application window being shown
  167.  *
  168.  * Revision 1.5  2003/12/22 19:36:24  dicuccio
  169.  * Added use of CFltkGuard.
  170.  *
  171.  * Revision 1.4  2003/12/08 18:03:06  dicuccio
  172.  * Added Center() functions
  173.  *
  174.  * Revision 1.3  2003/12/05 17:21:44  yazhuk
  175.  * Added SetTitle()
  176.  *
  177.  * Revision 1.2  2003/11/26 17:16:58  dicuccio
  178.  * Added IsShown()
  179.  *
  180.  * Revision 1.1  2003/09/29 15:23:09  dicuccio
  181.  * Initial revision
  182.  *
  183.  * Revision 1.1  2003/09/12 19:50:07  dicuccio
  184.  * Initial revision
  185.  *
  186.  * ===========================================================================
  187.  */