]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormToc.C
More pref work from Angus
[lyx.git] / src / frontends / xforms / FormToc.C
1 // -*- C++ -*-
2 /* This file is part of
3  * ====================================================== 
4  *
5  *           LyX, The Document Processor
6  *
7  *           Copyright 2000 The LyX Team.
8  *
9  * ======================================================
10  */
11
12 #include <config.h>
13 #include <vector>
14
15 #include FORMS_H_LOCATION
16
17 #ifdef __GNUG__
18 #pragma implementation
19 #endif
20
21
22 #include "Dialogs.h"
23 #include "FormToc.h"
24 #include "LyXView.h"
25 #include "form_toc.h"
26 #include "lyxtext.h"
27 #include "lyxfunc.h"
28 #include "support/lstrings.h"
29
30 // The current code uses the apply() for handling the Update button and the
31 // type-of-table selection and cancel() for the close button.  This is a little
32 // confusing to the button controller so I've made an IgnorantPolicy to cover
33 // this situation since the dialog doesn't care about buttons. ARRae 20001013
34 FormToc::FormToc(LyXView * lv, Dialogs * d)
35         : FormCommand(lv, d, _("Table of Contents"), new IgnorantPolicy),
36           dialog_(0)
37 {
38         // let the dialog be shown
39         // These are permanent connections so we won't bother
40         // storing a copy because we won't be disconnecting.
41         d->showTOC.connect(slot(this, &FormToc::showInset));
42         d->createTOC.connect(slot(this, &FormToc::createInset));
43 }
44
45
46 FormToc::~FormToc()
47 {
48         delete dialog_;
49 }
50
51
52 FL_FORM * FormToc::form() const
53 {
54         if ( dialog_ ) return dialog_->form;
55         return 0;
56 }
57
58
59 void FormToc::disconnect()
60 {
61         toclist.clear();
62         FormCommand::disconnect();
63 }
64
65
66 void FormToc::build()
67 {
68         dialog_ = build_toc();
69
70         fl_addto_choice(dialog_->type,
71                         _(" TOC | LOF | LOT | LOA "));
72
73         // Don't need to limit size of this dialog
74         // (but fixing min size is a GOOD thing).
75         // Workaround dumb xforms sizing bug
76         minw_ = form()->w;
77         minh_ = form()->h;
78 }
79
80
81 void FormToc::update()
82 {
83         Buffer::TocType type;
84
85         if ( params.getCmdName() == "tableofcontents" )
86                 type = Buffer::TOC_TOC;
87
88         else if ( params.getCmdName() == "listofalgorithms" )
89                 type = Buffer::TOC_LOA;
90
91         else if ( params.getCmdName() == "listoffigures" )
92                 type = Buffer::TOC_LOF;
93
94         else
95                 type = Buffer::TOC_LOT;
96         
97         fl_set_choice( dialog_->type, type+1 );
98
99         updateToc();
100 }
101
102
103 void FormToc::updateToc()
104 {
105         if (!lv_->view()->available()) {
106                 toclist.clear();
107                 fl_clear_browser( dialog_->browser );
108                 fl_add_browser_line( dialog_->browser,
109                                      _("*** No Document ***"));
110                 return;
111         }
112
113         vector<vector<Buffer::TocItem> > tmp =
114                 lv_->view()->buffer()->getTocList();
115         int type = fl_get_choice( dialog_->type ) - 1;
116
117         // Check if all elements are the same.
118         if (toclist.size() == tmp[type].size()) {
119                 unsigned int i = 0;
120                 for (; i < toclist.size(); ++i) {
121                         if (toclist[i] !=  tmp[type][i])
122                                 break;
123                 }
124                 if (i >= toclist.size()) return;
125         }
126
127         // List has changed. Update browser
128         toclist = tmp[type];
129
130         static Buffer * buffer = 0;
131         int topline = 0;
132         int line = 0;
133         if (buffer == lv_->view()->buffer()) {
134                 topline = fl_get_browser_topline( dialog_->browser );
135                 line = fl_get_browser( dialog_->browser );
136         } else
137                 buffer = lv_->view()->buffer();
138
139         fl_clear_browser( dialog_->browser );
140
141         for (vector<Buffer::TocItem>::const_iterator it = toclist.begin();
142              it != toclist.end(); ++it)
143                 fl_add_browser_line( dialog_->browser,
144                                      (string(4 * (*it).depth, ' ')
145                                       + (*it).str).c_str());
146
147         fl_set_browser_topline( dialog_->browser, topline );
148         fl_select_browser_line( dialog_->browser, line );
149 }
150
151  
152 void FormToc::apply()
153 {
154         if (!lv_->view()->available())
155                 return;
156
157         updateToc();
158
159         unsigned int const choice = fl_get_browser( dialog_->browser );
160         if (0 < choice && choice - 1 < toclist.size()) {
161                 string const tmp = tostr(toclist[choice-1].par->id());
162                 lv_->getLyXFunc()->Dispatch(LFUN_GOTO_PARAGRAPH, tmp);
163         }
164 }