NCBI C++ ToolKit
winmask_files.hpp
Go to the documentation of this file.

Go to the SVN repository for this file.

1 #ifndef GUI_WIDGETS___LOADERS___WINMASK_FILES__HPP
2 #define GUI_WIDGETS___LOADERS___WINMASK_FILES__HPP
3 
4 /* $Id $
5  * ===========================================================================
6  *
7  * PUBLIC DOMAIN NOTICE
8  * National Center for Biotechnology Information
9  *
10  * This software/database is a "United States Government Work" under the
11  * terms of the United States Copyright Act. It was written as part of
12  * the author's official duties as a United States Government employee and
13  * thus cannot be copyrighted. This software/database is freely available
14  * to the public for use. The National Library of Medicine and the U.S.
15  * Government have not placed any restriction on its use or reproduction.
16  *
17  * Although all reasonable efforts have been taken to ensure the accuracy
18  * and reliability of the software and data, the NLM and the U.S.
19  * Government do not and cannot warrant the performance or results that
20  * may be obtained by using this software or data. The NLM and the U.S.
21  * Government disclaim all warranties, express or implied, including
22  * warranties of performance, merchantability or fitness for any particular
23  * purpose.
24  *
25  * Please cite the author in any work or product based on this material.
26  *
27  * ===========================================================================
28  *
29  * Authors: Yury Voronov
30  *
31  * File Description:
32  *
33  */
34 
35 #include <gui/gui_export.h>
36 
37 #include <corelib/ncbiobj.hpp>
38 
41 
42 #include <wx/string.h>
43 
44 class wxWindow;
45 
47 
49 {
50 public:
51  friend class CWinMaskFilesDlg;
52 
53  /// @name Singleton maintenance
54  /// @{
55 
56  /// access the application-wide singleton
57  static CWinMaskerFileStorage& GetInstance();
58 
59  /// @}
60 
61  void SetRegistryPath( const string& path );
62  void SaveSettings() const;
63  void LoadSettings();
64 
65  void GetTaxIds(vector<int>& ids);
66 
67  wxString GetPath() const;
68 
69  bool GetUseEnvPath() const { return m_UseEnvPath; }
70  void SetUseEnvPath(bool value) { m_UseEnvPath = value; }
71  wxString GetEnvPath() const;
72  wxString GeFtpUrl() const;
73 
74  bool ShowOptionsDlg();
75 
76  bool IsDownloading() const { return m_JobId != CAppJobDispatcher::eInvalidJobID; }
77 
78 private:
80  virtual ~CWinMaskerFileStorage();
81 
82  wxString x_GetDownloadPath() const;
83  bool x_ClearDownloads() const;
84  void x_DownloadFileList(vector<string>& files);
85  void x_DownloadFiles(const vector<string>& files);
86 
87  string m_RegPath;
89 
91 
92  void x_OnJobNotification(CEvent* evt);
93 
95 };
96 
98 
99 #endif // GUI_WIDGETS___LOADERS___WINMASK_FILES__HPP
virtual void SaveSettings() const
Definition: dialog.cpp:67
virtual void SetRegistryPath(const string &path)
Definition: dialog.cpp:59
virtual void LoadSettings()
Definition: dialog.cpp:112
CEventHandler.
CEvent - generic event implementation TODO TODO - Attachments.
Definition: event.hpp:86
CObjectEx –.
Definition: ncbiobj.hpp:2531
void SetUseEnvPath(bool value)
bool GetUseEnvPath() const
CAppJobDispatcher::TJobID m_JobId
bool IsDownloading() const
#define END_NCBI_SCOPE
End previously defined NCBI scope.
Definition: ncbistl.hpp:103
#define BEGIN_NCBI_SCOPE
Define ncbi namespace.
Definition: ncbistl.hpp:100
#define NCBI_GUIWIDGETS_LOADERS_EXPORT
Definition: gui_export.h:525
Defines to provide correct exporting from DLLs in Windows.
const GenericPointer< typename T::ValueType > T2 value
Definition: pointer.h:1227
Portable reference counted smart and weak pointers using CWeakRef, CRef, CObject and CObjectEx.
Modified on Wed Sep 04 15:05:23 2024 by modify_doxy.py rev. 669887