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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: accel_table.hpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 19:56:22  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. #ifndef GUI_CORE___ACCEL_TABLE__HPP
  10. #define GUI_CORE___ACCEL_TABLE__HPP
  11. /*  $Id: accel_table.hpp,v 1000.0 2004/06/01 19:56:22 gouriano Exp $
  12.  * ===========================================================================
  13.  *
  14.  *                            PUBLIC DOMAIN NOTICE
  15.  *               National Center for Biotechnology Information
  16.  *
  17.  *  This software/database is a "United States Government Work" under the
  18.  *  terms of the United States Copyright Act.  It was written as part of
  19.  *  the author's official duties as a United States Government employee and
  20.  *  thus cannot be copyrighted.  This software/database is freely available
  21.  *  to the public for use. The National Library of Medicine and the U.S.
  22.  *  Government have not placed any restriction on its use or reproduction.
  23.  *
  24.  *  Although all reasonable efforts have been taken to ensure the accuracy
  25.  *  and reliability of the software and data, the NLM and the U.S.
  26.  *  Government do not and cannot warrant the performance or results that
  27.  *  may be obtained by using this software or data. The NLM and the U.S.
  28.  *  Government disclaim all warranties, express or implied, including
  29.  *  warranties of performance, merchantability or fitness for any particular
  30.  *  purpose.
  31.  *
  32.  *  Please cite the author in any work or product based on this material.
  33.  *
  34.  * ===========================================================================
  35.  *
  36.  * Authors:  Andrey Yazhuk
  37.  *
  38.  * File Description:
  39.  */
  40. #include <corelib/ncbistd.hpp>
  41. #include <gui/utils/command.hpp>
  42. /** @addtogroup GUI_UTILS
  43.  *
  44.  * @{
  45.  */
  46. BEGIN_NCBI_SCOPE
  47. ////////////////////////////////////////////////////////////////////////////////
  48. /// CAccelTable - Accelerator Table
  49. ///
  50. /// CAccelTable maps Accelerators to commands and vice versa. Accelerator is a 
  51. /// combination of generic key with modifier keys such as Ctrl, Shift and Alt.
  52. /// Accelerators are encoded as integer valuss using FLTK conventions for shortcuts.
  53. /// In this convention accelerator id is a bitwise combination of the key with bit
  54. /// flags corresponding to modifiers. For instance "Ctrl + C" is encoded as
  55. /// (FL_CTRL + 'C'). Accelerators are case insensetive, all lower case characters
  56. /// are converted to upper case.
  57. /// Mapping of accelerators to commands is "many to one".
  58. class NCBI_GUIUTILS_EXPORT  CAccelTable
  59. {
  60. public:
  61.     static bool     RegisterAccelerator(int accel, TCmdID cmd);
  62.     /// returns in "cmd" command corresponding to the accelerator
  63.     static bool     GetCommandByAccel(int accel, TCmdID& cmd);
  64.     /// returns in "accel" accelerator corresponding to the command, if multiple
  65.     /// accelerators are mapped to this command the first one is returned
  66.     static bool     GetAccelByCommand(TCmdID cmd, int& accel);
  67.     /// generates text label describing accelerator such as "Ctrl+C"
  68.     static string   GetAccelLabel(int accel);
  69.     /// registers platform-specific accelerators for standard commands such as 
  70.     /// "Copy", "Paste"
  71.     static void     RegisterStdAccelerators();
  72. protected:
  73.     typedef map<int, TCmdID>    TAccelToCmdMap;
  74.     typedef map<TCmdID, int>    TCmdToAccelMap;
  75.     static TAccelToCmdMap  sm_AccelToCmd;
  76.     static TCmdToAccelMap  sm_CmdToAccel;
  77. };
  78. END_NCBI_SCOPE
  79. /* @} */
  80. /*
  81.  * ===========================================================================
  82.  * $Log: accel_table.hpp,v $
  83.  * Revision 1000.0  2004/06/01 19:56:22  gouriano
  84.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1
  85.  *
  86.  * Revision 1.1  2004/05/13 17:16:48  yazhuk
  87.  * Initial revision
  88.  *
  89.  * ===========================================================================
  90.  */
  91. #endif  // GUI_CORE___ACCEL_TABLE__HPP