]> git.lyx.org Git - lyx.git/blob - src/frontends/qt4/QLToolbar.C
renaming in frontends/qt4/ui: s/Q//g
[lyx.git] / src / frontends / qt4 / QLToolbar.C
1 /**
2  * \file qt4/QLToolbar.C
3  * This file is part of LyX, the document processor.
4  * Licence details can be found in the file COPYING.
5  *
6  * \author Lars Gullik Bjønnes
7  * \author John Levon
8  * \author Jean-Marc Lasgouttes
9  * \author Angus Leeming
10  * \author Abdelrazak Younes
11  *
12  * Full author contact details are available in file CREDITS.
13  */
14
15 #include <config.h>
16
17 #include "buffer.h"
18 #include "bufferparams.h"
19 #include "debug.h"
20 #include "funcrequest.h"
21 #include "FuncStatus.h"
22 #include "gettext.h"
23 #include "lyxfunc.h"
24 #include "iconpalette.h"
25
26 #include "GuiView.h"
27 #include "QLToolbar.h"
28 #include "LyXAction.h"
29 #include "Action.h"
30 #include "qt_helpers.h"
31 #include "InsertTableWidget.h"
32 #include "support/filetools.h"
33 #include "support/lstrings.h"
34 #include "controllers/ControlMath.h"
35 #include "ToolbarBackend.h"
36
37 #include <QComboBox>
38 #include <QToolBar>
39 #include <QToolButton>
40 #include <QAction>
41 #include <QPixmap>
42
43
44 namespace lyx {
45
46 using std::string;
47 using std::endl;
48 using support::FileName;
49 using support::libFileSearch;
50 using support::subst;
51
52
53 using support::libFileSearch;
54 using support::subst;
55
56 namespace frontend {
57
58 namespace {
59
60 LyXTextClass const & getTextClass(LyXView const & lv)
61 {
62         return lv.buffer()->params().getLyXTextClass();
63 }
64
65
66 } // namespace anon
67
68
69 QLayoutBox::QLayoutBox(QToolBar * toolbar, GuiView & owner)
70         : owner_(owner)
71 {
72         combo_ = new QComboBox;
73         combo_->setSizeAdjustPolicy(QComboBox::AdjustToContents);
74         combo_->setFocusPolicy(Qt::ClickFocus);
75         combo_->setMinimumWidth(combo_->sizeHint().width());
76         combo_->setMaxVisibleItems(100);
77
78         QObject::connect(combo_, SIGNAL(activated(const QString &)),
79                          this, SLOT(selected(const QString &)));
80
81         toolbar->addWidget(combo_);
82 }
83
84
85 void QLayoutBox::set(string const & layout)
86 {
87         LyXTextClass const & tc = getTextClass(owner_);
88
89         QString const & name = qt_(tc[layout]->name());
90
91         int i = 0;
92         for (; i < combo_->count(); ++i) {
93                 if (name == combo_->itemText(i))
94                         break;
95         }
96
97         if (i == combo_->count()) {
98                 lyxerr << "Trying to select non existent layout type "
99                         << fromqstr(name) << endl;
100                 return;
101         }
102
103         combo_->setCurrentIndex(i);
104 }
105
106
107 void QLayoutBox::update()
108 {
109         LyXTextClass const & tc = getTextClass(owner_);
110
111         combo_->setUpdatesEnabled(false);
112
113         combo_->clear();
114
115         LyXTextClass::const_iterator it = tc.begin();
116         LyXTextClass::const_iterator const end = tc.end();
117         for (; it != end; ++it) {
118                 // ignore obsolete entries
119                 if ((*it)->obsoleted_by().empty())
120                         combo_->addItem(qt_((*it)->name()));
121         }
122
123         // needed to recalculate size hint
124         combo_->hide();
125         combo_->setMinimumWidth(combo_->sizeHint().width());
126         combo_->show();
127
128         combo_->setUpdatesEnabled(true);
129         combo_->update();
130 }
131
132
133 void QLayoutBox::clear()
134 {
135         combo_->clear();
136 }
137
138
139 void QLayoutBox::open()
140 {
141         combo_->showPopup();
142 }
143
144
145 void QLayoutBox::setEnabled(bool enable)
146 {
147         // Workaround for Qt bug where setEnabled(true) closes
148         // the popup
149         if (enable != combo_->isEnabled())
150                 combo_->setEnabled(enable);
151 }
152
153
154 void QLayoutBox::selected(const QString & str)
155 {
156         string const sel = fromqstr(str);
157
158         owner_.setFocus();
159
160         layoutSelected(owner_, sel);
161 }
162
163
164 QLToolbar::QLToolbar(ToolbarInfo const & tbinfo, GuiView & owner)
165         : QToolBar(qt_(tbinfo.gui_name), &owner), owner_(owner)
166 {
167         // give visual separation between adjacent toolbars
168         addSeparator();
169
170         // TODO: save toolbar position
171         setMovable(true);
172
173         ToolbarInfo::item_iterator it = tbinfo.items.begin();
174         ToolbarInfo::item_iterator end = tbinfo.items.end();
175         for (; it != end; ++it)
176                 add(*it);
177 }
178
179
180 void QLToolbar::add(ToolbarItem const & item)
181 {
182         switch (item.type_) {
183         case ToolbarItem::SEPARATOR:
184                 addSeparator();
185                 break;
186         case ToolbarItem::LAYOUTS:
187                 layout_.reset(new QLayoutBox(this, owner_));
188                 break;
189         case ToolbarItem::MINIBUFFER:
190                 owner_.addCommandBuffer(this);
191                 /// \todo find a Qt4 equivalent to setHorizontalStretchable(true);
192                 //setHorizontalStretchable(true);
193                 break;
194         case ToolbarItem::TABLEINSERT: {
195                 QToolButton * tb = new QToolButton;
196                 tb->setCheckable(true);
197                 tb->setIcon(QPixmap(toqstr(getIcon(FuncRequest(LFUN_TABULAR_INSERT)))));
198                 tb->setToolTip(qt_(to_ascii(item.label_)));
199                 tb->setStatusTip(qt_(to_ascii(item.label_)));
200                 InsertTableWidget * iv = new InsertTableWidget(owner_, tb);
201                 connect(tb, SIGNAL(clicked(bool)), iv, SLOT(show(bool)));
202                 connect(iv, SIGNAL(visible(bool)), tb, SLOT(setChecked(bool)));
203                 connect(this, SIGNAL(updated()), iv, SLOT(updateParent()));
204                 addWidget(tb);
205                 break;
206                 }
207         case ToolbarItem::ICONPALETTE: {
208                 QToolButton * tb = new QToolButton(this);
209                 tb->setCheckable(true);
210                 tb->setToolTip(qt_(to_ascii(item.label_)));
211                 tb->setStatusTip(qt_(to_ascii(item.label_)));
212                 tb->setText(qt_(to_ascii(item.label_)));
213                 connect(this, SIGNAL(iconSizeChanged(const QSize &)),
214                         tb, SLOT(setIconSize(const QSize &)));
215
216                 IconPalette * panel = new IconPalette(tb);
217                 connect(this, SIGNAL(updated()), panel, SLOT(updateParent()));
218                 ToolbarInfo const & tbinfo = toolbarbackend.getToolbar(item.name_);
219                 ToolbarInfo::item_iterator it = tbinfo.items.begin();
220                 ToolbarInfo::item_iterator const end = tbinfo.items.end();
221                 for (; it != end; ++it) 
222                         if (!lyx::getStatus(it->func_).unknown()) {
223                                 Action * action = new Action(owner_,
224                                         getIcon(it->func_),
225                                         it->label_,
226                                         it->func_,
227                                         it->label_);
228                                 panel->addButton(action);
229                                 ActionVector.push_back(action);
230                                 // use the icon of first action for the toolbar button
231                                 if (it == tbinfo.items.begin())
232                                         tb->setIcon(QPixmap(getIcon(it->func_).c_str()));
233                         }
234                 connect(tb, SIGNAL(clicked(bool)), panel, SLOT(setVisible(bool)));
235                 connect(panel, SIGNAL(visible(bool)), tb, SLOT(setChecked(bool)));
236                 addWidget(tb);
237                 break;
238                 }
239         case ToolbarItem::POPUPMENU: {
240                 QToolButton * tb = new QToolButton;
241                 tb->setPopupMode(QToolButton::InstantPopup);
242                 tb->setToolTip(qt_(to_ascii(item.label_)));
243                 tb->setStatusTip(qt_(to_ascii(item.label_)));
244                 tb->setText(qt_(to_ascii(item.label_)));
245                 FileName icon_path = libFileSearch("images/math", item.name_, "xpm");
246                 tb->setIcon(QIcon(toqstr(icon_path.absFilename())));
247                 connect(this, SIGNAL(iconSizeChanged(const QSize &)),
248                         tb, SLOT(setIconSize(const QSize &)));
249
250                 ButtonMenu * m = new ButtonMenu(qt_(to_ascii(item.label_)), tb);
251                 connect(this, SIGNAL(updated()), m, SLOT(updateParent()));
252                 ToolbarInfo const & tbinfo = toolbarbackend.getToolbar(item.name_);
253                 ToolbarInfo::item_iterator it = tbinfo.items.begin();
254                 ToolbarInfo::item_iterator const end = tbinfo.items.end();
255                 for (; it != end; ++it)
256                         if (!lyx::getStatus(it->func_).unknown()) {
257                                 Action * action = new Action(owner_,
258                                         getIcon(it->func_, false),
259                                         it->label_,
260                                         it->func_,
261                                         it->label_);
262                                 m->add(action);
263                                 ActionVector.push_back(action);
264                         }
265                 tb->setMenu(m);
266                 addWidget(tb);
267                 break;
268                 }
269         case ToolbarItem::COMMAND: {
270                 if (lyx::getStatus(item.func_).unknown())
271                         break;
272
273                 Action * action = new Action(owner_,
274                         getIcon(item.func_),
275                         item.label_,
276                         item.func_,
277                         item.label_);
278                 addAction(action);
279                 ActionVector.push_back(action);
280                 break;
281                 }
282         default:
283                 break;
284         }
285 }
286
287
288 void QLToolbar::hide(bool)
289 {
290         QToolBar::hide();
291 }
292
293
294 void QLToolbar::show(bool)
295 {
296         QToolBar::show();
297 }
298
299
300 void QLToolbar::saveInfo(ToolbarSection::ToolbarInfo & tbinfo)
301 {
302         // if tbinfo.state == auto *do not* set on/off
303         if (tbinfo.state != ToolbarSection::ToolbarInfo::AUTO) {
304                 if (QLToolbar::isVisible())
305                         tbinfo.state = ToolbarSection::ToolbarInfo::ON;
306                 else
307                         tbinfo.state = ToolbarSection::ToolbarInfo::OFF;
308         }
309         //      
310         // no need to save it here.
311         Qt::ToolBarArea loc = owner_.toolBarArea(this);
312
313         if (loc == Qt::TopToolBarArea)
314                 tbinfo.location = ToolbarSection::ToolbarInfo::TOP;
315         else if (loc == Qt::BottomToolBarArea)
316                 tbinfo.location = ToolbarSection::ToolbarInfo::BOTTOM;
317         else if (loc == Qt::RightToolBarArea)
318                 tbinfo.location = ToolbarSection::ToolbarInfo::RIGHT;
319         else if (loc == Qt::LeftToolBarArea)
320                 tbinfo.location = ToolbarSection::ToolbarInfo::LEFT;
321         else
322                 tbinfo.location = ToolbarSection::ToolbarInfo::NOTSET;
323         
324         // save toolbar position. They are not used to restore toolbar position 
325         // now because move(x,y) does not work for toolbar.
326         tbinfo.posx = pos().x();
327         tbinfo.posy = pos().y();
328 }
329
330
331 void QLToolbar::update()
332 {
333         // This is a speed bottleneck because this is called on every keypress
334         // and update calls getStatus, which copies the cursor at least two times
335         for (size_t i = 0; i < ActionVector.size(); ++i)
336                 ActionVector[i]->update();
337
338         // emit signal
339         updated();
340 }
341
342
343 string const getIcon(FuncRequest const & f, bool unknown)
344 {
345         using frontend::find_xpm;
346
347         string fullname;
348
349         switch (f.action) {
350         case LFUN_MATH_INSERT:
351                 if (!f.argument().empty())
352                         fullname = find_xpm(to_utf8(f.argument()).substr(1));
353                 break;
354         case LFUN_MATH_DELIM:
355         case LFUN_MATH_BIGDELIM:
356                 fullname = find_xpm(to_utf8(f.argument()));
357                 break;
358         default:
359                 string const name = lyxaction.getActionName(f.action);
360                 string xpm_name(name);
361
362                 if (!f.argument().empty())
363                         xpm_name = subst(name + ' ' + to_utf8(f.argument()), ' ', '_');
364
365                 fullname = libFileSearch("images", xpm_name, "xpm").absFilename();
366
367                 if (fullname.empty()) {
368                         // try without the argument
369                         fullname = libFileSearch("images", name, "xpm").absFilename();
370                 }
371         }
372
373         if (!fullname.empty()) {
374                 LYXERR(Debug::GUI) << "Full icon name is `"
375                                    << fullname << '\'' << endl;
376                 return fullname;
377         }
378
379         LYXERR(Debug::GUI) << "Cannot find icon for command \""
380                            << lyxaction.getActionName(f.action)
381                            << '(' << to_utf8(f.argument()) << ")\"" << endl;
382         if (unknown)
383                 return libFileSearch("images", "unknown", "xpm").absFilename();
384         else
385                 return string();
386 }
387
388
389 } // namespace frontend
390 } // namespace lyx
391
392 #include "QLToolbar_moc.cpp"