]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/GuiInfo.cpp
Remove unused UI file.
[lyx.git] / src / frontends / qt4 / GuiInfo.cpp
1 /**
2  * \file GuiInfo.cpp
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Abdelrazak Younes
7  *
8  * Full author contact details are available in file CREDITS.
9  */
10
11 #include <config.h>
12
13 #include "GuiInfo.h"
14
15 #include "qt_helpers.h"
16
17 #include "Buffer.h"
18 #include "buffer_funcs.h"
19 #include "BufferParams.h"
20 #include "BufferView.h"
21 #include "Cursor.h"
22 #include "FuncRequest.h"
23
24 #include "insets/InsetInfo.h"
25
26 #include "support/debug.h"
27 #include "support/lstrings.h"
28
29
30 using namespace std;
31 using namespace lyx::support;
32
33 namespace lyx {
34 namespace frontend {
35
36 /////////////////////////////////////////////////////////////////
37 //
38 // GuiInfo
39 //
40 /////////////////////////////////////////////////////////////////
41
42 char const * info_types[] =
43 { "unknown", "shortcut", "shortcuts", "lyxrc", "package", "textclass", "menu", "icon", "buffer", "" };
44
45 char const * info_types_gui[] =
46 { N_("unknown"), N_("shortcut"), N_("shortcuts"), N_("lyxrc"), N_("package"), N_("textclass"),
47   N_("menu"), N_("icon"), N_("buffer"), ""};
48
49
50 GuiInfo::GuiInfo(GuiView & lv)
51         : DialogView(lv, "info", qt_("Info"))
52 {
53         setupUi(this);
54
55         typeCO->blockSignals(true);
56         for (int n = 0; info_types[n][0]; ++n)
57                 typeCO->addItem(qt_(info_types_gui[n]));
58         typeCO->blockSignals(false);
59 }
60
61
62 void GuiInfo::on_newPB_clicked()
63 {
64         dialogToParams();
65         docstring const argument = qstring_to_ucs4(type_ + ' ' + name_);
66         dispatch(FuncRequest(LFUN_INFO_INSERT, argument));
67 }
68
69
70 void GuiInfo::on_closePB_clicked()
71 {
72         hide();
73 }
74
75
76 void GuiInfo::on_typeCO_currentIndexChanged(int)
77 {
78         applyView();
79 }
80
81
82 void GuiInfo::on_nameLE_textChanged(QString const &)
83 {
84         applyView();
85 }
86
87
88 void GuiInfo::applyView()
89 {
90         InsetInfo const * ii = dynamic_cast<InsetInfo const *>(inset(INFO_CODE));
91         if (!ii)
92                 return;
93         
94         dialogToParams();
95         docstring const argument = qstring_to_ucs4(type_ + ' ' + name_);
96         if (!ii->validate(argument))
97                 return;
98
99         dispatch(FuncRequest(LFUN_NEXT_INSET_MODIFY, argument));
100         // FIXME: update the inset contents
101         bufferview()->buffer().updateLabels();
102         BufferView * bv = const_cast<BufferView *>(bufferview());
103         bv->buffer().changed(true);
104         bv->buffer().markDirty();
105 }
106
107
108 void GuiInfo::updateView()
109 {
110         InsetInfo const * ii = dynamic_cast<InsetInfo const *>(inset(INFO_CODE));
111         if (!ii) {
112                 enableView(false);
113                 return;
114         }
115
116         type_ = toqstr(ii->infoType());
117         name_ = toqstr(ii->infoName());
118         paramsToDialog();
119 }
120
121
122 void GuiInfo::paramsToDialog()
123 {
124         typeCO->blockSignals(true);
125         nameLE->blockSignals(true);
126         int type = findToken(info_types, fromqstr(type_));
127         typeCO->setCurrentIndex(type >= 0 ? type : 0);
128         // Without this test, 'math-insert' (name_) will replace 'math-insert '
129         // in nameLE and effectively disallow the input of spaces after a LFUN.
130         if (nameLE->text().trimmed() != name_)
131                 nameLE->setText(name_);
132         typeCO->blockSignals(false);
133         nameLE->blockSignals(false);
134 }
135
136
137 void GuiInfo::dialogToParams()
138 {
139         int type = typeCO->currentIndex();
140         if (type != -1)
141                 type_ = info_types[type];
142         name_ = nameLE->text();
143 }
144
145
146 void GuiInfo::enableView(bool enable)
147 {
148         typeCO->setEnabled(enable);
149         nameLE->setEnabled(enable);
150         newPB->setEnabled(!enable);
151 }
152
153
154 Dialog * createGuiInfo(GuiView & lv) { return new GuiInfo(lv); }
155
156
157 } // namespace frontend
158 } // namespace lyx
159
160 #include "moc_GuiInfo.cpp"