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

Go to the SVN repository for this file.

1 /* $Id: clustalw_tool_params.cpp 43795 2019-08-30 19:22:56Z 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  * File Description:
29  *
30  */
31 
32 #include <ncbi_pch.hpp>
33 
35 
38 
40 
42 {
43  Init();
44 }
46 {
47  Init();
48  Copy(data);
49 }
51 {
52 }
54 {
55  Copy(data);
56 }
58 {
59 ////@begin CClustalwToolParams equality operator
60  if (!(m_ClustalWPath == data.m_ClustalWPath)) return false;
61  if (!(m_CommandLine == data.m_CommandLine)) return false;
62  if (!(m_GenerateTree == data.m_GenerateTree)) return false;
63 ////@end CClustalwToolParams equality operator
64  return true;
65 }
67 {
68 ////@begin CClustalwToolParams copy function
69  m_ClustalWPath = data.m_ClustalWPath;
70  m_CommandLine = data.m_CommandLine;
71  m_GenerateTree = data.m_GenerateTree;
72 ////@end CClustalwToolParams copy function
73  m_Objects = data.m_Objects;
74 }
76 {
77 ////@begin CClustalwToolParams member initialisation
78  m_GenerateTree = false;
79 ////@end CClustalwToolParams member initialisation
80 }
81 
83 {
85 }
86 
87 static const char
88 *kGenerateTree = "kGenerateTree",
89 *kCommandLine = "CommandLine",
90 *kClustalwPath = "GBENCH.Plugins.Algo.Clustalw.ClustalwPath";
91 
93 {
94  if (!m_RegPath.empty()) {
97 
101  }
102 }
103 
105 {
106  if (!m_RegPath.empty()) {
108  CRegistryReadView view = gui_reg.GetReadView(m_RegPath);
109 
113  }
114 }
115 
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
void Set(const string &key, int val)
set specific values
Definition: registry.cpp:178
CRegistryReadView GetReadView(const string &section) const
get a read-only view at a particular level.
Definition: registry.cpp:428
string GetString(const string &key, const string &default_val=kEmptyStr) const
Definition: registry.cpp:148
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
static const char * kClustalwPath
static const char * kCommandLine
static const char * kGenerateTree
char data[12]
Definition: iconv.c:80
bool operator==(const CClustalwToolParams &data) const
TConstScopedObjects m_Objects
wxString GetClustalWExecutable() const
void operator=(const CClustalwToolParams &data)
virtual void SaveSettings() const
void Copy(const CClustalwToolParams &data)
#define END_NCBI_SCOPE
End previously defined NCBI scope.
Definition: ncbistl.hpp:103
#define BEGIN_NCBI_SCOPE
Define ncbi namespace.
Definition: ncbistl.hpp:100
wxString ToWxString(const string &s)
Definition: wx_utils.hpp:173
string ToStdString(const wxString &s)
Definition: wx_utils.hpp:161
wxString FindExeFile(const wxString &exeFile)
Definition: wx_utils.cpp:76
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 04:57:41 2024 by modify_doxy.py rev. 669887