libpappsomspp
Library for mass spectrometry
obolistmodel.h
Go to the documentation of this file.
1 /**
2  * \file pappsomspp/widget/obo/obolistwidget/obolistmodel.h
3  * \date 19/04/2021
4  * \author Olivier Langella
5  * \brief MVC model of OBO term list
6  */
7 
8 
9 /*******************************************************************************
10  * Copyright (c) 2021 Olivier Langella
11  *<Olivier.Langella@universite-paris-saclay.fr>.
12  *
13  * This file is part of the PAPPSOms++ library.
14  *
15  * PAPPSOms++ is free software: you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation, either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * PAPPSOms++ is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with PAPPSOms++. If not, see <http://www.gnu.org/licenses/>.
27  *
28  ******************************************************************************/
29 
30 #pragma once
31 
32 #include <QStringListModel>
33 #include "../../../exportinmportconfig.h"
34 #include "../../../obo/obopsimodterm.h"
35 #include "../../../obo/obopsimodhandlerinterface.h"
36 #include <vector>
37 
38 
39 namespace pappso
40 {
41 
42 /**
43  * @todo write docs
44  */
45 class PMSPP_LIB_DECL OboListModel : public QStringListModel
46 {
47  public:
48  /**
49  * Default constructor
50  */
51  OboListModel(QObject *parent = nullptr);
52 
53  /**
54  * Destructor
55  */
56  ~OboListModel();
57 
58  void loadPsiMod();
59 
60 
61  QVariant data(const QModelIndex &index,
62  int role = Qt::DisplayRole) const override;
63 
64  int rowCount(const QModelIndex &parent = QModelIndex()) const override;
65 
66 
67  const OboPsiModTerm &getOboPsiModTerm(int row) const;
68 
69  protected:
71  {
72 
73  public:
75  virtual ~OboPsiModHandler();
76 
77  void setOboPsiModTerm(const OboPsiModTerm &term) override;
78 
79  private:
81  };
82 
83  std::vector<OboPsiModTerm> m_oboPsiModTermList;
84 };
85 } // namespace pappso
pappso::OboListModel * mp_parent
Definition: obolistmodel.h:80
std::vector< OboPsiModTerm > m_oboPsiModTermList
Definition: obolistmodel.h:83
#define PMSPP_LIB_DECL
tries to keep as much as possible monoisotopes, removing any possible C13 peaks and changes multichar...
Definition: aa.cpp:39