]> git.lyx.org Git - features.git/blob - src/frontends/qt2/Qt2BC.C
437be4830851791b5b3a10f357a5f605f4b1d30f
[features.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 "debug.h"
18
19 #include <qbutton.h>
20 #include <qlineedit.h>
21
22 Qt2BC::Qt2BC(string const & cancel, string const & close)
23         : GuiBC<QButton, QWidget>(cancel, close)
24 {}
25
26
27 void Qt2BC::setButtonEnabled(QButton * obj, bool enabled)
28 {
29         lyxerr << "Qt2BC: setting button " 
30                 << obj << " to " << enabled << std::endl;
31  
32         obj->setEnabled(enabled);
33 }
34
35
36 void Qt2BC::setWidgetEnabled(QWidget * obj, bool enabled)
37 {
38         // yuck, rtti, but the user comes first
39         if (obj->inherits("QLineEdit")) {
40                 QLineEdit * le(static_cast<QLineEdit*>(obj)); 
41                 le->setReadOnly(enabled);
42         } else {
43                 obj->setEnabled(enabled);
44         }
45  
46         QWidget::FocusPolicy const p =
47                 (enabled) ? QWidget::StrongFocus : QWidget::NoFocus; 
48         obj->setFocusPolicy(p);
49 }
50
51
52 void Qt2BC::setButtonLabel(QButton * obj, string const & label)
53 {
54         obj->setText(label.c_str());
55 }