Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
CoMISo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
4
Issues
4
List
Boards
Labels
Service Desk
Milestones
Merge Requests
3
Merge Requests
3
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
CoMISo
CoMISo
Commits
6dffe269
Commit
6dffe269
authored
Aug 16, 2017
by
Max Lyon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
restore file that somehow got lost
parent
295188fe
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
113 additions
and
0 deletions
+113
-0
QtWidgets/MISolverDialogUI.hh
QtWidgets/MISolverDialogUI.hh
+113
-0
No files found.
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
Markdown
is supported
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