~ubuntu-branches/ubuntu/wily/openms/wily

« back to all changes in this revision

Viewing changes to source/VISUAL/VISUALIZER/IonSourceVisualizer.C

  • Committer: Package Import Robot
  • Author(s): Filippo Rusconi
  • Date: 2012-11-12 15:58:12 UTC
  • Revision ID: package-import@ubuntu.com-20121112155812-vr15wtg9b50cuesg
Tags: upstream-1.9.0
ImportĀ upstreamĀ versionĀ 1.9.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// -*- mode: C++; tab-width: 2; -*-
 
2
// vi: set ts=2:
 
3
//
 
4
// --------------------------------------------------------------------------
 
5
//                   OpenMS Mass Spectrometry Framework
 
6
// --------------------------------------------------------------------------
 
7
//  Copyright (C) 2003-2011 -- Oliver Kohlbacher, Knut Reinert
 
8
//
 
9
//  This library is free software; you can redistribute it and/or
 
10
//  modify it under the terms of the GNU Lesser General Public
 
11
//  License as published by the Free Software Foundation; either
 
12
//  version 2.1 of the License, or (at your option) any later version.
 
13
//
 
14
//  this library is distributed in the hope that it will be useful,
 
15
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
17
//  Lesser General Public License for more details.
 
18
//
 
19
//  You should have received a copy of the GNU Lesser General Public
 
20
//  License along with this library; if not, write to the Free Software
 
21
//  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
22
//
 
23
// --------------------------------------------------------------------------
 
24
// $Maintainer: Timo Sachsenberg $
 
25
// $Authors: Marc Sturm $
 
26
// --------------------------------------------------------------------------s
 
27
 
 
28
#include <OpenMS/VISUAL/VISUALIZER/IonSourceVisualizer.h>
 
29
 
 
30
//QT
 
31
#include <QtGui/QComboBox>
 
32
#include <QtGui/QLineEdit>
 
33
 
 
34
//STL
 
35
#include <iostream>
 
36
 
 
37
using namespace std;
 
38
 
 
39
namespace OpenMS
 
40
{
 
41
        
 
42
        IonSourceVisualizer::IonSourceVisualizer(bool editable, QWidget* parent)
 
43
                : BaseVisualizerGUI(editable, parent),
 
44
                        BaseVisualizer<IonSource>()
 
45
        {
 
46
                addLabel_("Modify ionsource information.");     
 
47
                addSeparator_();
 
48
                
 
49
                addIntLineEdit_(order_, "Order" );
 
50
                addComboBox_(inlet_type_, "Inlet type");
 
51
                addComboBox_(ionization_method_, "Ionization method");
 
52
                addComboBox_(polarity_, "Polarity");      
 
53
                
 
54
                finishAdding_();
 
55
        }
 
56
        
 
57
        void IonSourceVisualizer::update_()
 
58
        {
 
59
                if(! isEditable())
 
60
                {
 
61
                        fillComboBox_(inlet_type_,& temp_.NamesOfInletType[temp_.getInletType()]  , 1);
 
62
                        fillComboBox_(ionization_method_,& temp_.NamesOfIonizationMethod[temp_.getIonizationMethod()] , 1);
 
63
                        fillComboBox_(polarity_,& temp_.NamesOfPolarity[temp_.getPolarity()] , 1);      
 
64
                }
 
65
                else
 
66
                {
 
67
                        fillComboBox_(inlet_type_, temp_.NamesOfInletType  , IonSource::SIZE_OF_INLETTYPE);
 
68
                        fillComboBox_(ionization_method_, temp_.NamesOfIonizationMethod , IonSource::SIZE_OF_IONIZATIONMETHOD);
 
69
                        fillComboBox_(polarity_, temp_.NamesOfPolarity , IonSource::SIZE_OF_POLARITY);
 
70
                        
 
71
                        inlet_type_->setCurrentIndex(temp_.getInletType()); 
 
72
                        ionization_method_->setCurrentIndex(temp_.getIonizationMethod()); 
 
73
                        polarity_->setCurrentIndex(temp_.getPolarity()); 
 
74
                }
 
75
 
 
76
                order_->setText(String(temp_.getOrder()).c_str());
 
77
        }
 
78
        
 
79
        void IonSourceVisualizer::store()
 
80
        {
 
81
                ptr_->setOrder(order_->text().toInt());
 
82
                ptr_->setInletType((IonSource::InletType)inlet_type_->currentIndex());          
 
83
                ptr_->setIonizationMethod((IonSource::IonizationMethod)ionization_method_->currentIndex());             
 
84
                ptr_->setPolarity((IonSource::Polarity)polarity_->currentIndex());              
 
85
                
 
86
                temp_=(*ptr_);
 
87
        }
 
88
        
 
89
        void IonSourceVisualizer::undo_()
 
90
        {
 
91
                update_();
 
92
        }
 
93
 
 
94
}