OpenMS  2.7.0
InputFile.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 
40 #include <QWidget>
41 
42 namespace Ui
43 {
44  class InputFileTemplate;
45 }
46 
47 namespace OpenMS
48 {
55  class OPENMS_GUI_DLLAPI InputFile :
56  public QWidget
57  {
58  Q_OBJECT
59  public:
61  InputFile(QWidget* parent);
64 
66  void dragEnterEvent(QDragEnterEvent* e) override;
68  void dropEvent(QDropEvent* e) override;
69  void dragMoveEvent(QDragMoveEvent* pEvent) override;
70 
72  void setFilename(const QString& filename);
73 
75  QString getFilename() const;
76 
78  void setFileFormatFilter(const QString& fff);
79 
81  const QString& getCWD() const;
83  void setCWD(const QString& cwd, bool force = false);
84 
85  signals:
87  void updatedCWD(QString new_cwd);
89  void updatedFile(QString new_path);
90 
91  public slots:
92 
95 
96 
97  protected:
101  QString cwd_;
102 
103  private:
104  Ui::InputFileTemplate* ui_;
105  };
106 
107 }
A simple widget with a line-edit and a browse button to choose filenames.
Definition: InputFile.h:57
InputFile(QWidget *parent)
Constructor.
void dropEvent(QDropEvent *e) override
support drag'n'drop of files from OS window manager
Ui::InputFileTemplate * ui_
Definition: InputFile.h:104
void dragEnterEvent(QDragEnterEvent *e) override
support drag'n'drop of files from OS window manager
void setFileFormatFilter(const QString &fff)
Users can only choose certain filetypes, e.g. "Transition sqLite file (*.pqp)".
QString file_format_filter_
optional filter during file browsing
Definition: InputFile.h:99
void updatedCWD(QString new_cwd)
emitted when a new file is added (by drag'n'drop or 'Browse' button)
void showFileDialog()
Lets the user select the file via a file dialog.
QString cwd_
the current working directory according to the last file added
Definition: InputFile.h:101
const QString & getCWD() const
get the CWD (according to most recently added file)
~InputFile()
Destructor.
void setFilename(const QString &filename)
Sets the text in the line-edit.
void updatedFile(QString new_path)
emitted when a new file is added (by drag'n'drop or 'Browse' button)
void setCWD(const QString &cwd, bool force=false)
set the current working directory (for opening files). If the input is not empty, the cwd will not be...
void dragMoveEvent(QDragMoveEvent *pEvent) override
QString getFilename() const
Returns the filename currently set in the line-edit.
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:47
Definition: SwathWizardBase.h:63