NCBI C++ ToolKit
gtf_export_params.cpp
Go to the documentation of this file.

Go to the SVN repository for this file.

1 /* $Id: gtf_export_params.cpp 39666 2017-10-25 16:01:13Z katargir $
2  * ===========================================================================
3  *
4  * PUBLIC DOMAIN NOTICE
5  * National Center for Biotechnology Information
6  *
7  * This software/database is a "United States Government Work" under the
8  * terms of the United States Copyright Act. It was written as part of
9  * the author's official duties as a United States Government employee and
10  * thus cannot be copyrighted. This software/database is freely available
11  * to the public for use. The National Library of Medicine and the U.S.
12  * Government have not placed any restriction on its use or reproduction.
13  *
14  * Although all reasonable efforts have been taken to ensure the accuracy
15  * and reliability of the software and data, the NLM and the U.S.
16  * Government do not and cannot warrant the performance or results that
17  * may be obtained by using this software or data. The NLM and the U.S.
18  * Government disclaim all warranties, express or implied, including
19  * warranties of performance, merchantability or fitness for any particular
20  * purpose.
21  *
22  * Please cite the author in any work or product based on this material.
23  *
24  * ===========================================================================
25  *
26  * Authors: Roman Katargin
27  */
28 
29 
30 #include <ncbi_pch.hpp>
31 
33 
36 
38 
39 /*!
40  * CGtfExportParams type definition
41  */
42 
43 /*!
44  * Default constructor for CGtfExportParams
45  */
46 
48 {
49  Init();
50 }
51 
52 /*!
53  * Copy constructor for CGtfExportParams
54  */
55 
57 {
58  Init();
59  Copy(data);
60 }
61 
62 /*!
63  * Destructor for CGtfExportParams
64  */
65 
67 {
68 }
69 
70 /*!
71  * Assignment operator for CGtfExportParams
72  */
73 
75 {
76  Copy(data);
77 }
78 
79 /*!
80  * Equality operator for CGtfExportParams
81  */
82 
84 {
85 ////@begin CGtfExportParams equality operator
86  if (!(m_FeatureDepth == data.m_FeatureDepth)) return false;
87  if (!(m_ExactFlevel == data.m_ExactFlevel)) return false;
88  if (!(m_SuppressGeneFeatures == data.m_SuppressGeneFeatures)) return false;
89  if (!(m_SuppressExonNumbers == data.m_SuppressExonNumbers)) return false;
90  if (!(m_FileName == data.m_FileName)) return false;
91 ////@end CGtfExportParams equality operator
92  return true;
93 }
94 
95 /*!
96  * Copy function for CGtfExportParams
97  */
98 
100 {
101 ////@begin CGtfExportParams copy function
102  m_FeatureDepth = data.m_FeatureDepth;
103  m_ExactFlevel = data.m_ExactFlevel;
104  m_SuppressGeneFeatures = data.m_SuppressGeneFeatures;
105  m_SuppressExonNumbers = data.m_SuppressExonNumbers;
106  m_FileName = data.m_FileName;
107 ////@end CGtfExportParams copy function
108  m_Objects = data.m_Objects;
109 }
110 
111 /*!
112  * Member initialisation for CGtfExportParams
113  */
114 
116 {
117 ////@begin CGtfExportParams member initialisation
118  m_FeatureDepth = wxT("1");
119  m_ExactFlevel = false;
120  m_SuppressGeneFeatures = false;
121  m_SuppressExonNumbers = false;
122 ////@end CGtfExportParams member initialisation
123 }
124 
125 static const char* kFeatureDepth = "FeatureDepth";
126 static const char* kExactFlevel = "ExactFlevel";
127 static const char* kSuppressGeneFeatures = "SuppressGeneFeatures";
128 static const char* kSuppressExonNumbers = "SuppressExonNumbers";
129 static const char* kFileName = "FileName";
130 
131 /// IRegSettings
133 {
134  if (!m_RegPath.empty()) {
136  CRegistryWriteView view = gui_reg.GetWriteView(m_RegPath);
137 
143  }
144 }
145 
147 {
148  if (!m_RegPath.empty()) {
150  CRegistryReadView view = gui_reg.GetReadView(m_RegPath);
151 
158 
159  m_FileName =
161  }
162 }
163 
165 
void Init()
Initialises member variables.
virtual void SaveSettings() const
IRegSettings.
virtual void LoadSettings()
CGtfExportParams()
Default constructor for CGtfExportParams.
bool operator==(const CGtfExportParams &data) const
Equality operator for CGtfExportParams.
void Copy(const CGtfExportParams &data)
Copy function for CGtfExportParams.
void operator=(const CGtfExportParams &data)
Assignment operator for CGtfExportParams.
~CGtfExportParams()
Destructor for CGtfExportParams.
TConstScopedObjects m_Objects
CRegistryWriteView GetWriteView(const string &section)
get a read-write view at a particular level.
Definition: registry.cpp:462
static CGuiRegistry & GetInstance()
access the application-wide singleton
Definition: registry.cpp:400
CRegistryReadView GetReadView(const string &section) const
get a read-only view at a particular level.
Definition: registry.cpp:428
class CRegistryReadView provides a nested hierarchical view at a particular key.
Definition: reg_view.hpp:58
bool GetBool(const string &key, bool default_val=false) const
Definition: reg_view.cpp:241
string GetString(const string &key, const string &default_val=kEmptyStr) const
Definition: reg_view.cpp:246
void Set(const string &key, int val)
access a named key at this level, with no recursion
Definition: reg_view.cpp:533
char data[12]
Definition: iconv.c:80
#define END_NCBI_SCOPE
End previously defined NCBI scope.
Definition: ncbistl.hpp:103
#define BEGIN_NCBI_SCOPE
Define ncbi namespace.
Definition: ncbistl.hpp:100
static const char * kExactFlevel
static const char * kSuppressExonNumbers
static const char * kFileName
static const char * kSuppressGeneFeatures
static const char * kFeatureDepth
#define wxT(x)
Definition: muParser.cpp:41
wxString ToWxString(const string &s)
Definition: wx_utils.hpp:173
string ToStdString(const wxString &s)
Definition: wx_utils.hpp:161
wxString FnToWxString(const string &s)
Definition: wx_utils.cpp:253
string FnToStdString(const wxString &s)
Definition: wx_utils.cpp:268
Modified on Sun May 12 05:00:57 2024 by modify_doxy.py rev. 669887