]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QERT.C
dont use pragma impementation and interface anymore
[lyx.git] / src / frontends / qt2 / QERT.C
1 /**
2  * \file QERT.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
7  *
8  * Full author contact details are available in file CREDITS
9  */
10
11 #include <config.h>
12
13
14 #include "ControlERT.h"
15 #include "qt_helpers.h"
16
17 #include <qradiobutton.h>
18 #include <qpushbutton.h>
19
20 #include "QERTDialog.h"
21 #include "QERT.h"
22 #include "Qt2BC.h"
23
24 typedef Qt2CB<ControlERT, Qt2DB<QERTDialog> > base_class;
25
26
27 QERT::QERT()
28         : base_class(qt_("LaTeX ERT"))
29 {
30 }
31
32
33 void QERT::build_dialog()
34 {
35         dialog_.reset(new QERTDialog(this));
36
37         bc().setOK(dialog_->okPB);
38         bc().setCancel(dialog_->closePB);
39 }
40
41
42 void QERT::apply()
43 {
44         ERTParams & params = controller().params();
45
46         if (dialog_->openRB->isChecked())
47                 params.status = InsetERT::Open;
48         else if (dialog_->inlineRB->isChecked())
49                 params.status = InsetERT::Inlined;
50         else
51                 params.status = InsetERT::Collapsed;
52 }
53
54
55 void QERT::update_contents()
56 {
57         QRadioButton * rb = 0;
58
59         switch (controller().params().status) {
60                 case InsetERT::Open: rb = dialog_->openRB; break;
61                 case InsetERT::Inlined: rb = dialog_->inlineRB; break;
62                 case InsetERT::Collapsed: rb = dialog_->collapsedRB; break;
63         }
64
65         rb->setChecked(true);
66 }