1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
/* This file is part of the KDE libraries
Copyright (C) 1999 Ilya Baran (ibaran@mit.edu)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library 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
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301, USA.
*/
#include "MatrixDialog.h"
#include <tqpushbutton.h>
#include <tqspinbox.h>
#include <tqlabel.h>
#include <tqcheckbox.h>
#include <tqlayout.h>
#include <tdelocale.h>
KFORMULA_NAMESPACE_BEGIN
const int DEFAULT_SIZE = 3;
const int MAX_SIZE = 200;
MatrixDialog::MatrixDialog( TQWidget *parent, int _width, int _height )
: KDialogBase(parent, "Matrix Dialog", true,i18n("Add Matrix"),Ok|Cancel)
{
w = _width;
h = _height;
TQLabel *rows, *columns;
TQWidget *page = new TQWidget( this );
setMainWidget(page);
TQGridLayout *grid = new TQGridLayout(page, 4, 2, 10);
rows = new TQLabel(i18n("Rows:"), page);
columns = new TQLabel(i18n("Columns:"), page);
grid->addWidget(rows, 0, 0);
grid->addWidget(columns, 0, 1);
TQSpinBox *width, *height;
height = new TQSpinBox(1, MAX_SIZE, 1, page);
grid->addWidget(height, 1, 0);
height->setValue(h);
connect(height, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(setHeight(int)));
width = new TQSpinBox(1, MAX_SIZE, 1, page);
grid->addWidget(width, 1, 1);
width->setValue(w);
connect(width, TQT_SIGNAL(valueChanged(int)), TQT_SLOT(setWidth(int)));
height->setFocus();
}
void MatrixDialog::setHeight(int value)
{
h = value;
}
void MatrixDialog::setWidth(int value)
{
w = value;
}
KFORMULA_NAMESPACE_END
using namespace KFormula;
#include "MatrixDialog.moc"
|