]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/Qt2BC.C
ws change
[lyx.git] / src / frontends / qt2 / Qt2BC.C
1 /**
2  * \file Qt2BC.C
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author Allan Rae <rae@lyx.org>
7  * \author Angus Leeming <a.leeming@ic.ac.uk>
8  */
9
10 #include <config.h>
11
12 #ifdef __GNUG__
13 #pragma implementation
14 #endif
15
16 #include "Qt2BC.h"
17 #include "ButtonController.tmpl"
18 #include "debug.h"
19
20 #include <qbutton.h>
21 #include <qlineedit.h>
22
23 Qt2BC::Qt2BC(string const & cancel, string const & close)
24         : GuiBC<QButton, QWidget>(cancel, close)
25 {}
26
27
28 void Qt2BC::setButtonEnabled(QButton * obj, bool enabled)
29 {
30         obj->setEnabled(enabled);
31 }
32
33
34 void Qt2BC::setWidgetEnabled(QWidget * obj, bool enabled)
35 {
36         // yuck, rtti, but the user comes first
37         if (obj->inherits("QLineEdit")) {
38                 QLineEdit * le(static_cast<QLineEdit*>(obj));
39                 le->setReadOnly(!enabled);
40         } else {
41                 obj->setEnabled(enabled);
42         }
43
44         QWidget::FocusPolicy const p =
45                 (enabled) ? QWidget::StrongFocus : QWidget::NoFocus;
46         obj->setFocusPolicy(p);
47 }
48
49
50 void Qt2BC::setButtonLabel(QButton * obj, string const & label)
51 {
52         obj->setText(label.c_str());
53 }