QtiPlot  0.9.8.2
MatrixResamplingDialog.h
Go to the documentation of this file.
1 /***************************************************************************
2  File : MatrixResamplingDialog.h
3  Project : QtiPlot
4  --------------------------------------------------------------------
5  Copyright : (C) 2010 by Ion Vasilief
6  Email (use @ for *) : ion_vasilief*yahoo.fr
7  Description : Matrix resampling dialog
8 
9  ***************************************************************************/
10 
11 /***************************************************************************
12  * *
13  * This program is free software; you can redistribute it and/or modify *
14  * it under the terms of the GNU General Public License as published by *
15  * the Free Software Foundation; either version 2 of the License, or *
16  * (at your option) any later version. *
17  * *
18  * This program is distributed in the hope that it will be useful, *
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of *
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
21  * GNU General Public License for more details. *
22  * *
23  * You should have received a copy of the GNU General Public License *
24  * along with this program; if not, write to the Free Software *
25  * Foundation, Inc., 51 Franklin Street, Fifth Floor, *
26  * Boston, MA 02110-1301 USA *
27  * *
28  ***************************************************************************/
29 #ifndef MATRIXRESAMPLINGDIALOG_H
30 #define MATRIXRESAMPLINGDIALOG_H
31 
32 #include <QDialog>
33 
34 class Matrix;
35 class QAbstractButton;
36 class QDialogButtonBox;
37 class QSpinBox;
38 class QComboBox;
39 class QLineEdit;
40 
42 class MatrixResamplingDialog : public QDialog
43 {
44  Q_OBJECT
45 
46 public:
48 
52  MatrixResamplingDialog(Matrix *m, bool shrink = false, QWidget* parent = 0, Qt::WFlags fl = 0 );
53 
54 private slots:
56  void apply();
57  void buttonClicked(QAbstractButton *);
58  void updateDimensionsInfo();
59 
60 private:
61  void calculateDimensions(int *newRows, int *newColumns);
63 
64  QDialogButtonBox *buttonBox;
65  QSpinBox* boxColumns, *boxRows;
66  QComboBox *boxMethod, *boxAction;
67  QLineEdit *dimensionsLabel;
68 };
69 
70 #endif // MATRIXRESAMPLINGDIALOG_H
QSpinBox * boxColumns
Definition: MatrixResamplingDialog.h:65
QComboBox * boxAction
Definition: MatrixResamplingDialog.h:66
QLineEdit * dimensionsLabel
Definition: MatrixResamplingDialog.h:67
QSpinBox * boxRows
Definition: MatrixResamplingDialog.h:65
void apply()
Apply changes.
Definition: MatrixResamplingDialog.cpp:145
QDialogButtonBox * buttonBox
Definition: MatrixResamplingDialog.h:64
void updateDimensionsInfo()
Definition: MatrixResamplingDialog.cpp:131
MatrixResamplingDialog(Matrix *m, bool shrink=false, QWidget *parent=0, Qt::WFlags fl=0)
Constructor.
Definition: MatrixResamplingDialog.cpp:40
Matrix worksheet class.
Definition: Matrix.h:57
Matrix properties dialog.
Definition: MatrixResamplingDialog.h:42
void buttonClicked(QAbstractButton *)
Definition: MatrixResamplingDialog.cpp:155
void calculateDimensions(int *newRows, int *newColumns)
Definition: MatrixResamplingDialog.cpp:101
QComboBox * boxMethod
Definition: MatrixResamplingDialog.h:66
Matrix * d_matrix
Definition: MatrixResamplingDialog.h:62