2000-07-24 13:53:19 +00:00
|
|
|
/* This file is part of
|
|
|
|
* ======================================================
|
|
|
|
*
|
|
|
|
* LyX, The Document Processor
|
|
|
|
*
|
|
|
|
* Copyright (C) 1999 The LyX Team.
|
|
|
|
*
|
|
|
|
*======================================================*/
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include "support/lstrings.h"
|
|
|
|
#include "support/LAssert.h"
|
|
|
|
#include "debug.h"
|
|
|
|
#include "LyXAction.h"
|
|
|
|
#include "lyxfunc.h"
|
|
|
|
#include "kbmap.h"
|
2000-10-04 09:54:31 +00:00
|
|
|
#include "buffer.h"
|
2000-07-24 13:53:19 +00:00
|
|
|
#include "LyXView.h"
|
|
|
|
#include "MenuBackend.h"
|
|
|
|
#include "Menubar_pimpl.h"
|
|
|
|
|
|
|
|
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;
|
2000-08-31 11:51:59 +00:00
|
|
|
|
|
|
|
typedef vector<int>::size_type size_type;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
extern kb_keymap * toplevel_keymap;
|
|
|
|
extern LyXAction lyxaction;
|
|
|
|
|
|
|
|
// Some constants
|
2000-10-11 21:06:43 +00:00
|
|
|
static const int MENU_LABEL_SIZE = FL_NORMAL_SIZE;
|
|
|
|
static const int mheight = 30;
|
|
|
|
static const int mbheight= 22;
|
2000-07-24 13:53:19 +00:00
|
|
|
// where to place the menubar?
|
2000-10-11 21:06:43 +00:00
|
|
|
static const int yloc = (mheight - mbheight)/2; //air + bw;
|
|
|
|
static const int mbadd = 20; // menu button add (to width)
|
2000-07-24 13:53:19 +00:00
|
|
|
// Some space between buttons on the menubar
|
2000-10-11 21:06:43 +00:00
|
|
|
static const int air = 2;
|
|
|
|
static char const * menu_tabstop = "aa";
|
|
|
|
static 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
|
|
|
|
// constant.
|
|
|
|
static const int action_offset = 1000;
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
2000-09-26 16:16:55 +00:00
|
|
|
//Defined later, used in makeMenubar().
|
|
|
|
extern "C"
|
|
|
|
void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
2000-07-25 10:46:18 +00:00
|
|
|
// This is used a few times below.
|
2000-12-06 22:24:17 +00:00
|
|
|
static inline
|
2000-07-25 10:46:18 +00:00
|
|
|
int string_width(string const & str)
|
|
|
|
{
|
|
|
|
return fl_get_string_widthTAB(FL_NORMAL_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
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-09-26 16:16:55 +00:00
|
|
|
Menubar::Pimpl::Pimpl(LyXView * view, MenuBackend const & mb)
|
|
|
|
: owner_(view), menubackend_(&mb), current_group_(0)
|
2000-07-24 13:53:19 +00:00
|
|
|
{
|
2000-11-04 10:00:12 +00:00
|
|
|
for (MenuBackend::const_iterator menu = menubackend_->begin();
|
2000-09-26 16:16:55 +00:00
|
|
|
menu != menubackend_->end() ; ++menu) {
|
|
|
|
if (menu->menubar()) {
|
|
|
|
FL_OBJECT * group = fl_bgn_group();
|
|
|
|
makeMenubar(*menu);
|
|
|
|
fl_end_group();
|
|
|
|
fl_hide_object(group);
|
|
|
|
lyxerr[Debug::GUI]
|
|
|
|
<< "Menubar::Pimpl::Pimpl: "
|
|
|
|
<< "creating and hiding group " << group
|
|
|
|
<< " for menubar " << menu->name() << endl;
|
|
|
|
menubarmap_[menu->name()] = group;
|
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
}
|
2000-09-26 16:16:55 +00:00
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
|
2000-09-26 16:16:55 +00:00
|
|
|
Menubar::Pimpl::~Pimpl()
|
|
|
|
{
|
|
|
|
// Should we do something here?
|
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
|
2000-09-26 16:16:55 +00:00
|
|
|
void Menubar::Pimpl::makeMenubar(Menu const &menu)
|
|
|
|
{
|
2000-07-24 13:53:19 +00:00
|
|
|
FL_FORM * form = owner_->getForm();
|
|
|
|
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);
|
|
|
|
fl_set_object_gravity(frame, NorthWestGravity,
|
|
|
|
NorthEastGravity);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
for (Menu::const_iterator i = menu.begin();
|
|
|
|
i != menu.end(); ++i) {
|
|
|
|
FL_OBJECT * obj;
|
|
|
|
if (i->kind() != MenuItem::Submenu) {
|
2000-09-26 16:16:55 +00:00
|
|
|
lyxerr << "ERROR: Menubar::Pimpl::createMenubar:"
|
2000-07-24 13:53:19 +00:00
|
|
|
" only submenus can appear in a menubar";
|
|
|
|
break;
|
|
|
|
}
|
2000-07-25 10:46:18 +00:00
|
|
|
string label = i->label();
|
2000-10-03 18:38:10 +00:00
|
|
|
string shortcut = "#" + i->shortcut();
|
2000-07-25 10:46:18 +00:00
|
|
|
int 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,
|
|
|
|
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);
|
|
|
|
fl_set_object_lstyle(obj, FL_NORMAL_STYLE);
|
|
|
|
fl_set_object_resize(obj, FL_RESIZE_ALL);
|
|
|
|
fl_set_object_gravity(obj, NorthWestGravity,
|
|
|
|
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
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
ItemInfo * iteminfo = new ItemInfo(this,
|
|
|
|
new MenuItem(*i), obj);
|
|
|
|
buttonlist_.push_back(iteminfo);
|
|
|
|
obj->u_vdata = iteminfo;
|
|
|
|
}
|
|
|
|
|
2000-09-26 16:16:55 +00:00
|
|
|
}
|
2000-07-24 13:53:19 +00:00
|
|
|
|
2000-09-26 16:16:55 +00:00
|
|
|
void Menubar::Pimpl::set(string const & menu_name)
|
|
|
|
{
|
|
|
|
lyxerr[Debug::GUI] << "Entering Menubar::Pimpl::set "
|
|
|
|
<< "for menu `" << menu_name << "'" << endl;
|
|
|
|
|
|
|
|
if (menu_name != current_menu_name_) {
|
|
|
|
MenubarMap::iterator mbit = menubarmap_.find(menu_name);
|
|
|
|
|
|
|
|
if (mbit == menubarmap_.end()) {
|
|
|
|
lyxerr << "ERROR:set: Unknown menu `" << menu_name
|
|
|
|
<< "'" << endl;
|
|
|
|
return;
|
2000-07-26 14:08:09 +00:00
|
|
|
}
|
|
|
|
|
2000-09-26 16:16:55 +00:00
|
|
|
if (current_group_) {
|
|
|
|
lyxerr[Debug::GUI] << " hiding group "
|
|
|
|
<< current_group_ << endl;
|
|
|
|
fl_hide_object(current_group_);
|
|
|
|
}
|
|
|
|
|
|
|
|
lyxerr[Debug::GUI] << " showing group "
|
|
|
|
<< mbit->second << endl;
|
|
|
|
fl_show_object(mbit->second);
|
|
|
|
current_menu_name_ = menu_name;
|
|
|
|
current_group_ = mbit->second;
|
|
|
|
lyxerr[Debug::GUI] << "Menubar::Pimpl::set: Menubar set."
|
|
|
|
<< endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lyxerr [Debug::GUI] << "Menubar::Pimpl::set: Nothing to do."
|
|
|
|
<< endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Menubar::Pimpl::openByName(string const & name)
|
|
|
|
{
|
2000-12-06 13:41:44 +00:00
|
|
|
if (menubackend_->getMenu(current_menu_name_).hasSubmenu(name)) {
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
lyxerr << "Menubar::Pimpl::openByName: menu "
|
|
|
|
<< name << " not found" << endl;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
static inline
|
|
|
|
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
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
static
|
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;
|
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
static inline
|
2000-10-30 21:53:29 +00:00
|
|
|
string const fixlabel(string const & str)
|
|
|
|
{
|
|
|
|
#if FL_REVISION < 89
|
|
|
|
return subst(str, '%', '?');
|
|
|
|
#else
|
|
|
|
return subst(str, "%", "%%");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
vector<Buffer::TocItem> const & toc_list,
|
|
|
|
size_type from, size_type to, int depth)
|
|
|
|
{
|
|
|
|
if (to - from <= max_number_of_items) {
|
|
|
|
for (size_type i = from; i < to; ++i) {
|
2000-12-06 22:24:17 +00:00
|
|
|
int const action = lyxaction.
|
2000-08-31 11:51:59 +00:00
|
|
|
getPseudoAction(LFUN_GOTO_PARAGRAPH,
|
|
|
|
tostr(toc_list[i].par->id()));
|
|
|
|
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;
|
|
|
|
fl_addtopup(menu, label.c_str());
|
|
|
|
}
|
|
|
|
} 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;
|
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
int const action = lyxaction.
|
2000-08-31 11:51:59 +00:00
|
|
|
getPseudoAction(LFUN_GOTO_PARAGRAPH,
|
|
|
|
tostr(toc_list[pos].par->id()));
|
|
|
|
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;
|
|
|
|
|
|
|
|
if (new_pos == pos + 1) {
|
2000-12-06 13:41:44 +00:00
|
|
|
label += "%x" + tostr(action + action_offset);
|
2000-08-31 11:51:59 +00:00
|
|
|
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";
|
|
|
|
fl_addtopup(menu, label.c_str(), menu2);
|
|
|
|
}
|
|
|
|
pos = new_pos;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-12-06 22:24:17 +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)
|
|
|
|
{
|
|
|
|
//xgettext:no-c-format
|
|
|
|
static char const * MenuNames[3] = { N_("List of Figures%m"),
|
|
|
|
//xgettext:no-c-format
|
|
|
|
N_("List of Tables%m"),
|
|
|
|
//xgettext:no-c-format
|
|
|
|
N_("List of Algorithms%m") };
|
|
|
|
|
|
|
|
vector<vector<Buffer::TocItem> > toc_list =
|
|
|
|
owner_->buffer()->getTocList();
|
|
|
|
|
|
|
|
// Handle LOF/LOT/LOA
|
|
|
|
int max_nonempty = 0;
|
|
|
|
for (int i = 1; i <= 3; ++i)
|
|
|
|
if (!toc_list[i].empty())
|
|
|
|
max_nonempty = i;
|
|
|
|
|
|
|
|
for (int j = 1; j <= 3; ++j)
|
|
|
|
if (!toc_list[j].empty()) {
|
2000-10-09 12:30:52 +00:00
|
|
|
int menu2 = get_new_submenu(smn, win);
|
2000-08-31 11:51:59 +00:00
|
|
|
for (size_type i = 0; i < toc_list[j].size(); ++i) {
|
|
|
|
if (i > max_number_of_items) {
|
|
|
|
fl_addtopup(menu2, ". . .%d");
|
|
|
|
break;
|
|
|
|
}
|
2000-12-06 22:24:17 +00:00
|
|
|
int const action = lyxaction.
|
2000-08-31 11:51:59 +00:00
|
|
|
getPseudoAction(LFUN_GOTO_PARAGRAPH,
|
|
|
|
tostr(toc_list[j][i].par->id()));
|
2000-10-30 21:53:29 +00:00
|
|
|
string label = fixlabel(toc_list[j][i].str);
|
|
|
|
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
|
|
|
fl_addtopup(menu2, label.c_str());
|
|
|
|
}
|
|
|
|
if (j == max_nonempty) {
|
2000-10-11 21:06:43 +00:00
|
|
|
string label = _(MenuNames[j - 1]);
|
2000-08-31 11:51:59 +00:00
|
|
|
label += "%l";
|
|
|
|
fl_addtopup(menu, label.c_str(), menu2);
|
|
|
|
} else
|
2000-10-11 21:06:43 +00:00
|
|
|
fl_addtopup(menu, _(MenuNames[j - 1]), menu2);
|
2000-08-31 11:51:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Handle normal TOC
|
|
|
|
if (max_nonempty == 0 && toc_list[0].empty()) {
|
2000-12-12 15:25:27 +00:00
|
|
|
fl_addtopup(menu, (_("No Table of Contents%i")
|
|
|
|
+ extra_label).c_str());
|
2000-08-31 11:51:59 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
add_toc2(menu, extra_label, smn, win,
|
|
|
|
toc_list[0], 0, toc_list[0].size(), 0);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
void add_references2(int menu, vector<int> & smn, Window win,
|
|
|
|
vector<string> const & label_list, string const & type)
|
|
|
|
{
|
|
|
|
size_type const max_number_of_items = 25;
|
|
|
|
size_type const max_number_of_items2 = 20;
|
|
|
|
string::size_type const max_item_length = 40;
|
|
|
|
string::size_type const max_item_length2 = 20;
|
|
|
|
|
|
|
|
if (label_list.size() <= max_number_of_items)
|
|
|
|
for (size_type i = 0; i < label_list.size(); ++i) {
|
2000-12-06 22:24:17 +00:00
|
|
|
int const action = (type == "goto")
|
2000-08-31 11:51:59 +00:00
|
|
|
? lyxaction.getPseudoAction(LFUN_REF_GOTO,
|
|
|
|
label_list[i])
|
|
|
|
: lyxaction.getPseudoAction(LFUN_REF_INSERT,
|
|
|
|
type + "|++||++|"
|
|
|
|
+ label_list[i]);
|
|
|
|
string label = label_list[i];
|
|
|
|
if (label.size() > max_item_length)
|
|
|
|
label = label.substr(0, max_item_length-1) + "$";
|
2000-12-06 13:41:44 +00:00
|
|
|
label += "%x" + tostr(action + action_offset);
|
2000-08-31 11:51:59 +00:00
|
|
|
fl_addtopup(menu, label.c_str());
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
size_type count = 0;
|
|
|
|
for (size_type i = 0; i < label_list.size();
|
|
|
|
i += max_number_of_items2) {
|
|
|
|
++count;
|
|
|
|
if (count > max_number_of_items) {
|
|
|
|
fl_addtopup(menu, ". . .%d");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
size_type j = min(label_list.size(),
|
|
|
|
i+max_number_of_items2);
|
|
|
|
|
|
|
|
string label;
|
|
|
|
label += (label_list[i].size() > max_item_length2)
|
|
|
|
? label_list[i].substr(0, max_item_length2-1) + "$"
|
|
|
|
: label_list[i];
|
|
|
|
label += "..";
|
|
|
|
label += (label_list[j-1].size() > max_item_length2)
|
|
|
|
? label_list[j-1].substr(0, max_item_length2-1) + "$"
|
|
|
|
: label += label_list[j-1];
|
|
|
|
|
2000-10-09 12:30:52 +00:00
|
|
|
int menu2 = get_new_submenu(smn, win);
|
|
|
|
for (size_type k = i; k < j; ++k) {
|
2000-12-06 22:24:17 +00:00
|
|
|
int const action = (type == "goto")
|
2000-10-09 12:30:52 +00:00
|
|
|
? lyxaction.getPseudoAction(LFUN_REF_GOTO,
|
|
|
|
label_list[k])
|
|
|
|
: lyxaction.getPseudoAction(LFUN_REF_INSERT,
|
|
|
|
type + "|++||++|"
|
|
|
|
+ label_list[k]);
|
|
|
|
string label2 = label_list[k];
|
|
|
|
if (label2.size() > max_item_length)
|
|
|
|
label2 = label2.substr(0, max_item_length-1) + "$";
|
2000-12-06 13:41:44 +00:00
|
|
|
label2 += "%x" + tostr(action + action_offset);
|
2000-10-09 12:30:52 +00:00
|
|
|
fl_addtopup(menu2, label2.c_str());
|
2000-08-31 11:51:59 +00:00
|
|
|
}
|
2000-10-09 12:30:52 +00:00
|
|
|
label += "%m";
|
|
|
|
fl_addtopup(menu, label.c_str(), menu2);
|
2000-08-31 11:51:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Menubar::Pimpl::add_references(int menu, string const & extra_label,
|
|
|
|
vector<int> & smn, Window win)
|
|
|
|
{
|
|
|
|
//xgettext:no-c-format
|
|
|
|
static char const * MenuNames[6] = { N_("Insert Reference%m"),
|
|
|
|
//xgettext:no-c-format
|
|
|
|
N_("Insert Page Number%m"),
|
|
|
|
//xgettext:no-c-format
|
|
|
|
N_("Insert vref%m"),
|
|
|
|
//xgettext:no-c-format
|
|
|
|
N_("Insert vpageref%m"),
|
|
|
|
//xgettext:no-c-format
|
|
|
|
N_("Insert Pretty Ref%m"),
|
|
|
|
//xgettext:no-c-format
|
|
|
|
N_("Goto Reference%m") };
|
|
|
|
|
|
|
|
int const EMPTY = 1;
|
|
|
|
int const SGML = 2;
|
|
|
|
int const READONLY = 4;
|
|
|
|
|
|
|
|
static int MenuFlags[6] = {
|
|
|
|
EMPTY | READONLY,
|
|
|
|
EMPTY | READONLY,
|
|
|
|
EMPTY | READONLY | SGML,
|
|
|
|
EMPTY | READONLY | SGML,
|
|
|
|
EMPTY | READONLY | SGML,
|
|
|
|
EMPTY };
|
|
|
|
|
|
|
|
static string const MenuTypes[6] = {
|
|
|
|
"ref", "pageref", "vref", "vpageref", "prettyref", "goto" };
|
|
|
|
|
|
|
|
vector<string> label_list = owner_->buffer()->getLabelList();
|
|
|
|
|
|
|
|
int flag = 0;
|
|
|
|
if (label_list.empty())
|
|
|
|
flag += EMPTY;
|
|
|
|
if (owner_->buffer()->isSGML())
|
|
|
|
flag += SGML;
|
|
|
|
if (owner_->buffer()->isReadonly())
|
|
|
|
flag += READONLY;
|
|
|
|
|
|
|
|
int max_nonempty = -1;
|
|
|
|
for (int i = 0; i < 6; ++i)
|
|
|
|
if ((MenuFlags[i] & flag) == 0)
|
|
|
|
max_nonempty = i;
|
|
|
|
|
|
|
|
for (int i = 0; i < 6; ++i) {
|
|
|
|
if ((MenuFlags[i] & flag) == 0) {
|
|
|
|
string label = _(MenuNames[i]);
|
|
|
|
if (i == max_nonempty)
|
|
|
|
label += extra_label;
|
2000-10-09 12:30:52 +00:00
|
|
|
int menu2 = get_new_submenu(smn, win);
|
|
|
|
add_references2(menu2, smn, win, label_list,
|
|
|
|
MenuTypes[i]);
|
|
|
|
fl_addtopup(menu, label.c_str(), menu2);
|
2000-08-31 11:51:59 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
int Menubar::Pimpl::create_submenu(Window win, LyXView * view,
|
|
|
|
string const & menu_name,
|
2000-08-31 11:51:59 +00:00
|
|
|
vector<int> & smn)
|
2000-07-24 13:53:19 +00:00
|
|
|
{
|
|
|
|
if (!menubackend_->hasMenu(menu_name)){
|
|
|
|
lyxerr << "ERROR:create_submenu: Unknown menu `"
|
|
|
|
<< menu_name << "'" << endl;
|
|
|
|
return -1;
|
|
|
|
}
|
2000-10-04 09:54:31 +00:00
|
|
|
Menu md = Menu();
|
|
|
|
menubackend_->getMenu(menu_name).expand(md, owner_->buffer());
|
2000-07-24 13:53:19 +00:00
|
|
|
|
2000-10-09 12:30:52 +00:00
|
|
|
int menu = get_new_submenu(smn, win);
|
2000-07-24 13:53:19 +00:00
|
|
|
fl_setpup_softedge(menu, true);
|
|
|
|
fl_setpup_bw(menu, -1);
|
|
|
|
lyxerr[Debug::GUI] << "Adding menu " << menu
|
|
|
|
<< " 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) {
|
2000-07-25 10:46:18 +00:00
|
|
|
string label = item.label() + '\t';
|
|
|
|
int width = string_width(label);
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2000-07-25 10:46:18 +00:00
|
|
|
lyxerr[Debug::GUI] << "max_width=" << max_width
|
|
|
|
<< ", widest_label=`" << widest_label
|
|
|
|
<< "'" << 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() ||
|
|
|
|
!(view->getLyXFunc()->getStatus(i->action()) & LyXFunc::Disabled))
|
|
|
|
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: {
|
|
|
|
LyXFunc::func_status flag =
|
|
|
|
view->getLyXFunc()->getStatus(item.action());
|
2000-07-25 10:46:18 +00:00
|
|
|
|
|
|
|
// handle optional entries.
|
|
|
|
if (item.optional() && (flag & LyXFunc::Disabled)) {
|
|
|
|
lyxerr[Debug::GUI]
|
|
|
|
<< "Skipping optional item "
|
|
|
|
<< item.label() << endl;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
// Get the keys bound to this action, but keep only the
|
|
|
|
// first one later
|
2000-12-06 22:24:17 +00:00
|
|
|
string const accel = toplevel_keymap->findbinding(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.
|
2000-07-25 10:46:18 +00:00
|
|
|
do
|
|
|
|
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;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
// Modify the entry using the function status
|
|
|
|
string pupmode;
|
|
|
|
if (flag & (LyXFunc::Disabled | LyXFunc::Unknown))
|
|
|
|
pupmode += "%i";
|
|
|
|
if (flag & LyXFunc::ToggleOn)
|
|
|
|
pupmode += "%B";
|
|
|
|
if (flag & LyXFunc::ToggleOff)
|
|
|
|
pupmode += "%b";
|
|
|
|
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";
|
2000-08-31 11:51:59 +00:00
|
|
|
fl_addtopup(menu, label.c_str(),
|
|
|
|
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());
|
2000-07-25 10:46:18 +00:00
|
|
|
|
|
|
|
lyxerr[Debug::GUI] << "Command: \""
|
|
|
|
<< lyxaction.getActionName(item.action())
|
2000-11-29 15:06:42 +00:00
|
|
|
<< "\", binding \"" << accel
|
|
|
|
<< "\", shortcut \"" << shortcut
|
|
|
|
<< "\"" << endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
case MenuItem::Submenu: {
|
|
|
|
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());
|
2000-08-02 09:33:15 +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);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MenuItem::References:
|
|
|
|
add_references(menu, extra_label, smn, win);
|
2000-07-24 13:53:19 +00:00
|
|
|
break;
|
|
|
|
|
2000-10-04 09:54:31 +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:
|
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
|
|
|
extern "C"
|
|
|
|
void C_Menubar_Pimpl_MenuCallback(FL_OBJECT * ob, long button)
|
|
|
|
{
|
|
|
|
Menubar::Pimpl::MenuCallback(ob, button);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Menubar::Pimpl::MenuCallback(FL_OBJECT * ob, long button)
|
|
|
|
{
|
|
|
|
ItemInfo * iteminfo = static_cast<ItemInfo *>(ob->u_vdata);
|
|
|
|
// lyxerr << "MenuCallback: ItemInfo address=" << iteminfo
|
|
|
|
// << "Val=(pimpl_=" << iteminfo->pimpl_
|
|
|
|
// << ", item_=" << iteminfo->item_
|
|
|
|
// << ", obj_=" << iteminfo->obj_ << ")" <<endl;
|
|
|
|
|
|
|
|
LyXView * view = iteminfo->pimpl_->owner_;
|
|
|
|
MenuItem const * item = iteminfo->item_;
|
|
|
|
|
|
|
|
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
|
|
|
|
Assert(item->kind() == MenuItem::Submenu);
|
|
|
|
|
|
|
|
// 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_->
|
|
|
|
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
|
|
|
|
fl_setpup_position(view->getForm()->x + ob->x,
|
|
|
|
view->getForm()->y + ob->y + ob->h + 10);
|
|
|
|
int choice = fl_dopup(menu);
|
|
|
|
|
|
|
|
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) {
|
|
|
|
view->getLyXFunc()->Dispatch(choice - action_offset);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
lyxerr[Debug::GUI]
|
|
|
|
<< "MenuCallback: ignoring bogus action "
|
|
|
|
<< choice << endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
lyxerr << "Error in MenuCallback" << endl;
|
|
|
|
|
|
|
|
std::for_each(submenus.begin(), submenus.end(), fl_freepup);
|
|
|
|
// restore tabstop length
|
|
|
|
fl_set_tabstop(default_tabstop);
|
|
|
|
|
|
|
|
}
|