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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: scroll_widget.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:49:39  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: scroll_widget.cpp,v 1000.1 2004/06/01 20:49:39 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:  Andrey Yazhuk
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/graph/scroll_widget.hpp>
  41. #include <gui/graph/igraph_utils.hpp>
  42. BEGIN_NCBI_SCOPE
  43. ///////////////////////////////////////////////////////////////////////////////
  44. /// IScrollableWidget
  45. CScrollWidget::CScrollWidget(int x, int y, int w, int h)
  46. : Fl_Group(x, y, w, h),
  47.   m_pScrollX(NULL),
  48.   m_pScrollY(NULL),
  49.   m_pScWidget(NULL)
  50. {
  51. }
  52. CScrollWidget::~CScrollWidget()
  53. {
  54.     m_pScWidget = NULL;
  55.     destroy_null(m_pScrollX);
  56.     destroy_null(m_pScrollY);
  57. }
  58. void    CScrollWidget::SetScrollableWidget(IScrollableWidget* pScW)
  59. {
  60.     m_pScWidget = pScW;
  61.     m_pScWidget->SetContainer(static_cast<IScrollContainer*>(this));
  62.     Fl_Widget* pW = dynamic_cast<Fl_Widget*>(pScW);
  63.     pW->box(FL_NO_BOX);
  64.     pW->color(49);
  65.     pW->selection_color(49);
  66.     pW->labeltype(FL_NORMAL_LABEL);
  67.     pW->labelfont(0);
  68.     pW->labelsize(14);
  69.     pW->labelcolor(56);
  70.     pW->align(FL_ALIGN_CENTER);
  71.     pW->when(FL_WHEN_RELEASE);  
  72.     
  73.     add_resizable(*pW);
  74.     const int kScrollBarSize = 15;
  75.     
  76.     m_pScrollX = new Fl_Scrollbar
  77.             (x(), y() + (h() - kScrollBarSize), 
  78.             w() - kScrollBarSize, kScrollBarSize);
  79.     m_pScrollX->type(FL_HORIZONTAL);
  80.     m_pScrollX->labeltype(FL_NO_LABEL);
  81.     m_pScrollX->callback(CScrollWidget::x_OnScrollX, this );
  82.    
  83.     m_pScrollY = new Fl_Scrollbar
  84.         (x() + (w() - kScrollBarSize), y(), kScrollBarSize, 
  85.                   h() - kScrollBarSize);
  86.     m_pScrollY->type(FL_VERTICAL);
  87.     m_pScrollY->labeltype(FL_NO_LABEL);
  88.     m_pScrollY->callback(CScrollWidget::x_OnScrollY, this );
  89.  
  90.     end(); 
  91. }
  92. void CScrollWidget::SetValuesX(int Pos, int Page, int Min, int Max)
  93. {
  94.     if (m_pScrollX)
  95.         m_pScrollX->value(Pos, Page, Min, Max);
  96. }
  97. void CScrollWidget::SetValuesY(int Pos, int Page, int Min, int Max)
  98. {
  99.     if (m_pScrollY)
  100.         m_pScrollY->value(Pos, Page, Min, Max);
  101. }
  102. /*
  103. void CScrollWidget::SetPosX(int Pos)
  104. {
  105.     if (m_pScrollX)
  106.         m_pScrollX->value(Pos, Size, minimum(), maximum());
  107. }
  108. void CScrollWidget::SetPageSizeX(int Size)
  109. {
  110.     if (m_pScrollX) {
  111.         int Pos = value();
  112.         m_pScrollX->value(Pos, Size, minimum(), maximum());
  113.     }
  114. }
  115. void CScrollWidget::SetScrollRangeX(int Min, int Max)
  116. {
  117.     if (m_pScrollX)
  118.         m_pScrollX->range(Min, Max);
  119. }
  120. void CScrollWidget::SetPosY(int Pos)
  121. {
  122. }
  123. void CScrollWidget::SetPageSizeY(int Size)
  124. {
  125. }
  126. void CScrollWidget::SetScrollRangeY(int Start, int End)
  127. {
  128. }
  129. */
  130. void CScrollWidget::x_OnScrollX(Fl_Widget* pW, void* pData)
  131. {
  132.     CScrollWidget* pCont = reinterpret_cast<CScrollWidget*>(pData);
  133.     if (pCont)        
  134.        pCont->m_pScWidget->OnScrollX(pCont->m_pScrollX);
  135. }
  136. void CScrollWidget::x_OnScrollY(Fl_Widget* pW, void* pData)
  137. {
  138.     CScrollWidget* pCont = reinterpret_cast<CScrollWidget*>(pData);
  139.     if (pCont)        
  140.        pCont->m_pScWidget->OnScrollY(pCont->m_pScrollY);
  141. }
  142. END_NCBI_SCOPE
  143. /*
  144.  * ===========================================================================
  145.  * $Log: scroll_widget.cpp,v $
  146.  * Revision 1000.1  2004/06/01 20:49:39  gouriano
  147.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  148.  *
  149.  * Revision 1.5  2004/05/21 22:27:42  gorelenk
  150.  * Added PCH ncbi_pch.hpp
  151.  *
  152.  * Revision 1.4  2003/09/04 14:03:03  dicuccio
  153.  * Inlined destructors of interface classes
  154.  *
  155.  * Revision 1.3  2003/08/11 16:10:57  yazhuk
  156.  * Compilation fixes for GCC
  157.  *
  158.  * Revision 1.2  2003/08/08 15:59:36  yazhuk
  159.  * Comments added
  160.  *
  161.  * ===========================================================================
  162.  */
  163.