]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QCharacterDialog.C
Joao latest bits
[lyx.git] / src / frontends / qt2 / QCharacterDialog.C
1 /**
2  * \file QCharacterDialog.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Edwin Leuven
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13
14 #include "QCharacterDialog.h"
15
16 #include <qcheckbox.h>
17 #include <qcombobox.h>
18 #include <qpushbutton.h>
19
20
21 QCharacterDialog::QCharacterDialog(QCharacter * form)
22         : QCharacterDialogBase(0, 0, false, 0),
23         form_(form)
24 {
25         connect(okPB, SIGNAL(clicked()),
26                 form_, SLOT(slotOK()));
27         connect(applyPB, SIGNAL(clicked()),
28                 form_, SLOT(slotApply()));
29         connect(closePB, SIGNAL(clicked()),
30                 form_, SLOT(slotClose()));
31 }
32
33
34 void QCharacterDialog::change_adaptor()
35 {
36         form_->changed();
37
38         if (!autoapplyCB->isChecked())
39                 return;
40
41         // to be really good here, we should set the combos to the values of
42         // the current text, and make it appear as "no change" if the values
43         // stay the same between applys. Might be difficult though wrt to a
44         // moved cursor - jbl
45         form_->slotApply();
46         familyCO->setCurrentItem(0);
47         seriesCO->setCurrentItem(0);
48         sizeCO->setCurrentItem(0);
49         shapeCO->setCurrentItem(0);
50         miscCO->setCurrentItem(0);
51         langCO->setCurrentItem(0);
52         colorCO->setCurrentItem(0);
53 }
54
55
56 void QCharacterDialog::closeEvent(QCloseEvent * e)
57 {
58         form_->slotWMHide();
59         e->accept();
60 }