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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: pane_content_conf.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:53:23  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_WIDGETS_SEQ_GRAPHIC___PANECONTENT_CONF__HPP
  10. #define GUI_WIDGETS_SEQ_GRAPHIC___PANECONTENT_CONF__HPP
  11. /*  $Id: pane_content_conf.hpp,v 1000.1 2004/06/01 19:53:23 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:  Robert Smith
  37.  *
  38.  * File Description:
  39.  *   Configuration file for Sequence Graphical Widget
  40.  *
  41.  */
  42. #include <gui/config/feat_show.hpp>
  43. #include <gui/config/layout_chooser.hpp>
  44. BEGIN_NCBI_SCOPE
  45. /// CLayoutSpec : the specifications of what kind of layout objects to put
  46. /// together and how to do their layout.
  47. class NCBI_GUIWIDGETS_SEQGRAPHIC_EXPORT CLayoutSpec : public CObject
  48. {
  49. public:
  50.     typedef vector<CRef<CLayoutSpec> >  TLayoutSpecs;
  51.     CLayoutSpec(CLayoutObjectChooser& chooser);
  52.     
  53.     string          GetSpecName() const;
  54.     void            SetSpecName(const string& aName);
  55.     
  56.     const CLayoutObjectChooser& GetObjectChooser() const;
  57.     CLayoutObjectChooser&       SetObjectChooser();
  58.     void                        SetObjectChooser(CLayoutObjectChooser& );
  59.     
  60.     bool GetLinkFeatures() const;
  61.     void SetLinkFeatures(bool);
  62.     
  63.     bool GetShowProtProd() const;
  64.     void SetShowProtProd(bool);
  65.     
  66.     bool GetIfNotUsed() const;
  67.     void SetIfNotUsed(bool);
  68. private:
  69.     string                      m_SpecName;
  70.     CRef<CLayoutObjectChooser>  m_Chooser;
  71.     bool                        m_LinkFeatures;
  72.     bool                        m_ShowProtProd;
  73.     bool                        m_IfNotUsed;
  74. };
  75. class NCBI_GUIWIDGETS_SEQGRAPHIC_EXPORT CPaneContentConf : public CFeatConfigShow
  76. {
  77. public:
  78.     CPaneContentConf(objects::CPluginConfigCache* config_cache,
  79.                      const string& desc = "Content");
  80.     
  81.     virtual bool LoadCurrentSettings(ELoadValueSource src);
  82.     virtual bool SaveCurrentSettings(void);
  83.     const CLayoutSpec::TLayoutSpecs& GetLayoutSpecs() const;
  84.     CLayoutSpec::TLayoutSpecs&       SetLayoutSpecs();
  85.     void                             SetLayoutSpecs(CLayoutSpec::TLayoutSpecs& );
  86.         
  87.     // individual histogram settings
  88.     bool GetHistogram(int type, int subtype) const;
  89.     void SetHistogram(int type, int subtype, bool hist);
  90.     void SetHistogramInherited(int type, int subtype, bool inherited); 
  91.     // all histogram settings.   
  92.     const CFeatConfigValues<bool>& GetHistograms() const;
  93.     void        SetHistograms(CFeatConfigValues<bool>& h);
  94.     void        ClearHistograms();
  95.     bool GetShowAlignments(void) const;
  96.     void SetShowAlignments(bool b);
  97.     bool GetShowPWAlignLabels() const;
  98.     void SetShowPWAlignLabels(bool);
  99.     bool GetShowSegmentMap() const;
  100.     void SetShowSegmentMap(bool);
  101.     bool GetShowGraphs(void) const;
  102.     void SetShowGraphs(bool b);
  103.     int  GetRulerSpacer() const;
  104.     void SetRulerSpacer(int);
  105. protected:
  106.     CFeatConfigValues<bool>         m_HistFeat;   
  107.     CLayoutSpec::TLayoutSpecs       m_LayoutSpecs;
  108.     bool m_ShowAlignments;
  109.     bool m_ShowGraphs;
  110.     bool m_ShowPWAlignLabels;
  111.     bool m_ShowSegmentMap;
  112.     int  m_RulerSpacer;
  113. };
  114. inline
  115. bool CPaneContentConf::GetShowAlignments(void) const
  116. {
  117.     return m_ShowAlignments;
  118. }
  119. inline
  120. void CPaneContentConf::SetShowAlignments(bool b)
  121. {
  122.     m_ShowAlignments = b;
  123. }
  124. inline
  125. bool CPaneContentConf::GetShowGraphs(void) const
  126. {
  127.     return m_ShowGraphs;
  128. }
  129. inline
  130. void CPaneContentConf::SetShowGraphs(bool b)
  131. {
  132.     m_ShowGraphs = b;
  133. }
  134. inline
  135. bool CPaneContentConf::GetShowPWAlignLabels(void) const
  136. {
  137.     return m_ShowPWAlignLabels;
  138. }
  139. inline
  140. void CPaneContentConf::SetShowPWAlignLabels(bool b)
  141. {
  142.     m_ShowPWAlignLabels = b;
  143. }
  144. inline
  145. bool CPaneContentConf::GetShowSegmentMap(void) const
  146. {
  147.     return m_ShowSegmentMap;
  148. }
  149. inline
  150. void CPaneContentConf::SetShowSegmentMap(bool b)
  151. {
  152.     m_ShowSegmentMap = b;
  153. }
  154. inline
  155. int CPaneContentConf::GetRulerSpacer(void) const
  156. {
  157.     return m_RulerSpacer;
  158. }
  159. inline
  160. void CPaneContentConf::SetRulerSpacer(int spacer)
  161. {
  162.     m_RulerSpacer = spacer;
  163. }
  164. class CCPaneContentFactoryDefaults : public CFeatShowFactoryDefaults
  165. {
  166. public:
  167.     virtual string   Get(const string& key) const;
  168. };
  169. END_NCBI_SCOPE
  170. /*
  171.  * ===========================================================================
  172.  * $Log: pane_content_conf.hpp,v $
  173.  * Revision 1000.1  2004/06/01 19:53:23  gouriano
  174.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.8
  175.  *
  176.  * Revision 1.8  2004/05/12 16:54:13  lebedev
  177.  * Added  option to specify a space between the ruler and the rest of the dispay
  178.  *
  179.  * Revision 1.7  2004/05/10 15:57:55  lebedev
  180.  * Configuration option to show/hide segment maps added.
  181.  *
  182.  * Revision 1.6  2004/05/07 11:12:14  lebedev
  183.  * Configuration option to show/hide labels for pairwise alignments and mate pairs added.
  184.  *
  185.  * Revision 1.5  2004/04/06 13:31:16  dicuccio
  186.  * Formatting changes.  Added default flags for disabling graphs, alignments
  187.  *
  188.  * Revision 1.4  2004/02/02 18:45:39  rsmith
  189.  * add description to CSettingsSet, constructor and descendants.
  190.  *
  191.  * Revision 1.3  2004/01/20 13:58:06  rsmith
  192.  * Inherit feature 'show' settings.
  193.  *
  194.  * Revision 1.2  2003/12/30 14:55:00  dicuccio
  195.  * Standardized export specifiers
  196.  *
  197.  * Revision 1.1  2003/12/29 14:56:28  rsmith
  198.  * initial checkin
  199.  *
  200.  *
  201.  * ===========================================================================
  202.  */
  203. #endif  /* GUI_WIDGETS_SEQ_GRAPHIC___PANECONTENT_CONF__HPP */