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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: dock.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:08:19  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: dock.cpp,v 1000.1 2004/06/01 21:08:19 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:  Mike DiCuccio
  35.  *
  36.  * File Description:
  37.  *
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <gui/widgets/dock/dock.hpp>
  41. #include <math.h>
  42. #include "dock_frame.hpp"
  43. BEGIN_NCBI_SCOPE
  44. CDockWidget::CDockWidget(int x, int y, int w, int h, const char* label)
  45.     : Fl_Tile(x, y, w, h, label)
  46. {
  47. }
  48. static inline void s_Scale(size_t old_min, size_t old_max,
  49.                            size_t new_min, size_t new_max,
  50.                            size_t& val)
  51. {
  52.     _ASSERT(val >= old_min  &&  val <= old_max);
  53.     float fact = float (val - old_min) / float (old_max - old_min);
  54.     val = size_t(new_min + (new_max - new_min) * fact);
  55. }
  56. void CDockWidget::Dock(Fl_Widget* widget, EDockPosition pos, bool owner)
  57. {
  58.     if ( !widget ) {
  59.         return;
  60.     }
  61.     size_t child_x = x();
  62.     size_t child_y = y();
  63.     size_t child_w = w();
  64.     size_t child_h = h();
  65.     widget->hide();
  66.     Fl_Widget* frame = x_WidgetToDockFrame(widget, owner);
  67.     _TRACE("docking widget: " << widget);
  68.     if (children() != 0) {
  69.         switch (pos) {
  70.         case eDock_Top:
  71.             {{
  72.                 child_h /= (children() + 1);
  73.                 // iterate our children and resize as needed
  74.                 for (size_t i = 0;  i < children();  ++i) {
  75.                     Fl_Widget* ch = child(i);
  76.                     size_t this_y1 = ch->y();
  77.                     size_t this_y2 = ch->y() + ch->h();
  78.                     s_Scale(y(), y() + h(), y() + child_h, y() + h(),
  79.                             this_y1);
  80.                     s_Scale(y(), y() + h(), y() + child_h, y() + h(),
  81.                             this_y2);
  82.                     ch->resize(ch->x(), this_y1, ch->w(), this_y2 - this_y1);
  83.                 }
  84.             }}
  85.             break;
  86.         case eDock_Bottom:
  87.             {{
  88.                 child_h /= (children() + 1);
  89.                 child_y += h() - child_h;
  90.                 // iterate our children and resize as needed
  91.                 for (size_t i = 0;  i < children();  ++i) {
  92.                     Fl_Widget* ch = child(i);
  93.                     size_t this_y1 = ch->y();
  94.                     size_t this_y2 = ch->y() + ch->h();
  95.                     s_Scale(y(), y() + h(), y(), child_y, this_y1);
  96.                     s_Scale(y(), y() + h(), y(), child_y, this_y2);
  97.                     ch->resize(ch->x(), this_y1, ch->w(), this_y2 - this_y1);
  98.                 }
  99.             }}
  100.             break;
  101.         case eDock_Right:
  102.             {{
  103.                 child_w /= (children() + 1);
  104.                 child_x += w() - child_w;
  105.                 // iterate our children and resize as needed
  106.                 for (size_t i = 0;  i < children();  ++i) {
  107.                     Fl_Widget* ch = child(i);
  108.                     size_t this_x1 = ch->x();
  109.                     size_t this_x2 = ch->x() + ch->w();
  110.                     s_Scale(x(), x() + w(), x(), child_x, this_x1);
  111.                     s_Scale(x(), x() + w(), x(), child_x, this_x2);
  112.                     ch->resize(this_x1, ch->y(), this_x2 - this_x1, ch->h());
  113.                 }
  114.             }}
  115.             break;
  116.         case eDock_Left:
  117.             {{
  118.                 child_w /= (children() + 1);
  119.                 // iterate our children and resize as needed
  120.                 for (size_t i = 0;  i < children();  ++i) {
  121.                     Fl_Widget* ch = child(i);
  122.                     size_t this_x1 = ch->x();
  123.                     size_t this_x2 = ch->x() + ch->w();
  124.                     s_Scale(x(), x() + w(), x() + child_w, x() + w(), this_x1);
  125.                     s_Scale(x(), x() + w(), x() + child_w, x() + w(), this_x2);
  126.                     ch->resize(this_x1, ch->y(), this_x2 - this_x1, ch->h());
  127.                 }
  128.             }}
  129.             break;
  130.         default:
  131.             _TRACE("unhandled dock position");
  132.             break;
  133.         }
  134.     }
  135.     // now, move the current widget and add
  136.     frame->resize(child_x, child_y, child_w, child_h);
  137.     add(frame);
  138.     resizable(NULL);
  139.     frame->show();
  140.     widget->show();
  141.     redraw();
  142.     //...and add our dock info to our list
  143.     SDockInfo info;
  144.     info.widget = widget;
  145.     info.frame  = frame;
  146.     info.pos    = pos;
  147.     m_DockInfo.push_back(info);
  148. }
  149. void CDockWidget::Undock(Fl_Widget* widget)
  150. {
  151.     _TRACE("un-docking widget: " << widget);
  152.     NON_CONST_ITERATE (TDockInfo, iter, m_DockInfo) {
  153.         if (iter->widget == widget) {
  154.             m_DockInfo.erase(iter);
  155.             break;
  156.         }
  157.     }
  158.     // remove all of our child widgets and re-add them
  159.     while (children()) {
  160.         remove(child(0));
  161.     }
  162.     TDockInfo temp;
  163.     temp.swap(m_DockInfo);
  164.     ITERATE (TDockInfo, iter, temp) {
  165.         Dock(iter->widget, iter->pos);
  166.     }
  167. }
  168. Fl_Widget* CDockWidget::x_WidgetToDockFrame(Fl_Widget* widget, bool owner)
  169. {
  170.     auto_ptr<CDockFrame> frame
  171.         (new CDockFrame(this,
  172.                         widget->x(), widget->y(), widget->w(), widget->h()));
  173.     frame->Attach(widget, owner);
  174.     return frame.release();
  175. }
  176. END_NCBI_SCOPE
  177. /*
  178.  * ===========================================================================
  179.  * $Log: dock.cpp,v $
  180.  * Revision 1000.1  2004/06/01 21:08:19  gouriano
  181.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  182.  *
  183.  * Revision 1.2  2004/05/21 22:27:53  gorelenk
  184.  * Added PCH ncbi_pch.hpp
  185.  *
  186.  * Revision 1.1  2004/01/08 16:45:30  dicuccio
  187.  * Initial revision
  188.  *
  189.  * ===========================================================================
  190.  */