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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: filter.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2003/10/31 22:03:32  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE_PLUGINS_VIEW_VALIDATOR___FILTER__HPP
  10. #define GUI_CORE_PLUGINS_VIEW_VALIDATOR___FILTER__HPP
  11. /*  $Id: filter.hpp,v 1000.0 2003/10/31 22:03:32 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: Mati Shomrat  
  37.  *
  38.  * File Description:
  39.  *    
  40.  *    
  41.  */
  42. #include <corelib/ncbistd.hpp>
  43. #include <FL/Fl_Group.H>
  44. #include <set>
  45. #include "valerror_display.hpp"
  46. #include "erritem_view.hpp"
  47. class Fl_Button;
  48. class Fl_Input;
  49. class Fl_Choice;
  50. class Fl_Check_Button;
  51. BEGIN_NCBI_SCOPE
  52. class CValidatorFilter : public Fl_Group
  53. {
  54. public:
  55.     CValidatorFilter(int x, int y,
  56.                      EDiagSev min = eDiag_Info,
  57.                      EDiagSev max = eDiag_Critical,
  58.                      bool verbose = true);
  59.     ~CValidatorFilter(void);
  60.     void Reset(void);
  61.     string      GetErrCode(void) const;
  62.     string      GetSearchString(void) const;
  63.     EDiagSev    GetMinSev(void) const;
  64.     EDiagSev    GetMaxSev(void) const;
  65.     CValidErrItemView::EMessage GetMessage(void) const;
  66.     void SetErrCodes(const set<string>& errcodes);
  67.     void SetDisplay(CValidErrorDisplay* display) { m_Display = display; };
  68. private:
  69.     void AddSeverityFilter(EDiagSev min, EDiagSev max);
  70.     void AddErrCodeFilter(void);
  71.     void AddSearchFilter(void);
  72.     void AddVerboseFilter(bool verbose);
  73.     void InactivateSev(void);
  74.     // callbacks
  75.     static void cb_OnSevChange(Fl_Choice*, CValidatorFilter*);
  76.     void x_OnSevChange(void);
  77.     static void cb_OnErrCodeChange(Fl_Choice*, CValidatorFilter*);
  78.     void x_OnOnErrCodeChange(void);
  79.     static void cb_OnSearchPressed(Fl_Button*, CValidatorFilter*);
  80.     void x_OnSearchPressed(void);
  81.     static void cb_OnSearchInput(Fl_Input*, CValidatorFilter*);
  82.     void x_OnSearchInput(void);
  83.     static void cb_OnVerboseChange(Fl_Check_Button*, CValidatorFilter*);
  84.     void x_OnVerboseChange(Fl_Check_Button*);
  85.     CValidErrorDisplay* m_Display;
  86.     Fl_Choice*          m_ErrCodesChoice;
  87.     Fl_Button*          m_SearchButton;
  88.     Fl_Input*           m_SearchInput;
  89.     Fl_Choice*          m_MinSevChoice;
  90.     Fl_Choice*          m_MaxSevChoice;
  91.     Fl_Check_Button*    m_VerboseButton;
  92. };
  93. END_NCBI_SCOPE
  94. #endif   // GUI_CORE_PLUGINS_VIEW_VALIDATOR___FILTER__HPP
  95. /*
  96.  * ===========================================================================
  97.  *
  98.  * $Log: filter.hpp,v $
  99.  * Revision 1000.0  2003/10/31 22:03:32  gouriano
  100.  * PRODUCTION: IMPORTED [ORIGINAL] Dev-tree R1.2
  101.  *
  102.  * Revision 1.2  2003/04/22 16:25:27  shomrat
  103.  * Fl -> FL
  104.  *
  105.  * Revision 1.1  2003/04/18 19:56:52  shomrat
  106.  * Initial revision
  107.  *
  108.  *
  109.  * ===========================================================================
  110.  */