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

« back to all changes in this revision

Viewing changes to include/OpenMS/VISUAL/TOPPASOutputFileListVertex.h

  • 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: Johannes Junker $
 
25
// $Authors: Johannes Junker, Chris Bielow $
 
26
// --------------------------------------------------------------------------
 
27
 
 
28
#ifndef OPENMS_VISUAL_TOPPASOUTPUTFILELISTVERTEX_H
 
29
#define OPENMS_VISUAL_TOPPASOUTPUTFILELISTVERTEX_H
 
30
 
 
31
#include <OpenMS/VISUAL/TOPPASVertex.h>
 
32
 
 
33
namespace OpenMS
 
34
{
 
35
        /**
 
36
                @brief A vertex representing an output file list
 
37
        
 
38
                @ingroup TOPPAS_elements
 
39
        */
 
40
        class OPENMS_GUI_DLLAPI TOPPASOutputFileListVertex
 
41
                : public TOPPASVertex
 
42
        {
 
43
                Q_OBJECT
 
44
                
 
45
                public:
 
46
                        
 
47
                        
 
48
                        /// Default constructor
 
49
                        TOPPASOutputFileListVertex();
 
50
                        /// Copy constructor
 
51
                        TOPPASOutputFileListVertex(const TOPPASOutputFileListVertex& rhs);
 
52
                        /// Destructor
 
53
                        virtual ~TOPPASOutputFileListVertex();
 
54
                        /// Assignment operator
 
55
                        TOPPASOutputFileListVertex& operator= (const TOPPASOutputFileListVertex& rhs);
 
56
                        // documented in base class
 
57
                        virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget);
 
58
                        // documented in base class
 
59
                        virtual QRectF boundingRect() const;
 
60
                        // documented in base class
 
61
                        virtual QPainterPath shape () const;
 
62
                        // documented in base class
 
63
                        virtual void reset(bool reset_all_files = false);
 
64
                        /// Called when the parent node has finished execution
 
65
                        virtual void run();
 
66
      /// Returns the full directory (including preceding output path as selected by user)
 
67
      String getFullOutputDirectory() const;
 
68
      /// Returns the directory where the output files are stored
 
69
                        String getOutputDir() const;
 
70
                        /// Creates the output directory for this node
 
71
                        String createOutputDir();
 
72
                        /// Sets the topological sort number and removes invalidated tmp files
 
73
                        virtual void setTopoNr(UInt nr);
 
74
      /// Opens the folders of the output files
 
75
      void openContainingFolder();
 
76
 
 
77
                public slots:
 
78
                
 
79
                        //documented in base class
 
80
                        virtual void inEdgeHasChanged();
 
81
                
 
82
                signals:
 
83
                        
 
84
                        /// Emitted when an output file was written
 
85
                        void outputFileWritten(const String& file);
 
86
                        /// Emitted when the pipeline ending in this vertex is finished
 
87
                        void iAmDone();
 
88
                        
 
89
                protected:
 
90
      // convenience members, not required for operation, but for progress during copying
 
91
                  int files_written_; //< files that were already written
 
92
      int files_total_;   //< total number of files from upstream
 
93
        };
 
94
}
 
95
 
 
96
#endif