]> git.lyx.org Git - lyx.git/blob - src/frontends/qt2/QTocDialog.C
dont use pragma impementation and interface anymore
[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
14 #include "QToc.h"
15 #include "QTocDialog.h"
16 #include "qt_helpers.h"
17
18 #include <qlistview.h>
19 #include <qpushbutton.h>
20
21
22 QTocDialog::QTocDialog(QToc * form)
23         : QTocDialogBase(0, 0, false, 0),
24         form_(form)
25 {
26         // disable sorting
27         tocLV->setSorting(-1);
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 }