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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: text.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 21:09:21  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: text.cpp,v 1000.1 2004/06/01 21:09:21 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/fl/text.hpp>
  41. #include <gui/utils/clipboard.hpp>
  42. BEGIN_NCBI_SCOPE
  43. CTextDisplay::CTextDisplay(int x, int y, int w, int h, const char* label)
  44.     : Fl_Text_Display(x, y, w, h, label)
  45. {
  46.     x_GetEventHandler().StandardConfig();
  47. }
  48. int CTextDisplay::handle(int event)
  49. {
  50.     x_GetEventHandler().OnFLTKEvent(event);
  51.     switch (x_GetEventHandler().GetGUIState()) {
  52.     case CGUIEvent::ePasteState:
  53.         if (x_OnPaste()) {
  54.             return 1;
  55.         }
  56.         break;
  57.     case CGUIEvent::eSelectAllState:
  58.         if (x_OnSelectAll()) {
  59.             return 1;
  60.         }
  61.         break;
  62.     case CGUIEvent::eCutState:
  63.         if (x_OnCut()) {
  64.             return 1;
  65.         }
  66.         break;
  67.     case CGUIEvent::eCopyState:
  68.         if (x_OnCopy()) {
  69.             return 1;
  70.         }
  71.         break;
  72.     default:
  73.         break;
  74.     }
  75.     return Fl_Text_Display::handle(event);
  76. }
  77. int CTextDisplay::x_OnSelectAll()
  78. {
  79.     if (buffer()) {
  80.         buffer()->select(0, buffer()->length());
  81.         return 1;
  82.     }
  83.     return 0;
  84. }
  85. int CTextDisplay::x_OnCut()
  86. {
  87.     if (buffer()) {
  88.         string str(buffer()->text(), buffer()->length());
  89.         CClipboard::Clear();
  90.         CClipboard::Add(str);
  91.         CClipboard::Copy();
  92.         return 1;
  93.     }
  94.     return 0;
  95. }
  96. int CTextDisplay::x_OnCopy()
  97. {
  98.     if (buffer()) {
  99.         string str(buffer()->text(), buffer()->length());
  100.         CClipboard::Clear();
  101.         CClipboard::Add(str);
  102.         CClipboard::Copy();
  103.         return 1;
  104.     }
  105.     return 0;
  106. }
  107. int CTextDisplay::x_OnPaste()
  108. {
  109.     return 0;
  110. }
  111. CGUIEvent& CTextDisplay::x_GetEventHandler()
  112. {
  113.     return m_EventHandler;
  114. }
  115. END_NCBI_SCOPE
  116. /*
  117.  * ===========================================================================
  118.  * $Log: text.cpp,v $
  119.  * Revision 1000.1  2004/06/01 21:09:21  gouriano
  120.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.4
  121.  *
  122.  * Revision 1.4  2004/05/21 22:27:53  gorelenk
  123.  * Added PCH ncbi_pch.hpp
  124.  *
  125.  * Revision 1.3  2004/05/20 12:42:28  dicuccio
  126.  * Use CClipboard instead of raw FLTK copy
  127.  *
  128.  * Revision 1.2  2004/05/04 19:05:57  johnson
  129.  * implemented copy & select all
  130.  *
  131.  * Revision 1.1  2004/01/30 17:19:15  dicuccio
  132.  * Initial revision
  133.  *
  134.  * ===========================================================================
  135.  */