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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: scroll_widget.hpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 19:48:30  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_GRAPH___SCROLL_WIDGET__HPP
  10. #define GUI_GRAPH___SCROLL_WIDGET__HPP
  11. /*  $Id: scroll_widget.hpp,v 1000.1 2004/06/01 19:48:30 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:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  *
  40.  */
  41. #include <corelib/ncbistd.hpp>
  42. #include <gui/gui.hpp>
  43. #include <FL/Fl_Group.H>
  44. #include <FL/Fl_Scrollbar.H>
  45. /** @addtogroup GUI_GRAPH
  46.  *
  47.  * @{
  48.  */
  49. BEGIN_NCBI_SCOPE
  50. ////////////////////////////////////////////////////////////////////////////////
  51. /// class IScrollContainer
  52. class IScrollContainer
  53. {
  54. public:
  55.     virtual ~IScrollContainer() {}
  56.     virtual void SetValuesX(int Pos, int Page, int Min, int Max) = 0;
  57.     virtual void SetValuesY(int Pos, int Page, int Min, int Max) = 0;
  58.     
  59.     /*virtual void SetPosX(int pos) = 0;
  60.     virtual void SetPageSizeX(int Size) = 0;
  61.     virtual void SetScrollRangeX(int Start, int End) = 0;
  62.     
  63.     virtual void SetPosY(int pos) = 0;
  64.     virtual void SetPageSizeY(int S) = 0;
  65.     virtual void SetScrollRangeY(int Start, int End) = 0;*/
  66. };
  67. ////////////////////////////////////////////////////////////////////////////////
  68. /// class IScrollableWidget
  69. class IScrollableWidget
  70. {
  71. public:
  72.     virtual ~IScrollableWidget() {}
  73.     virtual void SetContainer(IScrollContainer* pCont) = 0;
  74.     virtual void OnScrollX(Fl_Scrollbar* pBar) = 0;
  75.     virtual void OnScrollY(Fl_Scrollbar* pBar) = 0;
  76. };
  77. ////////////////////////////////////////////////////////////////////////////////
  78. ///
  79. class NCBI_GUIGRAPH_EXPORT CScrollWidget : public Fl_Group, public IScrollContainer
  80. {
  81. public:
  82.     CScrollWidget(int x, int y, int w, int h);
  83.     virtual ~CScrollWidget();
  84.     void    SetScrollableWidget(IScrollableWidget* pScW);
  85.     // IScrollContainer implementaion
  86.     virtual void SetValuesX(int Pos, int Page, int Min, int Max);
  87.     virtual void SetValuesY(int Pos, int Page, int Min, int Max);
  88.     
  89.     /*virtual void SetPosX(int pos);
  90.     virtual void SetPageSizeX(int pos);
  91.     virtual void SetScrollRangeX(int Start, int End);
  92.     
  93.     virtual void SetPosY(int pos);
  94.     virtual void SetPageSizeY(int pos);
  95.     virtual void SetScrollRangeY(int Start, int End);*/
  96. protected:
  97.     // scrollbar callbacks
  98.     static void x_OnScrollX(Fl_Widget*, void* pData);
  99.     static void x_OnScrollY(Fl_Widget*, void* pData);
  100. protected:    
  101.     Fl_Scrollbar *m_pScrollX;
  102.     Fl_Scrollbar *m_pScrollY;
  103.     
  104.     IScrollableWidget *m_pScWidget;
  105. };
  106. END_NCBI_SCOPE
  107. /*
  108.  * ===========================================================================
  109.  * $Log: scroll_widget.hpp,v $
  110.  * Revision 1000.1  2004/06/01 19:48:30  gouriano
  111.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  112.  *
  113.  * Revision 1.7  2004/05/11 18:54:43  dicuccio
  114.  * Added doxygen modules info
  115.  *
  116.  * Revision 1.6  2004/05/03 12:43:07  dicuccio
  117.  * Added #include for gui/gui.hpp
  118.  *
  119.  * Revision 1.5  2003/09/23 19:18:35  yazhuk
  120.  * Restored deleted file
  121.  *
  122.  * Revision 1.3  2003/09/04 13:58:42  dicuccio
  123.  * Added export specifiers.  Inlined destructors of interface classes
  124.  *
  125.  * Revision 1.2  2003/08/11 16:08:26  yazhuk
  126.  * Compilation fixes for GCC.
  127.  *
  128.  * Revision 1.1  2003/08/08 16:01:35  yazhuk
  129.  * Initial revision.
  130.  *
  131.  * ===========================================================================
  132.  */
  133. #endif