]> git.lyx.org Git - lyx.git/blob - src/frontends/xforms/FormIndex.C
Small fix from Angus
[lyx.git] / src / frontends / xforms / FormIndex.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
14 #include FORMS_H_LOCATION
15
16 #ifdef __GNUG__
17 #pragma implementation
18 #endif
19
20
21 #include "Dialogs.h"
22 #include "FormIndex.h"
23 #include "LyXView.h"
24 #include "buffer.h"
25 #include "form_index.h"
26 #include "lyxfunc.h"
27
28 FormIndex::FormIndex(LyXView * lv, Dialogs * d)
29         : FormCommand(lv, d, _("Index")), minh(0), minw(0), dialog_(0)
30 {
31         // let the dialog be shown
32         // These are permanent connections so we won't bother
33         // storing a copy because we won't be disconnecting.
34         d->showIndex.connect(slot(this, &FormIndex::showInset));
35         d->createIndex.connect(slot(this, &FormIndex::createInset));
36 }
37
38
39 FormIndex::~FormIndex()
40 {
41         delete dialog_;
42 }
43
44
45 FL_FORM * FormIndex::form() const
46 {
47         if ( dialog_ ) return dialog_->form;
48         return 0;
49 }
50
51
52 void FormIndex::build()
53 {
54         dialog_ = build_index();
55
56 #ifdef WITH_WARNINGS
57 #warning use the buttoncontroller
58 #endif
59         // XFORMS bug workaround
60         // Define the min/max dimensions. Actually applied in update()
61         minw = form()->w; minh = form()->h;
62 }
63
64
65 void FormIndex::update(bool switched)
66 {
67         if (switched) {
68                 hide();
69                 return;
70         }
71
72         fl_set_form_minsize(form(), minw, minh);
73         fl_set_form_maxsize(form(), 2*minw, minh);
74
75         fl_set_input(dialog_->key, params.getContents().c_str());
76
77         if ( lv_->buffer()->isReadonly() ) {
78                 fl_deactivate_object( dialog_->key );
79                 fl_deactivate_object( dialog_->ok );
80                 fl_set_object_lcol( dialog_->ok, FL_INACTIVE );
81         } else {
82                 fl_activate_object( dialog_->key );
83                 fl_activate_object( dialog_->ok );
84                 fl_set_object_lcol( dialog_->ok, FL_BLACK );
85         }
86 }
87
88
89 void FormIndex::apply()
90 {
91         if (lv_->buffer()->isReadonly()) return;
92
93         params.setContents(fl_get_input(dialog_->key));
94
95         if (inset_ != 0) {
96                 // Only update if contents have changed
97                 if (params != inset_->params()) {
98                         inset_->setParams(params);
99                         lv_->view()->updateInset(inset_, true);
100                 }
101         } else {
102                 lv_->getLyXFunc()->Dispatch(LFUN_INDEX_INSERT,
103                                             params.getAsString());
104         }
105 }