Skip to content

Commit

Permalink
Refs #6473. New class for the dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
arturbekasov committed Nov 18, 2013
1 parent 80ed3a6 commit 4d2ba84
Show file tree
Hide file tree
Showing 3 changed files with 80 additions and 6 deletions.
14 changes: 8 additions & 6 deletions Code/Mantid/MantidQt/MantidWidgets/CMakeLists.txt
@@ -1,22 +1,23 @@
set ( SRC_FILES
src/AlgorithmSelectorWidget.cpp
src/CatalogHelper.cpp
src/CatalogSearch.cpp
src/CheckboxHeader.cpp
src/DataSelector.cpp
src/DiagResults.cpp
src/FindReplaceDialog.cpp
src/FindDialog.cpp
src/FindReplaceDialog.cpp
src/FitPropertyBrowser.cpp
src/FunctionBrowser.cpp
src/CatalogSearch.cpp
src/CatalogHelper.cpp
src/InstrumentSelector.cpp
src/MessageDisplay.cpp
src/MWDiag.cpp
src/MWRunFiles.cpp
src/MessageDisplay.cpp
src/MultifitSetupDialog.cpp
src/MuonFitPropertyBrowser.cpp
src/MuonSequentialFitDialog.cpp
src/ProcessingAlgoWidget.cpp
src/PropertyHandler.cpp
src/ProcessingAlgoWidget.cpp
src/RangeSelector.cpp
src/RenameParDialog.cpp
src/SafeQwtPlot.cpp
Expand Down Expand Up @@ -46,6 +47,7 @@ set ( MOC_FILES
inc/MantidQtMantidWidgets/MessageDisplay.h
inc/MantidQtMantidWidgets/MultifitSetupDialog.h
inc/MantidQtMantidWidgets/MuonFitPropertyBrowser.h
inc/MantidQtMantidWidgets/MuonSequentialFitDialog.h
inc/MantidQtMantidWidgets/MWDiag.h
inc/MantidQtMantidWidgets/MWRunFiles.h
inc/MantidQtMantidWidgets/PropertyHandler.h
Expand All @@ -65,7 +67,7 @@ set ( MOC_FILES

# Add the include files are NOT already in MOC_FILES
set ( INC_FILES
${MOC_FILES}
${MOC_FILES}
inc/MantidQtMantidWidgets/WidgetDllOption.h
)

Expand Down
@@ -0,0 +1,50 @@
#ifndef MANTID_MANTIDWIDGETS_MUONSEQUENTIALFITDIALOG_H_
#define MANTID_MANTIDWIDGETS_MUONSEQUENTIALFITDIALOG_H_

#include "MantidKernel/System.h"

#include <QDialog>

namespace Mantid
{
namespace MantidWidgets
{

/** MuonSequentialFitDialog : TODO: DESCRIPTION
Copyright &copy; 2013 ISIS Rutherford Appleton Laboratory & NScD Oak Ridge National Laboratory
This file is part of Mantid.
Mantid is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
Mantid is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
File change history is stored at: <https://github.com/mantidproject/mantid>
Code Documentation is available at: <http://doxygen.mantidproject.org>
*/
class DLLExport MuonSequentialFitDialog : public QDialog
{

Q_OBJECT

public:
MuonSequentialFitDialog(QWidget* parent);
virtual ~MuonSequentialFitDialog();

};


} // namespace MantidWidgets
} // namespace Mantid

#endif /* MANTID_MANTIDWIDGETS_MUONSEQUENTIALFITDIALOG_H_ */
22 changes: 22 additions & 0 deletions Code/Mantid/MantidQt/MantidWidgets/src/MuonSequentialFitDialog.cpp
@@ -0,0 +1,22 @@
#include "MantidQtMantidWidgets/MuonSequentialFitDialog.h"

namespace Mantid
{
namespace MantidWidgets
{

/**
* Constructor
*/
MuonSequentialFitDialog::MuonSequentialFitDialog(QWidget* parent) :
QDialog(parent)
{}

/**
* Destructor
*/
MuonSequentialFitDialog::~MuonSequentialFitDialog()
{}

} // namespace MantidWidgets
} // namespace Mantid

0 comments on commit 4d2ba84

Please sign in to comment.