]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTocDialog.C
remove preamble dialog from the qt frontend
[lyx.git] / src / frontends / qt2 / QTocDialog.C
1 /**
2  * \file QTocDialog.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author John Levon
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 "QToc.h"
18 #include "QTocDialog.h"
19 #include "qt_helpers.h"
20
21 #include <qlistview.h>
22 #include <qpushbutton.h>
23
24
25 QTocDialog::QTocDialog(QToc * form)
26         : QTocDialogBase(0, 0, false, 0),
27         form_(form)
28 {
29         connect(closePB, SIGNAL(clicked()),
30                 form, SLOT(slotClose()));
31 }
32
33
34 QTocDialog::~QTocDialog()
35 {
36 }
37
38
39 void QTocDialog::activate_adaptor(int)
40 {
41         form_->updateToc(form_->depth_);
42 }
43
44
45 void QTocDialog::depth_adaptor(int depth)
46 {
47         form_->set_depth(depth);
48 }
49
50
51 void QTocDialog::select_adaptor(QListViewItem * item)
52 {
53         form_->select(fromqstr(item->text(0)));
54 }
55
56
57 void QTocDialog::update_adaptor()
58 {
59         form_->update();
60 }
61
62
63 void QTocDialog::closeEvent(QCloseEvent * e)
64 {
65         form_->slotWMHide();
66         e->accept();
67 }