OpenMS  2.7.0
DataSelectionTabs.h
Go to the documentation of this file.
1 // --------------------------------------------------------------------------
2 // OpenMS -- Open-Source Mass Spectrometry
3 // --------------------------------------------------------------------------
4 // Copyright The OpenMS Team -- Eberhard Karls University Tuebingen,
5 // ETH Zurich, and Freie Universitaet Berlin 2002-2021.
6 //
7 // This software is released under a three-clause BSD license:
8 // * Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
10 // * Redistributions in binary form must reproduce the above copyright
11 // notice, this list of conditions and the following disclaimer in the
12 // documentation and/or other materials provided with the distribution.
13 // * Neither the name of any author or any participating institution
14 // may be used to endorse or promote products derived from this software
15 // without specific prior written permission.
16 // For a full list of authors, refer to the file AUTHORS.
17 // --------------------------------------------------------------------------
18 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19 // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20 // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21 // ARE DISCLAIMED. IN NO EVENT SHALL ANY OF THE AUTHORS OR THE CONTRIBUTING
22 // INSTITUTIONS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
25 // OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
26 // WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
27 // OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 // ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 //
30 // --------------------------------------------------------------------------
31 // $Maintainer: Chris Bielow $
32 // $Authors: Chris Bielow $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 // OpenMS_GUI config
38 #include <OpenMS/VISUAL/OpenMS_GUIConfig.h>
39 
41 
42 #include <QTabWidget>
43 
44 namespace OpenMS
45 {
46  class DIATreeTab;
47  class LayerData;
48  class SpectraTreeTab;
49  class SpectraIDViewTab;
50  class TVDIATreeTabController;
51  class TVIdentificationViewController;
52  class TVSpectraViewController;
53  class TOPPViewBase;
54 
56  class OPENMS_GUI_DLLAPI DataTabBase
57  {
58  public:
61  virtual bool hasData(const LayerData* layer) = 0;
62 
65  virtual void updateEntries(LayerData* layer) = 0;
66 
68  virtual void clear() = 0;
69  };
70 
75  class OPENMS_GUI_DLLAPI DataSelectionTabs
76  : public QTabWidget
77  {
78  Q_OBJECT
79 
80  public:
81  enum TAB_INDEX
82  {
83  SPECTRA_IDX = 0,
84  IDENT_IDX = 1,
85  DIAOSW_IDX = 2,
86  SIZE_OF_TAB_INDEX
87  };
88 
91 
96  void update();
97 
99  void currentTabChanged(int tab_index);
100 
102  void showSpectrumAsNew1D(int index);
103 
105  void showChromatogramsAsNew1D(const std::vector<int>& indices);
106 
109  void tabBarDoubleClicked(int tab_index);
110 
112  signals:
113 
114  private:
116 
121  std::vector< DataTabBase* > tab_ptrs_;
122 
129 
132  };
133 
134 } //namespace
Hierarchical visualization and selection of spectra.
Definition: DIATreeTab.h:59
A tabbed view, to browse lists of spectra or identifications.
Definition: DataSelectionTabs.h:77
SpectraIDViewTab * id_view_widget_
Definition: DataSelectionTabs.h:118
TVDIATreeTabController * diatab_controller_
TOPPView behavior for the DIA view.
Definition: DataSelectionTabs.h:128
std::vector< DataTabBase * > tab_ptrs_
holds pointers to all of the above tabs, for iteration purposes
Definition: DataSelectionTabs.h:121
void showSpectrumAsNew1D(int index)
forwards to the TOPPView*Behaviour classes, to show a certain spectrum in 1D
SpectraTreeTab * spectra_view_widget_
Definition: DataSelectionTabs.h:117
TAB_INDEX
Definition: DataSelectionTabs.h:82
TVSpectraViewController * spectraview_controller_
TOPPView behavior for the spectra view.
Definition: DataSelectionTabs.h:124
DIATreeTab * dia_widget_
Definition: DataSelectionTabs.h:119
TOPPViewBase * tv_
pointer to base class to access some members (going signal/slot would be cleaner)
Definition: DataSelectionTabs.h:131
void showChromatogramsAsNew1D(const std::vector< int > &indices)
forwards to the TOPPView*Behaviour classes, to show a certain set of chromatograms in 1D
TVIdentificationViewController * idview_controller_
TOPPView behavior for the identification view.
Definition: DataSelectionTabs.h:126
SpectraIDViewTab * getSpectraIDViewTab()
DataSelectionTabs(QWidget *parent, TOPPViewBase *tv)
Default constructor.
void currentTabChanged(int tab_index)
invoked when user changes the active tab to tab_index
void tabBarDoubleClicked(int tab_index)
all tabs need to implement this interface
Definition: DataSelectionTabs.h:57
virtual bool hasData(const LayerData *layer)=0
virtual void clear()=0
explicitly show no data at all
virtual void updateEntries(LayerData *layer)=0
Class that stores the data for one layer.
Definition: LayerData.h:96
Tabular visualization / selection of identified spectra.
Definition: SpectraIDViewTab.h:59
Hierarchical visualization and selection of spectra.
Definition: SpectraTreeTab.h:59
Main window of TOPPView tool.
Definition: TOPPViewBase.h:127
Behavior of TOPPView in spectra view mode.
Definition: TVDIATreeTabController.h:54
Behavior of TOPPView in identification mode.
Definition: TVIdentificationViewController.h:53
Behavior of TOPPView in spectra view mode.
Definition: TVSpectraViewController.h:51
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47