2002-03-11 17:00:41 +00:00
|
|
|
|
/**
|
2002-03-11 22:47:41 +00:00
|
|
|
|
* \file Toolbar_pimpl.C
|
2002-03-11 17:00:41 +00:00
|
|
|
|
* Copyright 1995 Matthias Ettrich
|
|
|
|
|
* Copyright 1995-2001 The LyX Team.
|
|
|
|
|
* Copyright 1996-1998 Lars Gullik Bj<EFBFBD>nnes
|
|
|
|
|
* See the file COPYING.
|
1999-10-07 18:44:17 +00:00
|
|
|
|
*
|
2002-03-11 17:00:41 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes, larsbj@lyx.org
|
|
|
|
|
*/
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
// Added pseudo-action handling, asierra 180296
|
|
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
2000-07-24 13:53:19 +00:00
|
|
|
|
#pragma implementation
|
1999-09-27 18:44:28 +00:00
|
|
|
|
#endif
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
#include "Toolbar_pimpl.h"
|
1999-10-07 18:44:17 +00:00
|
|
|
|
#include "debug.h"
|
2001-07-03 15:19:04 +00:00
|
|
|
|
#include "XFormsView.h"
|
2001-04-24 17:33:01 +00:00
|
|
|
|
#include "lyxfunc.h"
|
2002-01-09 09:36:35 +00:00
|
|
|
|
#include "FuncStatus.h"
|
2000-07-24 13:53:19 +00:00
|
|
|
|
#include "BufferView.h"
|
|
|
|
|
#include "buffer.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
#include "lyxtextclasslist.h"
|
1999-11-22 16:19:48 +00:00
|
|
|
|
#include "LyXAction.h"
|
2002-03-21 21:21:28 +00:00
|
|
|
|
#include "MathsSymbols.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
#include "gettext.h"
|
2002-03-11 09:54:42 +00:00
|
|
|
|
#include "Tooltips.h"
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2002-03-11 09:54:42 +00:00
|
|
|
|
#include "support/LAssert.h"
|
2000-07-19 10:22:12 +00:00
|
|
|
|
#include "support/filetools.h"
|
2002-03-21 21:21:28 +00:00
|
|
|
|
#include "support/lstrings.h"
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-03-28 02:18:55 +00:00
|
|
|
|
using std::endl;
|
2000-02-15 14:28:15 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
extern LyXAction lyxaction;
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// some constants
|
|
|
|
|
const int standardspacing = 2; // the usual space between items
|
|
|
|
|
const int sepspace = 6; // extra space
|
|
|
|
|
const int buttonwidth = 30; // the standard button width
|
|
|
|
|
const int height = 30; // the height of all items in the toolbar
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
Toolbar::Pimpl::toolbarItem::toolbarItem()
|
|
|
|
|
{
|
2000-07-21 18:47:54 +00:00
|
|
|
|
action = LFUN_NOACTION;
|
|
|
|
|
icon = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
Toolbar::Pimpl::toolbarItem::~toolbarItem()
|
|
|
|
|
{
|
2000-07-24 13:53:19 +00:00
|
|
|
|
clean();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
void Toolbar::Pimpl::toolbarItem::clean()
|
|
|
|
|
{
|
2000-07-21 18:47:54 +00:00
|
|
|
|
if (icon) {
|
|
|
|
|
fl_delete_object(icon);
|
|
|
|
|
fl_free_object(icon);
|
|
|
|
|
icon = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
Toolbar::Pimpl::toolbarItem &
|
2001-12-28 13:26:54 +00:00
|
|
|
|
Toolbar::Pimpl::toolbarItem::operator=(toolbarItem const & ti)
|
|
|
|
|
{
|
2000-07-31 12:51:19 +00:00
|
|
|
|
// Are we assigning the object onto itself?
|
|
|
|
|
if (this == &ti)
|
|
|
|
|
return *this;
|
|
|
|
|
|
|
|
|
|
// If we already have an icon, release it.
|
|
|
|
|
clean();
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// do we have to check icon too?
|
2000-07-21 18:47:54 +00:00
|
|
|
|
action = ti.action;
|
|
|
|
|
icon = 0; // locally we need to get the icon anew
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-21 18:47:54 +00:00
|
|
|
|
return *this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
|
|
Toolbar::Pimpl::Pimpl(LyXView * o, int x, int y)
|
2001-07-03 15:19:04 +00:00
|
|
|
|
: owner(static_cast<XFormsView *>(o)), sxpos(x), sypos(y)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
combox = 0;
|
2002-03-11 09:54:42 +00:00
|
|
|
|
tooltip_ = new Tooltips();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-11 09:54:42 +00:00
|
|
|
|
Toolbar::Pimpl::~Pimpl()
|
1999-10-25 14:18:30 +00:00
|
|
|
|
{
|
2002-03-11 09:54:42 +00:00
|
|
|
|
clean();
|
|
|
|
|
delete tooltip_;
|
2001-09-10 08:37:25 +00:00
|
|
|
|
}
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::activate()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-07-20 11:39:14 +00:00
|
|
|
|
ToolbarList::const_iterator p = toollist.begin();
|
2000-08-03 21:17:52 +00:00
|
|
|
|
ToolbarList::const_iterator end = toollist.end();
|
|
|
|
|
for (; p != end; ++p) {
|
2000-07-20 11:39:14 +00:00
|
|
|
|
if (p->icon) {
|
|
|
|
|
fl_activate_object(p->icon);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::deactivate()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-07-20 11:39:14 +00:00
|
|
|
|
ToolbarList::const_iterator p = toollist.begin();
|
2000-08-03 21:17:52 +00:00
|
|
|
|
ToolbarList::const_iterator end = toollist.end();
|
|
|
|
|
for (; p != end; ++p) {
|
2000-07-20 11:39:14 +00:00
|
|
|
|
if (p->icon) {
|
|
|
|
|
fl_deactivate_object(p->icon);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::update()
|
2000-07-20 11:39:14 +00:00
|
|
|
|
{
|
|
|
|
|
ToolbarList::const_iterator p = toollist.begin();
|
2000-08-03 21:17:52 +00:00
|
|
|
|
ToolbarList::const_iterator end = toollist.end();
|
|
|
|
|
for (; p != end; ++p) {
|
2000-07-20 11:39:14 +00:00
|
|
|
|
if (p->icon) {
|
2002-01-09 09:36:35 +00:00
|
|
|
|
FuncStatus status = owner->getLyXFunc()->getStatus(p->action);
|
|
|
|
|
if (status.onoff(true)) {
|
2000-07-20 11:39:14 +00:00
|
|
|
|
// I'd like to use a different color
|
|
|
|
|
// here, but then the problem is to
|
|
|
|
|
// know how to use transparency with
|
|
|
|
|
// Xpm library. It seems pretty
|
|
|
|
|
// complicated to me (JMarc)
|
2000-07-20 12:39:25 +00:00
|
|
|
|
fl_set_object_color(p->icon, FL_LEFT_BCOL, FL_BLUE);
|
2000-07-20 11:39:14 +00:00
|
|
|
|
fl_set_object_boxtype(p->icon, FL_DOWN_BOX);
|
|
|
|
|
} else {
|
2000-07-20 12:39:25 +00:00
|
|
|
|
fl_set_object_color(p->icon, FL_MCOL, FL_BLUE);
|
2000-07-20 11:39:14 +00:00
|
|
|
|
fl_set_object_boxtype(p->icon, FL_UP_BOX);
|
|
|
|
|
}
|
2002-01-09 09:36:35 +00:00
|
|
|
|
if (status.disabled()) {
|
2000-07-20 11:39:14 +00:00
|
|
|
|
// Is there a way here to specify a
|
|
|
|
|
// mask in order to show that the
|
|
|
|
|
// button is disabled? (JMarc)
|
|
|
|
|
fl_deactivate_object(p->icon);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
fl_activate_object(p->icon);
|
2002-01-20 23:17:17 +00:00
|
|
|
|
} else if (p->action == ToolbarDefaults::LAYOUTS && combox) {
|
|
|
|
|
if (owner->getLyXFunc()->getStatus(LFUN_LAYOUT).disabled())
|
|
|
|
|
combox->deactivate();
|
|
|
|
|
else
|
|
|
|
|
combox->activate();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-09-07 15:41:36 +00:00
|
|
|
|
// this one is not "C" because combox callbacks are really C++ %-|
|
|
|
|
|
void Toolbar::Pimpl::layoutSelectedCB(int, void * arg, Combox *)
|
|
|
|
|
{
|
|
|
|
|
Toolbar::Pimpl * tb = reinterpret_cast<Toolbar::Pimpl *>(arg);
|
|
|
|
|
|
|
|
|
|
tb->layoutSelected();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Toolbar::Pimpl::layoutSelected()
|
|
|
|
|
{
|
|
|
|
|
string const & layoutguiname = combox->getline();
|
|
|
|
|
LyXTextClass const & tc =
|
2002-03-02 16:39:54 +00:00
|
|
|
|
textclasslist[owner->buffer()->params.textclass];
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2001-09-07 15:41:36 +00:00
|
|
|
|
LyXTextClass::const_iterator end = tc.end();
|
|
|
|
|
for (LyXTextClass::const_iterator cit = tc.begin();
|
|
|
|
|
cit != end; ++cit) {
|
|
|
|
|
if (_(cit->name()) == layoutguiname) {
|
|
|
|
|
owner->getLyXFunc()->dispatch(LFUN_LAYOUT, cit->name());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
lyxerr << "ERROR (Toolbar::Pimpl::layoutSelected): layout not found!"
|
|
|
|
|
<< endl;
|
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2001-09-07 15:41:36 +00:00
|
|
|
|
|
2002-03-02 16:39:54 +00:00
|
|
|
|
void Toolbar::Pimpl::setLayout(string const & layout)
|
2001-12-28 13:26:54 +00:00
|
|
|
|
{
|
2001-09-06 12:42:47 +00:00
|
|
|
|
if (combox) {
|
|
|
|
|
LyXTextClass const & tc =
|
2002-03-02 16:39:54 +00:00
|
|
|
|
textclasslist[owner->buffer()->params.textclass];
|
2001-09-07 15:41:36 +00:00
|
|
|
|
combox->select(_(tc[layout].name()));
|
2001-09-06 12:42:47 +00:00
|
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void Toolbar::Pimpl::updateLayoutList(bool force)
|
|
|
|
|
{
|
|
|
|
|
// Update the layout display
|
|
|
|
|
if (!combox) return;
|
|
|
|
|
|
|
|
|
|
// If textclass is different, we need to update the list
|
|
|
|
|
if (combox->empty() || force) {
|
|
|
|
|
combox->clear();
|
|
|
|
|
LyXTextClass const & tc =
|
2002-03-02 16:39:54 +00:00
|
|
|
|
textclasslist[owner->buffer()->params.textclass];
|
2000-08-03 21:17:52 +00:00
|
|
|
|
LyXTextClass::const_iterator end = tc.end();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
for (LyXTextClass::const_iterator cit = tc.begin();
|
2000-08-03 21:17:52 +00:00
|
|
|
|
cit != end; ++cit) {
|
2001-09-06 12:42:47 +00:00
|
|
|
|
// ignore obsolete entries
|
2001-07-12 11:11:10 +00:00
|
|
|
|
if (cit->obsoleted_by().empty())
|
|
|
|
|
combox->addline(_(cit->name()));
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// we need to do this.
|
2001-09-06 12:42:47 +00:00
|
|
|
|
combox->redraw();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::clearLayoutList()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-07-24 13:53:19 +00:00
|
|
|
|
if (combox) {
|
|
|
|
|
combox->clear();
|
2001-09-06 12:42:47 +00:00
|
|
|
|
combox->redraw();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::openLayoutList()
|
|
|
|
|
{
|
|
|
|
|
if (combox)
|
2001-09-06 12:42:47 +00:00
|
|
|
|
combox->show();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void ToolbarCB(FL_OBJECT * ob, long ac)
|
|
|
|
|
{
|
2001-07-03 15:19:04 +00:00
|
|
|
|
XFormsView * owner = static_cast<XFormsView *>(ob->u_vdata);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2002-01-12 20:00:47 +00:00
|
|
|
|
owner->getLyXFunc()->verboseDispatch(int(ac), true);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
|
|
2001-09-09 22:02:19 +00:00
|
|
|
|
extern "C" {
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2001-09-09 22:02:19 +00:00
|
|
|
|
static
|
|
|
|
|
void C_Toolbar_ToolbarCB(FL_OBJECT * ob, long data)
|
|
|
|
|
{
|
|
|
|
|
ToolbarCB(ob, data);
|
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
1999-10-25 14:18:30 +00:00
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2000-10-11 21:06:43 +00:00
|
|
|
|
|
2001-12-28 13:26:54 +00:00
|
|
|
|
void setPixmap(FL_OBJECT * obj, int action, int buttonwidth, int height)
|
|
|
|
|
{
|
|
|
|
|
string arg;
|
|
|
|
|
string xpm_name;
|
2000-07-19 10:22:12 +00:00
|
|
|
|
|
2002-01-12 20:00:47 +00:00
|
|
|
|
const kb_action act = lyxaction.retrieveActionArg(action, arg);
|
|
|
|
|
string const name = lyxaction.getActionName(act);
|
|
|
|
|
if (!arg.empty())
|
2000-07-19 10:22:12 +00:00
|
|
|
|
xpm_name = subst(name + ' ' + arg, ' ','_');
|
2002-03-21 21:21:28 +00:00
|
|
|
|
else
|
2000-07-19 10:22:12 +00:00
|
|
|
|
xpm_name = name;
|
|
|
|
|
|
|
|
|
|
string fullname = LibFileSearch("images", xpm_name, "xpm");
|
|
|
|
|
|
|
|
|
|
if (!fullname.empty()) {
|
2002-03-21 21:21:28 +00:00
|
|
|
|
lyxerr[Debug::GUI] << "Full icon name is `"
|
2002-03-21 16:59:12 +00:00
|
|
|
|
<< fullname << "'" << endl;
|
2000-07-19 10:22:12 +00:00
|
|
|
|
fl_set_pixmapbutton_file(obj, fullname.c_str());
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (act == LFUN_INSERT_MATH && !arg.empty()) {
|
|
|
|
|
char const ** pixmap = get_pixmap_from_symbol(arg.c_str(),
|
2002-03-21 16:59:12 +00:00
|
|
|
|
buttonwidth,
|
|
|
|
|
height);
|
2000-11-03 16:45:08 +00:00
|
|
|
|
if (pixmap) {
|
|
|
|
|
lyxerr[Debug::GUI] << "Using mathed-provided icon"
|
|
|
|
|
<< endl;
|
|
|
|
|
fl_set_pixmapbutton_data(obj,
|
|
|
|
|
const_cast<char **>(pixmap));
|
|
|
|
|
return;
|
|
|
|
|
}
|
2000-07-19 10:22:12 +00:00
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-19 10:22:12 +00:00
|
|
|
|
lyxerr << "Unable to find icon `" << xpm_name << "'" << endl;
|
|
|
|
|
fullname = LibFileSearch("images", "unknown", "xpm");
|
|
|
|
|
if (!fullname.empty()) {
|
2002-03-21 21:21:28 +00:00
|
|
|
|
lyxerr[Debug::GUI] << "Using default `unknown' icon"
|
2002-03-21 16:59:12 +00:00
|
|
|
|
<< endl;
|
2000-07-19 10:22:12 +00:00
|
|
|
|
fl_set_pixmapbutton_file(obj, fullname.c_str());
|
|
|
|
|
}
|
|
|
|
|
}
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::set(bool doingmain)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
// we shouldn't set if we have not cleaned
|
|
|
|
|
if (!cleaned) return;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
1999-12-01 00:57:31 +00:00
|
|
|
|
FL_OBJECT * obj;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!doingmain) {
|
|
|
|
|
fl_freeze_form(owner->getForm());
|
|
|
|
|
fl_addto_form(owner->getForm());
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-20 11:39:14 +00:00
|
|
|
|
ToolbarList::iterator item = toollist.begin();
|
2000-08-03 21:17:52 +00:00
|
|
|
|
ToolbarList::iterator end = toollist.end();
|
|
|
|
|
for (; item != end; ++item) {
|
2002-02-16 15:59:55 +00:00
|
|
|
|
switch (item->action) {
|
2000-07-24 13:53:19 +00:00
|
|
|
|
case ToolbarDefaults::SEPARATOR:
|
1999-12-16 06:43:25 +00:00
|
|
|
|
xpos += sepspace;
|
|
|
|
|
break;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
case ToolbarDefaults::NEWLINE:
|
|
|
|
|
// Not supported yet.
|
|
|
|
|
break;
|
|
|
|
|
case ToolbarDefaults::LAYOUTS:
|
1999-12-16 06:43:25 +00:00
|
|
|
|
xpos += standardspacing;
|
|
|
|
|
if (!combox)
|
|
|
|
|
combox = new Combox(FL_COMBOX_DROPLIST);
|
2000-02-08 15:13:01 +00:00
|
|
|
|
combox->add(xpos, ypos, 135, height, 400);
|
2001-03-07 14:25:31 +00:00
|
|
|
|
combox->setcallback(layoutSelectedCB, this);
|
1999-12-16 06:43:25 +00:00
|
|
|
|
combox->resize(FL_RESIZE_ALL);
|
|
|
|
|
combox->gravity(NorthWestGravity, NorthWestGravity);
|
|
|
|
|
xpos += 135;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
xpos += standardspacing;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
item->icon = obj =
|
1999-12-16 06:43:25 +00:00
|
|
|
|
fl_add_pixmapbutton(FL_NORMAL_BUTTON,
|
|
|
|
|
xpos, ypos,
|
|
|
|
|
buttonwidth,
|
|
|
|
|
height, "");
|
|
|
|
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
|
|
|
|
fl_set_object_gravity(obj,
|
|
|
|
|
NorthWestGravity,
|
|
|
|
|
NorthWestGravity);
|
|
|
|
|
fl_set_object_callback(obj, C_Toolbar_ToolbarCB,
|
|
|
|
|
static_cast<long>(item->action));
|
|
|
|
|
// Remove the blue feedback rectangle
|
|
|
|
|
fl_set_pixmapbutton_focus_outline(obj, 0);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
2002-03-11 09:54:42 +00:00
|
|
|
|
// initialise the tooltip
|
|
|
|
|
string const tip = _(lyxaction.helpText(obj->argument));
|
2002-03-18 15:56:00 +00:00
|
|
|
|
tooltip_->init(obj, tip);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// The view that this object belongs to.
|
|
|
|
|
obj->u_vdata = owner;
|
2000-07-20 11:39:14 +00:00
|
|
|
|
|
2000-07-19 10:22:12 +00:00
|
|
|
|
setPixmap(obj, item->action, buttonwidth, height);
|
1999-12-16 06:43:25 +00:00
|
|
|
|
// we must remember to update the positions
|
|
|
|
|
xpos += buttonwidth;
|
|
|
|
|
// ypos is constant
|
|
|
|
|
/* Here will come a check to see if the new
|
|
|
|
|
* pos is within the bounds of the main frame,
|
|
|
|
|
* and perhaps wrap the toolbar if not.
|
|
|
|
|
*/
|
|
|
|
|
break;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2000-02-04 09:38:32 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (!doingmain) {
|
|
|
|
|
fl_end_form();
|
|
|
|
|
fl_unfreeze_form(owner->getForm());
|
|
|
|
|
// Should be safe to do this here.
|
|
|
|
|
owner->updateLayoutChoice();
|
|
|
|
|
}
|
2000-07-20 11:39:14 +00:00
|
|
|
|
|
|
|
|
|
// set the state of the icons
|
|
|
|
|
//update();
|
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cleaned = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::add(int action, bool doclean)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
|
|
|
|
if (doclean && !cleaned) clean();
|
|
|
|
|
|
|
|
|
|
// this is what we do if we want to add to an existing
|
|
|
|
|
// toolbar.
|
|
|
|
|
if (!doclean && owner) {
|
2000-07-19 10:22:12 +00:00
|
|
|
|
// first "hide" the toolbar buttons. This is not a real hide
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// actually it deletes and frees the button altogether.
|
2002-03-21 21:21:28 +00:00
|
|
|
|
lyxerr << "Toolbar::add: \"hide\" the toolbar buttons."
|
2000-07-20 11:39:14 +00:00
|
|
|
|
<< endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
lightReset();
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
fl_freeze_form(owner->getForm());
|
2000-07-20 11:39:14 +00:00
|
|
|
|
|
|
|
|
|
ToolbarList::iterator p = toollist.begin();
|
2000-08-03 21:17:52 +00:00
|
|
|
|
ToolbarList::iterator end = toollist.end();
|
|
|
|
|
for (; p != end; ++p) {
|
2000-07-20 11:39:14 +00:00
|
|
|
|
p->clean();
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-07-20 11:39:14 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (combox) {
|
|
|
|
|
delete combox;
|
|
|
|
|
combox = 0;
|
|
|
|
|
}
|
|
|
|
|
fl_unfreeze_form(owner->getForm());
|
|
|
|
|
cleaned = true; // this is not completely true, but OK anyway
|
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
// there exist some special actions not part of
|
|
|
|
|
// kb_action: SEPARATOR, LAYOUTS
|
|
|
|
|
|
2000-07-20 11:39:14 +00:00
|
|
|
|
toolbarItem newItem;
|
|
|
|
|
newItem.action = action;
|
|
|
|
|
toollist.push_back(newItem);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::clean()
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-07-20 11:39:14 +00:00
|
|
|
|
//reset(); // I do not understand what this reset() is, anyway
|
1999-09-27 18:44:28 +00:00
|
|
|
|
|
|
|
|
|
//now delete all the objects..
|
|
|
|
|
if (owner)
|
|
|
|
|
fl_freeze_form(owner->getForm());
|
2000-07-20 11:39:14 +00:00
|
|
|
|
|
|
|
|
|
// G++ vector does not have clear defined
|
|
|
|
|
//toollist.clear();
|
|
|
|
|
toollist.erase(toollist.begin(), toollist.end());
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
lyxerr[Debug::GUI] << "Combox: " << combox << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (combox) {
|
|
|
|
|
delete combox;
|
|
|
|
|
combox = 0;
|
|
|
|
|
}
|
2000-07-20 11:39:14 +00:00
|
|
|
|
|
1999-09-27 18:44:28 +00:00
|
|
|
|
if (owner)
|
|
|
|
|
fl_unfreeze_form(owner->getForm());
|
2000-07-24 13:53:19 +00:00
|
|
|
|
lyxerr[Debug::GUI] << "toolbar cleaned" << endl;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
cleaned = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::push(int nth)
|
1999-09-27 18:44:28 +00:00
|
|
|
|
{
|
2000-07-24 13:53:19 +00:00
|
|
|
|
lyxerr[Debug::GUI] << "Toolbar::push: trying to trigger no `"
|
2002-03-21 16:59:12 +00:00
|
|
|
|
<< nth << '\'' << endl;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-20 11:39:14 +00:00
|
|
|
|
if (nth <= 0 || nth >= int(toollist.size())) {
|
|
|
|
|
// item nth not found...
|
|
|
|
|
return;
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
2000-07-20 11:39:14 +00:00
|
|
|
|
|
|
|
|
|
fl_trigger_object(toollist[nth - 1].icon);
|
1999-09-27 18:44:28 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
void Toolbar::Pimpl::reset()
|
2000-04-04 00:19:15 +00:00
|
|
|
|
{
|
2000-07-20 11:39:14 +00:00
|
|
|
|
//toollist = 0; // what is this supposed to do?
|
2000-04-04 00:19:15 +00:00
|
|
|
|
cleaned = false;
|
|
|
|
|
lightReset();
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-03 15:19:04 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Toolbar::Pimpl::lightReset() {
|
|
|
|
|
xpos = sxpos - standardspacing;
|
|
|
|
|
ypos = sypos;
|
|
|
|
|
}
|