Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
CoMISo
CoMISo
Commits
6dffe269
Commit
6dffe269
authored
Aug 16, 2017
by
Max Lyon
Browse files
restore file that somehow got lost
parent
295188fe
Changes
1
Show whitespace changes
Inline
Side-by-side
QtWidgets/MISolverDialogUI.hh
0 → 100644
View file @
6dffe269
/*===========================================================================*\
* *
* CoMISo *
* Copyright (C) 2008-2009 by Computer Graphics Group, RWTH Aachen *
* www.rwth-graphics.de *
* *
*---------------------------------------------------------------------------*
* This file is part of CoMISo. *
* *
* CoMISo 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. *
* *
* CoMISo 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 CoMISo. If not, see <http://www.gnu.org/licenses/>. *
* *
\*===========================================================================*/
//=============================================================================
//
// CLASS MiSolverDialog
//
//=============================================================================
#ifndef COMISO_MISOLVERDIALOG_HH
#define COMISO_MISOLVERDIALOG_HH
#include
<QObject>
#include
<CoMISo/Config/config.hh>
//== BUILD-TIME DEPENDENCIES =================================================================
#if COMISO_QT_AVAILABLE
//============================================================================================
//== INCLUDES =================================================================
#include
"ui_QtMISolverDialogBaseUI.hh"
// ACGMake users have to include
// #include "QtMISolverDialogBase.hh"
#include
<Solver/MISolver.hh>
//== FORWARDDECLARATIONS ======================================================
//== NAMESPACES ===============================================================
namespace
COMISO
{
//== CLASS DEFINITION =========================================================
/** \class MISolverDialog MISolverDialog.hh <COMISO/.../MISolverDialog.hh>
Brief Description.
A more elaborate description follows.
*/
class
MISolverDialog
:
public
QDialog
,
public
Ui
::
QtMISolverDialogBaseUI
{
Q_OBJECT
public:
/// Default constructor
MISolverDialog
(
MISolver
&
_misolver
,
QWidget
*
_parent
=
0
)
:
QDialog
(
_parent
),
Ui
::
QtMISolverDialogBaseUI
(),
misolver_
(
_misolver
)
{
setupUi
(
this
);
get_parameters
();
connect
(
okPB
,
SIGNAL
(
clicked
()
),
this
,
SLOT
(
slotOkButton
()
)
);
connect
(
cancelPB
,
SIGNAL
(
clicked
()
),
this
,
SLOT
(
slotCancelButton
()
)
);
}
/// Destructor
~
MISolverDialog
()
{}
void
get_parameters
();
void
set_parameters
();
public
slots
:
virtual
void
slotOkButton
();
virtual
void
slotCancelButton
();
private:
MISolver
&
misolver_
;
};
//=============================================================================
}
// namespace COMISO
//=============================================================================
#endif // COMISO_MISOLVERDIALOG_HH defined
//=============================================================================
#endif
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment