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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: file_browser.cpp,v $
  4.  * PRODUCTION Revision 1000.1  2004/06/01 20:45:10  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: file_browser.cpp,v 1000.1 2004/06/01 20:45:10 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/dialogs/file_browser.hpp>
  41. #include <gui/widgets/FLU/Flu_File_Chooser.h>
  42. #ifdef NCBI_OS_MSWIN
  43. #  include <windows.h>
  44. #  include <commdlg.h>
  45. #endif
  46. BEGIN_NCBI_SCOPE
  47. string NcbiFileBrowser(const string& message,
  48.                        const string& pattern,
  49.                        const string& path,
  50.                        EFileBrowserType type)
  51. {
  52.     string str;
  53. #ifdef NCBI_OS_MSWIN
  54.     OPENFILENAME ofn;
  55.     memset(&ofn, 0, sizeof(ofn));
  56.     ofn.lStructSize = sizeof(ofn);
  57.     string mswinPattern = pattern + '' + pattern + '';
  58.     ofn.lpstrFilter = mswinPattern.c_str();
  59.     ofn.lpstrInitialDir = path.c_str();
  60.     char buf[1024];
  61.     buf[0] = '';
  62.     ofn.lpstrFile = buf;
  63.     ofn.nMaxFile = sizeof(buf);
  64.     if (type == eFileType_Open) {
  65.         ofn.Flags |= OFN_FILEMUSTEXIST;
  66.         if (GetOpenFileName(&ofn)) {
  67.             str = buf;
  68.         }
  69.     } else {
  70.         string ext;
  71.         if (pattern.find('.') != string::npos) {
  72.             ext = pattern.substr(pattern.find('.')+1);
  73.             ofn.lpstrDefExt = ext.c_str();
  74.         }
  75.         if (GetSaveFileName(&ofn)) {
  76.             str = buf;
  77.         }
  78.     }
  79. #else
  80.     const char* text =
  81.         flu_file_chooser(message.c_str(), pattern.c_str(), path.c_str());
  82.     if ( text  &&  *text ) {
  83.         str = text;
  84.     }
  85. #endif
  86.     return str;
  87. }
  88. string NcbiDirBrowser(const string& message,
  89.                       const string& pattern)
  90. {
  91.     const char* text =
  92.         flu_dir_chooser(message.c_str(), pattern.c_str());
  93.     string str;
  94.     if ( text  &&  *text ) {
  95.         str = text;
  96.     }
  97.     return str;
  98. }
  99. END_NCBI_SCOPE
  100. /*
  101.  * ===========================================================================
  102.  * $Log: file_browser.cpp,v $
  103.  * Revision 1000.1  2004/06/01 20:45:10  gouriano
  104.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.7
  105.  *
  106.  * Revision 1.7  2004/05/26 14:11:22  johnson
  107.  * Win32: use correct member to return filename; add default extension when
  108.  * saving if using pattern filter
  109.  *
  110.  * Revision 1.6  2004/05/25 17:09:30  dicuccio
  111.  * Safe to include cmmdlg on all Windows platforms
  112.  *
  113.  * Revision 1.5  2004/05/24 19:37:26  gorelenk
  114.  * Added include of commdlg.h for MSVC7
  115.  *
  116.  * Revision 1.4  2004/05/24 13:42:48  johnson
  117.  * fix pattern-filter for Win32
  118.  *
  119.  * Revision 1.3  2004/05/21 22:27:41  gorelenk
  120.  * Added PCH ncbi_pch.hpp
  121.  *
  122.  * Revision 1.2  2004/05/20 12:28:43  dicuccio
  123.  * Added platform-specific wrapper for standard Win32 file browser
  124.  *
  125.  * Revision 1.1  2004/03/11 17:32:37  dicuccio
  126.  * Initial revision
  127.  *
  128.  * ===========================================================================
  129.  */