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

Go to the SVN repository for this file.

1 #ifndef PKG_SEQUENCE___GFF_EXPORT_PARAMS__HPP
2 #define PKG_SEQUENCE___GFF_EXPORT_PARAMS__HPP
3 
4 /* $Id: gff_export_params.hpp 37285 2016-12-21 17:56:47Z katargir $
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: Roman Katargin
30  */
31 
32 #include <corelib/ncbistd.hpp>
33 
34 #include <gui/objutils/objects.hpp>
36 
37 #include <wx/string.h>
38 
40 
41 /*!
42  * CGffExportParams class declaration
43  */
44 
46 {
47  friend class CGffExportPage;
48 public:
49  /// Default constructor for CGffExportParams
51 
52  /// Copy constructor for CGffExportParams
54 
55  /// Destructor for CGffExportParams
57 
58  /// Assignment operator for CGffExportParams
59  void operator=(const CGffExportParams& data);
60 
61  /// Equality operator for CGffExportParams
62  bool operator==(const CGffExportParams& data) const;
63 
64  /// Copy function for CGffExportParams
65  void Copy(const CGffExportParams& data);
66 
67  /// Initialises member variables
68  void Init();
69 
70  /// IRegSettings
71  virtual void SetRegistryPath(const string& path) { m_RegPath = path; }
72  virtual void SaveSettings() const;
73  virtual void LoadSettings();
74 
75  const TConstScopedObjects& GetObjects() const { return m_Objects; }
76 
77 ////@begin CGffExportParams member function declarations
78  wxString GetFeatureDepth() const { return m_FeatureDepth ; }
79  void SetFeatureDepth(wxString value) { m_FeatureDepth = value ; }
80 
81  bool GetExactFlevel() const { return m_ExactFlevel ; }
83 
84  wxString GetFileName() const { return m_FileName ; }
85  void SetFileName(wxString value) { m_FileName = value ; }
86 
87  bool GetExtraQuals() const { return m_ExtraQuals ; }
89 
90 ////@end CGffExportParams member function declarations
91 
92 ////@begin CGffExportParams member variables
93 private:
94  wxString m_FeatureDepth;
96  wxString m_FileName;
98 ////@end CGffExportParams member variables
99 
100 private:
101  string m_RegPath;
103 };
104 
106 
107 #endif // PKG_SEQUENCE___GFF_EXPORT_PARAMS__HPP
void SetExactFlevel(bool value)
void operator=(const CGffExportParams &data)
Assignment operator for CGffExportParams.
void SetFileName(wxString value)
void Init()
Initialises member variables.
bool GetExactFlevel() const
virtual void SetRegistryPath(const string &path)
IRegSettings.
TConstScopedObjects m_Objects
virtual void LoadSettings()
~CGffExportParams()
Destructor for CGffExportParams.
void SetFeatureDepth(wxString value)
wxString GetFileName() const
void SetExtraQuals(bool value)
virtual void SaveSettings() const
IRegSettings.
wxString GetFeatureDepth() const
bool GetExtraQuals() const
bool operator==(const CGffExportParams &data) const
Equality operator for CGffExportParams.
const TConstScopedObjects & GetObjects() const
void Copy(const CGffExportParams &data)
Copy function for CGffExportParams.
CGffExportParams()
Default constructor for CGffExportParams.
IRegSettings An interface for objects that save / restore settings using CGuiRegistry.
char value[7]
Definition: config.c:431
Include a standard set of the NCBI C++ Toolkit most basic headers.
vector< SConstScopedObject > TConstScopedObjects
Definition: objects.hpp:65
#define END_NCBI_SCOPE
End previously defined NCBI scope.
Definition: ncbistl.hpp:103
#define BEGIN_NCBI_SCOPE
Define ncbi namespace.
Definition: ncbistl.hpp:100
Modified on Tue Dec 05 02:21:58 2023 by modify_doxy.py rev. 669887