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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: tip_dlg.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 20:56:35  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: tip_dlg.cpp,v 1000.2 2004/06/01 20:56:35 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 "tip_dlg.hpp"
  41. #include <corelib/ncbifile.hpp>
  42. #include <corelib/ncbiapp.hpp>
  43. #include <corelib/ncbireg.hpp>
  44. #include <gui/utils/system_path.hpp>
  45. #include <gui/utils/app_popup.hpp>
  46. #include <algorithm>
  47. BEGIN_NCBI_SCOPE
  48. #include "tip_dlg_.cpp"
  49. // callback function for links
  50. static const char *s_DoLink(Fl_Widget *w, const char *uri)
  51. {
  52.     CAppPopup::PopupURL(uri);
  53.     return 0;  // tells widget to do nothing
  54. }
  55. CTipDlg::CTipDlg()
  56.     : m_Show(true)
  57. {
  58.     m_Window.reset(x_CreateWindow());
  59.     m_Text->textsize(14);
  60.     m_Text->link(s_DoLink);
  61.     CNcbiApplication* app = CNcbiApplication::Instance();
  62.     _ASSERT(app);
  63.     CNcbiRegistry& app_registry = app->GetConfig();
  64.     m_Show = NStr::StringToBool(app_registry.GetString("APP", "news", "true"));
  65.     string fname = CSystemPath::ResolvePathExisting("<std>/etc/news.ini");
  66.     if (fname.empty()) {
  67.         return;
  68.     }
  69.     CNcbiIfstream reg_stream(fname.c_str(), ios::in|ios::binary);
  70.     CNcbiRegistry tips(reg_stream);
  71.     int last_displayed = app_registry.GetInt("APP", "LastNewsDisplayed", -1);
  72.     // figure out which messages to display
  73.     list<string> sections;
  74.     tips.EnumerateSections(&sections);
  75.     ITERATE (list<string>, section, sections) {
  76.         const string& sect = *section;
  77.         STip tip;
  78.         tip.idx     = tips.GetInt(sect, "number", 0);
  79.         tip.title   = tips.Get(sect, "title");
  80.         tip.author  = tips.Get(sect, "author");
  81.         tip.message = tips.Get(sect, "message");
  82.         m_Tips.push_back(tip);
  83.     }
  84.     sort(m_Tips.begin(), m_Tips.end());  // sort by idx
  85.     m_Curr = m_Tips.begin();
  86.     while (m_Curr != m_Tips.end()  &&  m_Curr->idx <= last_displayed) {
  87.         ++m_Curr;
  88.     }
  89.     x_RefreshTip();
  90.     // center the view in the screen
  91.     Center();
  92. }
  93. void CTipDlg::Show()
  94. {
  95.     if ( !m_Show ) {
  96.         return;
  97.     }
  98.     CDialog::Show();
  99. }
  100. void CTipDlg::x_OnNextTip()
  101. {
  102.     vector<STip>::iterator iter = m_Curr;
  103.     ++iter;
  104.     if (iter != m_Tips.end()) {
  105.         ++m_Curr;
  106.         x_RefreshTip();
  107.     }
  108. }
  109. void CTipDlg::x_OnPrevTip()
  110. {
  111.     if (m_Curr != m_Tips.begin()) {
  112.         --m_Curr;
  113.         x_RefreshTip();
  114.     }
  115. }
  116. void CTipDlg::x_OnHideTips()
  117. {
  118.     CNcbiApplication* app = CNcbiApplication::Instance();
  119.     _ASSERT(app);
  120.     CNcbiRegistry& app_registry = app->GetConfig();
  121.     app_registry.Set("APP", "news",
  122.                      NStr::BoolToString(m_HideTips->value() ? false : true),
  123.                      CNcbiRegistry::ePersistent);
  124. }
  125. void CTipDlg::x_RefreshTip()
  126. {
  127.     if (m_Curr != m_Tips.end()) {
  128.         string msg = m_Curr->message;
  129.         msg =
  130.             "<table width=100%><tr><td width=95%>" +
  131.             msg +
  132.             "</td></tr></table>";
  133.         m_Text->value(msg.c_str());
  134.         m_TipStr = "Tip #" + NStr::IntToString(m_Curr->idx);
  135.         if ( !m_Curr->title.empty() ) {
  136.             m_TipStr += ": " + m_Curr->title;
  137.         }
  138.         if ( !m_Curr->author.empty() ) {
  139.             m_TipStr += " (from " + m_Curr->author + ")";
  140.         }
  141.         m_Tip->label(m_TipStr.c_str());
  142.         // record last displayed in registry
  143.         CNcbiApplication* app = CNcbiApplication::Instance();
  144.         _ASSERT(app);
  145.         CNcbiRegistry& app_registry = app->GetConfig();
  146.         app_registry.Set("APP", "LastNewsDisplayed", 
  147.                          NStr::IntToString(m_Curr->idx),
  148.                          CNcbiRegistry::ePersistent);
  149.     } else {
  150.         m_Show = false;
  151.     }
  152. }
  153. END_NCBI_SCOPE
  154. /*
  155.  * ===========================================================================
  156.  * $Log: tip_dlg.cpp,v $
  157.  * Revision 1000.2  2004/06/01 20:56:35  gouriano
  158.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  159.  *
  160.  * Revision 1.7  2004/05/21 22:27:47  gorelenk
  161.  * Added PCH ncbi_pch.hpp
  162.  *
  163.  * Revision 1.6  2004/02/17 20:35:27  rsmith
  164.  * moved core/settings.[ch]pp and core/system_path.[ch]pp to config and utils, respectively.
  165.  *
  166.  * Revision 1.5  2003/12/22 19:27:26  dicuccio
  167.  * Use CDialog::Center() instead of internal centering
  168.  *
  169.  * Revision 1.4  2003/12/03 15:28:29  jcherry
  170.  * Sort items by index (otherwise they're alphabetical by section name).
  171.  * Use vector rather than list to avoid non-portable list sort.
  172.  *
  173.  * Revision 1.3  2003/12/03 03:59:58  jcherry
  174.  * Made s_DoLink() really static
  175.  *
  176.  * Revision 1.2  2003/12/02 22:41:16  jcherry
  177.  * Added browser pop-up for links
  178.  *
  179.  * Revision 1.1  2003/11/24 15:43:13  dicuccio
  180.  * Added new tip-of-the-day dialog.  Changed CVersion to CPluginVersion
  181.  *
  182.  * ===========================================================================
  183.  */