]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QCharacterDialog.C
Lots and lots of little trivial 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 #ifdef __GNUG__
14 #pragma implementation
15 #endif
16
17 #include "QCharacterDialog.h"
18
19 #include <qcombobox.h>
20 #include <qcheckbox.h>
21 #include <qpushbutton.h>
22 #include <qgroupbox.h>
23
24 QCharacterDialog::QCharacterDialog(QCharacter * form)
25         : QCharacterDialogBase(0, 0, false, 0),
26         form_(form)
27 {
28         connect(okPB, SIGNAL(clicked()),
29                 form_, SLOT(slotOK()));
30         connect(applyPB, SIGNAL(clicked()),
31                 form_, SLOT(slotApply()));
32         connect(closePB, SIGNAL(clicked()),
33                 form_, SLOT(slotClose()));
34 }
35
36
37 void QCharacterDialog::change_adaptor()
38 {
39         form_->changed();
40
41         if (!autoapplyCB->isChecked())
42                 return;
43
44         // to be really good here, we should set the combos to the values of
45         // the current text, and make it appear as "no change" if the values
46         // stay the same between applys. Might be difficult though wrt to a
47         // moved cursor - jbl
48         form_->slotApply();
49         familyCO->setCurrentItem(0);
50         seriesCO->setCurrentItem(0);
51         sizeCO->setCurrentItem(0);
52         shapeCO->setCurrentItem(0);
53         miscCO->setCurrentItem(0);
54         langCO->setCurrentItem(0);
55         colorCO->setCurrentItem(0);
56 }
57
58
59 void QCharacterDialog::closeEvent(QCloseEvent * e)
60 {
61         form_->slotWMHide();
62         e->accept();
63 }