2002-03-11 17:00:41 +00:00
|
|
|
|
/**
|
|
|
|
|
* \file Menubar_pimpl.C
|
|
|
|
|
* Copyright 1999-2001 The LyX Team.
|
|
|
|
|
* See the file COPYING.
|
|
|
|
|
*
|
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes, larsbj@lyx.org
|
|
|
|
|
*/
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
#ifdef __GNUG__
|
|
|
|
|
#pragma implementation
|
|
|
|
|
#endif
|
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
#include "Menubar_pimpl.h"
|
|
|
|
|
#include "MenuBackend.h"
|
2000-07-24 13:53:19 +00:00
|
|
|
|
#include "LyXAction.h"
|
|
|
|
|
#include "kbmap.h"
|
2001-03-12 12:44:56 +00:00
|
|
|
|
#include "Dialogs.h"
|
2001-07-03 15:19:04 +00:00
|
|
|
|
#include "XFormsView.h"
|
2001-04-24 17:33:01 +00:00
|
|
|
|
#include "lyxfunc.h"
|
2001-05-04 10:36:36 +00:00
|
|
|
|
#include "FloatList.h"
|
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
|
#include "support/LAssert.h"
|
2001-04-05 12:26:41 +00:00
|
|
|
|
#include "gettext.h"
|
2001-05-04 10:36:36 +00:00
|
|
|
|
#include "debug.h"
|
2002-07-21 15:51:07 +00:00
|
|
|
|
#include "toc.h"
|
2002-06-13 13:43:51 +00:00
|
|
|
|
#include FORMS_H_LOCATION
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2002-05-22 01:16:37 +00:00
|
|
|
|
#include <boost/scoped_ptr.hpp>
|
|
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
using std::endl;
|
2000-08-31 11:51:59 +00:00
|
|
|
|
using std::vector;
|
2000-09-04 13:22:22 +00:00
|
|
|
|
using std::max;
|
|
|
|
|
using std::min;
|
2002-02-16 15:59:55 +00:00
|
|
|
|
using std::for_each;
|
2000-08-31 11:51:59 +00:00
|
|
|
|
|
|
|
|
|
typedef vector<int>::size_type size_type;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2001-03-07 16:18:05 +00:00
|
|
|
|
extern boost::scoped_ptr<kb_keymap> toplevel_keymap;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
extern LyXAction lyxaction;
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// Some constants
|
2001-05-04 10:36:36 +00:00
|
|
|
|
int const MENU_LABEL_SIZE = FL_NORMAL_SIZE;
|
2002-01-10 15:14:22 +00:00
|
|
|
|
int const MENU_LABEL_STYLE = FL_NORMAL_STYLE;
|
2001-05-04 10:36:36 +00:00
|
|
|
|
int const mheight = 30;
|
|
|
|
|
int const mbheight= 22;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// where to place the menubar?
|
2001-05-04 10:36:36 +00:00
|
|
|
|
int const yloc = (mheight - mbheight)/2; //air + bw;
|
|
|
|
|
int const mbadd = 20; // menu button add (to width)
|
2002-03-21 21:21:28 +00:00
|
|
|
|
// Some space between buttons on the menubar
|
2001-05-04 10:36:36 +00:00
|
|
|
|
int const air = 2;
|
2001-03-20 01:22:46 +00:00
|
|
|
|
char const * menu_tabstop = "aa";
|
|
|
|
|
char const * default_tabstop = "aaaaaaaa";
|
2000-12-06 13:41:44 +00:00
|
|
|
|
// We do not want to mix position values in a menu (like the index of
|
|
|
|
|
// a submenu) with the action numbers which convey actual information.
|
|
|
|
|
// Therefore we offset all the action values by an arbitrary large
|
2002-03-21 21:21:28 +00:00
|
|
|
|
// constant.
|
2001-05-04 10:36:36 +00:00
|
|
|
|
int const action_offset = 1000;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2000-07-25 10:46:18 +00:00
|
|
|
|
// This is used a few times below.
|
2001-03-20 01:22:46 +00:00
|
|
|
|
inline
|
2002-03-21 21:21:28 +00:00
|
|
|
|
int string_width(string const & str)
|
2000-07-25 10:46:18 +00:00
|
|
|
|
{
|
2002-01-07 17:57:21 +00:00
|
|
|
|
return fl_get_string_widthTAB(MENU_LABEL_STYLE, MENU_LABEL_SIZE,
|
2000-10-15 03:46:23 +00:00
|
|
|
|
str.c_str(),
|
|
|
|
|
static_cast<int>(str.length()));
|
2000-07-25 10:46:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
} // namespace anon
|
|
|
|
|
|
|
|
|
|
|
2001-09-09 22:02:19 +00:00
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
//Defined later, used in makeMenubar().
|
|
|
|
|
static
|
|
|
|
|
void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button)
|
|
|
|
|
{
|
|
|
|
|
Menubar::Pimpl::MenuCallback(ob, button);
|
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2001-09-09 22:02:19 +00:00
|
|
|
|
}
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
2000-07-25 10:46:18 +00:00
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mb)
|
2002-07-20 21:50:05 +00:00
|
|
|
|
: owner_(static_cast<XFormsView*>(view)), menubackend_(&mb)
|
2000-07-24 13:53:19 +00:00
|
|
|
|
{
|
2002-07-20 21:50:05 +00:00
|
|
|
|
makeMenubar(menubackend_->getMenubar());
|
2000-09-26 16:16:55 +00:00
|
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
void Menubar::Pimpl::makeMenubar(Menu const & menu)
|
2000-09-26 16:16:55 +00:00
|
|
|
|
{
|
2002-07-20 15:25:41 +00:00
|
|
|
|
FL_FORM * form = owner_->getForm();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
int moffset = 0;
|
|
|
|
|
|
|
|
|
|
// Create menu frame if there is non yet.
|
2000-09-26 16:16:55 +00:00
|
|
|
|
FL_OBJECT * frame = fl_add_frame(FL_UP_FRAME, 0, 0,
|
|
|
|
|
form->w, mheight, "");
|
|
|
|
|
fl_set_object_resize(frame, FL_RESIZE_ALL);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
fl_set_object_gravity(frame, NorthWestGravity,
|
2000-09-26 16:16:55 +00:00
|
|
|
|
NorthEastGravity);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
Menu::const_iterator i = menu.begin();
|
|
|
|
|
Menu::const_iterator end = menu.end();
|
|
|
|
|
for (; i != end; ++i) {
|
2000-07-24 13:53:19 +00:00
|
|
|
|
FL_OBJECT * obj;
|
|
|
|
|
if (i->kind() != MenuItem::Submenu) {
|
2000-09-26 16:16:55 +00:00
|
|
|
|
lyxerr << "ERROR: Menubar::Pimpl::createMenubar:"
|
2002-02-27 11:34:20 +00:00
|
|
|
|
" only submenus can appear in a menubar"
|
|
|
|
|
<< endl;
|
|
|
|
|
continue;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
2001-05-04 10:36:36 +00:00
|
|
|
|
string const label = i->label();
|
|
|
|
|
string const shortcut = "#" + i->shortcut();
|
|
|
|
|
int const width = string_width(label);
|
2000-11-30 11:31:39 +00:00
|
|
|
|
obj = fl_add_button(FL_MENU_BUTTON,
|
2000-07-24 13:53:19 +00:00
|
|
|
|
air + moffset, yloc,
|
|
|
|
|
width + mbadd,
|
2002-03-21 21:21:28 +00:00
|
|
|
|
mbheight,
|
2000-07-25 10:46:18 +00:00
|
|
|
|
label.c_str());
|
2000-07-24 13:53:19 +00:00
|
|
|
|
fl_set_object_boxtype(obj, FL_FLAT_BOX);
|
|
|
|
|
fl_set_object_color(obj, FL_MCOL, FL_MCOL);
|
|
|
|
|
fl_set_object_lsize(obj, MENU_LABEL_SIZE);
|
2002-01-07 17:57:21 +00:00
|
|
|
|
fl_set_object_lstyle(obj, MENU_LABEL_STYLE);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
fl_set_object_gravity(obj, NorthWestGravity,
|
2000-07-24 13:53:19 +00:00
|
|
|
|
NorthWestGravity);
|
|
|
|
|
moffset += obj->w + air;
|
2000-07-25 10:46:18 +00:00
|
|
|
|
fl_set_object_shortcut(obj, shortcut.c_str(), 1);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
fl_set_object_callback(obj, C_Menubar_Pimpl_MenuCallback, 1);
|
2000-07-26 14:08:09 +00:00
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
boost::shared_ptr<ItemInfo>
|
|
|
|
|
iteminfo(new ItemInfo(this, new MenuItem(*i), obj));
|
2000-07-24 13:53:19 +00:00
|
|
|
|
buttonlist_.push_back(iteminfo);
|
2001-03-07 16:18:05 +00:00
|
|
|
|
obj->u_vdata = iteminfo.get();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2000-09-26 16:16:55 +00:00
|
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
|
2002-07-20 21:50:05 +00:00
|
|
|
|
void Menubar::Pimpl::update()
|
2000-09-26 16:16:55 +00:00
|
|
|
|
{
|
2002-07-20 21:50:05 +00:00
|
|
|
|
// nothing yet
|
2002-03-21 21:21:28 +00:00
|
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Menubar::Pimpl::openByName(string const & name)
|
|
|
|
|
{
|
2002-07-20 21:50:05 +00:00
|
|
|
|
for (ButtonList::const_iterator cit = buttonlist_.begin();
|
|
|
|
|
cit != buttonlist_.end(); ++cit) {
|
|
|
|
|
if ((*cit)->item_->submenu() == name) {
|
|
|
|
|
MenuCallback((*cit)->obj_, 1);
|
|
|
|
|
return;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-07-20 21:50:05 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
lyxerr << "Menubar::Pimpl::openByName: menu "
|
|
|
|
|
<< name << " not found" << endl;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
|
|
inline
|
2000-12-06 22:24:17 +00:00
|
|
|
|
string const limit_string_length(string const & str)
|
2000-08-31 11:51:59 +00:00
|
|
|
|
{
|
|
|
|
|
string::size_type const max_item_length = 45;
|
|
|
|
|
|
|
|
|
|
if (str.size() > max_item_length)
|
2000-10-11 21:06:43 +00:00
|
|
|
|
return str.substr(0, max_item_length - 3) + "...";
|
2000-08-31 11:51:59 +00:00
|
|
|
|
else
|
|
|
|
|
return str;
|
|
|
|
|
}
|
|
|
|
|
|
2000-10-09 12:30:52 +00:00
|
|
|
|
|
|
|
|
|
int get_new_submenu(vector<int> & smn, Window win)
|
|
|
|
|
{
|
|
|
|
|
static size_type max_number_of_menus = 32;
|
|
|
|
|
if (smn.size() >= max_number_of_menus)
|
2000-10-15 03:46:23 +00:00
|
|
|
|
max_number_of_menus =
|
|
|
|
|
fl_setpup_maxpup(static_cast<int>(2*smn.size()));
|
2000-10-09 12:30:52 +00:00
|
|
|
|
int menu = fl_newpup(win);
|
|
|
|
|
smn.push_back(menu);
|
|
|
|
|
return menu;
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
|
|
2000-08-31 11:51:59 +00:00
|
|
|
|
size_type const max_number_of_items = 25;
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
inline
|
2000-10-30 21:53:29 +00:00
|
|
|
|
string const fixlabel(string const & str)
|
|
|
|
|
{
|
2002-06-02 18:58:19 +00:00
|
|
|
|
#if FL_VERSION < 1 && FL_REVISION < 89
|
2000-10-30 21:53:29 +00:00
|
|
|
|
return subst(str, '%', '?');
|
|
|
|
|
#else
|
|
|
|
|
return subst(str, "%", "%%");
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
|
|
2000-08-31 11:51:59 +00:00
|
|
|
|
void add_toc2(int menu, string const & extra_label,
|
|
|
|
|
vector<int> & smn, Window win,
|
2002-07-21 15:51:07 +00:00
|
|
|
|
toc::Toc const & toc_list,
|
2000-08-31 11:51:59 +00:00
|
|
|
|
size_type from, size_type to, int depth)
|
|
|
|
|
{
|
2001-01-31 17:54:37 +00:00
|
|
|
|
int shortcut_count = 0;
|
2000-08-31 11:51:59 +00:00
|
|
|
|
if (to - from <= max_number_of_items) {
|
|
|
|
|
for (size_type i = from; i < to; ++i) {
|
2002-07-21 15:51:07 +00:00
|
|
|
|
int const action = toc_list[i].action();
|
2000-08-31 11:51:59 +00:00
|
|
|
|
string label(4 * max(0, toc_list[i].depth - depth),' ');
|
2000-10-30 21:53:29 +00:00
|
|
|
|
label += fixlabel(toc_list[i].str);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
label = limit_string_length(label);
|
2000-12-06 13:41:44 +00:00
|
|
|
|
label += "%x" + tostr(action + action_offset);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
if (i == to - 1 && depth == 0)
|
|
|
|
|
label += extra_label;
|
2001-01-31 17:54:37 +00:00
|
|
|
|
if (toc_list[i].depth == depth
|
|
|
|
|
&& ++shortcut_count <= 9) {
|
|
|
|
|
label += "%h";
|
|
|
|
|
fl_addtopup(menu, label.c_str(),
|
|
|
|
|
tostr(shortcut_count).c_str());
|
|
|
|
|
} else
|
|
|
|
|
fl_addtopup(menu, label.c_str());
|
2000-08-31 11:51:59 +00:00
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
size_type pos = from;
|
|
|
|
|
size_type count = 0;
|
|
|
|
|
while (pos < to) {
|
|
|
|
|
++count;
|
|
|
|
|
if (count > max_number_of_items) {
|
2000-10-09 12:30:52 +00:00
|
|
|
|
int menu2 = get_new_submenu(smn, win);
|
|
|
|
|
add_toc2(menu2, extra_label, smn, win,
|
|
|
|
|
toc_list, pos, to, depth);
|
|
|
|
|
string label = _("More");
|
|
|
|
|
label += "...%m";
|
|
|
|
|
if (depth == 0)
|
|
|
|
|
label += extra_label;
|
|
|
|
|
fl_addtopup(menu, label.c_str(), menu2);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
size_type new_pos = pos+1;
|
|
|
|
|
while (new_pos < to &&
|
|
|
|
|
toc_list[new_pos].depth > depth)
|
|
|
|
|
++new_pos;
|
|
|
|
|
|
2002-07-21 15:51:07 +00:00
|
|
|
|
int const action = toc_list[pos].action();
|
2000-08-31 11:51:59 +00:00
|
|
|
|
string label(4 * max(0, toc_list[pos].depth - depth), ' ');
|
2000-10-30 21:53:29 +00:00
|
|
|
|
label += fixlabel(toc_list[pos].str);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
label = limit_string_length(label);
|
|
|
|
|
if (new_pos == to && depth == 0)
|
|
|
|
|
label += extra_label;
|
2001-01-31 17:54:37 +00:00
|
|
|
|
string shortcut;
|
|
|
|
|
if (toc_list[pos].depth == depth &&
|
|
|
|
|
++shortcut_count <= 9)
|
|
|
|
|
shortcut = tostr(shortcut_count);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
|
|
|
|
|
if (new_pos == pos + 1) {
|
2000-12-06 13:41:44 +00:00
|
|
|
|
label += "%x" + tostr(action + action_offset);
|
2001-01-31 17:54:37 +00:00
|
|
|
|
if (!shortcut.empty()) {
|
|
|
|
|
label += "%h";
|
|
|
|
|
fl_addtopup(menu, label.c_str(),
|
|
|
|
|
shortcut.c_str());
|
|
|
|
|
} else
|
|
|
|
|
fl_addtopup(menu, label.c_str());
|
2000-10-09 12:30:52 +00:00
|
|
|
|
} else {
|
|
|
|
|
int menu2 = get_new_submenu(smn, win);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
add_toc2(menu2, extra_label, smn, win,
|
|
|
|
|
toc_list, pos, new_pos, depth+1);
|
|
|
|
|
label += "%m";
|
2001-01-31 17:54:37 +00:00
|
|
|
|
if (!shortcut.empty()) {
|
|
|
|
|
label += "%h";
|
|
|
|
|
fl_addtopup(menu, label.c_str(), menu2,
|
|
|
|
|
shortcut.c_str());
|
|
|
|
|
} else
|
|
|
|
|
fl_addtopup(menu, label.c_str(), menu2);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
}
|
|
|
|
|
pos = new_pos;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2001-08-06 19:13:25 +00:00
|
|
|
|
} // namespace anon
|
2000-12-06 22:24:17 +00:00
|
|
|
|
|
2002-03-21 16:59:12 +00:00
|
|
|
|
|
2000-08-31 11:51:59 +00:00
|
|
|
|
void Menubar::Pimpl::add_toc(int menu, string const & extra_label,
|
|
|
|
|
vector<int> & smn, Window win)
|
|
|
|
|
{
|
2002-07-20 15:25:41 +00:00
|
|
|
|
if (!owner_->buffer())
|
|
|
|
|
return;
|
2002-07-21 15:51:07 +00:00
|
|
|
|
toc::TocList toc_list = toc::getTocList(owner_->buffer());
|
|
|
|
|
toc::TocList::const_iterator cit = toc_list.begin();
|
|
|
|
|
toc::TocList::const_iterator end = toc_list.end();
|
2001-03-11 18:39:00 +00:00
|
|
|
|
for (; cit != end; ++cit) {
|
|
|
|
|
// Handle this elsewhere
|
|
|
|
|
if (cit->first == "TOC") continue;
|
2001-05-04 10:36:36 +00:00
|
|
|
|
|
|
|
|
|
// All the rest is for floats
|
2001-12-12 09:56:03 +00:00
|
|
|
|
int menu_first_sub = get_new_submenu(smn, win);
|
|
|
|
|
int menu_current = menu_first_sub;
|
2002-07-21 15:51:07 +00:00
|
|
|
|
toc::Toc::const_iterator ccit = cit->second.begin();
|
|
|
|
|
toc::Toc::const_iterator eend = cit->second.end();
|
2001-12-12 09:56:03 +00:00
|
|
|
|
size_type count = 0;
|
2001-03-11 18:39:00 +00:00
|
|
|
|
for (; ccit != eend; ++ccit) {
|
2001-12-12 09:56:03 +00:00
|
|
|
|
++count;
|
|
|
|
|
if (count > max_number_of_items) {
|
|
|
|
|
int menu_tmp = get_new_submenu(smn, win);
|
|
|
|
|
string label = _("More");
|
|
|
|
|
label += "...%m";
|
|
|
|
|
fl_addtopup(menu_current, label.c_str(), menu_tmp);
|
|
|
|
|
count = 1;
|
|
|
|
|
menu_current = menu_tmp;
|
|
|
|
|
}
|
2002-07-21 15:51:07 +00:00
|
|
|
|
int const action = ccit->action();
|
2001-03-11 18:39:00 +00:00
|
|
|
|
string label = fixlabel(ccit->str);
|
|
|
|
|
label = limit_string_length(label);
|
|
|
|
|
label += "%x" + tostr(action + action_offset);
|
2001-12-12 09:56:03 +00:00
|
|
|
|
fl_addtopup(menu_current, label.c_str());
|
2001-03-11 18:39:00 +00:00
|
|
|
|
}
|
2001-05-04 10:36:36 +00:00
|
|
|
|
string const m = floatList[cit->first]->second.name() + "%m";
|
2001-12-12 09:56:03 +00:00
|
|
|
|
fl_addtopup(menu, m.c_str(), menu_first_sub);
|
2001-03-11 18:39:00 +00:00
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
|
|
|
|
|
2001-03-11 18:39:00 +00:00
|
|
|
|
// Handle normal TOC
|
|
|
|
|
cit = toc_list.find("TOC");
|
|
|
|
|
if (cit == end) {
|
|
|
|
|
string const tmp = _("No Table of contents%i") + extra_label;
|
|
|
|
|
fl_addtopup(menu, tmp.c_str());
|
|
|
|
|
return;
|
|
|
|
|
} else {
|
|
|
|
|
add_toc2(menu, extra_label, smn, win,
|
|
|
|
|
cit->second, 0, cit->second.size(), 0);
|
|
|
|
|
}
|
2000-08-31 11:51:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
|
2002-07-20 15:25:41 +00:00
|
|
|
|
int Menubar::Pimpl::create_submenu(Window win, XFormsView * view,
|
2002-03-21 21:21:28 +00:00
|
|
|
|
string const & menu_name,
|
|
|
|
|
vector<int> & smn)
|
2000-07-24 13:53:19 +00:00
|
|
|
|
{
|
2002-03-21 21:21:28 +00:00
|
|
|
|
if (!menubackend_->hasMenu(menu_name)) {
|
|
|
|
|
lyxerr << "ERROR:create_submenu: Unknown menu `"
|
2000-07-24 13:53:19 +00:00
|
|
|
|
<< menu_name << "'" << endl;
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
2001-05-04 10:36:36 +00:00
|
|
|
|
Menu md;
|
2000-10-04 09:54:31 +00:00
|
|
|
|
menubackend_->getMenu(menu_name).expand(md, owner_->buffer());
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
int const menu = get_new_submenu(smn, win);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
fl_setpup_softedge(menu, true);
|
|
|
|
|
fl_setpup_bw(menu, -1);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
lyxerr[Debug::GUI] << "Adding menu " << menu
|
2000-07-24 13:53:19 +00:00
|
|
|
|
<< " in deletion list" << endl;
|
|
|
|
|
|
|
|
|
|
// Compute the size of the largest label (because xforms is
|
|
|
|
|
// not able to support shortcuts correctly...)
|
2000-07-25 10:46:18 +00:00
|
|
|
|
int max_width = 0;
|
|
|
|
|
string widest_label;
|
2000-08-03 21:17:52 +00:00
|
|
|
|
Menu::const_iterator end = md.end();
|
|
|
|
|
for (Menu::const_iterator i = md.begin(); i != end; ++i) {
|
2000-08-31 11:51:59 +00:00
|
|
|
|
MenuItem const & item = (*i);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
if (item.kind() == MenuItem::Command) {
|
2001-05-04 10:36:36 +00:00
|
|
|
|
string const label = item.label() + '\t';
|
|
|
|
|
int const width = string_width(label);
|
2000-07-25 10:46:18 +00:00
|
|
|
|
if (width > max_width) {
|
2000-07-24 13:53:19 +00:00
|
|
|
|
max_width = width;
|
2000-07-25 10:46:18 +00:00
|
|
|
|
widest_label = label;
|
|
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
lyxerr[Debug::GUI] << "max_width=" << max_width
|
|
|
|
|
<< ", widest_label=`" << widest_label
|
2000-07-25 10:46:18 +00:00
|
|
|
|
<< "'" << endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2000-08-31 11:51:59 +00:00
|
|
|
|
// Compute where to put separators
|
|
|
|
|
vector<string> extra_labels(md.size());
|
|
|
|
|
vector<string>::iterator it = extra_labels.begin();
|
|
|
|
|
vector<string>::iterator last = it;
|
|
|
|
|
for (Menu::const_iterator i = md.begin(); i != end; ++i, ++it)
|
|
|
|
|
if (i->kind() == MenuItem::Separator)
|
|
|
|
|
*last = "%l";
|
|
|
|
|
else if (!i->optional() ||
|
2002-01-09 09:36:35 +00:00
|
|
|
|
!(view->getLyXFunc()->getStatus(i->action()).disabled()))
|
2000-08-31 11:51:59 +00:00
|
|
|
|
last = it;
|
|
|
|
|
|
|
|
|
|
it = extra_labels.begin();
|
|
|
|
|
for (Menu::const_iterator i = md.begin(); i != end; ++i, ++it) {
|
|
|
|
|
MenuItem const & item = (*i);
|
|
|
|
|
string & extra_label = *it;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2000-11-04 10:00:12 +00:00
|
|
|
|
switch (item.kind()) {
|
2000-07-24 13:53:19 +00:00
|
|
|
|
case MenuItem::Command: {
|
2002-03-21 21:21:28 +00:00
|
|
|
|
FuncStatus const flag =
|
|
|
|
|
view->getLyXFunc()->getStatus(item.action());
|
2000-07-25 10:46:18 +00:00
|
|
|
|
// handle optional entries.
|
2002-03-21 21:21:28 +00:00
|
|
|
|
if (item.optional()
|
2002-01-09 09:36:35 +00:00
|
|
|
|
&& (flag.disabled())) {
|
2002-03-21 21:21:28 +00:00
|
|
|
|
lyxerr[Debug::GUI]
|
|
|
|
|
<< "Skipping optional item "
|
|
|
|
|
<< item.label() << endl;
|
2000-07-25 10:46:18 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// Get the keys bound to this action, but keep only the
|
|
|
|
|
// first one later
|
2001-11-30 13:25:38 +00:00
|
|
|
|
string const accel = toplevel_keymap->findbinding(kb_action(item.action()));
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// Build the menu label from all the info
|
2000-07-25 10:46:18 +00:00
|
|
|
|
string label = item.label();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
|
|
if (!accel.empty()) {
|
2000-07-25 10:46:18 +00:00
|
|
|
|
// Try to be clever and add just enough
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// tabs to align shortcuts.
|
2002-03-21 21:21:28 +00:00
|
|
|
|
do
|
2000-07-25 10:46:18 +00:00
|
|
|
|
label += '\t';
|
2001-01-09 13:58:48 +00:00
|
|
|
|
while (string_width(label) < max_width + 5);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
label += accel.substr(1,accel.find(']') - 1);
|
|
|
|
|
}
|
2000-12-06 13:41:44 +00:00
|
|
|
|
label += "%x" + tostr(item.action() + action_offset)
|
|
|
|
|
+ extra_label;
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// Modify the entry using the function status
|
|
|
|
|
string pupmode;
|
2002-01-09 09:36:35 +00:00
|
|
|
|
if (flag.onoff(true))
|
2000-07-24 13:53:19 +00:00
|
|
|
|
pupmode += "%B";
|
2002-01-09 09:36:35 +00:00
|
|
|
|
if (flag.onoff(false))
|
2000-07-24 13:53:19 +00:00
|
|
|
|
pupmode += "%b";
|
2002-02-08 14:32:17 +00:00
|
|
|
|
if (flag.disabled() || flag.unknown())
|
|
|
|
|
pupmode += "%i";
|
2000-07-24 13:53:19 +00:00
|
|
|
|
label += pupmode;
|
|
|
|
|
|
|
|
|
|
// Finally the menu shortcut
|
2000-07-25 10:46:18 +00:00
|
|
|
|
string shortcut = item.shortcut();
|
2000-08-02 09:33:15 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
if (!shortcut.empty()) {
|
2000-08-02 09:33:15 +00:00
|
|
|
|
shortcut += lowercase(shortcut[0]);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
label += "%h";
|
2002-03-21 21:21:28 +00:00
|
|
|
|
fl_addtopup(menu, label.c_str(),
|
2000-08-31 11:51:59 +00:00
|
|
|
|
shortcut.c_str());
|
2000-07-24 13:53:19 +00:00
|
|
|
|
} else
|
2000-08-31 11:51:59 +00:00
|
|
|
|
fl_addtopup(menu, label.c_str());
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
|
|
|
|
lyxerr[Debug::GUI] << "Command: \""
|
2000-07-25 10:46:18 +00:00
|
|
|
|
<< lyxaction.getActionName(item.action())
|
2000-11-29 15:06:42 +00:00
|
|
|
|
<< "\", binding \"" << accel
|
2002-03-21 21:21:28 +00:00
|
|
|
|
<< "\", shortcut \"" << shortcut
|
2000-11-29 15:06:42 +00:00
|
|
|
|
<< "\"" << endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case MenuItem::Submenu: {
|
2002-03-21 21:21:28 +00:00
|
|
|
|
int submenu = create_submenu(win, view,
|
2000-08-31 11:51:59 +00:00
|
|
|
|
item.submenu(), smn);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
if (submenu == -1)
|
|
|
|
|
return -1;
|
2000-07-25 10:46:18 +00:00
|
|
|
|
string label = item.label();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
label += extra_label + "%m";
|
2000-07-25 10:46:18 +00:00
|
|
|
|
string shortcut = item.shortcut();
|
2000-08-02 09:33:15 +00:00
|
|
|
|
if (!shortcut.empty()) {
|
|
|
|
|
shortcut += lowercase(shortcut[0]);
|
2000-10-11 21:06:43 +00:00
|
|
|
|
label += "%h";
|
|
|
|
|
fl_addtopup(menu, label.c_str(),
|
2000-08-31 11:51:59 +00:00
|
|
|
|
submenu, shortcut.c_str());
|
2001-05-04 10:36:36 +00:00
|
|
|
|
} else {
|
2000-08-31 11:51:59 +00:00
|
|
|
|
fl_addtopup(menu, label.c_str(), submenu);
|
2000-08-02 09:33:15 +00:00
|
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case MenuItem::Separator:
|
|
|
|
|
// already done, and if it was the first one,
|
|
|
|
|
// we just ignore it.
|
|
|
|
|
break;
|
|
|
|
|
|
2000-08-31 11:51:59 +00:00
|
|
|
|
case MenuItem::Toc:
|
|
|
|
|
add_toc(menu, extra_label, smn, win);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2002-03-21 21:21:28 +00:00
|
|
|
|
case MenuItem::Documents:
|
|
|
|
|
case MenuItem::Lastfiles:
|
2000-08-30 03:40:51 +00:00
|
|
|
|
case MenuItem::ViewFormats:
|
|
|
|
|
case MenuItem::UpdateFormats:
|
|
|
|
|
case MenuItem::ExportFormats:
|
2000-11-06 11:20:22 +00:00
|
|
|
|
case MenuItem::ImportFormats:
|
2001-05-04 10:36:36 +00:00
|
|
|
|
case MenuItem::FloatListInsert:
|
|
|
|
|
case MenuItem::FloatInsert:
|
2000-10-04 09:54:31 +00:00
|
|
|
|
lyxerr << "Menubar::Pimpl::create_submenu: "
|
|
|
|
|
"this should not happen" << endl;
|
2000-08-30 03:40:51 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return menu;
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
|
|
|
|
|
{
|
|
|
|
|
ItemInfo * iteminfo = static_cast<ItemInfo *>(ob->u_vdata);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
// lyxerr << "MenuCallback: ItemInfo address=" << iteminfo
|
|
|
|
|
// << "Val=(pimpl_=" << iteminfo->pimpl_
|
|
|
|
|
// << ", item_=" << iteminfo->item_
|
|
|
|
|
// << ", obj_=" << iteminfo->obj_ << ")" <<endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2002-07-20 15:25:41 +00:00
|
|
|
|
XFormsView * view = iteminfo->pimpl_->owner_;
|
2001-03-07 16:18:05 +00:00
|
|
|
|
MenuItem const * item = iteminfo->item_.get();
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
|
|
if (button == 1) {
|
|
|
|
|
// set the pseudo menu-button
|
|
|
|
|
fl_set_object_boxtype(ob, FL_DOWN_BOX);
|
|
|
|
|
fl_set_button(ob, 0);
|
|
|
|
|
fl_redraw_object(ob);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Paranoia check
|
2001-04-24 15:25:26 +00:00
|
|
|
|
lyx::Assert(item->kind() == MenuItem::Submenu);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// set tabstop length
|
|
|
|
|
fl_set_tabstop(menu_tabstop);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
vector<int> submenus;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
int menu = iteminfo->pimpl_->
|
2002-03-21 21:21:28 +00:00
|
|
|
|
create_submenu(FL_ObjWin(ob), view,
|
2000-08-31 11:51:59 +00:00
|
|
|
|
item->submenu(), submenus);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
if (menu != -1) {
|
|
|
|
|
// place popup
|
2002-07-20 15:25:41 +00:00
|
|
|
|
fl_setpup_position(view->getForm()->x + ob->x,
|
|
|
|
|
view->getForm()->y + ob->y + ob->h + 10);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
int choice = fl_dopup(menu);
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
if (button == 1) {
|
|
|
|
|
// set the pseudo menu-button back
|
|
|
|
|
fl_set_object_boxtype(ob, FL_FLAT_BOX);
|
|
|
|
|
fl_redraw_object(ob);
|
|
|
|
|
}
|
2000-12-06 13:41:44 +00:00
|
|
|
|
|
|
|
|
|
// If the action value is too low, then it is not a
|
|
|
|
|
// valid action, but something else.
|
|
|
|
|
if (choice >= action_offset + 1) {
|
2002-07-18 20:15:29 +00:00
|
|
|
|
view->getLyXFunc()->dispatch(choice - action_offset, true);
|
2001-07-16 15:42:57 +00:00
|
|
|
|
} else {
|
2000-12-06 13:41:44 +00:00
|
|
|
|
lyxerr[Debug::GUI]
|
|
|
|
|
<< "MenuCallback: ignoring bogus action "
|
|
|
|
|
<< choice << endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
2001-07-16 15:42:57 +00:00
|
|
|
|
} else {
|
2000-07-24 13:53:19 +00:00
|
|
|
|
lyxerr << "Error in MenuCallback" << endl;
|
2001-07-16 15:42:57 +00:00
|
|
|
|
}
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2002-02-16 15:59:55 +00:00
|
|
|
|
for_each(submenus.begin(), submenus.end(), fl_freepup);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// restore tabstop length
|
|
|
|
|
fl_set_tabstop(default_tabstop);
|
|
|
|
|
|
|
|
|
|
}
|