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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: font_demo_ui.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:52:02  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: font_demo_ui.cpp,v 1000.1 2004/06/01 20:52:02 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 "font_demo_ui.hpp"
  41. #include <FL/Fl_File_Chooser.H>
  42. #include <util/image/image_io.hpp>
  43. #include <gui/utils/message_box.hpp>
  44. BEGIN_NCBI_SCOPE
  45. #include "font_demo_ui_.cpp"
  46. CFontDemoUI::CFontDemoUI()
  47. {
  48.     m_Window.reset(x_CreateWindow());
  49.     //x_SetFont();
  50. }
  51. int CFontDemoUI::Show(int argc, char** argv)
  52. {
  53.     m_Window->show(argc, argv);
  54.     while (m_Window->shown()) {
  55.         Fl::wait();
  56.     }
  57.     return 0;
  58. }
  59. void CFontDemoUI::x_OnFileExit()
  60. {
  61.     m_Window->hide();
  62. }
  63. void CFontDemoUI::x_SetFont()
  64. {
  65.     CGlBitmapFont::EFont font = CGlBitmapFont::eHelvetica10;
  66.     const Fl_Menu_Item* face = m_Face->mvalue();
  67.     const Fl_Menu_Item* size = m_Size->mvalue();
  68.     switch (face->argument()) {
  69.     case 0: // courier
  70.         switch (size->argument()) {
  71.         case 8:
  72.             font = CGlBitmapFont::eCourier8;
  73.             break;
  74.         case 10:
  75.             font = CGlBitmapFont::eCourier10;
  76.             break;
  77.         case 12:
  78.             font = CGlBitmapFont::eCourier12;
  79.             break;
  80.         case 14:
  81.             font = CGlBitmapFont::eCourier14;
  82.             break;
  83.         case 18:
  84.             font = CGlBitmapFont::eCourier18;
  85.             break;
  86.         case 24:
  87.             font = CGlBitmapFont::eCourier24;
  88.             break;
  89.         default:
  90.             break;
  91.         }
  92.         break;
  93.     case 1: // fixed
  94.         switch (size->argument()) {
  95.         case 8:
  96.             font = CGlBitmapFont::eBitmap5x7;
  97.             break;
  98.         case 10:
  99.         case 12:
  100.             font = CGlBitmapFont::eBitmap8x13;
  101.             break;
  102.         case 14:
  103.             font = CGlBitmapFont::eBitmap9x15;
  104.             break;
  105.         case 18:
  106.             font = CGlBitmapFont::eBitmap10x20;
  107.             break;
  108.         case 24:
  109.             font = CGlBitmapFont::eBitmap12x24;
  110.             break;
  111.         default:
  112.             break;
  113.         }
  114.         break;
  115.     case 2: // helvetica
  116.         switch (size->argument()) {
  117.         case 8:
  118.             font = CGlBitmapFont::eHelvetica8;
  119.             break;
  120.         case 10:
  121.             font = CGlBitmapFont::eHelvetica10;
  122.             break;
  123.         case 12:
  124.             font = CGlBitmapFont::eHelvetica12;
  125.             break;
  126.         case 14:
  127.             font = CGlBitmapFont::eHelvetica14;
  128.             break;
  129.         case 18:
  130.             font = CGlBitmapFont::eHelvetica18;
  131.             break;
  132.         case 24:
  133.             font = CGlBitmapFont::eHelvetica24;
  134.             break;
  135.         default:
  136.             break;
  137.         }
  138.         break;
  139.     case 3: // lucida
  140.         switch (size->argument()) {
  141.         case 8:
  142.             font = CGlBitmapFont::eLucida8;
  143.             break;
  144.         case 10:
  145.             font = CGlBitmapFont::eLucida10;
  146.             break;
  147.         case 12:
  148.             font = CGlBitmapFont::eLucida12;
  149.             break;
  150.         case 14:
  151.             font = CGlBitmapFont::eLucida14;
  152.             break;
  153.         case 18:
  154.             font = CGlBitmapFont::eLucida18;
  155.             break;
  156.         case 24:
  157.             font = CGlBitmapFont::eLucida24;
  158.             break;
  159.         default:
  160.             break;
  161.         }
  162.         break;
  163.     case 4: // times
  164.         break;
  165.     default:
  166.         break;
  167.     }
  168.     m_Canvas->SetFont(font);
  169. }
  170. END_NCBI_SCOPE
  171. /*
  172.  * ===========================================================================
  173.  * $Log: font_demo_ui.cpp,v $
  174.  * Revision 1000.1  2004/06/01 20:52:02  gouriano
  175.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.2
  176.  *
  177.  * Revision 1.2  2004/05/21 22:27:45  gorelenk
  178.  * Added PCH ncbi_pch.hpp
  179.  *
  180.  * Revision 1.1  2003/09/17 16:22:03  dicuccio
  181.  * Initial revision
  182.  *
  183.  * ===========================================================================
  184.  */