Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
BornAgain
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mlz
BornAgain
Commits
a2424b55
Commit
a2424b55
authored
1 year ago
by
Wuttke, Joachim
Browse files
Options
Downloads
Patches
Plain Diff
connect...
parent
e62bc063
No related branches found
No related tags found
1 merge request
!1649
Generic legacy 1D tables can again be read, now using new modal format dialog (#601)
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Device/IO/ImportSettings.h
+3
-1
3 additions, 1 deletion
Device/IO/ImportSettings.h
GUI/View/Import/Legacy1dDialog.cpp
+28
-15
28 additions, 15 deletions
GUI/View/Import/Legacy1dDialog.cpp
GUI/View/Import/Legacy1dDialog.h
+3
-0
3 additions, 0 deletions
GUI/View/Import/Legacy1dDialog.h
with
34 additions
and
16 deletions
Device/IO/ImportSettings.h
+
3
−
1
View file @
a2424b55
...
@@ -17,6 +17,8 @@
...
@@ -17,6 +17,8 @@
#include
<string>
#include
<string>
enum
QUnit
{
over_nm
,
over_angstrom
};
//! This parameterization can be set interactively by GUI users.
//! This parameterization can be set interactively by GUI users.
//! Therefore, exceptionally, indices are counting from 1, not from 0.
//! Therefore, exceptionally, indices are counting from 1, not from 0.
...
@@ -29,7 +31,7 @@ struct ImportSettings1D {
...
@@ -29,7 +31,7 @@ struct ImportSettings1D {
size_t
col_sR
;
//!< column number of sigma R, or 0
size_t
col_sR
;
//!< column number of sigma R, or 0
size_t
col_dQ
;
//!< column number of delta Q, or 0
size_t
col_dQ
;
//!< column number of delta Q, or 0
size_t
col_lambda
;
//!< column number of wavelength, or 0
size_t
col_lambda
;
//!< column number of wavelength, or 0
QUnit
qUnit
{
over_nm
};
// bool operator!=(const ImportSettings& other) const;
// bool operator!=(const ImportSettings& other) const;
// QByteArray serialize() const;
// QByteArray serialize() const;
// void deserialize(const QByteArray& data);
// void deserialize(const QByteArray& data);
...
...
This diff is collapsed.
Click to expand it.
GUI/View/Import/Legacy1dDialog.cpp
+
28
−
15
View file @
a2424b55
...
@@ -13,7 +13,6 @@
...
@@ -13,7 +13,6 @@
// ************************************************************************************************
// ************************************************************************************************
#include
"GUI/View/Import/Legacy1dDialog.h"
#include
"GUI/View/Import/Legacy1dDialog.h"
#include
"Device/IO/ImportSettings.h"
#include
<QCheckBox>
#include
<QCheckBox>
#include
<QComboBox>
#include
<QComboBox>
#include
<QFormLayout>
#include
<QFormLayout>
...
@@ -26,6 +25,8 @@
...
@@ -26,6 +25,8 @@
#include
<QVBoxLayout>
#include
<QVBoxLayout>
#include
<QtGui>
#include
<QtGui>
ImportSettings1D
Legacy1dDialog
::
Msettings
=
legacy1D_3cols
;
Legacy1dDialog
::
Legacy1dDialog
()
Legacy1dDialog
::
Legacy1dDialog
()
:
m_allowFactors
(
false
)
:
m_allowFactors
(
false
)
{
{
...
@@ -57,34 +58,46 @@ Legacy1dDialog::Legacy1dDialog()
...
@@ -57,34 +58,46 @@ Legacy1dDialog::Legacy1dDialog()
auto
form211
=
new
QFormLayout
;
auto
form211
=
new
QFormLayout
;
w21
->
setLayout
(
form211
);
w21
->
setLayout
(
form211
);
m_separatorCombo
=
new
QComboBox
;
form211
->
addRow
(
"Separator:"
,
m_separatorCombo
);
m_separatorCombo
->
addItem
(
"TAB"
);
m_separatorCombo
->
addItem
(
"SPACE"
);
m_separatorCombo
->
addItem
(
","
);
m_separatorCombo
->
addItem
(
";"
);
m_linesToSkipEdit
=
new
QLineEdit
;
m_linesToSkipEdit
=
new
QLineEdit
;
m_linesToSkipEdit
->
setPlaceholderText
(
"Example: 1-5, 12"
);
form211
->
addRow
(
"Ignore line numbers:"
,
m_linesToSkipEdit
);
form211
->
addRow
(
"Ignore line numbers:"
,
m_linesToSkipEdit
);
if
(
Msettings
.
linesToSkip
.
empty
())
m_linesToSkipEdit
->
setPlaceholderText
(
"Example: 1-5, 12"
);
else
m_linesToSkipEdit
->
setText
(
QString
::
fromStdString
(
Msettings
.
linesToSkip
));
connect
(
m_linesToSkipEdit
,
&
QLineEdit
::
textEdited
,
[
&
p
=
Msettings
](
const
QString
&
text
)
{
p
.
linesToSkip
=
text
.
toStdString
();
});
m_headerPrefixEdit
=
new
QLineEdit
;
m_headerPrefixEdit
=
new
QLineEdit
;
m_headerPrefixEdit
->
setPlaceholderText
(
"#,//"
);
form211
->
addRow
(
"Ignore lines starting with:"
,
m_headerPrefixEdit
);
form211
->
addRow
(
"Ignore lines starting with:"
,
m_headerPrefixEdit
);
if
(
Msettings
.
headerPrefix
.
empty
())
m_headerPrefixEdit
->
setPlaceholderText
(
"#,//"
);
else
m_headerPrefixEdit
->
setText
(
QString
::
fromStdString
(
Msettings
.
headerPrefix
));
connect
(
m_headerPrefixEdit
,
&
QLineEdit
::
textEdited
,
[
&
p
=
Msettings
](
const
QString
&
text
)
{
p
.
headerPrefix
=
text
.
toStdString
();
});
m_separatorCombo
=
new
QComboBox
;
form211
->
addRow
(
"Separator:"
,
m_separatorCombo
);
m_separatorCombo
->
addItem
(
"SPACE"
);
m_separatorCombo
->
addItem
(
"TAB"
);
m_separatorCombo
->
addItem
(
","
);
m_separatorCombo
->
addItem
(
";"
);
m_separatorCombo
->
setCurrentText
(
QString
::
fromStdString
(
Msettings
.
separator
));
connect
(
m_separatorCombo
,
&
QComboBox
::
currentTextChanged
,
[
&
p
=
Msettings
](
const
QString
&
text
)
{
p
.
separator
=
text
.
toStdString
();
});
m_qUnitCombo
=
new
QComboBox
;
m_qUnitCombo
=
new
QComboBox
;
form211
->
addRow
(
"Q given in units of:"
,
m_qUnitCombo
);
form211
->
addRow
(
"Q given in units of:"
,
m_qUnitCombo
);
m_qUnitCombo
->
addItem
(
"1/nm"
);
m_qUnitCombo
->
addItem
(
"1/nm"
);
m_qUnitCombo
->
addItem
(
"1/Å"
);
m_qUnitCombo
->
addItem
(
"1/Å"
);
m_qUnitCombo
->
setCurrentIndex
((
int
)
Msettings
.
qUnit
);
connect
(
m_qUnitCombo
,
&
QComboBox
::
currentIndexChanged
,
[
&
p
=
Msettings
](
int
i
)
{
p
.
qUnit
=
(
QUnit
)
i
;
});
auto
buttonline
=
new
QHBoxLayout
;
auto
buttonline
=
new
QHBoxLayout
;
vbox
->
addLayout
(
buttonline
);
vbox
->
addLayout
(
buttonline
);
auto
cancelButton
=
new
QPushButton
(
"Cancel"
);
auto
okButton
=
new
QPushButton
(
"OK"
);
buttonline
->
addWidget
(
cancelButton
);
connect
(
cancelButton
,
&
QPushButton
::
clicked
,
this
,
&
Legacy1dDialog
::
reject
);
auto
okButton
=
new
QPushButton
(
"Save"
);
buttonline
->
addWidget
(
okButton
);
buttonline
->
addWidget
(
okButton
);
okButton
->
setDefault
(
true
);
okButton
->
setDefault
(
true
);
connect
(
okButton
,
&
QPushButton
::
clicked
,
this
,
&
Legacy1dDialog
::
accept
);
connect
(
okButton
,
&
QPushButton
::
clicked
,
this
,
&
Legacy1dDialog
::
accept
);
...
...
This diff is collapsed.
Click to expand it.
GUI/View/Import/Legacy1dDialog.h
+
3
−
0
View file @
a2424b55
...
@@ -15,6 +15,7 @@
...
@@ -15,6 +15,7 @@
#ifndef BORNAGAIN_GUI_VIEW_IMPORT_LEGACY1DDIALOG_H
#ifndef BORNAGAIN_GUI_VIEW_IMPORT_LEGACY1DDIALOG_H
#define BORNAGAIN_GUI_VIEW_IMPORT_LEGACY1DDIALOG_H
#define BORNAGAIN_GUI_VIEW_IMPORT_LEGACY1DDIALOG_H
#include
"Device/IO/ImportSettings.h"
#include
<QDialog>
#include
<QDialog>
//! Properties widget for the QREDataLoader
//! Properties widget for the QREDataLoader
...
@@ -56,6 +57,8 @@ private:
...
@@ -56,6 +57,8 @@ private:
static
const
int
columnColumn
=
3
;
static
const
int
columnColumn
=
3
;
static
const
int
factorLabelColumn
=
4
;
static
const
int
factorLabelColumn
=
4
;
static
const
int
factorColumn
=
factorLabelColumn
+
1
;
static
const
int
factorColumn
=
factorLabelColumn
+
1
;
static
ImportSettings1D
Msettings
;
};
};
#endif // BORNAGAIN_GUI_VIEW_IMPORT_LEGACY1DDIALOG_H
#endif // BORNAGAIN_GUI_VIEW_IMPORT_LEGACY1DDIALOG_H
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment