]> git.lyx.org Git - lyx.git/blob - src/frontends/kde/vclogdlg.C
implement getLabelList
[lyx.git] / src / frontends / kde / vclogdlg.C
1 /**
2  * \file vclogdlg.C
3  * Copyright 2001 the LyX Team
4  * Read the file COPYING
5  *
6  * \author John Levon
7  */
8
9 #include <config.h>
10 #include <gettext.h>
11
12 #include "FormVCLog.h"
13 #include "ControlVCLog.h"
14
15 #include "vclogdlg.h"
16
17 VCLogDialog::VCLogDialog (FormVCLog * f, QWidget * parent, char const  * name)
18         : LogDialogData(parent, name), form_(f)
19 {
20         line_viewer->setMinimumWidth(50);
21         line_viewer->setMinimumHeight(50);
22 }
23
24
25 void VCLogDialog::setLogText(string const & text)
26 {
27         setUpdatesEnabled(false);
28         line_viewer->setText(text.c_str());
29         setUpdatesEnabled(true);
30         update();
31 }
32
33 void VCLogDialog::closePressed()
34 {
35         form_->CancelButton();
36 }
37
38
39 void VCLogDialog::updatePressed()
40 {
41         // FIXME: hmm 
42         //form_->controller().setParams();
43 }