]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormToc.C
The forms resize patch, and small updates
[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 // we can safely ignore the parameter because we can always update
82 void FormToc::update(bool)
83 {
84         Buffer::TocType type;
85
86         if ( params.getCmdName() == "tableofcontents" )
87                 type = Buffer::TOC_TOC;
88
89         else if ( params.getCmdName() == "listofalgorithms" )
90                 type = Buffer::TOC_LOA;
91
92         else if ( params.getCmdName() == "listoffigures" )
93                 type = Buffer::TOC_LOF;
94
95         else
96                 type = Buffer::TOC_LOT;
97         
98         fl_set_choice( dialog_->type, type+1 );
99
100         updateToc();
101 }
102
103
104 void FormToc::updateToc()
105 {
106         if (!lv_->view()->available()) {
107                 toclist.clear();
108                 fl_clear_browser( dialog_->browser );
109                 fl_add_browser_line( dialog_->browser,
110                                      _("*** No Document ***"));
111                 return;
112         }
113
114         vector<vector<Buffer::TocItem> > tmp =
115                 lv_->view()->buffer()->getTocList();
116         int type = fl_get_choice( dialog_->type ) - 1;
117
118         // Check if all elements are the same.
119         if (toclist.size() == tmp[type].size()) {
120                 unsigned int i = 0;
121                 for (; i < toclist.size(); ++i) {
122                         if (toclist[i] !=  tmp[type][i])
123                                 break;
124                 }
125                 if (i >= toclist.size()) return;
126         }
127
128         // List has changed. Update browser
129         toclist = tmp[type];
130
131         static Buffer * buffer = 0;
132         int topline = 0;
133         int line = 0;
134         if (buffer == lv_->view()->buffer()) {
135                 topline = fl_get_browser_topline( dialog_->browser );
136                 line = fl_get_browser( dialog_->browser );
137         } else
138                 buffer = lv_->view()->buffer();
139
140         fl_clear_browser( dialog_->browser );
141
142         for (vector<Buffer::TocItem>::const_iterator it = toclist.begin();
143              it != toclist.end(); ++it)
144                 fl_add_browser_line( dialog_->browser,
145                                      (string(4 * (*it).depth, ' ')
146                                       + (*it).str).c_str());
147
148         fl_set_browser_topline( dialog_->browser, topline );
149         fl_select_browser_line( dialog_->browser, line );
150 }
151
152  
153 void FormToc::apply()
154 {
155         if (!lv_->view()->available())
156                 return;
157
158         updateToc();
159
160         unsigned int const choice = fl_get_browser( dialog_->browser );
161         if (0 < choice && choice - 1 < toclist.size()) {
162                 string const tmp = tostr(toclist[choice-1].par->id());
163                 lv_->getLyXFunc()->Dispatch(LFUN_GOTO_PARAGRAPH, tmp);
164         }
165 }