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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: accel_table.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 21:28:06  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: accel_table.cpp,v 1000.0 2004/06/01 21:28:06 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. #include <ncbi_pch.hpp>
  39. #include <gui/utils/accel_table.hpp>
  40. #include <FL/Fl.H>
  41. #include <FL/fl_draw.H>
  42. BEGIN_NCBI_SCOPE
  43. CAccelTable::TAccelToCmdMap    CAccelTable::sm_AccelToCmd;
  44. CAccelTable::TCmdToAccelMap    CAccelTable::sm_CmdToAccel;
  45. inline int  NormalizeAccel(int accel)
  46. {
  47.     int key = accel & 0xFFFF;
  48.     key = toupper(key);
  49.     accel &= 0xFFFF0000;
  50.     accel |= key;
  51.     
  52.     return accel;
  53. }
  54. bool     CAccelTable::RegisterAccelerator(int accel, TCmdID cmd)
  55. {
  56.     accel = NormalizeAccel(accel);
  57.     TAccelToCmdMap::const_iterator it = sm_AccelToCmd.find(accel);
  58.     if(it != sm_AccelToCmd.end())   {
  59.         ERR_POST("Accelerator " << GetAccelLabel(accel) << " already registered.");
  60.         return false;
  61.     } else {
  62.         sm_AccelToCmd[accel] = cmd;
  63.         TCmdToAccelMap::const_iterator itC = sm_CmdToAccel.find(cmd);
  64.         if(itC == sm_CmdToAccel.end())  {
  65.             sm_CmdToAccel[cmd] = accel;
  66.         }
  67.         return true;
  68.     }
  69. }
  70. bool     CAccelTable::GetCommandByAccel(int accel, TCmdID& cmd)
  71. {
  72.     accel = NormalizeAccel(accel);
  73.     TAccelToCmdMap::const_iterator it = sm_AccelToCmd.find(accel);
  74.     if(it != sm_AccelToCmd.end())   {
  75.         cmd = it->second;
  76.         return true;
  77.     } else {
  78.         cmd = eCmdInvalid;
  79.         return false;
  80.     }
  81. }
  82. bool     CAccelTable::GetAccelByCommand(TCmdID cmd, int& accel)
  83. {
  84.     TCmdToAccelMap::const_iterator it = sm_CmdToAccel.find(cmd);
  85.     if(it != sm_CmdToAccel.end())  {
  86.         accel = it->second;
  87.         return true;
  88.     } else {
  89.         accel = 0;
  90.         return false;
  91.     }
  92. }
  93. string   CAccelTable::GetAccelLabel(int accel)
  94. {
  95.   return string(fl_shortcut_label(accel));
  96. }
  97. void     CAccelTable::RegisterStdAccelerators()
  98. {
  99.     // will be implemented later
  100. }
  101. END_NCBI_SCOPE
  102. /*
  103.  * ===========================================================================
  104.  * $Log: accel_table.cpp,v $
  105.  * Revision 1000.0  2004/06/01 21:28:06  gouriano
  106.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  107.  *
  108.  * Revision 1.2  2004/05/21 22:27:50  gorelenk
  109.  * Added PCH ncbi_pch.hpp
  110.  *
  111.  * Revision 1.1  2004/05/13 17:17:26  yazhuk
  112.  * Initial revision
  113.  *
  114.  * ===========================================================================
  115.  */