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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: fltk_utils.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 21:04:57  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.24
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: fltk_utils.cpp,v 1000.3 2004/06/01 21:04:57 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.  *    Generic FLTK utilities.
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbiapp.hpp>
  41. #include <gui/utils/fltk_utils.hpp>
  42. #include <FL/Fl.H>
  43. #include <FL/fl_draw.H>
  44. #include <FL/Fl_Window.H>
  45. BEGIN_NCBI_SCOPE
  46. //
  47. // our event cache
  48. //
  49. CFltkEvent::TEventMap CFltkEvent::sm_EventMap;
  50. Fl_Cursor CFltkUtils::m_CurrentCursor = FL_CURSOR_DEFAULT;
  51. void CFltkUtils::Lock()
  52. {
  53. #ifdef NCBI_THREADS
  54.     Fl::lock();
  55. #endif
  56. }
  57. void CFltkUtils::Unlock(void* ptr)
  58. {
  59. #ifdef NCBI_THREADS
  60.     Fl::unlock();
  61.     Fl::awake(ptr);
  62. #endif
  63. }
  64. void CFltkUtils::SetCursor(Fl_Cursor cursor)
  65. {
  66.     CFltkGuard LOCK;
  67.     m_CurrentCursor = cursor;
  68.     fl_cursor(cursor);
  69. }
  70. // 
  71. // Escape fltk special characters: , @, &
  72. //
  73. string CFltkUtils::EscapeSpecialChars(const string& src)
  74. {
  75.     string dest = src;
  76.     dest = NStr::Replace(dest, "/", "\/");
  77.     dest = NStr::Replace(dest, "@", "\@");
  78.     dest = NStr::Replace(dest, "&", "\&");
  79.     return dest;
  80. }
  81. Fl_Cursor CFltkUtils::GetCursor()
  82. {
  83.     CFltkGuard LOCK;
  84.     return m_CurrentCursor;
  85. }
  86. CFltkCursorGuard::CFltkCursorGuard(Fl_Cursor cursor)
  87.     : m_OrigCursor(FL_CURSOR_DEFAULT)
  88.     , m_CursorWindow(NULL)
  89. {
  90.     CFltkGuard LOCK;
  91.     m_OrigCursor = CFltkUtils::GetCursor();
  92.     Fl_Widget* focus = Fl::focus();
  93.     if (focus) {
  94.         m_CursorWindow = focus->window();
  95.     }
  96.     CFltkUtils::SetCursor(cursor);
  97. }
  98. CFltkCursorGuard::~CFltkCursorGuard()
  99. {
  100.     CFltkGuard LOCK;
  101.     Fl_Widget* focus = Fl::focus();
  102.     Fl::focus(m_CursorWindow);
  103.     CFltkUtils::SetCursor(m_OrigCursor);
  104.     Fl::focus(focus);
  105. }
  106. //
  107. //
  108. // box types for FLTK
  109. //
  110. //
  111. static void s_NcbiBox_Right(int x, int y, int w, int h, Fl_Color c)
  112. {
  113.     fl_color(FL_GRAY_RAMP + 15);
  114.     fl_line_style(FL_SOLID, 2);
  115.     fl_line(x + w, y, x + w, y + h);
  116.     fl_line_style(FL_SOLID, 1);
  117. }
  118. void CFltkUtils::Init(int argc, char** argv)
  119. {
  120.     CFltkUtils::Lock();
  121.     //
  122.     // basic FLTK setup stuff
  123.     //
  124.     // this gets us the fast path for OpenGL rendering
  125.     CNcbiApplication* app = CNcbiApplication::Instance();
  126.     if (app) {
  127.         app->SetEnvironment("GL_SWAP_TYPE", "NODAMAGE");
  128.     }
  129.     // set our default visual
  130.     Fl::visual(FL_DOUBLE | FL_RGB8);
  131.     // set our default interaction modes
  132.     // this is operating-system dependent
  133.     // NB: this will go away
  134.     CFltkEvent::SetOSDefaults();
  135.     // all default box types
  136.     Fl::set_boxtype(static_cast<Fl_Boxtype>(static_cast<int>(eBox_RightEdge)),
  137.                     s_NcbiBox_Right, 1, 1, 2, 2);
  138.     // FLTK argument processing
  139.     Fl::args(argc, argv);
  140. };
  141. END_NCBI_SCOPE
  142. /*
  143.  * ===========================================================================
  144.  * $Log: fltk_utils.cpp,v $
  145.  * Revision 1000.3  2004/06/01 21:04:57  gouriano
  146.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.24
  147.  *
  148.  * Revision 1.24  2004/05/25 21:13:01  ucko
  149.  * Explicitly cast through int when converting between enum types.
  150.  *
  151.  * Revision 1.23  2004/05/25 17:14:38  dicuccio
  152.  * Added standard FLTK intialization routine.  Fixed EscapeChars() - replace with
  153.  * correct characters
  154.  *
  155.  * Revision 1.22  2004/05/21 22:27:51  gorelenk
  156.  * Added PCH ncbi_pch.hpp
  157.  *
  158.  * Revision 1.21  2004/05/18 11:24:13  friedman
  159.  * Added method to add escape char to FLTK special chars.
  160.  *
  161.  * Revision 1.20  2004/03/23 13:39:32  dicuccio
  162.  * Added GetCursor().  Fixed hanging wait cursor
  163.  *
  164.  * Revision 1.19  2004/03/17 19:51:24  yazhuk
  165.  * Moved Event classes to gui_event.cpp
  166.  *
  167.  * Revision 1.18  2004/03/02 22:28:08  yazhuk
  168.  * CGUIEvent fix - reset m_GUIsignal on every event
  169.  *
  170.  * Revision 1.17  2004/02/05 16:57:44  lebedev
  171.  * Mac OS specific StandartConfig fixed
  172.  *
  173.  * Revision 1.16  2004/01/30 17:14:40  dicuccio
  174.  * Added standard handlers for cut/copy/paste/undo/redo
  175.  *
  176.  * Revision 1.15  2004/01/09 01:00:32  dicuccio
  177.  * FIxed typo - CGUnIEvent
  178.  *
  179.  * Revision 1.14  2004/01/08 19:37:24  yazhuk
  180.  * Added FL_UNFOCUS handling
  181.  *
  182.  * Revision 1.13  2004/01/06 20:16:34  dicuccio
  183.  * Added CFltkCursorGuard
  184.  *
  185.  * Revision 1.12  2003/12/31 20:19:42  dicuccio
  186.  * Added CFltkUtils::Lock(), CFltkUtils::Unlock()
  187.  *
  188.  * Revision 1.11  2003/12/01 16:31:37  yazhuk
  189.  * Added CGUIEvent class
  190.  *
  191.  * Revision 1.10  2003/06/30 12:55:04  dicuccio
  192.  * Fixed (hopefully) event mapping for MacOS
  193.  *
  194.  * Revision 1.9  2003/06/26 16:01:03  dicuccio
  195.  * Remove double click from an explicitly set flag - it causes confusion on event
  196.  * mapping
  197.  *
  198.  * Revision 1.8  2003/06/16 00:35:19  dicuccio
  199.  * Added CAppPopup
  200.  *
  201.  * Revision 1.7  2003/06/13 12:39:09  dicuccio
  202.  * Code clean-up.  Made some local const arrays static
  203.  *
  204.  * Revision 1.6  2003/03/21 17:02:57  dicuccio
  205.  * Moved fltk_utils --> gui/utils
  206.  *
  207.  * Revision 1.5  2003/03/10 23:06:13  kuznets
  208.  * iterate -> ITERATE
  209.  *
  210.  * Revision 1.4  2003/01/13 13:10:07  dicuccio
  211.  * Namespace clean-up.  Retired namespace gui -> converted all to namespace ncbi.
  212.  * Moved all FLUID-generated code into namespace ncbi.
  213.  *
  214.  * Revision 1.3  2002/12/23 13:48:59  dicuccio
  215.  * Changed all *EventState --> *Event (less verbose)
  216.  *
  217.  * Revision 1.2  2002/11/20 16:27:41  lebedev
  218.  * Mac OS: key mapping changed
  219.  *
  220.  * Revision 1.1  2002/11/19 17:07:23  dicuccio
  221.  * Initial revision.
  222.  *
  223.  * ===========================================================================
  224.  */