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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: paragraph.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 21:02:23  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.10
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*
  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 warrantic word - diversity?ies, 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:  Lou Friedman
  35.  *
  36.  * File Description:
  37.  *    Implmentation of the CPargarph class used to manage genbank
  38.  *      paragraphs for editing.
  39.  */
  40. //#include <corelib/ncbistd.hpp>
  41. #include <ncbi_pch.hpp>
  42. #include <FL/Fl.H>
  43. #include <FL/Fl_Box.H>
  44. #include <FL/fl_draw.H>
  45. #include <objtools/format/items/item.hpp>
  46. #include <objtools/format/formatter.hpp>
  47. #include "paragraph.hpp"
  48. #include "object_editor.hpp"
  49. #include "header_editor.hpp"
  50. #include "reference_editor.hpp"
  51. BEGIN_NCBI_SCOPE
  52. USING_SCOPE(objects);
  53. static void SetTextMeasure (Fl_Widget *w)
  54. {
  55.     int ww = 0;
  56.     int wh = 0;
  57.     // get currnet font state
  58.     int current_font = fl_font();
  59.     int current_size = fl_size();
  60.     // change state, measure and set widget size
  61.     fl_font(w->labelfont(), w->labelsize());
  62.     fl_measure(w->label(), ww, wh);
  63.     w->size(ww, wh);
  64.     // return to original state
  65.     fl_font(current_font, current_size);
  66. }
  67.     
  68. // Static variable initilization
  69. CParagraph*  CParagraph::m_CurrentSelection = NULL;
  70. /*
  71. CParagraph::CParagraph(const string& buffer, int font_size, Fl_Font font,
  72.                        const CSerialObject* topic)
  73.           : Fl_Box (0, 0, 0, 0),
  74.             m_buffer (buffer)
  75. {
  76.     labelsize(font_size);
  77.     labelfont(font);
  78.     labeltype(FL_NORMAL_LABEL);
  79.     labelcolor(FL_FOREGROUND_COLOR);
  80.     align(FL_ALIGN_INSIDE | FL_ALIGN_LEFT);
  81.     label(m_buffer.c_str());
  82.     box(FL_FLAT_BOX);
  83.     color(FL_BACKGROUND2_COLOR);
  84.     SetTextMeasure(this);
  85.     m_topic = topic;
  86.     m_selected = false;
  87. }
  88. */
  89. CParagraph::CParagraph (CConstRef<IFlatItem> item, CRef<IFormatter> formatter)
  90.     : Fl_Box (0, 0, 0, 0), m_section(0), m_selected(false), m_topic(0), 
  91.       m_Item(item), m_Formatter(formatter)
  92. {
  93.     box(FL_FLAT_BOX);
  94.     labelsize(12);
  95.     labelfont(FL_COURIER);
  96.     labeltype(FL_NORMAL_LABEL);
  97.     labelcolor(FL_FOREGROUND_COLOR);
  98.     color(FL_BACKGROUND2_COLOR);
  99.     align(FL_ALIGN_INSIDE | FL_ALIGN_LEFT);
  100.     m_Item->Format(*m_Formatter, *this);
  101.     m_topic = item->GetObject();
  102. }
  103. CParagraph::~CParagraph()
  104. {
  105.     if (m_selected) {
  106.         Deselect();
  107.     }
  108. }
  109. void CParagraph::AddParagraph
  110. (const list<string>& text,
  111.  const CSerialObject* obj)
  112. {
  113.     m_buffer = NStr::Join(text, "n");
  114.     if ( m_buffer.empty() ) {
  115.         hide();
  116.         return;
  117.     }
  118.     label(m_buffer.c_str());
  119.     SetTextMeasure(this);
  120.     redraw();
  121. }
  122. int CParagraph::handle(int event) 
  123. {
  124.     switch (event) {
  125.     case FL_PUSH:
  126.         if ( !m_selected ) {
  127.             if (m_CurrentSelection) {
  128.                 m_CurrentSelection->Deselect();
  129.             }
  130.             m_EntryForm.reset();
  131.             Select();
  132.         }
  133.         if (Fl::event_clicks()) {
  134.             DoubleClick();
  135.         }
  136.         return 1;
  137.     default:
  138.         return Fl_Box::handle(event);
  139.     }
  140. }
  141. void CParagraph::EditCancled()
  142. {
  143.     m_EntryForm.reset();
  144.     Deselect();
  145. }
  146. void CParagraph::EditSaved()
  147. {
  148.     m_EntryForm.reset();
  149.     Deselect();
  150. }
  151. void CParagraph::Select() 
  152. {
  153.     m_selected = true;
  154.     color(FL_SELECTION_COLOR);
  155.     labelcolor(FL_WHITE);
  156.     
  157.     m_CurrentSelection = this;   
  158.     redraw();             
  159. }
  160. void CParagraph::DoubleClick()
  161. {
  162.     if ( m_topic == 0 ) {
  163.         return;
  164.     }
  165.     // create the CObject edit gui and store a pointer to it.
  166.     if (m_buffer.find("LOCUS") == 0) {
  167.         m_EntryForm.reset(new CLocusEntryForm(this));
  168.     } else if (m_buffer.find("DEFINITION") == 0) {
  169.         m_EntryForm.reset(new CDefinEntryForm(this));
  170.     } else if (m_buffer.find("REFERENCE") == 0) {
  171.         m_EntryForm.reset(new CReferenceEntryForm(this));
  172.     } else { 
  173.         m_EntryForm.reset(new CGenbankEntryForm(this));
  174.     }
  175.     m_EntryForm->Show();
  176. }
  177. void CParagraph::Deselect() 
  178. {
  179.     color(FL_BACKGROUND2_COLOR);
  180.     labelcolor(FL_FOREGROUND_COLOR);
  181.     m_CurrentSelection = 0;
  182.     m_selected = false;
  183.     m_EntryForm.reset();
  184.     redraw();
  185. }
  186. END_NCBI_SCOPE