SedSat3 1.1.6
Sediment Source Apportionment Tool - Advanced statistical methods for environmental pollution research
Loading...
Searching...
No Matches
formelementinformation.cpp
Go to the documentation of this file.
2#include "ui_formelementinformation.h"
4
6 QWidget(parent),
8{
9 ui->setupUi(this);
10 ui->Include_Exclude_All_checkBox->setText("Exclude all elements");
11 connect(ui->Include_Exclude_All_checkBox,SIGNAL(stateChanged(int)),this,SLOT(on_Include_Exclude_Change()));
12
13}
14
19
21{
22 return ui->tableView;
23}
24
25
27{
28 if (ui->Include_Exclude_All_checkBox->checkState()==Qt::CheckState::Checked)
29 {
30 ui->Include_Exclude_All_checkBox->setText("Include all elements");
31 static_cast<ElementTableModel*>(table()->model())->Data->IncludeExcludeAllElements(false);
32 }
33 else
34 {
35 ui->Include_Exclude_All_checkBox->setText("Exclude all elements");
36 static_cast<ElementTableModel*>(table()->model())->Data->IncludeExcludeAllElements(true);
37 }
38}
39
FormElementInformation(QWidget *parent=nullptr)
Ui::FormElementInformation * ui