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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: utils.cpp,v $
  4.  * PRODUCTION Revision 1000.0  2004/06/01 21:29:31  gouriano
  5.  * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: utils.cpp,v 1000.0 2004/06/01 21:29:31 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.  
  39. #include <ncbi_pch.hpp>
  40. #include <gui/widgets/fl/utils.hpp>
  41. BEGIN_NCBI_SCOPE
  42. /// truncates given string so that its lenght is less or equal "w"
  43. /// "trunc" controls truncation, if "trunc" == eTruncate_Ellipsis
  44. /// "..." is appended to the end of the truncated string.
  45. string fl_trunc_text(const char* s, int n, int w, EFL_Truncate trunc )
  46. {
  47.     _ASSERT(s);
  48.     static const char* sc_ellipsis = "...";
  49.     int full_w = (int) fl_width(s, n);
  50.     
  51.     if(full_w <= w) { //truncation is not needed
  52.         return s;
  53.     } else {
  54.         int w_av = 0; // width available
  55.         int len = n;
  56.         switch(trunc)   {
  57.         case eTruncate_Empty: w_av = w; break;
  58.         case eTruncate_Ellipsis:    w_av = w - (int) fl_width(sc_ellipsis); break;
  59.         }
  60.         if(w_av > 0)    { // adjust string length
  61.             double K = ((double) w_av) / full_w; // 
  62.             len = (int) (K * n);
  63.             int new_w = (int) fl_width(s, len);
  64.             if(new_w > w_av)    {
  65.                 for( ; new_w > w_av  &&  --len > 0; )   {
  66.                     new_w = (int) fl_width(s, len);
  67.                 }
  68.             } else {
  69.                 for( ; new_w < w_av  &&  ++len < n;  )  {
  70.                     new_w = (int) fl_width(s, len);
  71.                 }
  72.                 if(new_w > w_av)
  73.                     len--;
  74.             }
  75.         } else len = 0;
  76.         
  77.         
  78.         // create result string
  79.         _ASSERT(len >= 0);
  80.         
  81.         string res(s, len);
  82.         if(trunc == eTruncate_Ellipsis) {
  83.             res += sc_ellipsis;
  84.         }
  85.         return res;
  86.     }
  87. }
  88. END_NCBI_SCOPE
  89. /*
  90.  * ===========================================================================
  91.  * $Log: utils.cpp,v $
  92.  * Revision 1000.0  2004/06/01 21:29:31  gouriano
  93.  * PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.2
  94.  *
  95.  * Revision 1.2  2004/05/21 22:27:53  gorelenk
  96.  * Added PCH ncbi_pch.hpp
  97.  *
  98.  * Revision 1.1  2004/05/13 17:19:20  yazhuk
  99.  * Initial revision
  100.  *
  101.  * ===========================================================================
  102.  */