]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiMathMatrix.cpp
merge ButtonController and its view (Qt2BC in this case)
[lyx.git] / src / frontends / qt4 / GuiMathMatrix.cpp
1 /**
2  * \file GuiMathMatrix.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Jürgen Spitzmüller
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GuiMathMatrix.h"
14
15 #include "EmptyTable.h"
16 #include "qt_helpers.h"
17 #include "gettext.h"
18
19 #include <sstream>
20
21 #include <QLineEdit>
22 #include <QPushButton>
23 #include <QSpinBox>
24
25 using std::ostringstream;
26 using std::string;
27
28 namespace lyx {
29 namespace frontend {
30
31 GuiMathMatrix::GuiMathMatrix(GuiDialog & parent)
32         : GuiView<GuiMathMatrixDialog>(parent, _("Math Matrix"))
33 {}
34
35
36 void GuiMathMatrix::build_dialog()
37 {
38         dialog_.reset(new GuiMathMatrixDialog(this));
39 }
40
41
42 GuiMathMatrixDialog::GuiMathMatrixDialog(GuiMathMatrix * form)
43         : form_(form)
44 {
45         setupUi(this);
46
47         setWindowTitle(qt_("LyX: Insert Matrix"));
48
49         table->setMinimumSize(100, 100);
50         rowsSB->setValue(5);
51         columnsSB->setValue(5);
52         valignCO->setCurrentIndex(1);
53
54         connect(okPB, SIGNAL(clicked()), this, SLOT(slotOK()));
55         connect(closePB, SIGNAL(clicked()), this, SLOT(slotClose()));
56
57         connect(table, SIGNAL(rowsChanged(int)),
58                 rowsSB, SLOT(setValue(int)));
59         connect(table, SIGNAL(colsChanged(int)),
60                 columnsSB, SLOT(setValue(int)));
61         connect(rowsSB, SIGNAL(valueChanged(int)),
62                 table, SLOT(setNumberRows(int)));
63         connect(columnsSB, SIGNAL(valueChanged(int)),
64                 table, SLOT(setNumberColumns(int)));
65         connect(rowsSB, SIGNAL(valueChanged(int)),
66                 this, SLOT(rowsChanged(int)));
67         connect(columnsSB, SIGNAL(valueChanged(int)),
68                 this, SLOT(columnsChanged(int)) );
69         connect(valignCO, SIGNAL(highlighted(const QString&)),
70                 this, SLOT(change_adaptor()));
71         connect(halignED, SIGNAL(textChanged(const QString&)),
72                 this, SLOT(change_adaptor()));
73 }
74
75
76 void GuiMathMatrixDialog::columnsChanged(int)
77 {
78         char h_align_str[80] = "c";
79         int const nx = int(columnsSB->value());
80         for (int i = 0; i < nx; ++i)
81                 h_align_str[i] = 'c';
82
83         h_align_str[nx] = '\0';
84         halignED->setText(h_align_str);
85 }
86
87
88 void GuiMathMatrixDialog::rowsChanged(int)
89 {
90 }
91
92
93 void GuiMathMatrixDialog::change_adaptor()
94 {
95         // FIXME: We need a filter for the halign input
96 }
97
98
99 void GuiMathMatrixDialog::slotOK()
100 {
101         char v_align_c[] = "tcb";
102         char const c = v_align_c[valignCO->currentIndex()];
103         string const sh = fromqstr(halignED->text());
104         int const nx = int(columnsSB->value());
105         int const ny = int(rowsSB->value());
106
107         ostringstream os;
108         os << nx << ' ' << ny << ' ' << c << ' ' << sh;
109         form_->controller().dispatchMatrix(os.str().c_str());
110
111         // close the dialog
112         close();
113 }
114
115
116 void GuiMathMatrixDialog::slotClose()
117 {
118         close();
119 }
120
121 } // namespace frontend
122 } // namespace lyx
123
124 #include "GuiMathMatrix_moc.cpp"