OpenMS  2.6.0
INIFileEditorWindow.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-2020.
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: Timo Sachsenberg$
32 // $Authors: Marc Sturm $
33 // --------------------------------------------------------------------------
34 
35 #pragma once
36 
37 // OpenMS_GUI config
38 #include <OpenMS/VISUAL/OpenMS_GUIConfig.h>
39 
42 
43 #include <QtWidgets/QMdiArea>
44 #include <QtWidgets/QMainWindow>
45 
46 class QToolBar;
47 class QAction;
48 class QString;
49 class QFileDialog;
50 
51 namespace OpenMS
52 {
56  class OPENMS_GUI_DLLAPI INIFileEditorWindow :
57  public QMainWindow
58  {
59  Q_OBJECT
60 
61 public:
63  INIFileEditorWindow(QWidget * parent = nullptr);
65  void closeEvent(QCloseEvent * event) override;
66 
67 public slots:
69  bool openFile(const String & filename = "");
71  bool saveFile();
73  bool saveFileAs();
75  void updateWindowTitle(bool);
76 
77 private:
83  QString filename_;
86  };
87 }
88 
LogStream.h
OpenMS::INIFileEditorWindow::updateWindowTitle
void updateWindowTitle(bool)
if the user changes data in ParamEditor the title shows a '*'
Definition: INIFileEditorWindow.cpp:187
OpenMS::INIFileEditorWindow::param_
Param param_
Param object for storing data.
Definition: INIFileEditorWindow.h:81
OpenMS::INIFileEditorWindow::closeEvent
void closeEvent(QCloseEvent *event) override
when user closes window a message box asks the user if he wants to save
Definition: INIFileEditorWindow.cpp:156
OpenMS::File::basename
static String basename(const String &file)
Returns the basename of the file (without the path).
OpenMS::String
A more convenient string class.
Definition: String.h:59
ParamXMLFile.h
OpenMS::INIFileEditorWindow::saveFile
bool saveFile()
saves the users changes in a xml-file if the Param object is valid
Definition: INIFileEditorWindow.cpp:123
OpenMS::QApplicationTOPP
Extension to the QApplication for running TOPPs GUI tools.
Definition: QApplicationTOPP.h:50
OpenMS::ParamXMLFile
The file pendant of the Param class used to load and store the param datastructure as paramXML.
Definition: ParamXMLFile.h:49
OpenMS::Param::clear
void clear()
Deletes all entries.
OpenMS::Param::getValue
const DataValue & getValue(const String &key) const
Returns a value of a parameter.
Map.h
QWidget
ParamEditor.h
OpenMS::Param::ParamIterator
Forward const iterator for the Param class.
Definition: Param.h:197
OpenMS
Main OpenMS namespace.
Definition: FeatureDeconvolution.h:46
Exception.h
INIFileEditorWindow.h
OpenMS::Param::exists
bool exists(const String &key) const
Tests if a parameter is set (expecting its fully qualified name, e.g., TextExporter:1:proteins_only)
OpenMS::Param::parseCommandLine
void parseCommandLine(const int argc, const char **argv, const String &prefix="")
Parses command line arguments.
OpenMS::ParamEditor::store
void store()
store edited data in Param object
OpenMS::INIFileEditorWindow::current_path_
String current_path_
path used as next default location of the load/store dialogs
Definition: INIFileEditorWindow.h:85
OpenMS::ParamEditor::isModified
bool isModified() const
Indicates if the data changed since last save.
OpenMS::INIFileEditorWindow::openFile
bool openFile(const String &filename="")
loads the xml-file into a Param object and loads Param into ParamEditor
Definition: INIFileEditorWindow.cpp:86
Param.h
OpenMS::INIFileEditorWindow::saveFileAs
bool saveFileAs()
like saveFile but with a file dialog to choose a filename
Definition: INIFileEditorWindow.cpp:138
OpenMS::Exception::BaseException
Exception base class.
Definition: Exception.h:89
OpenMS::String::toQString
QString toQString() const
Conversion to Qt QString.
OpenMS::File::path
static String path(const String &file)
Returns the path of the file (without the file name).
OpenMS::INIFileEditorWindow::filename_
QString filename_
filename of xml-file to store the Param object
Definition: INIFileEditorWindow.h:83
QMainWindow
main
int main(int argc, const char **argv)
Definition: INIFileEditor.cpp:73
OpenMS::Param::end
ParamIterator end() const
End iterator for the internal tree.
OPENMS_LOG_ERROR
#define OPENMS_LOG_ERROR
Macro to be used if non-fatal error are reported (processing continues)
Definition: LogStream.h:455
OpenMS::Param::begin
ParamIterator begin() const
Begin iterator for the internal tree.
OpenMS::INIFileEditorWindow::editor_
ParamEditor * editor_
ParamEditor object for visualization.
Definition: INIFileEditorWindow.h:79
ParamEditor
OpenMS::ParamEditor ParamEditor
Definition: SwathTabWidget.h:153
OpenMS::File::readable
static bool readable(const String &file)
Return true if the file exists and is readable.
OpenMS::ParamEditor
A GUI for editing or viewing a Param object.
Definition: ParamEditor.h:176
OpenMS::Param
Management and storage of parameters / INI files.
Definition: Param.h:73
OpenMS::ParamXMLFile::store
void store(const String &filename, const Param &param) const
Write XML file.
OpenMS::Map
Map class based on the STL map (containing several convenience functions)
Definition: Map.h:50
QApplicationTOPP.h
OpenMS::ParamXMLFile::load
void load(const String &filename, Param &param)
Read XML file.
OpenMS::INIFileEditorWindow
shows the ParamEditor widget in a QMainWindow with a toolbar
Definition: INIFileEditorWindow.h:56
OpenMS::ParamEditor::load
void load(Param &param)
load method for Param object
File.h