2002-03-11 17:00:41 +00:00
|
|
|
|
/**
|
2002-09-26 08:57:43 +00:00
|
|
|
|
* \file xforms/Menubar_pimpl.C
|
2002-09-05 15:14:23 +00:00
|
|
|
|
* This file is part of LyX, the document processor.
|
|
|
|
|
* Licence details can be found in the file COPYING.
|
2002-03-11 17:00:41 +00:00
|
|
|
|
*
|
2002-09-05 14:10:50 +00:00
|
|
|
|
* \author Lars Gullik Bj<EFBFBD>nnes
|
2003-02-15 21:03:40 +00:00
|
|
|
|
* \author Jean-Marc Lasgouttes
|
2002-09-05 14:10:50 +00:00
|
|
|
|
*
|
|
|
|
|
* Full author contact details are available in file CREDITS
|
2002-03-11 17:00:41 +00:00
|
|
|
|
*/
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2001-03-15 13:37:04 +00:00
|
|
|
|
#include <config.h>
|
|
|
|
|
|
2001-05-04 10:36:36 +00:00
|
|
|
|
#include "Menubar_pimpl.h"
|
|
|
|
|
#include "MenuBackend.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 "support/lstrings.h"
|
2003-05-13 14:36:24 +00:00
|
|
|
|
#include "support/tostr.h"
|
2001-05-04 10:36:36 +00:00
|
|
|
|
#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"
|
2003-05-14 09:17:22 +00:00
|
|
|
|
#include "lyx_forms.h"
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2003-02-15 21:03:40 +00:00
|
|
|
|
//#include <boost/scoped_ptr.hpp>
|
2002-05-22 01:16:37 +00:00
|
|
|
|
|
|
|
|
|
#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-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
|
|
|
|
|
|
|
|
|
|
2002-08-21 06:32:10 +00:00
|
|
|
|
Menubar::Pimpl::~Pimpl()
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
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();
|
2002-11-27 10:30:28 +00:00
|
|
|
|
string const shortcut = '#' + i->shortcut();
|
2001-05-04 10:36:36 +00:00
|
|
|
|
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) {
|
2002-07-23 22:42:12 +00:00
|
|
|
|
if ((*cit)->item_->submenuname() == name) {
|
2002-07-20 21:50:05 +00:00
|
|
|
|
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 {
|
|
|
|
|
|
2002-07-24 22:32:03 +00:00
|
|
|
|
Menu::size_type const max_number_of_items = 25;
|
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);
|
2002-07-24 22:32:03 +00:00
|
|
|
|
fl_setpup_softedge(menu, true);
|
|
|
|
|
fl_setpup_bw(menu, -1);
|
2000-10-09 12:30:52 +00:00
|
|
|
|
smn.push_back(menu);
|
|
|
|
|
return menu;
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
|
|
2000-10-30 21:53:29 +00:00
|
|
|
|
string const fixlabel(string const & str)
|
|
|
|
|
{
|
|
|
|
|
return subst(str, "%", "%%");
|
|
|
|
|
}
|
|
|
|
|
|
2001-03-20 01:22:46 +00:00
|
|
|
|
|
2000-12-06 22:24:17 +00:00
|
|
|
|
|
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
|
|
|
|
|
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,
|
2003-02-15 21:03:40 +00:00
|
|
|
|
Menu const & menu, vector<int> & smn)
|
2000-07-24 13:53:19 +00:00
|
|
|
|
{
|
2002-07-24 22:32:03 +00:00
|
|
|
|
const int menuid = get_new_submenu(smn, win);
|
|
|
|
|
lyxerr[Debug::GUI] << "Menubar::Pimpl::create_submenu: creating "
|
|
|
|
|
<< menu.name() << " as menuid=" << menuid << endl;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
|
|
|
|
// 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;
|
2002-07-23 22:42:12 +00:00
|
|
|
|
Menu::const_iterator end = menu.end();
|
|
|
|
|
for (Menu::const_iterator i = menu.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
|
2003-02-15 21:03:40 +00:00
|
|
|
|
<< ", widest_label=\"" << widest_label
|
|
|
|
|
<< '"' << endl;
|
2000-08-31 11:51:59 +00:00
|
|
|
|
|
2002-07-24 22:32:03 +00:00
|
|
|
|
size_type count = 0;
|
|
|
|
|
int curmenuid = menuid;
|
2003-02-15 21:03:40 +00:00
|
|
|
|
for (Menu::const_iterator i = menu.begin(); i != end; ++i) {
|
2000-08-31 11:51:59 +00:00
|
|
|
|
MenuItem const & item = (*i);
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2002-07-24 22:32:03 +00:00
|
|
|
|
++count;
|
2002-10-18 15:01:25 +00:00
|
|
|
|
// add a More... submenu if the menu is too long (but
|
|
|
|
|
// not just for one extra entry!)
|
|
|
|
|
if (count > max_number_of_items && (i+1) != end) {
|
2002-07-24 22:32:03 +00:00
|
|
|
|
int tmpmenuid = get_new_submenu(smn, win);
|
|
|
|
|
lyxerr[Debug::GUI] << "Too many items, creating "
|
|
|
|
|
<< "new menu " << tmpmenuid << endl;
|
|
|
|
|
string label = _("More");
|
|
|
|
|
label += "...%m";
|
|
|
|
|
fl_addtopup(curmenuid, label.c_str(), tmpmenuid);
|
2003-02-15 21:03:40 +00:00
|
|
|
|
count = 0;
|
2002-07-24 22:32:03 +00:00
|
|
|
|
curmenuid = tmpmenuid;
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-04 10:00:12 +00:00
|
|
|
|
switch (item.kind()) {
|
2003-02-15 21:03:40 +00:00
|
|
|
|
case MenuItem::Command:
|
|
|
|
|
case MenuItem::Submenu:
|
|
|
|
|
{
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// Build the menu label from all the info
|
2002-07-24 22:32:03 +00:00
|
|
|
|
string label = fixlabel(item.label());
|
2003-02-15 21:03:40 +00:00
|
|
|
|
FuncStatus const flag = item.status();
|
2003-04-02 18:42:57 +00:00
|
|
|
|
int submenuid = 0;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
|
2003-02-15 21:03:40 +00:00
|
|
|
|
// Is there a key binding?
|
|
|
|
|
string const binding = item.binding();
|
|
|
|
|
if (!binding.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);
|
2003-02-15 21:03:40 +00:00
|
|
|
|
label += binding;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
2003-02-15 21:03:40 +00:00
|
|
|
|
|
|
|
|
|
// Is there a separator after the item?
|
|
|
|
|
if ((i+1) != end
|
|
|
|
|
&& (i + 1)->kind() == MenuItem::Separator)
|
|
|
|
|
label += "%l";
|
2002-03-21 21:21:28 +00:00
|
|
|
|
|
2000-07-24 13:53:19 +00:00
|
|
|
|
// Modify the entry using the function status
|
2002-01-09 09:36:35 +00:00
|
|
|
|
if (flag.onoff(true))
|
2003-02-15 21:03:40 +00:00
|
|
|
|
label += "%B";
|
2002-01-09 09:36:35 +00:00
|
|
|
|
if (flag.onoff(false))
|
2003-02-15 21:03:40 +00:00
|
|
|
|
label += "%b";
|
2002-12-18 14:24:32 +00:00
|
|
|
|
if (flag.disabled())
|
2002-07-25 14:00:29 +00:00
|
|
|
|
label += "%i";
|
2003-02-15 21:03:40 +00:00
|
|
|
|
|
|
|
|
|
// Add the shortcut
|
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";
|
2003-02-21 15:36:29 +00:00
|
|
|
|
}
|
2003-02-15 21:03:40 +00:00
|
|
|
|
|
|
|
|
|
// Finally add the action/submenu
|
|
|
|
|
if (item.kind() == MenuItem::Submenu) {
|
|
|
|
|
// create the submenu
|
|
|
|
|
submenuid =
|
|
|
|
|
create_submenu(win, view,
|
|
|
|
|
*item.submenu(), smn);
|
|
|
|
|
if (submenuid == -1)
|
|
|
|
|
return -1;
|
|
|
|
|
label += "%x" + tostr(smn.size());
|
|
|
|
|
lyxerr[Debug::GUI]
|
|
|
|
|
<< "Menu: " << submenuid
|
|
|
|
|
<< " (at index " << smn.size()
|
|
|
|
|
<< "), ";
|
2001-05-04 10:36:36 +00:00
|
|
|
|
} else {
|
2003-02-15 21:03:40 +00:00
|
|
|
|
// Add the action
|
|
|
|
|
label += "%x" + tostr(item.action()
|
|
|
|
|
+ action_offset);
|
|
|
|
|
lyxerr[Debug::GUI] << "Action: \""
|
|
|
|
|
<< item.action() << "\", ";
|
2000-08-02 09:33:15 +00:00
|
|
|
|
}
|
2003-02-15 21:03:40 +00:00
|
|
|
|
|
|
|
|
|
// Add everything to the menu
|
|
|
|
|
fl_addtopup(curmenuid, label.c_str(),
|
|
|
|
|
shortcut.c_str());
|
|
|
|
|
if (item.kind() == MenuItem::Submenu)
|
|
|
|
|
fl_setpup_submenu(curmenuid, smn.size(),
|
|
|
|
|
submenuid);
|
|
|
|
|
|
|
|
|
|
lyxerr[Debug::GUI] << "label \"" << label
|
|
|
|
|
<< "\", binding \"" << binding
|
|
|
|
|
<< "\", shortcut \"" << shortcut
|
|
|
|
|
<< "\" (added to menu "
|
|
|
|
|
<< curmenuid << ')' << endl;
|
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.
|
2003-02-15 21:03:40 +00:00
|
|
|
|
--count;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
2002-07-24 22:32:03 +00:00
|
|
|
|
default:
|
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
|
|
|
|
}
|
|
|
|
|
}
|
2002-07-23 22:42:12 +00:00
|
|
|
|
return menuid;
|
2000-07-24 13:53:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
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-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);
|
2002-07-23 22:42:12 +00:00
|
|
|
|
|
|
|
|
|
MenuBackend const * menubackend_ = iteminfo->pimpl_->menubackend_;
|
|
|
|
|
Menu tomenu;
|
|
|
|
|
Menu const frommenu = menubackend_->getMenu(item->submenuname());
|
2003-02-15 21:03:40 +00:00
|
|
|
|
menubackend_->expand(frommenu, tomenu, view);
|
2000-08-31 11:51:59 +00:00
|
|
|
|
vector<int> submenus;
|
2003-02-15 21:03:40 +00:00
|
|
|
|
int menu = iteminfo->pimpl_->create_submenu(FL_ObjWin(ob), view,
|
|
|
|
|
tomenu, 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-08-13 14:40:38 +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);
|
|
|
|
|
|
|
|
|
|
}
|
2002-08-21 06:32:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Menubar::Pimpl::ItemInfo::ItemInfo
|
|
|
|
|
(Menubar::Pimpl * p, MenuItem const * i, FL_OBJECT * o)
|
|
|
|
|
: pimpl_(p), obj_(o)
|
|
|
|
|
{
|
|
|
|
|
item_.reset(i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Menubar::Pimpl::ItemInfo::~ItemInfo()
|
|
|
|
|
{}
|